/usr/include/pqxx/strconv.hxx is in libpqxx3-dev 3.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | /*-------------------------------------------------------------------------
*
* FILE
* pqxx/stringconv.hxx
*
* DESCRIPTION
* String conversion definitions for libpqxx
* DO NOT INCLUDE THIS FILE DIRECTLY; include pqxx/stringconv instead.
*
* Copyright (c) 2008-2009, Jeroen T. Vermeulen <jtv@xs4all.nl>
*
* See COPYING for copyright license. If you did not receive a file called
* COPYING with this source code, please notify the distributor of this mistake,
* or contact the author.
*
*-------------------------------------------------------------------------
*/
#ifndef PQXX_H_STRINGCONV
#define PQXX_H_STRINGCONV
#include "pqxx/compiler-public.hxx"
#include <sstream>
#include <stdexcept>
namespace pqxx
{
/**
* @defgroup stringconversion String conversion
*
* For purposes of communication with the server, values need to be converted
* from and to a human-readable string format that (unlike the various functions
* and templates in the C and C++ standard libraries) is not sensitive to locale
* settings and internationalization. This section contains functionality that
* is used extensively by libpqxx itself, but is also available for use by other
* programs.
*/
//@{
/// Traits class for use in string conversions
/** Specialize this template for a type that you wish to add to_string and
* from_string support for.
*/
template<typename T> struct string_traits {};
namespace internal
{
/// Throw exception for attempt to convert null to given type.
void PQXX_LIBEXPORT throw_null_conversion(const PGSTD::string &type);
} // namespace pqxx::internal
#define PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(T) \
template<> struct PQXX_LIBEXPORT string_traits<T> \
{ \
typedef T subject_type; \
static const char *name() { return #T; } \
static bool has_null() { return false; } \
static bool is_null(T) { return false; } \
static T null() \
{ internal::throw_null_conversion(name()); return subject_type(); } \
static void from_string(const char Str[], T &Obj); \
static PGSTD::string to_string(T Obj); \
};
PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(bool)
PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(short)
PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(unsigned short)
PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(int)
PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(unsigned int)
PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(long)
PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(unsigned long)
#ifdef PQXX_HAVE_LONG_LONG
PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(long long)
PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(unsigned long long)
#endif
PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(float)
PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(double)
#ifdef PQXX_HAVE_LONG_DOUBLE
PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION(long double)
#endif
#undef PQXX_DECLARE_STRING_TRAITS_SPECIALIZATION
/// String traits for C-style string ("pointer to const char")
template<> struct PQXX_LIBEXPORT string_traits<const char *>
{
static const char *name() { return "const char *"; }
static bool has_null() { return true; }
static bool is_null(const char *t) { return !t; }
static const char *null() { return NULL; }
static void from_string(const char Str[], const char *&Obj) { Obj = Str; }
static PGSTD::string to_string(const char *Obj) { return Obj; }
};
/// String traits for non-const C-style string ("pointer to char")
template<> struct PQXX_LIBEXPORT string_traits<char *>
{
static const char *name() { return "char *"; }
static bool has_null() { return true; }
static bool is_null(const char *t) { return !t; }
static const char *null() { return NULL; }
// Don't allow this conversion since it breaks const-safety.
// static void from_string(const char Str[], char *&Obj);
static PGSTD::string to_string(char *Obj) { return Obj; }
};
/// String traits for C-style string constant ("array of char")
template<size_t N> struct PQXX_LIBEXPORT string_traits<char[N]>
{
static const char *name() { return "char[]"; }
static bool has_null() { return true; }
static bool is_null(const char t[]) { return !t; }
static const char *null() { return NULL; }
static void from_string(const char Str[], const char *&Obj) { Obj = Str; }
static PGSTD::string to_string(const char Obj[]) { return Obj; }
};
template<> struct PQXX_LIBEXPORT string_traits<PGSTD::string>
{
static const char *name() { return "string"; }
static bool has_null() { return false; }
static bool is_null(const PGSTD::string &) { return false; }
static PGSTD::string null()
{ internal::throw_null_conversion(name()); return PGSTD::string(); }
static void from_string(const char Str[], PGSTD::string &Obj) { Obj=Str; }
static PGSTD::string to_string(const PGSTD::string &Obj) { return Obj; }
};
template<> struct PQXX_LIBEXPORT string_traits<const PGSTD::string>
{
static const char *name() { return "const string"; }
static bool has_null() { return false; }
static bool is_null(const PGSTD::string &) { return false; }
static const PGSTD::string null()
{ internal::throw_null_conversion(name()); return PGSTD::string(); }
static const PGSTD::string to_string(const PGSTD::string &Obj) { return Obj; }
};
template<> struct PQXX_LIBEXPORT string_traits<PGSTD::stringstream>
{
static const char *name() { return "stringstream"; }
static bool has_null() { return false; }
static bool is_null(const PGSTD::stringstream &) { return false; }
static PGSTD::stringstream null()
{
internal::throw_null_conversion(name());
// No, dear compiler, we don't need a return here.
throw 0;
}
static void from_string(const char Str[], PGSTD::stringstream &Obj)
{ Obj.clear(); Obj << Str; }
static PGSTD::string to_string(const PGSTD::stringstream &Obj)
{ return Obj.str(); }
};
// TODO: Implement date conversions
/// Attempt to convert postgres-generated string to given built-in type
/** If the form of the value found in the string does not match the expected
* type, e.g. if a decimal point is found when converting to an integer type,
* the conversion fails. Overflows (e.g. converting "9999999999" to a 16-bit
* C++ type) are also treated as errors. If in some cases this behaviour should
* be inappropriate, convert to something bigger such as @c long @c int first
* and then truncate the resulting value.
*
* Only the simplest possible conversions are supported. No fancy features
* such as hexadecimal or octal, spurious signs, or exponent notation will work.
* No whitespace is stripped away. Only the kinds of strings that come out of
* PostgreSQL and out of to_string() can be converted.
*/
template<typename T>
inline void from_string(const char Str[], T &Obj)
{
if (!Str)
throw PGSTD::runtime_error("Attempt to read NULL string");
string_traits<T>::from_string(Str, Obj);
}
/// Conversion with known string length (for strings that may contain nuls)
/** This is only used for strings, where embedded nul bytes should not determine
* the end of the string.
*
* For all other types, this just uses the regular, nul-terminated version of
* from_string().
*/
template<typename T> inline void from_string(const char Str[], T &Obj, size_t)
{
return from_string(Str, Obj);
}
template<>
inline void from_string<PGSTD::string>(const char Str[],
PGSTD::string &Obj,
size_t len) //[t0]
{
if (!Str)
throw PGSTD::runtime_error("Attempt to read NULL string");
Obj.assign(Str, len);
}
template<typename T>
inline void from_string(const PGSTD::string &Str, T &Obj) //[t45]
{ from_string(Str.c_str(), Obj); }
template<typename T>
inline void from_string(const PGSTD::stringstream &Str, T &Obj) //[t0]
{ from_string(Str.str(), Obj); }
template<> inline void
from_string(const PGSTD::string &Str, PGSTD::string &Obj) //[t46]
{ Obj = Str; }
namespace internal
{
/// Compute numeric value of given textual digit (assuming that it is a digit)
inline int digit_to_number(char c) throw () { return c-'0'; }
inline char number_to_digit(int i) throw () { return static_cast<char>(i+'0'); }
} // namespace pqxx::internal
/// Convert built-in type to a readable string that PostgreSQL will understand
/** No special formatting is done, and any locale settings are ignored. The
* resulting string will be human-readable and in a format suitable for use in
* SQL queries.
*/
template<typename T> inline PGSTD::string to_string(const T &Obj)
{ return string_traits<T>::to_string(Obj); }
inline PGSTD::string to_string(const char Obj[]) //[t14]
{ return Obj; }
//@}
} // namespace pqxx
#endif
|