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
|
//
// Types.h
//
// Library: Foundation
// Package: Core
// Module: Types
//
// Definitions of fixed-size integer types for various platforms
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef Foundation_Types_INCLUDED
#define Foundation_Types_INCLUDED
#include "Poco/Foundation.h"
#include <cstdint>
#include <type_traits>
#if defined(POCO_HAVE_CXXABI_H)
#include <typeinfo>
#include <cxxabi.h>
#include <cstdlib>
#endif
namespace Poco {
using Int8 = std::conditional<std::is_same<signed char, std::int8_t>::value, std::int8_t, signed char>::type;
using UInt8 = std::uint8_t;
using Int16 = std::int16_t;
using UInt16 = std::uint16_t;
using Int32 = std::int32_t;
using UInt32 = std::uint32_t;
using Int64 = std::int64_t;
using UInt64 = std::uint64_t;
using IntPtr = std::intptr_t;
using UIntPtr = std::uintptr_t;
#if defined(_MSC_VER)
#if defined(_WIN64)
#define POCO_PTR_IS_64_BIT 1
#endif
#define POCO_HAVE_INT64 1
#elif defined(__GNUC__) || defined(__clang__) || defined(__QNX__)
#if defined(_WIN64)
#define POCO_PTR_IS_64_BIT 1
#else
#if defined(__LP64__)
#define POCO_PTR_IS_64_BIT 1
#define POCO_LONG_IS_64_BIT 1
#if POCO_OS == POCO_OS_LINUX || POCO_OS == POCO_OS_FREE_BSD || POCO_OS == POCO_OS_ANDROID || POCO_OS == POCO_OS_AIX || POCO_OS == POCO_OS_QNX || POCO_OS == POCO_OS_SOLARIS
#define POCO_INT64_IS_LONG 1
#endif
#endif
#endif
#define POCO_HAVE_INT64 1
#elif defined(__SUNPRO_CC)
#if defined(__sparcv9)
#define POCO_PTR_IS_64_BIT 1
#define POCO_LONG_IS_64_BIT 1
#endif
#define POCO_HAVE_INT64 1
#elif defined(__IBMCPP__)
#if defined(__64BIT__)
#define POCO_PTR_IS_64_BIT 1
#define POCO_LONG_IS_64_BIT 1
#endif
#define POCO_HAVE_INT64 1
#elif defined(_DIAB_TOOL)
#define POCO_HAVE_INT64 1
#endif
inline std::string Foundation_API demangle(const char* typeName)
{
std::string result(typeName);
#ifdef POCO_HAVE_CXXABI_H
int status;
char* demangled = abi::__cxa_demangle(typeName, nullptr, nullptr, &status);
if (demangled)
{
if (status == 0) result = demangled;
else
{
switch (status)
{
case -1: result = "[ERRMEM]"; break;
case -2: result = "[ERRNAME]"; break;
case -3: result = "[ERRARG]"; break;
default: result = "[ERRUNK]";
}
}
std::free(demangled);
}
#endif
return result;
}
template <typename T>
std::string demangle()
{
return demangle(typeid(T).name());
}
template <typename T>
std::string demangle(const T& t)
{
return demangle(typeid(std::remove_const_t<std::remove_reference_t<decltype(t)>>).name());
}
} // namespace Poco
#endif // Foundation_Types_INCLUDED
|