Extract conn.getBuf

pgx-vs-pq
Jack Christensen 2013-03-30 21:47:27 -05:00
parent 9fb925d55e
commit 0e992bbaa5
1 changed files with 12 additions and 6 deletions

18
conn.go
View File

@ -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
}