1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/*
Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
The MySQL Connector/C++ is licensed under the terms of the GPLv2
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most
MySQL Connectors. There are special exceptions to the terms and
conditions of the GPLv2 as it is applied to this software, see the
FLOSS License Exception
<http://www.mysql.com/about/legal/licensing/foss-exception.html>.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
Some common definitions and inclusions for C/C++ tests.
*/
#ifndef __C_CPP_TYPES_H_
#define __C_CPP_TYPES_H_
#if defined(_WIN32) || defined(_WIN64)
/* MySQL 5.1 might have defined it before in include/config-win.h */
# ifdef strncasecmp
# undef strncasecmp
# endif
# define strncasecmp(s1,s2,n) _strnicmp(s1,s2,n)
#else
# include <string.h>
#endif
#include "cppconn/config.h"
#ifndef _WIN32
# include <stdlib.h>
# ifndef HAVE_FUNCTION_STRTOLL
# ifdef HAVE_FUNCTION_STRTOL
# define strtoll(__a, __b, __c) strtol((__a), (__b), (__c))
# else
# ifdef HAVE_FUNCTION_STRTOIMAX
# define strtoll(__a, __b, __c) strtoimax((__a), NULL, 10)
# else
# error "Compilation will fail because code does not know an equivalent of strtol/strtoll"
# endif
# endif
# define HAVE_FUNCTION_STRTOLL 1
# endif
# ifndef HAVE_FUNCTION_STRTOULL
# ifdef HAVE_FUNCTION_STRTOUL
# define strtoull(__a, __b, __c) strtoul((__a), (__b), (__c))
# else
# ifdef HAVE_FUNCTION_STRTOUMAX
# define strtoull(__a, __b, __c) strtoumax((__a), NULL, 10)
# else
# error Compilation will fail because code does not know an equivalent of strtoul/strtoull
# endif
# endif
# define HAVE_FUNCTION_STRTOULL 1
# endif
#else
# define strtoll(x, e, b) _strtoi64((x), (e), (b))
# define strtoull(x, e, b) _strtoui64((x), (e), (b))
#endif // _WIN32
#include <vector>
#include <string>
#include <memory>
#include <map>
#include <iostream>
#include <list>
#include <cctype>
/*#include <locale>*/
#ifndef _ABSTRACT
#define _ABSTRACT
#endif
#ifndef _PURE
#define _PURE =0
#endif
#ifndef L64
#ifdef _WIN32
#define L64(x) x##i64
#else
#define L64(x) x##LL
#endif
#endif
#ifndef UL64
#ifdef _WIN32
#define UL64(x) x##ui64
#else
#define UL64(x) x##ULL
#endif
#endif
/*----------------------------------------------------------------------------
ci_char_traits : Case-insensitive char traits.
----------------------------------------------------------------------------*/
template <typename charT> struct ci_char_traits
: public std::char_traits<charT>
// just inherit all the other functions
// that we don't need to override
{
static bool eq (charT c1, charT c2)
{
return std::tolower(c1) == std::tolower(c2);
}
static bool ne (charT c1, charT c2)
{
return std::tolower(c1) != std::tolower(c2);
}
static bool lt (charT c1, charT c2)
{
return std::tolower(c1) < std::tolower(c2);
}
static int compare (const charT* s1, const charT* s2, size_t n)
{
return strncasecmp(s1, s2, n);
}
static const charT* find (const charT* s, std::allocator<char>::size_type n, charT a)
{
while ( --n != static_cast<std::allocator<char>::size_type>(-1)
&& std::tolower(*s) != std::tolower(a))
{
++s;
}
return (n != static_cast<std::allocator<char>::size_type>(-1) ? s : 0);
}
};
//Some stubs for unicode use. Following usual win scheme
#ifdef UNICODE_32BIT
typedef std::basic_string
<wchar_t,
std::char_traits<wchar_t>,
std::allocator<wchar_t> >
String;
#ifndef _T
#define _T(strConst) L ## strConst
#endif
#else
typedef std::basic_string
<char,
std::char_traits<char>,
std::allocator<char> >
String;
typedef std::basic_string
<char,
ci_char_traits<char>,
std::allocator<char> >
ciString;
#ifndef _T
#define _T(strConst) strConst
#endif
#endif
typedef std::vector<String> List;
typedef List::iterator Iterator;
typedef List::const_iterator ConstIterator;
typedef std::map<String, String> Properties;
typedef Properties::iterator PropsIterator;
typedef List::const_iterator PropsConstIterator;
#endif /* __C_CPP_TYPES_H_ */
|