-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathtuple.go
122 lines (104 loc) · 2.82 KB
/
tuple.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package rx
import (
"errors"
"github.com/jjeffcaii/reactor-go"
"github.com/jjeffcaii/reactor-go/tuple"
"github.com/rsocket/rsocket-go/payload"
)
var errWrongTupleType = errors.New("tuple value must be a payload")
// IsWrongTupleTypeError returns true if target error is type of wrong tuple type.
func IsWrongTupleTypeError(err error) bool {
return err == errWrongTupleType
}
// NewTuple returns a new Tuple.
func NewTuple(t ...*reactor.Item) Tuple {
return t
}
// Tuple is a container contains multiple items.
type Tuple []*reactor.Item
// First returns the first value or error.
func (t Tuple) First() (payload.Payload, error) {
return t.convert(t.inner().First())
}
// Second returns the second value or error.
func (t Tuple) Second() (payload.Payload, error) {
return t.convert(t.inner().Second())
}
// Last returns the last value or error.
func (t Tuple) Last() (payload.Payload, error) {
return t.convert(t.inner().Last())
}
// Get returns the value or error with custom index.
func (t Tuple) Get(index int) (payload.Payload, error) {
return t.convert(t.inner().Get(index))
}
// GetValue returns the value with custom index.
func (t Tuple) GetValue(index int) payload.Payload {
if v := t.inner().GetValue(index); v != nil {
return v.(payload.Payload)
}
return nil
}
// Len returns the length of Tuple.
func (t Tuple) Len() int {
return t.inner().Len()
}
// ForEach visits each item in the Tuple.
func (t Tuple) ForEach(callback func(payload.Payload, error) bool) {
t.inner().ForEach(func(v reactor.Any, e error) bool {
if v == nil {
return callback(nil, e)
}
p, ok := v.(payload.Payload)
if ok {
return callback(p, e)
}
return callback(nil, errWrongTupleType)
})
}
// ForEachWithIndex visits each item in the Tuple with index.
func (t Tuple) ForEachWithIndex(callback func(payload.Payload, error, int) bool) {
t.inner().ForEachWithIndex(func(v reactor.Any, e error, index int) bool {
if v == nil {
return callback(nil, e, index)
}
p, ok := v.(payload.Payload)
if ok {
return callback(p, e, index)
}
return callback(nil, errWrongTupleType, index)
})
}
// HasError returns true if this Tuple contains error.
func (t Tuple) HasError() bool {
return t.inner().HasError()
}
// CollectValues collects values and returns a slice.
func (t Tuple) CollectValues() (values []payload.Payload) {
for i := 0; i < len(t); i++ {
next := t[i]
if next == nil || next.E != nil || next.V == nil {
continue
}
if v, ok := next.V.(payload.Payload); ok {
values = append(values, v)
}
}
return
}
func (t Tuple) convert(value reactor.Any, err error) (payload.Payload, error) {
if err != nil {
return nil, err
}
if value == nil {
return nil, nil
}
p, ok := value.(payload.Payload)
if ok {
return p, nil
}
return nil, errWrongTupleType
}
func (t Tuple) inner() tuple.Tuple {
return tuple.NewTuple(t...)
}