~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/client.c

  • Committer: Monty Taylor
  • Date: 2008-10-09 22:38:27 UTC
  • mto: This revision was merged to the branch mainline in revision 497.
  • Revision ID: monty@inaugust.com-20081009223827-bc9gvpiplsmvpwyq
Moved test() to its own file.
Made a new function to possibly replace int10_to_str.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; version 2 of the License.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
/*
 
21
  This file is included by both libdrizzle.c (the DRIZZLE client C API)
 
22
  and the drizzled server to connect to another DRIZZLE server.
 
23
 
 
24
  The differences for the two cases are:
 
25
 
 
26
  - Things that only works for the client:
 
27
  - Trying to automaticly determinate user name if not supplied to
 
28
    drizzle_connect()
 
29
  - Support for reading local file with LOAD DATA LOCAL
 
30
  - SHARED memory handling
 
31
  - Prepared statements
 
32
 
 
33
  - Things that only works for the server
 
34
  - Alarm handling on connect
 
35
 
 
36
  In all other cases, the code should be idential for the client and
 
37
  server.
 
38
*/
 
39
 
 
40
#include <stdarg.h>
 
41
 
 
42
#include <libdrizzle/libdrizzle.h>
 
43
#include <libdrizzle/net_serv.h>
 
44
#include "libdrizzle_priv.h"
 
45
 
 
46
#include <sys/poll.h>
 
47
#include <sys/ioctl.h>
 
48
 
 
49
#include <netdb.h>
 
50
 
 
51
/* Remove client convenience wrappers */
 
52
#undef max_allowed_packet
 
53
#undef net_buffer_length
 
54
 
 
55
#include <libdrizzle/errmsg.h>
 
56
#include <vio/violite.h>
 
57
 
 
58
#include <sys/stat.h>
 
59
#include <signal.h>
 
60
#include <time.h>
 
61
#ifdef   HAVE_PWD_H
 
62
#include <pwd.h>
 
63
#endif
 
64
 
 
65
#include <sys/socket.h>
 
66
#include <netinet/in.h>
 
67
#include <arpa/inet.h>
 
68
#include <netdb.h>
 
69
#ifdef HAVE_SELECT_H
 
70
#  include <select.h>
 
71
#endif
 
72
#ifdef HAVE_SYS_SELECT_H
 
73
#include <sys/select.h>
 
74
#endif
 
75
 
 
76
#include <sys/un.h>
 
77
 
 
78
#include <errno.h>
 
79
#define SOCKET_ERROR -1
 
80
 
 
81
 
 
82
#include <drizzled/version.h>
 
83
#include <libdrizzle/sql_common.h>
 
84
#include <libdrizzle/gettext.h>
 
85
#include "local_infile.h"
 
86
 
 
87
 
 
88
 
 
89
 
 
90
 
 
91
 
 
92
 
 
93
 
 
94
#if defined(HAVE_GETPWUID) && defined(NO_GETPWUID_DECL)
 
95
struct passwd *getpwuid(uid_t);
 
96
char* getlogin(void);
 
97
#endif
 
98
 
 
99
 
 
100
 
 
101
/*****************************************************************************
 
102
  Read a packet from server. Give error message if socket was down
 
103
  or packet is an error message
 
104
*****************************************************************************/
 
105
 
 
106
uint32_t cli_safe_read(DRIZZLE *drizzle)
 
107
{
 
108
  NET *net= &drizzle->net;
 
109
  uint32_t len=0;
 
110
 
 
111
  if (net->vio != 0)
 
112
    len=my_net_read(net);
 
113
 
 
114
  if (len == packet_error || len == 0)
 
115
  {
 
116
#ifdef DRIZZLE_SERVER
 
117
    if (net->vio && vio_was_interrupted(net->vio))
 
118
      return (packet_error);
 
119
#endif /*DRIZZLE_SERVER*/
 
120
    drizzle_disconnect(drizzle);
 
121
    drizzle_set_error(drizzle, net->last_errno == CR_NET_PACKET_TOO_LARGE ?
 
122
                      CR_NET_PACKET_TOO_LARGE : CR_SERVER_LOST,
 
123
                      sqlstate_get_unknown());
 
124
    return (packet_error);
 
125
  }
 
126
  if (net->read_pos[0] == 255)
 
127
  {
 
128
    if (len > 3)
 
129
    {
 
130
      char *pos=(char*) net->read_pos+1;
 
131
      net->last_errno=uint2korr(pos);
 
132
      pos+=2;
 
133
      len-=2;
 
134
      if (pos[0] == '#')
 
135
      {
 
136
        strncpy(net->sqlstate, pos+1, SQLSTATE_LENGTH);
 
137
        pos+= SQLSTATE_LENGTH+1;
 
138
      }
 
139
      else
 
140
      {
 
141
        /*
 
142
          The SQL state hasn't been received -- it should be reset to HY000
 
143
          (unknown error sql state).
 
144
        */
 
145
 
 
146
        strcpy(net->sqlstate, sqlstate_get_unknown());
 
147
      }
 
148
 
 
149
      strncpy(net->last_error,(char*) pos, min((uint32_t) len,
 
150
              (uint32_t) sizeof(net->last_error)-1));
 
151
    }
 
152
    else
 
153
      drizzle_set_error(drizzle, CR_UNKNOWN_ERROR, sqlstate_get_unknown());
 
154
    /*
 
155
      Cover a protocol design error: error packet does not
 
156
      contain the server status. Therefore, the client has no way
 
157
      to find out whether there are more result sets of
 
158
      a multiple-result-set statement pending. Luckily, in 5.0 an
 
159
      error always aborts execution of a statement, wherever it is
 
160
      a multi-statement or a stored procedure, so it should be
 
161
      safe to unconditionally turn off the flag here.
 
162
    */
 
163
    drizzle->server_status&= ~SERVER_MORE_RESULTS_EXISTS;
 
164
 
 
165
    return(packet_error);
 
166
  }
 
167
  return len;
 
168
}
 
169
 
 
170
bool
 
171
cli_advanced_command(DRIZZLE *drizzle, enum enum_server_command command,
 
172
         const unsigned char *header, uint32_t header_length,
 
173
         const unsigned char *arg, uint32_t arg_length, bool skip_check)
 
174
{
 
175
  NET *net= &drizzle->net;
 
176
  bool result= 1;
 
177
  bool stmt_skip= false;
 
178
 
 
179
  if (drizzle->net.vio == 0)
 
180
  {            /* Do reconnect if possible */
 
181
    if (drizzle_reconnect(drizzle) || stmt_skip)
 
182
      return(1);
 
183
  }
 
184
  if (drizzle->status != DRIZZLE_STATUS_READY ||
 
185
      drizzle->server_status & SERVER_MORE_RESULTS_EXISTS)
 
186
  {
 
187
    drizzle_set_error(drizzle, CR_COMMANDS_OUT_OF_SYNC,
 
188
                      sqlstate_get_unknown());
 
189
    return(1);
 
190
  }
 
191
 
 
192
  net_clear_error(net);
 
193
  drizzle->info=0;
 
194
  drizzle->affected_rows= ~(uint64_t) 0;
 
195
  /*
 
196
    We don't want to clear the protocol buffer on COM_QUIT, because if
 
197
    the previous command was a shutdown command, we may have the
 
198
    response for the COM_QUIT already in the communication buffer
 
199
  */
 
200
  net_clear(&drizzle->net, (command != COM_QUIT));
 
201
 
 
202
  if (net_write_command(net,(unsigned char) command, header, header_length,
 
203
      arg, arg_length))
 
204
  {
 
205
    if (net->last_errno == CR_NET_PACKET_TOO_LARGE)
 
206
    {
 
207
      drizzle_set_error(drizzle, CR_NET_PACKET_TOO_LARGE, sqlstate_get_unknown());
 
208
      goto end;
 
209
    }
 
210
    drizzle_disconnect(drizzle);
 
211
    if (drizzle_reconnect(drizzle) || stmt_skip)
 
212
      goto end;
 
213
    if (net_write_command(net,(unsigned char) command, header, header_length,
 
214
        arg, arg_length))
 
215
    {
 
216
      drizzle_set_error(drizzle, CR_SERVER_GONE_ERROR, sqlstate_get_unknown());
 
217
      goto end;
 
218
    }
 
219
  }
 
220
  result=0;
 
221
  if (!skip_check)
 
222
    result= ((drizzle->packet_length=cli_safe_read(drizzle)) == packet_error ?
 
223
       1 : 0);
 
224
end:
 
225
  return(result);
 
226
}
 
227
 
 
228
void free_old_query(DRIZZLE *drizzle)
 
229
{
 
230
  if (drizzle->fields)
 
231
  {
 
232
    /* TODO - we need to de-alloc field storage */
 
233
    free(drizzle->fields->catalog);
 
234
    free(drizzle->fields->db);
 
235
    free(drizzle->fields->table);
 
236
    free(drizzle->fields->org_table);
 
237
    free(drizzle->fields->name);
 
238
    free(drizzle->fields->org_name);
 
239
    free(drizzle->fields->def);
 
240
    free(drizzle->fields);
 
241
 
 
242
  }
 
243
  /* init_alloc_root(&drizzle->field_alloc,8192,0); */ /* Assume rowlength < 8192 */
 
244
  drizzle->fields= 0;
 
245
  drizzle->field_count= 0;      /* For API */
 
246
  drizzle->warning_count= 0;
 
247
  drizzle->info= 0;
 
248
  return;
 
249
}
 
250
 
 
251
 
 
252
 
 
253
 
 
254
 
 
255
void
 
256
drizzle_free_result(DRIZZLE_RES *result)
 
257
{
 
258
  if (result)
 
259
  {
 
260
    DRIZZLE *drizzle= result->handle;
 
261
    if (drizzle)
 
262
    {
 
263
      if (drizzle->unbuffered_fetch_owner == &result->unbuffered_fetch_cancelled)
 
264
        drizzle->unbuffered_fetch_owner= 0;
 
265
      if (drizzle->status == DRIZZLE_STATUS_USE_RESULT)
 
266
      {
 
267
        (*drizzle->methods->flush_use_result)(drizzle);
 
268
        drizzle->status=DRIZZLE_STATUS_READY;
 
269
        if (drizzle->unbuffered_fetch_owner)
 
270
          *drizzle->unbuffered_fetch_owner= true;
 
271
      }
 
272
    }
 
273
    free_rows(result->data);
 
274
    /* TODO: free result->fields */
 
275
    if (result->row)
 
276
      free((unsigned char*) result->row);
 
277
    free((unsigned char*) result);
 
278
  }
 
279
}
 
280
 
 
281
 
 
282
 
 
283
 
 
284
/* Read all rows (fields or data) from server */
 
285
 
 
286
DRIZZLE_DATA *cli_read_rows(DRIZZLE *drizzle, DRIZZLE_FIELD *DRIZZLE_FIELDs, uint32_t fields)
 
287
{
 
288
  uint32_t  field;
 
289
  uint32_t pkt_len;
 
290
  uint32_t len;
 
291
  unsigned char *cp;
 
292
  char  *to, *end_to;
 
293
  DRIZZLE_DATA *result;
 
294
  DRIZZLE_ROWS **prev_ptr,*cur;
 
295
  NET *net = &drizzle->net;
 
296
 
 
297
  if ((pkt_len= cli_safe_read(drizzle)) == packet_error)
 
298
    return(0);
 
299
  if (!(result=(DRIZZLE_DATA*) malloc(sizeof(DRIZZLE_DATA))))
 
300
  {
 
301
    drizzle_set_error(drizzle, CR_OUT_OF_MEMORY,
 
302
                      sqlstate_get_unknown());
 
303
    return(0);
 
304
  }
 
305
  memset(result, 0, sizeof(DRIZZLE_DATA));
 
306
  prev_ptr= &result->data;
 
307
  result->rows=0;
 
308
  result->fields=fields;
 
309
 
 
310
  /*
 
311
    The last EOF packet is either a 254 (0xFE) character followed by 1-7 status bytes.
 
312
 
 
313
    This doesn't conflict with normal usage of 254 which stands for a
 
314
    string where the length of the string is 8 bytes. (see net_field_length())
 
315
  */
 
316
 
 
317
  while (*(cp=net->read_pos) != DRIZZLE_PROTOCOL_NO_MORE_DATA || pkt_len >= 8)
 
318
  {
 
319
    result->rows++;
 
320
    if (!(cur= (DRIZZLE_ROWS*) malloc(sizeof(DRIZZLE_ROWS))) ||
 
321
        !(cur->data= ((DRIZZLE_ROW) malloc((fields+1)*sizeof(char *)+pkt_len))))
 
322
    {
 
323
      free_rows(result);
 
324
      drizzle_set_error(drizzle, CR_OUT_OF_MEMORY, sqlstate_get_unknown());
 
325
      return(0);
 
326
    }
 
327
    *prev_ptr=cur;
 
328
    prev_ptr= &cur->next;
 
329
    to= (char*) (cur->data+fields+1);
 
330
    end_to=to+pkt_len-1;
 
331
    for (field=0 ; field < fields ; field++)
 
332
    {
 
333
      if ((len= net_field_length(&cp)) == NULL_LENGTH)
 
334
      {            /* null field */
 
335
        cur->data[field] = 0;
 
336
      }
 
337
      else
 
338
      {
 
339
        cur->data[field] = to;
 
340
        if (len > (uint32_t) (end_to - to))
 
341
        {
 
342
          free_rows(result);
 
343
          drizzle_set_error(drizzle, CR_MALFORMED_PACKET,
 
344
                            sqlstate_get_unknown());
 
345
          return(0);
 
346
        }
 
347
        memcpy(to, cp, len);
 
348
        to[len]=0;
 
349
        to+=len+1;
 
350
        cp+=len;
 
351
        if (DRIZZLE_FIELDs)
 
352
        {
 
353
          if (DRIZZLE_FIELDs[field].max_length < len)
 
354
            DRIZZLE_FIELDs[field].max_length=len;
 
355
        }
 
356
      }
 
357
    }
 
358
    cur->data[field]=to;      /* End of last field */
 
359
    if ((pkt_len=cli_safe_read(drizzle)) == packet_error)
 
360
    {
 
361
      free_rows(result);
 
362
      return(0);
 
363
    }
 
364
  }
 
365
  *prev_ptr=0;          /* last pointer is null */
 
366
  if (pkt_len > 1)        /* DRIZZLE 4.1 protocol */
 
367
  {
 
368
    drizzle->warning_count= uint2korr(cp+1);
 
369
    drizzle->server_status= uint2korr(cp+3);
 
370
  }
 
371
  return(result);
 
372
}
 
373
 
 
374
/*
 
375
  Read one row. Uses packet buffer as storage for fields.
 
376
  When next packet is read, the previous field values are destroyed
 
377
*/
 
378
 
 
379
 
 
380
static int32_t
 
381
read_one_row(DRIZZLE *drizzle, uint32_t fields, DRIZZLE_ROW row, uint32_t *lengths)
 
382
{
 
383
  uint32_t field;
 
384
  uint32_t pkt_len,len;
 
385
  unsigned char *pos, *prev_pos, *end_pos;
 
386
  NET *net= &drizzle->net;
 
387
 
 
388
  if ((pkt_len=cli_safe_read(drizzle)) == packet_error)
 
389
    return -1;
 
390
  if (pkt_len <= 8 && net->read_pos[0] == DRIZZLE_PROTOCOL_NO_MORE_DATA)
 
391
  {
 
392
    if (pkt_len > 1)        /* DRIZZLE 4.1 protocol */
 
393
    {
 
394
      drizzle->warning_count= uint2korr(net->read_pos+1);
 
395
      drizzle->server_status= uint2korr(net->read_pos+3);
 
396
    }
 
397
    return 1;        /* End of data */
 
398
  }
 
399
  prev_pos= 0;        /* allowed to write at packet[-1] */
 
400
  pos=net->read_pos;
 
401
  end_pos=pos+pkt_len;
 
402
  for (field=0 ; field < fields ; field++)
 
403
  {
 
404
    if ((len= net_field_length(&pos)) == NULL_LENGTH)
 
405
    {            /* null field */
 
406
      row[field] = 0;
 
407
      *lengths++=0;
 
408
    }
 
409
    else
 
410
    {
 
411
      if (len > (uint32_t) (end_pos - pos))
 
412
      {
 
413
        drizzle_set_error(drizzle, CR_UNKNOWN_ERROR,
 
414
                          sqlstate_get_unknown());
 
415
        return -1;
 
416
      }
 
417
      row[field] = (char*) pos;
 
418
      pos+=len;
 
419
      *lengths++=len;
 
420
    }
 
421
    if (prev_pos)
 
422
      *prev_pos=0;        /* Terminate prev field */
 
423
    prev_pos=pos;
 
424
  }
 
425
  row[field]=(char*) prev_pos+1;    /* End of last field */
 
426
  *prev_pos=0;          /* Terminate last field */
 
427
  return 0;
 
428
}
 
429
 
 
430
 
 
431
/**************************************************************************
 
432
  Return next row of the query results
 
433
**************************************************************************/
 
434
 
 
435
DRIZZLE_ROW
 
436
drizzle_fetch_row(DRIZZLE_RES *res)
 
437
{
 
438
  if (!res->data)
 
439
  {            /* Unbufferred fetch */
 
440
    if (!res->eof)
 
441
    {
 
442
      DRIZZLE *drizzle= res->handle;
 
443
      if (drizzle->status != DRIZZLE_STATUS_USE_RESULT)
 
444
      {
 
445
        drizzle_set_error(drizzle,
 
446
                          res->unbuffered_fetch_cancelled ?
 
447
                          CR_FETCH_CANCELED : CR_COMMANDS_OUT_OF_SYNC,
 
448
                          sqlstate_get_unknown());
 
449
      }
 
450
      else if (!(read_one_row(drizzle, res->field_count, res->row, res->lengths)))
 
451
      {
 
452
  res->row_count++;
 
453
  return(res->current_row=res->row);
 
454
      }
 
455
      res->eof=1;
 
456
      drizzle->status=DRIZZLE_STATUS_READY;
 
457
      /*
 
458
        Reset only if owner points to us: there is a chance that somebody
 
459
        started new query after drizzle_stmt_close():
 
460
      */
 
461
      if (drizzle->unbuffered_fetch_owner == &res->unbuffered_fetch_cancelled)
 
462
        drizzle->unbuffered_fetch_owner= 0;
 
463
      /* Don't clear handle in drizzle_free_result */
 
464
      res->handle=0;
 
465
    }
 
466
    return((DRIZZLE_ROW) NULL);
 
467
  }
 
468
  {
 
469
    DRIZZLE_ROW tmp;
 
470
    if (!res->data_cursor)
 
471
    {
 
472
      return(res->current_row=(DRIZZLE_ROW) NULL);
 
473
    }
 
474
    tmp = res->data_cursor->data;
 
475
    res->data_cursor = res->data_cursor->next;
 
476
    return(res->current_row=tmp);
 
477
  }
 
478
}
 
479
 
 
480
 
 
481
/**************************************************************************
 
482
  Get column lengths of the current row
 
483
  If one uses drizzle_use_result, res->lengths contains the length information,
 
484
  else the lengths are calculated from the offset between pointers.
 
485
**************************************************************************/
 
486
 
 
487
uint32_t *
 
488
drizzle_fetch_lengths(DRIZZLE_RES *res)
 
489
{
 
490
  DRIZZLE_ROW column;
 
491
 
 
492
  if (!(column=res->current_row))
 
493
    return 0;          /* Something is wrong */
 
494
  if (res->data)
 
495
    (*res->methods->fetch_lengths)(res->lengths, column, res->field_count);
 
496
  return res->lengths;
 
497
}
 
498
 
 
499
 
 
500
int
 
501
drizzle_options(DRIZZLE *drizzle,enum drizzle_option option, const void *arg)
 
502
{
 
503
  switch (option) {
 
504
  case DRIZZLE_OPT_CONNECT_TIMEOUT:
 
505
    drizzle->options.connect_timeout= *(uint32_t*) arg;
 
506
    break;
 
507
  case DRIZZLE_OPT_READ_TIMEOUT:
 
508
    drizzle->options.read_timeout= *(uint32_t*) arg;
 
509
    break;
 
510
  case DRIZZLE_OPT_WRITE_TIMEOUT:
 
511
    drizzle->options.write_timeout= *(uint32_t*) arg;
 
512
    break;
 
513
  case DRIZZLE_OPT_COMPRESS:
 
514
    drizzle->options.compress= 1;      /* Remember for connect */
 
515
    drizzle->options.client_flag|= CLIENT_COMPRESS;
 
516
    break;
 
517
  case DRIZZLE_OPT_LOCAL_INFILE:      /* Allow LOAD DATA LOCAL ?*/
 
518
    if (!arg || (*(uint32_t*) arg) ? 1 : 0)
 
519
      drizzle->options.client_flag|= CLIENT_LOCAL_FILES;
 
520
    else
 
521
      drizzle->options.client_flag&= ~CLIENT_LOCAL_FILES;
 
522
    break;
 
523
  case DRIZZLE_READ_DEFAULT_FILE:
 
524
    if (drizzle->options.my_cnf_file != NULL)
 
525
      free(drizzle->options.my_cnf_file);
 
526
    drizzle->options.my_cnf_file=strdup(arg);
 
527
    break;
 
528
  case DRIZZLE_READ_DEFAULT_GROUP:
 
529
    if (drizzle->options.my_cnf_group != NULL)
 
530
      free(drizzle->options.my_cnf_group);
 
531
    drizzle->options.my_cnf_group=strdup(arg);
 
532
    break;
 
533
  case DRIZZLE_OPT_PROTOCOL:
 
534
    break;
 
535
  case DRIZZLE_OPT_USE_REMOTE_CONNECTION:
 
536
  case DRIZZLE_OPT_GUESS_CONNECTION:
 
537
    drizzle->options.methods_to_use= option;
 
538
    break;
 
539
  case DRIZZLE_SET_CLIENT_IP:
 
540
    drizzle->options.client_ip= strdup(arg);
 
541
    break;
 
542
  case DRIZZLE_SECURE_AUTH:
 
543
    drizzle->options.secure_auth= *(const bool *) arg;
 
544
    break;
 
545
  case DRIZZLE_REPORT_DATA_TRUNCATION:
 
546
    drizzle->options.report_data_truncation= (*(const bool *) arg) ? 1 : 0;
 
547
    break;
 
548
  case DRIZZLE_OPT_RECONNECT:
 
549
    drizzle->reconnect= *(const bool *) arg;
 
550
    break;
 
551
  case DRIZZLE_OPT_SSL_VERIFY_SERVER_CERT:
 
552
    if (*(const bool*) arg)
 
553
      drizzle->options.client_flag|= CLIENT_SSL_VERIFY_SERVER_CERT;
 
554
    else
 
555
      drizzle->options.client_flag&= ~CLIENT_SSL_VERIFY_SERVER_CERT;
 
556
    break;
 
557
  default:
 
558
    return(1);
 
559
  }
 
560
  return(0);
 
561
}
 
562
 
 
563
 
 
564
/****************************************************************************
 
565
  Functions to get information from the DRIZZLE structure
 
566
  These are functions to make shared libraries more usable.
 
567
****************************************************************************/
 
568
 
 
569
/* DRIZZLE_RES */
 
570
uint64_t drizzle_num_rows(const DRIZZLE_RES *res)
 
571
{
 
572
  return res->row_count;
 
573
}
 
574
 
 
575
unsigned int drizzle_num_fields(const DRIZZLE_RES *res)
 
576
{
 
577
  return res->field_count;
 
578
}
 
579
 
 
580
 
 
581
/*
 
582
  Get version number for server in a form easy to test on
 
583
 
 
584
  SYNOPSIS
 
585
    drizzle_get_server_version()
 
586
    drizzle Connection
 
587
 
 
588
  EXAMPLE
 
589
    4.1.0-alfa ->  40100
 
590
 
 
591
  NOTES
 
592
    We will ensure that a newer server always has a bigger number.
 
593
 
 
594
  RETURN
 
595
   Signed number > 323000
 
596
*/
 
597
 
 
598
uint32_t
 
599
drizzle_get_server_version(const DRIZZLE *drizzle)
 
600
{
 
601
  uint32_t major, minor, version;
 
602
  char *pos= drizzle->server_version, *end_pos;
 
603
  major=   (uint32_t) strtoul(pos, &end_pos, 10);  pos=end_pos+1;
 
604
  minor=   (uint32_t) strtoul(pos, &end_pos, 10);  pos=end_pos+1;
 
605
  version= (uint32_t) strtoul(pos, &end_pos, 10);
 
606
  return (uint32_t) major*10000L+(uint32_t) (minor*100+version);
 
607
}
 
608