18
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#include <drizzled/global.h>
22
22
#include <drizzled/session.h>
23
#include "libdrizzle.h"
24
#include "libdrizzle_priv.h"
24
27
#include <assert.h>
26
29
#include <stdlib.h>
50
47
can't normally do this the client should have a bigger max_allowed_packet.
53
/* Constants when using compression */
54
#define NET_HEADER_SIZE 4 /* standard header size */
55
#define COMP_HEADER_SIZE 3 /* compression header extra size */
57
51
#define MAX_PACKET_LENGTH (256L*256L*256L-1)
58
const char *not_error_sqlstate= "00000";
60
53
static bool net_write_buff(NET *net, const unsigned char *packet, uint32_t len);
61
static int drizzleclient_net_real_write(NET *net, const unsigned char *packet, size_t len);
55
void drizzleclient_net_local_init(NET *net)
57
net->max_packet= (uint32_t) global_system_variables.net_buffer_length;
59
drizzleclient_net_set_read_timeout(net,
60
(uint32_t)global_system_variables.net_read_timeout);
61
drizzleclient_net_set_write_timeout(net,
62
(uint32_t)global_system_variables.net_write_timeout);
64
net->retry_count= (uint32_t) global_system_variables.net_retry_count;
65
net->max_packet_size= max(global_system_variables.net_buffer_length,
66
global_system_variables.max_allowed_packet);
63
69
/** Init with packet info. */
65
bool drizzleclient_net_init(NET *net, Vio* vio, uint32_t buffer_length)
71
bool drizzleclient_net_init(NET *net, Vio* vio)
68
net->max_packet= (uint32_t) buffer_length;
69
net->max_packet_size= max(buffer_length,
70
drizzled::global_system_variables.max_allowed_packet);
74
drizzleclient_net_local_init(net); /* Set some limits */
72
75
if (!(net->buff=(unsigned char*) malloc((size_t) net->max_packet+
73
76
NET_HEADER_SIZE + COMP_HEADER_SIZE)))
93
bool drizzleclient_net_init_sock(NET * net, int sock, int flags,
94
uint32_t buffer_length)
96
bool drizzleclient_net_init_sock(NET * net, int sock, int flags)
97
99
Vio *drizzleclient_vio_tmp= drizzleclient_vio_new(sock, VIO_TYPE_TCPIP, flags);
98
100
if (drizzleclient_vio_tmp == NULL)
101
if (drizzleclient_net_init(net, drizzleclient_vio_tmp, buffer_length))
103
if (drizzleclient_net_init(net, drizzleclient_vio_tmp))
103
105
/* Only delete the temporary vio if we didn't already attach it to the
464
471
TODO: rewrite this in a manner to do non-block writes. If a write can not be made, and we are
465
472
in the server, yield to another process and come back later.
468
475
drizzleclient_net_real_write(NET *net, const unsigned char *packet, size_t len)
534
541
if ((long) (length= drizzleclient_vio_write(net->vio, pos, (size_t) (end-pos))) <= 0)
537
* We could end up here with net->vio == NULL
539
* If that is the case, we exit the while loop
541
if (net->vio == NULL)
544
543
const bool interrupted= drizzleclient_vio_should_retry(net->vio);
546
545
If we read 0, or we were interrupted this means that
889
885
net->last_errno= 0;
890
886
net->last_error[0]= '\0';
891
strcpy(net->sqlstate, not_error_sqlstate);
887
strcpy(net->sqlstate, drizzleclient_sqlstate_get_not_error());
894
} /* namespace drizzle_protocol */