-
Notifications
You must be signed in to change notification settings - Fork 4
/
future.go
160 lines (144 loc) · 3.96 KB
/
future.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
package tarantool
import (
"context"
"time"
"github.com/vmihailenco/msgpack/v5"
)
// Future allows to extract response from server as soon as it's ready.
type Future interface {
Get() ([]interface{}, error)
GetTyped(result interface{}) error
}
// FutureContext allows extracting response from server as soon as it's ready with Context.
type FutureContext interface {
GetContext(ctx context.Context) ([]interface{}, error)
GetTypedContext(ctx context.Context, result interface{}) error
}
// futureImpl is a handle for asynchronous request.
type futureImpl struct {
requestID uint32
timeout time.Duration
conn *Connection
req *Request
resp *response
err error
ready chan struct{}
next *futureImpl
}
// Get waits for future to be filled and returns result and error.
//
// Result will contain data deserialized into []interface{}. if you want more
// performance, use GetTyped method.
//
// Note: Response could be equal to nil if ClientError is returned in error.
//
// Error could be Error, if it is error returned by Tarantool, or ClientError, if
// something bad happens in a client process.
func (fut *futureImpl) Get() ([]interface{}, error) {
fut.wait()
if fut.err != nil {
return nil, fut.err
}
fut.err = fut.resp.decodeBody()
if fut.err != nil {
return nil, fut.err
}
return fut.resp.data, nil
}
// GetTyped waits for future and decodes response into result if no error happens.
// This could be much faster than Get() function.
func (fut *futureImpl) GetTyped(result interface{}) error {
fut.wait()
if fut.err != nil {
return fut.err
}
fut.err = fut.resp.decodeBodyTyped(result)
return fut.err
}
// GetContext waits for future to be filled and returns result and error.
func (fut *futureImpl) GetContext(ctx context.Context) ([]interface{}, error) {
fut.waitContext(ctx)
if fut.err != nil {
if fut.err == context.DeadlineExceeded || fut.err == context.Canceled {
fut.conn.fetchFuture(fut.requestID)
}
return nil, fut.err
}
fut.err = fut.resp.decodeBody()
if fut.err != nil {
return nil, fut.err
}
return fut.resp.data, nil
}
// GetTypedContext waits for futureImpl and calls msgpack.Decoder.Decode(result) if
// no error happens. It could be much faster than GetContext() function.
func (fut *futureImpl) GetTypedContext(ctx context.Context, result interface{}) error {
fut.waitContext(ctx)
if fut.err != nil {
if fut.err == context.DeadlineExceeded || fut.err == context.Canceled {
fut.conn.fetchFuture(fut.requestID)
}
return fut.err
}
fut.err = fut.resp.decodeBodyTyped(result)
return fut.err
}
func (fut *futureImpl) markPushReady(resp *response) {
if fut.req.push == nil && fut.req.pushTyped == nil {
return
}
if fut.req.push != nil {
err := resp.decodeBody()
if err == nil {
fut.req.push(resp.data)
}
return
}
fut.req.pushTyped(func(i interface{}) error {
return resp.decodeBodyTyped(i)
})
}
func (fut *futureImpl) markReady(conn *Connection) {
close(fut.ready)
if conn.rLimit != nil {
<-conn.rLimit
}
}
func (fut *futureImpl) waitContext(ctx context.Context) {
if fut.ready == nil {
return
}
select {
case <-fut.ready:
case <-ctx.Done():
fut.err = ctx.Err()
}
}
func (fut *futureImpl) wait() {
if fut.ready == nil {
return
}
<-fut.ready
}
func fillSearch(enc *msgpack.Encoder, spaceNo, indexNo uint32, key interface{}) error {
_ = enc.EncodeInt(KeySpaceNo)
_ = enc.EncodeInt(int64(spaceNo))
_ = enc.EncodeInt(KeyIndexNo)
_ = enc.EncodeInt(int64(indexNo))
_ = enc.EncodeInt(KeyKey)
return enc.Encode(key)
}
func fillIterator(enc *msgpack.Encoder, offset, limit, iterator uint32) {
_ = enc.EncodeInt(KeyIterator)
_ = enc.EncodeInt(int64(iterator))
_ = enc.EncodeInt(KeyOffset)
_ = enc.EncodeInt(int64(offset))
_ = enc.EncodeInt(KeyLimit)
_ = enc.EncodeInt(int64(limit))
}
func fillInsert(enc *msgpack.Encoder, spaceNo uint32, tuple interface{}) error {
_ = enc.EncodeInt(KeySpaceNo)
_ = enc.EncodeInt(int64(spaceNo))
_ = enc.EncodeInt(KeyTuple)
return enc.Encode(tuple)
}