-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy patheval_plain_text.go
420 lines (342 loc) · 10.6 KB
/
eval_plain_text.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
package connector
import (
"bufio"
"bytes"
"encoding/base64"
"fmt"
"io"
"net"
"strings"
"time"
"github.com/vmihailenco/msgpack/v5"
lua "github.com/yuin/gopher-lua"
"github.com/tarantool/tt/cli/util"
"gopkg.in/yaml.v2"
)
const (
startOfYamlOutput = "---\n"
endOfYAMLOutput = "\n...\n"
endOfLuaOutput = ";"
tagPushPrefixYAML = `%TAG`
tagPushPrefixLua = `-- Push`
)
type EvalPlainTextOpts struct {
ReadTimeout time.Duration
PushCallback func(interface{})
ResData interface{}
}
type PlainTextEvalRes struct {
DataEncBase64 string `yaml:"data_enc"`
}
// callPlainTextConnYAML calls function on Tarantool instance
// Function should return `interface{}`, `string` (res, err)
// to be correctly processed.
func callPlainTextConn(conn net.Conn, funcName string, args []interface{},
opts EvalPlainTextOpts) ([]interface{}, error) {
evalFunc, err := util.GetTextTemplatedStr(&callFuncTmpl, map[string]string{
"FunctionName": funcName,
})
if err != nil {
return nil, fmt.Errorf("Failed to instantiate call function template: %s", err)
}
return evalPlainTextConn(conn, evalFunc, args, opts)
}
// evalPlainTextConnYAML calls function on Tarantool instance
// Function should return `interface{}`, `string` (res, err)
// to be correctly processed.
func evalPlainTextConn(conn net.Conn, funcBody string, args []interface{},
opts EvalPlainTextOpts) ([]interface{}, error) {
if err := formatAndSendEvalFunc(conn, funcBody, args, evalFuncTmpl); err != nil {
return nil, err
}
// recv from socket
resBytes, err := readFromPlainTextConn(conn, opts)
if err == io.EOF {
return nil, err
}
if err != nil {
return nil, fmt.Errorf("Failed to check returned data: %s", err)
}
data, err := processEvalTarantoolRes(resBytes, opts.ResData)
if err != nil {
return nil, err
}
return data, nil
}
func formatAndSendEvalFunc(conn net.Conn, funcBody string, args []interface{},
evalFuncTmpl string) error {
if args == nil {
args = []interface{}{}
}
argsEncoded, err := msgpack.Marshal(args)
if err != nil {
return fmt.Errorf("Failed to encode args: %s", err)
}
evalFunc, err := util.GetTextTemplatedStr(&evalFuncTmpl, map[string]string{
"FunctionBody": funcBody,
"ArgsEncoded": fmt.Sprintf("%x", argsEncoded),
})
if err != nil {
return fmt.Errorf("Failed to instantiate eval function template: %s", err)
}
evalFuncFormatted := strings.Join(
strings.Split(strings.TrimSpace(evalFunc), "\n"), " ",
)
evalFuncFormatted = strings.Join(strings.Fields(evalFuncFormatted), " ") + "\n"
// write to socket
if err := writeToPlainTextConn(conn, evalFuncFormatted); err != nil {
return fmt.Errorf("Failed to send eval function to socket: %s", err)
}
return nil
}
func writeToPlainTextConn(conn net.Conn, data string) error {
writer := bufio.NewWriter(conn)
if _, err := writer.WriteString(data); err != nil {
return fmt.Errorf("Failed to send to socket: %s", err)
}
if err := writer.Flush(); err != nil {
return fmt.Errorf("Failed to flush: %s", err)
}
return nil
}
// readFromPlainTextConn function reads plain text from Tarantool connection
// These code was inspired by Tarantool console eval
// https://github.com/tarantool/tarantool/blob/3bc4a156e937102f23e2157ef88aa6c007759005/src/box/lua/console.lua#L469
//
// By default, Tarantool sends YAML-encoded values as user command response.
// In this case the end of output value is `\n...\n`.
// What about a case when return string contains this substring?
// Everything is OK, since yaml-encoded string is indented via two spaces,
// so in fact we never have `\n...\n` in output strings.
//
// E.g.
// tarantool> return '\n...\n'
// ---
// - '
//
// ...
//
// '
// ...
//
// If Lua output is set, the end of input is just ";".
// And there are some problems.
// See https://github.com/tarantool/tarantool/issues/4603
//
// Code is read byte by byte to make parsing output simplier
// (in case of box.session.push() response we need to read 2 yaml-encoded values,
// it's not enough to catch end of output, we should be sure that only one
// yaml-encoded value was read).
func readFromPlainTextConn(conn net.Conn, opts EvalPlainTextOpts) ([]byte, error) {
var dataBytes []byte
buffer := bytes.Buffer{}
for {
// data is read in cycle because of `box.session.push` command
// it prints a tag and returns pushed value, and then true is returned additionally
// e.g.
// myapp.router> box.session.push('xx')
// %TAG !push! tag:tarantool.io/push,2018
// --- xx
// ...
// ---
// - true
// ...
//
// So, when data portion starts with a tag prefix, we have to read one more value
// received tag string can be handled via pushCallback function
//
dataPortionBytes, err := readDataPortionFromPlainTextConn(conn, &buffer, opts.ReadTimeout)
if err == io.EOF {
return nil, err
}
if err != nil {
return nil, fmt.Errorf("Failed to read from instance socket: %s", err)
}
dataPortion := string(dataPortionBytes)
if !pushTagIsReceived(dataPortion) {
dataBytes = dataPortionBytes
break
}
if opts.PushCallback != nil {
var pushedData interface{}
pushedData, err := getPushedData(dataPortionBytes)
if err != nil {
return nil, err
}
opts.PushCallback(pushedData)
}
}
return dataBytes, nil
}
func readDataPortionFromPlainTextConn(conn net.Conn, buffer *bytes.Buffer,
readTimeout time.Duration) ([]byte, error) {
tmp := make([]byte, 256)
data := make([]byte, 0)
if readTimeout > 0 {
conn.SetReadDeadline(time.Now().Add(readTimeout))
} else {
conn.SetReadDeadline(time.Time{})
}
hasYAMLOutputPrefix := false
for {
// We have to read from socket in medium parts (not in small parts, like 1 byte),
// this greatly speeds up reading and responsiveness.
//
// But, due to the peculiarities of `box.session.push()`, we have to process the
// data byte by byte - we use HasPrefix and HasSufix merhods.
//
// In addition, when reading in portion (more than 1 byte), we need
// to save the read data (for this we use the bytes.Buffer), since we can read it,
// but not process them in this function call (see examples above).
// This structure allows us to save this data and process it in the next function call.
//
if buffer.Len() == 0 {
if n, err := conn.Read(tmp); err != nil && err != io.EOF {
return nil, fmt.Errorf("Failed to read: %s", err)
} else if n == 0 || err == io.EOF {
return nil, io.EOF
} else {
buffer.Write(tmp[:n])
}
}
nextByte, err := buffer.ReadByte()
if err != nil {
return nil, fmt.Errorf("Failed to get byte from buffer: %s", err)
}
data = append(data, nextByte)
dataString := string(data)
if strings.HasPrefix(endOfYAMLOutput, dataString) ||
strings.HasPrefix(tagPushPrefixYAML, dataString) ||
strings.HasPrefix(tagPushPrefixLua, dataString) {
continue
}
if !hasYAMLOutputPrefix &&
strings.HasPrefix(dataString, startOfYamlOutput) ||
strings.HasPrefix(dataString, tagPushPrefixYAML) {
hasYAMLOutputPrefix = true
}
if hasYAMLOutputPrefix && strings.HasSuffix(dataString, endOfYAMLOutput) {
break
}
if strings.HasSuffix(dataString, endOfLuaOutput) {
break
}
}
if len(data) == 0 {
return nil, fmt.Errorf("Connection was closed")
}
return data, nil
}
func pushTagIsReceived(dataPortion string) bool {
if strings.HasPrefix(dataPortion, tagPushPrefixYAML) {
return true
}
if strings.HasPrefix(dataPortion, tagPushPrefixLua) {
return true
}
return false
}
func getPushedData(pushedDataBytes []byte) (interface{}, error) {
var pushedData interface{}
pushedDataString := string(pushedDataBytes)
if strings.HasPrefix(pushedDataString, tagPushPrefixYAML) {
// YAML - just decode tag
if err := yaml.Unmarshal(pushedDataBytes, &pushedData); err != nil {
return nil, fmt.Errorf("Failed to unmarshal pushed data: %s", err)
}
} else {
// Lua
// remove first line (-- Push)
pushedDataString = strings.SplitN(pushedDataString, "\n", 2)[1]
// remove ";"
pushedDataString = strings.TrimRight(pushedDataString, ";")
pushedData = pushedDataString
}
return pushedData, nil
}
func processEvalTarantoolRes(resBytes []byte, result interface{}) ([]interface{}, error) {
var err error
var evalResultEncBase64 string
var getResultEncBase64Func func([]byte) (string, error)
// Result data is returned as a table
// `{ data_enc = msgpack.encode(ret):hex() }`.
// It can't be returned as a string because of Lua output -
// error is showed as a string, so the returned table allows to
// distinguish returned string data from the error.
//
// YAML output:
// tarantool> return 'XXX'
// ---
// - 'XXX'
// ...
//
// tarantool> error('XXX')
// ---
// - error: XXX
// ...
//
// Lua output:
// tarantool> return 'XXX'
// "XXX";
// tarantool> error('XXX')
// "XXX";
resString := string(resBytes)
if strings.HasPrefix(resString, startOfYamlOutput) {
getResultEncBase64Func = getPlainTextEvalResYaml
} else {
getResultEncBase64Func = getPlainTextEvalResLua
}
if evalResultEncBase64, err = getResultEncBase64Func(resBytes); err != nil {
return nil, err
}
dataEnc, err := base64.StdEncoding.DecodeString(evalResultEncBase64)
if err != nil {
return nil, fmt.Errorf("Failed to decode hex value: %s", err)
}
if result != nil {
if err := msgpack.Unmarshal(dataEnc, result); err != nil {
return nil, fmt.Errorf("Failed to parse eval result: %s", err)
}
return nil, nil
}
var data []interface{}
if err := msgpack.Unmarshal(dataEnc, &data); err != nil {
return nil, fmt.Errorf("Failed to parse eval result: %s", err)
}
return data, nil
}
func getPlainTextEvalResYaml(resBytes []byte) (string, error) {
evalResults := []PlainTextEvalRes{}
if err := yaml.UnmarshalStrict(resBytes, &evalResults); err != nil {
errorStrings := make([]map[string]string, 0)
if err := yaml.UnmarshalStrict(resBytes, &errorStrings); err == nil {
if len(errorStrings) > 0 {
errStr, found := errorStrings[0]["error"]
if found {
return "", fmt.Errorf(errStr)
}
}
}
return "", fmt.Errorf("Failed to parse eval result: %s", err)
}
if len(evalResults) != 1 {
return "", fmt.Errorf("Expected one result, found %d", len(evalResults))
}
evalResult := evalResults[0]
return evalResult.DataEncBase64, nil
}
func getPlainTextEvalResLua(resBytes []byte) (string, error) {
L := lua.NewState()
defer L.Close()
doString := fmt.Sprintf(`res = %s`, resBytes)
if err := L.DoString(doString); err != nil {
return "", err
}
luaRes := L.Env.RawGetString("res")
if luaRes.Type() == lua.LTString {
return "", fmt.Errorf(lua.LVAsString(luaRes))
}
encodedDataLV := L.GetTable(luaRes, lua.LString("data_enc"))
encodedData := lua.LVAsString(encodedDataLV)
return encodedData, nil
}