mirror of
https://git.sr.ht/~rjarry/aerc
synced 2025-07-03 23:30:21 +02:00

Since go 1.18, interface{} can be replaced with any. Signed-off-by: Robin Jarry <robin@jarry.cc> Reviewed-by: Karel Balej <balejk@matfyz.cz>
126 lines
2.1 KiB
Go
126 lines
2.1 KiB
Go
package iterator
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"git.sr.ht/~rjarry/aerc/models"
|
|
"git.sr.ht/~rjarry/aerc/worker/types"
|
|
)
|
|
|
|
// defaultFactory
|
|
type defaultFactory struct{}
|
|
|
|
func (df *defaultFactory) NewIterator(a any) Iterator {
|
|
switch data := a.(type) {
|
|
case []models.UID:
|
|
return &defaultUid{data: data, index: len(data)}
|
|
case []*types.Thread:
|
|
return &defaultThread{data: data, index: len(data)}
|
|
}
|
|
panic(errors.New("a iterator for this type is not implemented yet"))
|
|
}
|
|
|
|
// defaultUid
|
|
type defaultUid struct {
|
|
data []models.UID
|
|
index int
|
|
}
|
|
|
|
func (du *defaultUid) Next() bool {
|
|
du.index--
|
|
return du.index >= 0
|
|
}
|
|
|
|
func (du *defaultUid) Value() any {
|
|
return du.data[du.index]
|
|
}
|
|
|
|
func (du *defaultUid) StartIndex() int {
|
|
return len(du.data) - 1
|
|
}
|
|
|
|
func (du *defaultUid) EndIndex() int {
|
|
return 0
|
|
}
|
|
|
|
// defaultThread
|
|
type defaultThread struct {
|
|
data []*types.Thread
|
|
index int
|
|
}
|
|
|
|
func (dt *defaultThread) Next() bool {
|
|
dt.index--
|
|
return dt.index >= 0
|
|
}
|
|
|
|
func (dt *defaultThread) Value() any {
|
|
return dt.data[dt.index]
|
|
}
|
|
|
|
func (dt *defaultThread) StartIndex() int {
|
|
return len(dt.data) - 1
|
|
}
|
|
|
|
func (dt *defaultThread) EndIndex() int {
|
|
return 0
|
|
}
|
|
|
|
// reverseFactory
|
|
type reverseFactory struct{}
|
|
|
|
func (rf *reverseFactory) NewIterator(a any) Iterator {
|
|
switch data := a.(type) {
|
|
case []models.UID:
|
|
return &reverseUid{data: data, index: -1}
|
|
case []*types.Thread:
|
|
return &reverseThread{data: data, index: -1}
|
|
}
|
|
panic(errors.New("an iterator for this type is not implemented yet"))
|
|
}
|
|
|
|
// reverseUid
|
|
type reverseUid struct {
|
|
data []models.UID
|
|
index int
|
|
}
|
|
|
|
func (ru *reverseUid) Next() bool {
|
|
ru.index++
|
|
return ru.index < len(ru.data)
|
|
}
|
|
|
|
func (ru *reverseUid) Value() any {
|
|
return ru.data[ru.index]
|
|
}
|
|
|
|
func (ru *reverseUid) StartIndex() int {
|
|
return 0
|
|
}
|
|
|
|
func (ru *reverseUid) EndIndex() int {
|
|
return len(ru.data) - 1
|
|
}
|
|
|
|
// reverseThread
|
|
type reverseThread struct {
|
|
data []*types.Thread
|
|
index int
|
|
}
|
|
|
|
func (rt *reverseThread) Next() bool {
|
|
rt.index++
|
|
return rt.index < len(rt.data)
|
|
}
|
|
|
|
func (rt *reverseThread) Value() any {
|
|
return rt.data[rt.index]
|
|
}
|
|
|
|
func (rt *reverseThread) StartIndex() int {
|
|
return 0
|
|
}
|
|
|
|
func (rt *reverseThread) EndIndex() int {
|
|
return len(rt.data) - 1
|
|
}
|