]> git.stg.codes - stg.git/blob - stglibs/sgcp.lib/include/stg/sgcp_utils.h
Fixed Makefile.
[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 <arpa/inet.h> // hton*
27
28 namespace STG
29 {
30 namespace SGCP
31 {
32
33 template <typename T> inline T hton(T value) { return value; }
34 template <typename T> inline T ntoh(T value) { return hton(value); }
35
36 template <> inline uint16_t hton(uint16_t value) { return htons(value); }
37 template <> inline int16_t hton(int16_t value) { return htons(value); }
38
39 template <> inline uint32_t hton(uint32_t value) { return htonl(value); }
40 template <> inline int32_t hton(int32_t value) { return htonl(value); }
41
42 inline
43 uint64_t htonll(uint64_t value)
44 {
45 #ifdef ARCH_LE
46     const uint32_t high_part = htonl(static_cast<uint32_t>(value >> 32));
47     const uint32_t low_part = htonl(static_cast<uint32_t>(value & 0xFFFFFFFFLL));
48
49     return (static_cast<uint64_t>(low_part) << 32) | high_part;
50 #else
51     return value;
52 #endif
53 }
54
55 template <> inline uint64_t hton(uint64_t value) { return htonll(value); }
56 template <> inline int64_t hton(int64_t value) { return htonll(value); }
57
58 } // namespace SGCP
59 } // namespace STG
60
61 #endif