Improved modutil_get_complete_packets to only allocate a single buffer.

This commit is contained in:
Markus Makela 2015-03-22 07:44:14 +02:00
parent 92999a3174
commit 55513cc998
2 changed files with 64 additions and 3 deletions

View File

@ -537,12 +537,48 @@ return_packetbuf:
*/
GWBUF* modutil_get_complete_packets(GWBUF** p_readbuf)
{
GWBUF *buff = NULL, *packet = NULL;
GWBUF *buff = NULL, *packet;
uint8_t *ptr,*end;
unsigned int len,total = 0;
if(p_readbuf == NULL || (*p_readbuf) == NULL ||
gwbuf_length(*p_readbuf) < 3)
return NULL;
packet = *p_readbuf;
ptr = (uint8_t*)packet->start;
end = (uint8_t*)packet->end;
len = gw_mysql_get_byte3(ptr) + 4;
while((packet = modutil_get_next_MySQL_packet(p_readbuf)) != NULL)
if(ptr + len >= end)
return NULL;
while(ptr + len < end)
{
buff = gwbuf_append(buff,packet);
ptr += len;
total += len;
len = gw_mysql_get_byte3(ptr) + 4;
}
/** Full packets only, return original */
if(total == gwbuf_length(packet))
return packet;
/** The next packet is a partial, split into complete and partial packets */
total -= len;
if(buff = gwbuf_alloc(total))
{
skygw_log_write(LOGFILE_ERROR,
"Error: Failed to allocate new buffer "
" of %d bytes while splitting buffer"
" into complete packets.",
total);
return NULL;
}
memcpy(buff->start,packet->start,total);
gwbuf_consume(*p_readbuf,total);
return buff;
}

View File

@ -493,6 +493,31 @@ static int gw_read_backend_event(DCB *dcb) {
ss_dassert(read_buffer != NULL || dcb->dcb_readqueue != NULL);
}
read_buffer = gwbuf_append(read_buffer,dcb->dcb_readqueue);
nbytes_read = gwbuf_length(read_buffer);
if (nbytes_read < 3)
{
dcb->dcb_readqueue = gwbuf_append(dcb->dcb_readqueue, read_buffer);
rc = 0;
goto return_rc;
}
{
GWBUF *tmp = modutil_get_complete_packets(&read_buffer);
if(tmp == NULL)
{
dcb->dcb_readqueue = gwbuf_append(dcb->dcb_readqueue, read_buffer);
rc = 0;
goto return_rc;
}
dcb->dcb_readqueue = read_buffer;
read_buffer = tmp;
}
/**
* If protocol has session command set, concatenate whole
* response into one buffer.