forked from jackc/pgproto3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
function_call_response.go
101 lines (84 loc) · 2.47 KB
/
function_call_response.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
package pgproto3
import (
"encoding/binary"
"github.com/jackc/pgio"
)
type FunctionCallResponse struct {
Result []byte `json:"result" yaml:"result"`
}
// Backend identifies this message as sendable by the PostgreSQL backend.
func (*FunctionCallResponse) Backend() {}
// Decode decodes src into dst. src must contain the complete message with the exception of the initial 1 byte message
// type identifier and 4 byte message length.
func (dst *FunctionCallResponse) Decode(src []byte) error {
//println("FunctionCallResponse.Decode")
if len(src) < 4 {
return &invalidMessageFormatErr{messageType: "FunctionCallResponse"}
}
rp := 0
resultSize := int(binary.BigEndian.Uint32(src[rp:]))
rp += 4
if resultSize == -1 {
dst.Result = nil
return nil
}
if len(src[rp:]) != resultSize {
return &invalidMessageFormatErr{messageType: "FunctionCallResponse"}
}
dst.Result = src[rp:]
return nil
}
// Encode encodes src into dst. dst will include the 1 byte message type identifier and the 4 byte message length.
func (src *FunctionCallResponse) Encode(dst []byte) []byte {
//println("FunctionCallResponse.Encode")
dst = append(dst, 'V')
sp := len(dst)
dst = pgio.AppendInt32(dst, -1)
if src.Result == nil {
dst = pgio.AppendInt32(dst, -1)
} else {
dst = pgio.AppendInt32(dst, int32(len(src.Result)))
dst = append(dst, src.Result...)
}
pgio.SetInt32(dst[sp:], int32(len(dst[sp:])))
return dst
}
// // MarshalJSON implements encoding/json.Marshaler.
// func (src FunctionCallResponse) MarshalJSON() ([]byte, error) {
// var formattedValue map[string]string
// var hasNonPrintable bool
// for _, b := range src.Result {
// if b < 32 {
// hasNonPrintable = true
// break
// }
// }
// if hasNonPrintable {
// formattedValue = map[string]string{"binary": hex.EncodeToString(src.Result)}
// } else {
// formattedValue = map[string]string{"text": string(src.Result)}
// }
// return json.Marshal(struct {
// Type string
// Result map[string]string
// }{
// Type: "FunctionCallResponse",
// Result: formattedValue,
// })
// }
// // UnmarshalJSON implements encoding/json.Unmarshaler.
// func (dst *FunctionCallResponse) UnmarshalJSON(data []byte) error {
// // Ignore null, like in the main JSON package.
// if string(data) == "null" {
// return nil
// }
// var msg struct {
// Result map[string]string
// }
// err := json.Unmarshal(data, &msg)
// if err != nil {
// return err
// }
// dst.Result, err = getValueFromJSON(msg.Result)
// return err
// }