~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql-common/pack.c

Merged in changes. 
Edited a the comment test case so deal with our version bump.

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
 
#include "config.h"
21
 
#include <drizzled/korr.h>
22
 
 
23
 
#include <stdint.h>
24
 
 
25
 
#include "pack.h"
 
1
/* Copyright (C) 2000-2003 MySQL AB
 
2
 
 
3
   This program is free software; you can redistribute it and/or modify
 
4
   it under the terms of the GNU General Public License as published by
 
5
   the Free Software Foundation; version 2 of the License.
 
6
 
 
7
   This program is distributed in the hope that it will be useful,
 
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
   GNU General Public License for more details.
 
11
 
 
12
   You should have received a copy of the GNU General Public License
 
13
   along with this program; if not, write to the Free Software
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
15
 
 
16
#include <my_global.h>
 
17
#include <mysql_com.h>
 
18
#include <mysql.h>
26
19
 
27
20
/* Get the length of next field. Change parameter to point at fieldstart */
28
 
uint32_t drizzleclient_net_field_length(unsigned char **packet)
 
21
ulong STDCALL net_field_length(uchar **packet)
29
22
{
30
 
  register unsigned char *pos= (unsigned char *)*packet;
 
23
  register uchar *pos= (uchar *)*packet;
31
24
  if (*pos < 251)
32
25
  {
33
26
    (*packet)++;
34
 
    return (uint32_t) *pos;
 
27
    return (ulong) *pos;
35
28
  }
36
29
  if (*pos == 251)
37
30
  {
41
34
  if (*pos == 252)
42
35
  {
43
36
    (*packet)+=3;
44
 
    return (uint32_t) uint2korr(pos+1);
 
37
    return (ulong) uint2korr(pos+1);
45
38
  }
46
39
  if (*pos == 253)
47
40
  {
48
41
    (*packet)+=4;
49
 
    return (uint32_t) uint3korr(pos+1);
 
42
    return (ulong) uint3korr(pos+1);
50
43
  }
51
 
  (*packet)+=9;          /* Must be 254 when here */
52
 
  return (uint32_t) uint4korr(pos+1);
 
44
  (*packet)+=9;                                 /* Must be 254 when here */
 
45
  return (ulong) uint4korr(pos+1);
53
46
}
54
47
 
55
 
/* The same as above but returns int64_t */
56
 
uint64_t drizzleclient_drizzleclient_net_field_length_ll(unsigned char **packet)
 
48
/* The same as above but returns longlong */
 
49
my_ulonglong net_field_length_ll(uchar **packet)
57
50
{
58
 
  register unsigned char *pos= *packet;
 
51
  register uchar *pos= *packet;
59
52
  if (*pos < 251)
60
53
  {
61
54
    (*packet)++;
62
 
    return (uint64_t) *pos;
 
55
    return (my_ulonglong) *pos;
63
56
  }
64
57
  if (*pos == 251)
65
58
  {
66
59
    (*packet)++;
67
 
    return (uint64_t) NULL_LENGTH;
 
60
    return (my_ulonglong) NULL_LENGTH;
68
61
  }
69
62
  if (*pos == 252)
70
63
  {
71
64
    (*packet)+=3;
72
 
    return (uint64_t) uint2korr(pos+1);
 
65
    return (my_ulonglong) uint2korr(pos+1);
73
66
  }
74
67
  if (*pos == 253)
75
68
  {
76
69
    (*packet)+=4;
77
 
    return (uint64_t) uint3korr(pos+1);
 
70
    return (my_ulonglong) uint3korr(pos+1);
78
71
  }
79
 
  (*packet)+=9;          /* Must be 254 when here */
 
72
  (*packet)+=9;                                 /* Must be 254 when here */
80
73
#ifdef NO_CLIENT_LONGLONG
81
 
  return (uint64_t) uint4korr(pos+1);
 
74
  return (my_ulonglong) uint4korr(pos+1);
82
75
#else
83
 
  return (uint64_t) uint8korr(pos+1);
 
76
  return (my_ulonglong) uint8korr(pos+1);
84
77
#endif
85
78
}
86
79
 
88
81
  Store an integer with simple packing into a output package
89
82
 
90
83
  SYNOPSIS
91
 
    drizzleclient_net_store_length()
92
 
    pkg      Store the packed integer here
93
 
    length    integers to store
 
84
    net_store_length()
 
85
    pkg                 Store the packed integer here
 
86
    length              integers to store
94
87
 
95
88
  NOTES
96
89
    This is mostly used to store lengths of strings.
101
94
   Position in 'pkg' after the packed length
102
95
*/
103
96
 
104
 
unsigned char *drizzleclient_net_store_length(unsigned char *packet, uint64_t length)
 
97
uchar *net_store_length(uchar *packet, ulonglong length)
105
98
{
106
 
  if (length < (uint64_t) 251LL)
 
99
  if (length < (ulonglong) LL(251))
107
100
  {
108
 
    *packet=(unsigned char) length;
 
101
    *packet=(uchar) length;
109
102
    return packet+1;
110
103
  }
111
104
  /* 251 is reserved for NULL */
112
 
  if (length < (uint64_t) 65536LL)
 
105
  if (length < (ulonglong) LL(65536))
113
106
  {
114
107
    *packet++=252;
115
 
    int2store(packet,(uint32_t) length);
 
108
    int2store(packet,(uint) length);
116
109
    return packet+2;
117
110
  }
118
 
  if (length < (uint64_t) 16777216LL)
 
111
  if (length < (ulonglong) LL(16777216))
119
112
  {
120
113
    *packet++=253;
121
 
    int3store(packet,(uint32_t) length);
 
114
    int3store(packet,(ulong) length);
122
115
    return packet+3;
123
116
  }
124
117
  *packet++=254;