~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000 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
/* There may be prolems include all of theese. Try to test in
17
   configure with ones are needed? */
18
19
/*  This is needed for the definitions of strchr... on solaris */
20
212.5.39 by Monty Taylor
Phew. Moved my_base and my_global.
21
1122.2.10 by Monty Taylor
Fixed all of the include guards.
22
#ifndef MYSTRINGS_M_STRING_H
23
#define MYSTRINGS_M_STRING_H
236.1.27 by Monty Taylor
Some cleanups/decoupling in mystring.
24
1 by brian
clean slate
25
#ifndef __USE_GNU
411.1.1 by Brian Aker
Work on removing GNU specific calls.
26
#define __USE_GNU				/* We want to use my_stpcpy */
1 by brian
clean slate
27
#endif
28
#if defined(HAVE_STRINGS_H)
29
#include <strings.h>
30
#endif
31
#if defined(HAVE_STRING_H)
32
#include <string.h>
33
#endif
34
1130.3.40 by Monty Taylor
Fixed a couple of includes that sun studio found.
35
#include <stdint.h>
236.1.27 by Monty Taylor
Some cleanups/decoupling in mystring.
36
#include <stdlib.h>
37
#include <stddef.h>
38
#include <assert.h>
39
#include <limits.h>
481.1.24 by Monty Taylor
Split a method out into innodb_plugin_extras. Innodb is the only thing that uses it. I imagine we probably want to do something totally different with this...
40
#include <ctype.h>
1 by brian
clean slate
41
42
/*  This is needed for the definitions of memcpy... on solaris */
43
#if defined(HAVE_MEMORY_H) && !defined(__cplusplus)
44
#include <memory.h>
45
#endif
46
47
#if defined(__cplusplus)
48
extern "C" {
49
#endif
50
411.1.1 by Brian Aker
Work on removing GNU specific calls.
51
#define strmov_overlapp(A,B) my_stpcpy(A,B)
1 by brian
clean slate
52
#define strmake_overlapp(A,B,C) strmake(A,B,C)
53
236.1.27 by Monty Taylor
Some cleanups/decoupling in mystring.
54
extern void bmove_upp(unsigned char *dst,const unsigned char *src,size_t len);
55
56
extern	void bchange(unsigned char *dst,size_t old_len,const unsigned char *src,
1 by brian
clean slate
57
		     size_t new_len,size_t tot_len);
58
extern	char *strfield(char *src,int fields,int chars,int blanks,
59
			   int tabch);
154 by Brian Aker
Removed oddball types in my_global.h
60
extern	char *strfill(char * s,size_t len,char fill);
1 by brian
clean slate
61
extern	char *strkey(char *dst,char *head,char *tail,char *flags);
62
extern	char *strmake(char *dst,const char *src,size_t length);
63
#ifndef strmake_overlapp
64
extern	char *strmake_overlapp(char *dst,const char *src, size_t length);
65
#endif
66
67
extern	char *strsuff(const char *src,const char *suffix);
236.1.27 by Monty Taylor
Some cleanups/decoupling in mystring.
68
extern	char *strxcat(char *dst,const char *src, ...);
69
extern	char *strxmov(char *dst,const char *src, ...);
70
extern	char *strxcpy(char *dst,const char *src, ...);
71
extern	char *strxncat(char *dst,size_t len, const char *src, ...);
72
extern	char *strxncpy(char *dst,size_t len, const char *src, ...);
1 by brian
clean slate
73
74
/* Prototypes of normal stringfunctions (with may ours) */
75
76
#ifdef WANT_STRING_PROTOTYPES
77
extern char *strcat(char *, const char *);
154 by Brian Aker
Removed oddball types in my_global.h
78
extern char *strchr(const char *, char);
79
extern char *strrchr(const char *, char);
1 by brian
clean slate
80
extern char *strcpy(char *, const char *);
81
#endif
82
83
extern int is_prefix(const char *, const char *);
84
85
/* Conversion routines */
86
typedef enum {
87
  MY_GCVT_ARG_FLOAT,
88
  MY_GCVT_ARG_DOUBLE
89
} my_gcvt_arg_type;
90
91
double my_strtod(const char *str, char **end, int *error);
92
double my_atof(const char *nptr);
236.1.27 by Monty Taylor
Some cleanups/decoupling in mystring.
93
size_t my_fcvt(double x, int precision, char *to, bool *error);
1 by brian
clean slate
94
size_t my_gcvt(double x, my_gcvt_arg_type type, int width, char *to,
236.1.27 by Monty Taylor
Some cleanups/decoupling in mystring.
95
               bool *error);
1 by brian
clean slate
96
937.2.6 by Stewart Smith
make set_if_bigger typesafe for C and C++. Fix up everywhere.
97
#define NOT_FIXED_DEC (uint8_t)31
1 by brian
clean slate
98
99
/*
100
  The longest string my_fcvt can return is 311 + "precision" bytes.
101
  Here we assume that we never cal my_fcvt() with precision >= NOT_FIXED_DEC
102
  (+ 1 byte for the terminating '\0').
103
*/
104
#define FLOATING_POINT_BUFFER (311 + NOT_FIXED_DEC)
105
106
/*
107
  We want to use the 'e' format in some cases even if we have enough space
108
  for the 'f' one just to mimic sprintf("%.15g") behavior for large integers,
109
  and to improve it for numbers < 10^(-4).
110
  That is, for |x| < 1 we require |x| >= 10^(-15), and for |x| > 1 we require
111
  it to be integer and be <= 10^DBL_DIG for the 'f' format to be used.
112
  We don't lose precision, but make cases like "1e200" or "0.00001" look nicer.
113
*/
114
#define MAX_DECPT_FOR_F_FORMAT DBL_DIG
115
116
/*
117
  The maximum possible field width for my_gcvt() conversion.
118
  (DBL_DIG + 2) significant digits + sign + "." + ("e-NNN" or
119
  MAX_DECPT_FOR_F_FORMAT zeros for cases when |x|<1 and the 'f' format is used).
120
*/
398.1.5 by Monty Taylor
Removed C++ includes and std namespace from global.h.
121
#define MY_GCVT_MAX_FIELD_WIDTH (DBL_DIG + 4 + cmax(5, MAX_DECPT_FOR_F_FORMAT))
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
122
1 by brian
clean slate
123
152 by Brian Aker
longlong replacement
124
extern char *llstr(int64_t value,char *buff);
125
extern char *ullstr(int64_t value,char *buff);
1 by brian
clean slate
126
492.1.9 by Monty
Fixed problem on 32-bit.
127
extern char *int2str(int32_t val, char *dst, int radix, int upcase);
128
extern char *int10_to_str(int32_t val,char *dst,int radix);
152 by Brian Aker
longlong replacement
129
int64_t my_strtoll10(const char *nptr, char **endptr, int *error);
130
extern char *int64_t2str(int64_t val,char *dst,int radix);
131
extern char *int64_t10_to_str(int64_t val,char *dst,int radix);
1 by brian
clean slate
132
133
134
#if defined(__cplusplus)
135
}
136
#endif
137
138
139
/**
140
  Skip trailing space.
141
142
   @param     ptr   pointer to the input string
143
   @param     len   the length of the string
144
   @return          the last non-space character
145
*/
146
481.1.24 by Monty Taylor
Split a method out into innodb_plugin_extras. Innodb is the only thing that uses it. I imagine we probably want to do something totally different with this...
147
static inline const unsigned char *
520.4.30 by Monty Taylor
Moved LEX_STRING into drizzled/lex_string.h.
148
skip_trailing_space(const unsigned char *ptr, size_t len)
1 by brian
clean slate
149
{
236.1.27 by Monty Taylor
Some cleanups/decoupling in mystring.
150
  const unsigned char *end= ptr + len;
1 by brian
clean slate
151
481.1.22 by Monty Taylor
Collapsed over-optimized skip_trailing_spaces.
152
  while (end > ptr && isspace(*--end))
153
    continue;
154
  return end+1;
1 by brian
clean slate
155
}
156
1122.2.10 by Monty Taylor
Fixed all of the include guards.
157
#endif /* MYSTRINGS_M_STRING_H */