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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721
|
/*-------------------------------------------------------------------------
*
* FILE
* util.cxx
*
* DESCRIPTION
* Various utility functions for libpqxx
*
* Copyright (c) 2003-2008, 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.
*
*-------------------------------------------------------------------------
*/
#include "pqxx/compiler-internal.hxx"
#include <cmath>
#include <cstring>
#ifdef PQXX_HAVE_LIMITS
#include <limits>
#endif
#ifdef PQXX_HAVE_LOCALE
#include <locale>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <cerrno>
#include <new>
#include <sstream>
#ifdef _WIN32
#include <windows.h>
#endif
#include "libpq-fe.h"
#include "pqxx/except"
#include "pqxx/util"
using namespace PGSTD;
using namespace pqxx::internal;
const char pqxx::internal::sql_begin_work[] = "BEGIN",
pqxx::internal::sql_commit_work[] = "COMMIT",
pqxx::internal::sql_rollback_work[] = "ROLLBACK";
namespace
{
// It turns out that NaNs are pretty hard to do portably. If the appropriate
// C++ traits functions are not available, C99 defines a NAN macro (also widely
// supported in other dialects, I believe) and some functions that can do the
// same work. But if none of those are available, we need to resort to
// compile-time "0/0" expressions. Most compilers won't crash while compiling
// those anymore, but there may be unneeded warnings--which are almost as bad.
template<typename T> void set_to_NaN(T &);
#if defined(PQXX_HAVE_QUIET_NAN)
template<typename T> inline void set_to_NaN(T &t)
{ t = numeric_limits<T>::quiet_NaN(); }
#elif defined(PQXX_HAVE_C_NAN)
template<typename T> inline void set_to_NaN(T &t) { t = NAN; }
#elif defined(PQXX_HAVE_NAN)
template<> inline void set_to_NaN(float &t) { t = fnan(""); }
template<> inline void set_to_NaN(double &t) { t = nan(""); }
#ifdef PQXX_HAVE_LONG_DOUBLE
template<> inline void set_to_NaN(long double &t) { t = lnan(""); }
#endif
#else
const float nan_f(0.0/0.0);
template<> inline void set_to_NaN(float &t) { t = nan_f; }
const double nan_d(0.0/0.0);
template<> inline void set_to_NaN(double &t) { t = nan_d; }
#ifdef PQXX_HAVE_LONG_DOUBLE
const long double nan_ld(0.0/0.0);
template<> inline void set_to_NaN(long double &t) { t = nan_ld; }
#endif
#endif
// TODO: This may need tweaking for various compilers.
template<typename T> inline void set_to_Inf(T &t, int sign=1)
{
#ifdef PQXX_HAVE_LIMITS
T value = numeric_limits<T>::infinity();
#else
T value = INFINITY;
#endif
if (sign < 0) value = -value;
t = value;
}
/// For use in string parsing: add new numeric digit to intermediate value
template<typename L, typename R>
inline L absorb_digit(L value, R digit) throw ()
{
return L(L(10)*value + L(digit));
}
template<typename T> void from_string_signed(const char Str[], T &Obj)
{
int i = 0;
T result = 0;
if (!isdigit(Str[i]))
{
if (Str[i] != '-')
throw pqxx::failure("Could not convert string to integer: '" +
string(Str) + "'");
for (++i; isdigit(Str[i]); ++i)
{
const T newresult = absorb_digit(result, -digit_to_number(Str[i]));
if (newresult > result)
throw pqxx::failure("Integer too small to read: " + string(Str));
result = newresult;
}
}
else for (; isdigit(Str[i]); ++i)
{
const T newresult = absorb_digit(result, digit_to_number(Str[i]));
if (newresult < result)
throw pqxx::failure("Integer too large to read: " + string(Str));
result = newresult;
}
if (Str[i])
throw pqxx::failure("Unexpected text after integer: '" + string(Str) + "'");
Obj = result;
}
template<typename T> void from_string_unsigned(const char Str[], T &Obj)
{
int i = 0;
T result = 0;
if (!isdigit(Str[i]))
throw pqxx::failure("Could not convert string to unsigned integer: '" +
string(Str) + "'");
for (; isdigit(Str[i]); ++i)
{
const T newres = absorb_digit(result, digit_to_number(Str[i]));
if (newres < result)
throw pqxx::failure("Unsigned integer too large to read: " + string(Str));
result = newres;
}
if (Str[i])
throw pqxx::failure("Unexpected text after integer: '" + string(Str) + "'");
Obj = result;
}
bool valid_infinity_string(const char str[])
{
// TODO: Also accept less sensible case variations.
return
strcmp("infinity", str) == 0 ||
strcmp("Infinity", str) == 0 ||
strcmp("INFINITY", str) == 0;
}
/* These are hard. Sacrifice performance of specialized, nonflexible,
* non-localized code and lean on standard library. Some special-case code
* handles NaNs.
*/
template<typename T> inline void from_string_float(const char Str[], T &Obj)
{
bool ok = false;
T result;
switch (Str[0])
{
case 'N':
case 'n':
// Accept "NaN," "nan," etc.
ok = ((Str[1]=='A'||Str[1]=='a') && (Str[2]=='N'||Str[2]=='n') && !Str[3]);
set_to_NaN(result);
break;
case 'I':
case 'i':
ok = valid_infinity_string(Str);
set_to_Inf(result);
break;
default:
if (Str[0] == '-' && valid_infinity_string(&Str[1]))
{
ok = true;
set_to_Inf(result, -1);
}
else
{
stringstream S(Str);
#if defined(PQXX_HAVE_IMBUE)
S.imbue(locale("C"));
#endif
ok = (S >> result);
}
break;
}
if (!ok)
throw pqxx::failure("Could not convert string to numeric value: '" +
string(Str) + "'");
Obj = result;
}
template<typename T> inline string to_string_unsigned(T Obj)
{
if (!Obj) return "0";
// Every byte of width on T adds somewhere between 3 and 4 digits to the
// maximum length of our decimal string.
char buf[4*sizeof(T)+1];
char *p = &buf[sizeof(buf)];
*--p = '\0';
while (Obj > 0)
{
*--p = number_to_digit(int(Obj%10));
Obj /= 10;
}
return p;
}
template<typename T> inline string to_string_fallback(T Obj)
{
stringstream S;
#ifdef PQXX_HAVE_IMBUE
S.imbue(locale("C"));
#endif
// Provide enough precision.
#ifdef PQXX_HAVE_LIMITS
// Kirit reports getting two more digits of precision than
// numeric_limits::digits10 would give him, so we try not to make him lose
// those last few bits.
S.precision(numeric_limits<T>::digits10 + 2);
#else
// Guess: enough for an IEEE 754 double-precision value.
S.precision(16);
#endif
S << Obj;
return S.str();
}
template<typename T> inline bool is_NaN(T Obj)
{
return
#if defined(PQXX_HAVE_C_ISNAN)
isnan(Obj);
#elif defined(PQXX_HAVE_LIMITS)
!(Obj <= Obj+numeric_limits<T>::max());
#else
!(Obj <= Obj + 1000);
#endif
}
template<typename T> inline bool is_Inf(T Obj)
{
return
#if defined(PQXX_HAVE_C_ISINF)
isinf(Obj);
#else
Obj >= Obj+1 && Obj <= 2*Obj && Obj >= 2*Obj;
#endif
}
template<typename T> inline string to_string_float(T Obj)
{
// TODO: Omit this special case if NaN is output as "nan"/"NAN"/"NaN"
#ifndef PQXX_HAVE_NAN_OUTPUT
if (is_NaN(Obj)) return "nan";
#endif
// TODO: Omit this special case if infinity is output as "infinity"
#ifndef PQXX_HAVE_INF_OUTPUT
if (is_Inf(Obj)) return Obj > 0 ? "infinity" : "-infinity";
#endif
return to_string_fallback(Obj);
}
template<typename T> inline string to_string_signed(T Obj)
{
if (Obj < 0)
{
// Remember--the smallest negative number for a given two's-complement type
// cannot be negated.
#if PQXX_HAVE_LIMITS
const bool negatable = (Obj != numeric_limits<T>::min());
#else
T Neg(-Obj);
const bool negatable = Neg > 0;
#endif
if (negatable)
return '-' + to_string_unsigned(-Obj);
else
return to_string_fallback(Obj);
}
return to_string_unsigned(Obj);
}
} // namespace
namespace pqxx
{
namespace internal
{
void throw_null_conversion(const PGSTD::string &type)
{
throw conversion_error("Attempt to convert null to " + type);
}
} // namespace pqxx::internal
void string_traits<bool>::from_string(const char Str[], bool &Obj)
{
bool OK, result=false;
switch (Str[0])
{
case 0:
result = false;
OK = true;
break;
case 'f':
case 'F':
result = false;
OK = !(Str[1] &&
(strcmp(Str+1, "alse") != 0) &&
(strcmp(Str+1, "ALSE") != 0));
break;
case '0':
{
int I;
string_traits<int>::from_string(Str, I);
result = (I != 0);
OK = ((I == 0) || (I == 1));
}
break;
case '1':
result = true;
OK = !Str[1];
break;
case 't':
case 'T':
result = true;
OK = !(Str[1] &&
(strcmp(Str+1, "rue") != 0) &&
(strcmp(Str+1, "RUE") != 0));
break;
default:
OK = false;
}
if (!OK)
throw argument_error("Failed conversion to bool: '" + string(Str) + "'");
Obj = result;
}
string string_traits<bool>::to_string(bool Obj)
{
return Obj ? "true" : "false";
}
void string_traits<short>::from_string(const char Str[], short &Obj)
{
from_string_signed(Str, Obj);
}
string string_traits<short>::to_string(short Obj)
{
return to_string_signed(Obj);
}
void string_traits<unsigned short>::from_string(
const char Str[],
unsigned short &Obj)
{
from_string_unsigned(Str, Obj);
}
string string_traits<unsigned short>::to_string(unsigned short Obj)
{
return to_string_unsigned(Obj);
}
void string_traits<int>::from_string(const char Str[], int &Obj)
{
from_string_signed(Str, Obj);
}
string string_traits<int>::to_string(int Obj)
{
return to_string_signed(Obj);
}
void string_traits<unsigned int>::from_string(
const char Str[],
unsigned int &Obj)
{
from_string_unsigned(Str, Obj);
}
string string_traits<unsigned int>::to_string(unsigned int Obj)
{
return to_string_unsigned(Obj);
}
void string_traits<long>::from_string(const char Str[], long &Obj)
{
from_string_signed(Str, Obj);
}
string string_traits<long>::to_string(long Obj)
{
return to_string_signed(Obj);
}
void string_traits<unsigned long>::from_string(
const char Str[],
unsigned long &Obj)
{
from_string_unsigned(Str, Obj);
}
string string_traits<unsigned long>::to_string(unsigned long Obj)
{
return to_string_unsigned(Obj);
}
#ifdef PQXX_HAVE_LONG_LONG
void string_traits<long long>::from_string(const char Str[], long long &Obj)
{
from_string_signed(Str, Obj);
}
string string_traits<long long>::to_string(long long Obj)
{
return to_string_signed(Obj);
}
void string_traits<unsigned long long>::from_string(
const char Str[],
unsigned long long &Obj)
{
from_string_unsigned(Str, Obj);
}
string string_traits<unsigned long long>::to_string(unsigned long long Obj)
{
return to_string_unsigned(Obj);
}
#endif
void string_traits<float>::from_string(const char Str[], float &Obj)
{
from_string_float(Str, Obj);
}
string string_traits<float>::to_string(float Obj)
{
return to_string_float(Obj);
}
void string_traits<double>::from_string(const char Str[], double &Obj)
{
from_string_float(Str, Obj);
}
string string_traits<double>::to_string(double Obj)
{
return to_string_float(Obj);
}
#ifdef PQXX_HAVE_LONG_DOUBLE
void string_traits<long double>::from_string(const char Str[], long double &Obj)
{
from_string_float(Str, Obj);
}
string string_traits<long double>::to_string(long double Obj)
{
return to_string_float(Obj);
}
#endif
} // namespace pqxx
namespace
{
size_t pqxx_strnlen(const char s[], size_t max)
{
#if defined(PQXX_HAVE_STRNLEN)
return strnlen(s,max);
#else
size_t len;
for (len=0; len<max && s[len]; ++len) ;
return len;
#endif
}
} // namespace
void pqxx::internal::freemem_notif(pqxx::internal::pq::PGnotify *p) throw ()
{
#ifdef PQXX_HAVE_PQFREENOTIFY
PQfreeNotify(p);
#else
freepqmem(p);
#endif
}
pqxx::internal::refcount::refcount() :
m_l(this),
m_r(this)
{
}
pqxx::internal::refcount::~refcount()
{
loseref();
}
void pqxx::internal::refcount::makeref(refcount &rhs) throw ()
{
// TODO: Make threadsafe
m_l = &rhs;
m_r = rhs.m_r;
m_l->m_r = m_r->m_l = this;
}
bool pqxx::internal::refcount::loseref() throw ()
{
// TODO: Make threadsafe
const bool result = (m_l == this);
m_r->m_l = m_l;
m_l->m_r = m_r;
m_l = m_r = this;
return result;
}
string pqxx::internal::namedclass::description() const
{
try
{
string desc = classname();
if (!name().empty()) desc += " '" + name() + "'";
return desc;
}
catch (const exception &)
{
// Oops, string composition failed! Probably out of memory.
// Let's try something easier.
}
return name().empty() ? classname() : name();
}
void pqxx::internal::CheckUniqueRegistration(const namedclass *New,
const namedclass *Old)
{
if (!New)
throw internal_error("NULL pointer registered");
if (Old)
{
if (Old == New)
throw usage_error("Started twice: " + New->description());
throw usage_error("Started " + New->description() + " "
"while " + Old->description() + " still active");
}
}
void pqxx::internal::CheckUniqueUnregistration(const namedclass *New,
const namedclass *Old)
{
if (New != Old)
{
if (!New)
throw usage_error("Expected to close " + Old->description() + ", "
"but got NULL pointer instead");
if (!Old)
throw usage_error("Closed while not open: " + New->description());
throw usage_error("Closed " + New->description() + "; "
"expected to close " + Old->description());
}
}
void pqxx::internal::freepqmem(void *p)
{
#ifdef PQXX_HAVE_PQFREEMEM
PQfreemem(p);
#else
free(p);
#endif
}
void pqxx::internal::sleep_seconds(int s)
{
if (s <= 0) return;
#if defined(PQXX_HAVE_SLEEP)
// Use POSIX.1 sleep() if available
sleep(s);
#elif defined(_WIN32)
// Windows has its own Sleep(), which speaks milliseconds
Sleep(s*1000);
#else
// If all else fails, use select() on nothing and specify a timeout
fd_set F;
FD_ZERO(&F);
struct timeval timeout;
timeout.tv_sec = s;
timeout.tv_usec = 0;
if (select(0, &F, &F, &F, &timeout) == -1) switch (errno)
{
case EINVAL: // Invalid timeout
throw range_error("Invalid timeout value: " + to_string(s));
case EINTR: // Interrupted by signal
break;
case ENOMEM: // Out of memory
throw bad_alloc();
default:
throw internal_error("select() failed for unknown reason");
}
#endif
}
namespace
{
void cpymsg(char buf[], const char input[], size_t buflen) throw ()
{
#if defined(PQXX_HAVE_STRLCPY)
strlcpy(buf, input, buflen);
#else
strncpy(buf, input, buflen);
if (buflen) buf[buflen-1] = '\0';
#endif
}
// Single Unix Specification version of strerror_r returns result code
const char *strerror_r_result(int sus_return, char buf[], size_t len) throw ()
{
switch (sus_return)
{
case 0: break;
case -1: cpymsg(buf, "Unknown error", len); break;
default:
cpymsg(buf,
"Unexpected result from strerror_r()! Is it really SUS-compliant?",
len);
break;
}
return buf;
}
// GNU version of strerror_r returns error string (which may be anywhere)
const char *strerror_r_result(const char gnu_return[], char[], size_t) throw ()
{
return gnu_return;
}
}
const char *pqxx::internal::strerror_wrapper(int err, char buf[], size_t len)
throw ()
{
if (!buf || len <= 0) return "No buffer provided for error message!";
const char *res = buf;
#if !defined(PQXX_HAVE_STRERROR_R)
cpymsg(buf, strerror(err), len);
#else
// This will pick the appropriate strerror_r() subwrapper using overloading
// (an idea first suggested by Bart Samwel. Thanks a bundle, Bart!)
res = strerror_r_result(strerror_r(err,buf,len), buf, len);
#endif
return res;
}
|