mirror of https://github.com/jackc/pgx.git
Extract conn.getBuf
parent
9fb925d55e
commit
0e992bbaa5
18
conn.go
18
conn.go
|
@ -94,12 +94,7 @@ func (c *conn) rxMsgHeader() (t byte, bodySize int32, err error) {
|
|||
}
|
||||
|
||||
func (c *conn) rxMsgBody(bodySize int32) (buf []byte, err error) {
|
||||
if int(bodySize) <= cap(c.buf) {
|
||||
buf = c.buf[:bodySize]
|
||||
} else {
|
||||
buf = make([]byte, bodySize)
|
||||
}
|
||||
|
||||
buf = c.getBuf(int(bodySize))
|
||||
_, err = io.ReadFull(c.conn, buf)
|
||||
return
|
||||
}
|
||||
|
@ -146,3 +141,14 @@ func (c *conn) txStartupMessage(msg *startupMessage) (err error) {
|
|||
_, err = c.conn.Write(msg.Bytes())
|
||||
return
|
||||
}
|
||||
|
||||
// Gets a []byte of n length. If possible it will reuse the connection buffer
|
||||
// otherwise it will allocate a new buffer
|
||||
func (c *conn) getBuf(n int) (buf []byte) {
|
||||
if n <= cap(c.buf) {
|
||||
buf = c.buf[:n]
|
||||
} else {
|
||||
buf = make([]byte, n)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue