Update copyright dates.
[asdcplib.git] / src / KM_platform.h
1 /*
2 Copyright (c) 2004-2009, John Hurst
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions
7 are met:
8 1. Redistributions of source code must retain the above copyright
9    notice, this list of conditions and the following disclaimer.
10 2. Redistributions in binary form must reproduce the above copyright
11    notice, this list of conditions and the following disclaimer in the
12    documentation and/or other materials provided with the distribution.
13 3. The name of the author may not be used to endorse or promote products
14    derived from this software without specific prior written permission.
15
16 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27   /*! \file    KM_platform.h
28     \version $Id$
29     \brief   platform portability
30   */
31
32 #ifndef _KM_PLATFORM_H_
33 # define _KM_PLATFORM_H_
34
35 # ifdef __APPLE__
36 #  ifdef __BIG_ENDIAN__
37 #   define KM_BIG_ENDIAN
38 #  endif
39 # endif
40
41 # ifdef KM_WIN32
42 #  define WIN32_LEAN_AND_MEAN
43 #  define VC_EXTRALEAN
44 #  include <windows.h>
45 #  include <stdlib.h>
46 #  pragma warning(disable:4786)                 // Ignore "identifer > 255 characters" warning
47
48 typedef unsigned __int64   ui64_t;
49 typedef __int64            i64_t;
50 #  define i64_C(c)  (i64_t)(c)
51 #  define ui64_C(c) (ui64_t)(c)
52 #  define snprintf _snprintf
53 #  define vsnprintf _vsnprintf
54
55 # else // KM_WIN32
56 typedef unsigned long long ui64_t;
57 typedef long long          i64_t;
58 #  define i64_C(c)  c##LL
59 #  define ui64_C(c) c##ULL
60
61 # endif // KM_WIN32
62
63 # include <stdio.h>
64 # include <assert.h>
65 # include <stdlib.h>
66 # include <limits.h>
67
68 typedef unsigned char  byte_t;
69 typedef char           i8_t;
70 typedef unsigned char  ui8_t;
71 typedef short          i16_t;
72 typedef unsigned short ui16_t;
73 typedef int            i32_t;
74 typedef unsigned int   ui32_t;
75
76
77 namespace Kumu
78 {
79   inline ui16_t Swap2(ui16_t i)
80     {
81       return ( (i << 8) | (( i & 0xff00) >> 8) );
82     }
83
84   inline ui32_t Swap4(ui32_t i)
85     {
86       return
87         ( (i & 0x000000ffUL) << 24 ) |
88         ( (i & 0xff000000UL) >> 24 ) |
89         ( (i & 0x0000ff00UL) << 8  ) |
90         ( (i & 0x00ff0000UL) >> 8  );
91     }
92
93   inline ui64_t Swap8(ui64_t i)
94     {
95       return
96         ( (i & ui64_C(0x00000000000000FF)) << 56 ) |
97         ( (i & ui64_C(0xFF00000000000000)) >> 56 ) |
98         ( (i & ui64_C(0x000000000000FF00)) << 40 ) |
99         ( (i & ui64_C(0x00FF000000000000)) >> 40 ) |
100         ( (i & ui64_C(0x0000000000FF0000)) << 24 ) |
101         ( (i & ui64_C(0x0000FF0000000000)) >> 24 ) |
102         ( (i & ui64_C(0x00000000FF000000)) << 8  ) |
103         ( (i & ui64_C(0x000000FF00000000)) >> 8  );
104     }
105
106   //
107   template<class T>
108     inline T xmin(T lhs, T rhs) {
109     return (lhs < rhs) ? lhs : rhs;
110   }
111
112   //
113   template<class T>
114     inline T xmax(T lhs, T rhs) {
115     return (lhs > rhs) ? lhs : rhs;
116   }
117
118   //
119   template<class T>
120     inline T xclamp(T v, T l, T h) {
121     if ( v < l ) return l;
122     if ( v > h ) return h;
123     return v;
124   }
125
126
127   // read an integer from byte-structured storage
128   template<class T>
129   inline T    cp2i(const byte_t* p) { return *(T*)p; }
130
131   // write an integer to byte-structured storage
132   template<class T>
133   inline void i2p(T i, byte_t* p) { *(T*)p = i; }
134
135 # ifdef KM_BIG_ENDIAN
136 #  define KM_i16_LE(i)        Kumu::Swap2(i)
137 #  define KM_i32_LE(i)        Kumu::Swap4(i)
138 #  define KM_i64_LE(i)        Kumu::Swap8(i)
139 #  define KM_i16_BE(i)        (i)
140 #  define KM_i32_BE(i)        (i)
141 #  define KM_i64_BE(i)        (i)
142 # else
143 #  define KM_i16_LE(i)        (i)
144 #  define KM_i32_LE(i)        (i)
145 #  define KM_i64_LE(i)        (i)
146 #  define KM_i16_BE(i)        Kumu::Swap2(i)
147 #  define KM_i32_BE(i)        Kumu::Swap4(i)
148 #  define KM_i64_BE(i)        Kumu::Swap8(i)
149 # endif // KM_BIG_ENDIAN
150
151   // A non-reference counting, auto-delete container for internal
152   // member object pointers.
153   template <class T>
154     class mem_ptr
155     {
156       mem_ptr(T&);
157
158     protected:
159       T* m_p; // the thing we point to
160
161     public:
162       mem_ptr() : m_p(0) {}
163       mem_ptr(T* p) : m_p(p) {}
164       ~mem_ptr() { delete m_p; }
165
166       inline T&   operator*()  const { return *m_p; }
167       inline T*   operator->() const { return m_p; }
168       inline      operator T*()const { return m_p; }
169       inline const mem_ptr<T>& operator=(T* p) { this->set(p); return *this; }
170       inline T*   set(T* p)          { delete m_p; m_p = p; return m_p; }
171       inline T*   get()        const { return m_p; }
172       inline void release()          { m_p = 0; }
173       inline bool empty()      const { return m_p == 0; }
174     };
175
176 } // namespace Kumu
177
178 // Produces copy constructor boilerplate. Allows convenient private
179 // declatarion of copy constructors to prevent the compiler from
180 // silently manufacturing default methods.
181 # define KM_NO_COPY_CONSTRUCT(T)   \
182           T(const T&); \
183           T& operator=(const T&)
184
185 #endif // _KM_PLATFORM_H_
186
187 //
188 // KM_platform.h
189 //