]> git.stg.codes - stg.git/blob - stglibs/sgcp.lib/include/stg/sgcp_utils.h
e5152671c39b10c00dc89b3dbb3fbda76f4e2cc8
[stg.git] / stglibs / sgcp.lib / include / stg / sgcp_utils.h
1 #ifndef __STG_SGCP_UTILS_H__
2 #define __STG_SGCP_UTILS_H__
3
4 /*
5  *    This program is free software; you can redistribute it and/or modify
6  *    it under the terms of the GNU General Public License as published by
7  *    the Free Software Foundation; either version 2 of the License, or
8  *    (at your option) any later version.
9  *
10  *    This program is distributed in the hope that it will be useful,
11  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *    GNU General Public License for more details.
14  *
15  *    You should have received a copy of the GNU General Public License
16  *    along with this program; if not, write to the Free Software
17  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 /*
21  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
22  */
23
24 #include "stg/os_int.h"
25
26 #include <string>
27 #include <vector>
28
29 #include <arpa/inet.h> // hton*
30
31 namespace STG
32 {
33 namespace SGCP
34 {
35
36 template <typename T> inline T hton(T value) { return value; }
37 template <typename T> inline T ntoh(T value) { return hton(value); }
38
39 template <> inline uint16_t hton(uint16_t value) { return htons(value); }
40 template <> inline int16_t hton(int16_t value) { return htons(value); }
41
42 template <> inline uint32_t hton(uint32_t value) { return htonl(value); }
43 template <> inline int32_t hton(int32_t value) { return htonl(value); }
44
45 inline
46 uint64_t htonll(uint64_t value)
47 {
48 #ifdef ARCH_LE
49     const uint32_t high_part = htonl(static_cast<uint32_t>(value >> 32));
50     const uint32_t low_part = htonl(static_cast<uint32_t>(value & 0xFFFFFFFFLL));
51
52     return (static_cast<uint64_t>(low_part) << 32) | high_part;
53 #else
54     return value;
55 #endif
56 }
57
58 template <> inline uint64_t hton(uint64_t value) { return htonll(value); }
59 template <> inline int64_t hton(int64_t value) { return htonll(value); }
60
61 } // namespace SGCP
62 } // namespace STG
63
64 #endif