/usr/include/odb/pgsql/details/endian-traits.hxx is in libodb-pgsql-dev 2.4.0-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 | // file : odb/pgsql/details/endian-traits.hxx
// copyright : Copyright (c) 2009-2015 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef ODB_PGSQL_DETAILS_ENDIAN_TRAITS_HXX
#define ODB_PGSQL_DETAILS_ENDIAN_TRAITS_HXX
#include <cstddef> // std::size_t
#include <algorithm> // std::reverse
#include <odb/pgsql/details/export.hxx>
namespace odb
{
// @@ Revise this.
//
namespace details
{
}
namespace pgsql
{
namespace details
{
using namespace odb::details;
template <typename T, std::size_t S = sizeof (T)>
struct swap_endian;
template <typename T>
struct swap_endian<T, 1>
{
static T
swap (T x)
{
return x;
}
};
template <typename T>
struct swap_endian<T, 2>
{
static T
swap (T x)
{
union u2
{
T t;
char c[2];
};
u2 u;
u.t = x;
char tmp (u.c[0]);
u.c[0] = u.c[1];
u.c[1] = tmp;
return u.t;
}
};
template <typename T>
struct swap_endian<T, 4>
{
static T
swap (T x)
{
union u4
{
T t;
char c[4];
};
u4 u;
u.t = x;
char tmp (u.c[0]);
u.c[0] = u.c[3];
u.c[3] = tmp;
tmp = u.c[1];
u.c[1] = u.c[2];
u.c[2] = tmp;
return u.t;
}
};
template <typename T>
struct swap_endian<T, 8>
{
static T
swap (T x)
{
union u8
{
T t;
char c[8];
};
u8 u;
u.t = x;
char tmp (u.c[0]);
u.c[0] = u.c[7];
u.c[7] = tmp;
tmp = u.c[1];
u.c[1] = u.c[6];
u.c[6] = tmp;
tmp = u.c[2];
u.c[2] = u.c[5];
u.c[5] = tmp;
tmp = u.c[3];
u.c[3] = u.c[4];
u.c[4] = tmp;
return u.t;
}
};
class LIBODB_PGSQL_EXPORT endian_traits
{
public:
enum endian
{
big,
little
};
public:
static const endian host_endian;
public:
template <typename T>
static T
hton (T x)
{
return host_endian == big ? x : swap_endian<T>::swap (x);
}
template <typename T>
static T
ntoh (T x)
{
return host_endian == big ? x : swap_endian<T>::swap (x);
}
};
}
}
}
#endif // ODB_PGSQL_DETAILS_ENDIAN_TRAITS_HXX
|