mirror of https://github.com/jackc/pgx.git
60 lines
1.1 KiB
Go
60 lines
1.1 KiB
Go
package pgproto3
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
|
|
"github.com/jackc/pgx/pgio"
|
|
)
|
|
|
|
type Describe struct {
|
|
ObjectType byte // 'S' = prepared statement, 'P' = portal
|
|
Name string
|
|
}
|
|
|
|
func (*Describe) Frontend() {}
|
|
|
|
func (dst *Describe) Decode(src []byte) error {
|
|
if len(src) < 2 {
|
|
return &invalidMessageFormatErr{messageType: "Describe"}
|
|
}
|
|
|
|
dst.ObjectType = src[0]
|
|
rp := 1
|
|
|
|
idx := bytes.IndexByte(src[rp:], 0)
|
|
if idx != len(src[rp:])-1 {
|
|
return &invalidMessageFormatErr{messageType: "Describe"}
|
|
}
|
|
|
|
dst.Name = string(src[rp : len(src)-1])
|
|
|
|
return nil
|
|
}
|
|
|
|
func (src *Describe) Encode(dst []byte) []byte {
|
|
dst = append(dst, 'D')
|
|
sp := len(dst)
|
|
dst = pgio.AppendInt32(dst, -1)
|
|
|
|
dst = append(dst, src.ObjectType)
|
|
dst = append(dst, src.Name...)
|
|
dst = append(dst, 0)
|
|
|
|
pgio.SetInt32(dst[sp:], int32(len(dst[sp:])))
|
|
|
|
return dst
|
|
}
|
|
|
|
func (src *Describe) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(struct {
|
|
Type string
|
|
ObjectType string
|
|
Name string
|
|
}{
|
|
Type: "Describe",
|
|
ObjectType: string(src.ObjectType),
|
|
Name: src.Name,
|
|
})
|
|
}
|