]>
Commit | Line | Data |
---|---|---|
8b81872f VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/longlong.h | |
3 | // Purpose: declaration of wxLongLong class - best implementation of a 64 | |
4 | // bit integer for the current platform. | |
5 | // Author: Jeffrey C. Ollie <jeff@ollie.clive.ia.us>, Vadim Zeitlin | |
8b81872f VZ |
6 | // Modified by: |
7 | // Created: 10.02.99 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
10 | // Licence: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | #ifndef _WX_LONGLONG_H | |
14 | #define _WX_LONGLONG_H | |
15 | ||
16 | #ifdef __GNUG__ | |
17 | #pragma interface "longlong.h" | |
18 | #endif | |
19 | ||
1ef54dcf | 20 | #include "wx/defs.h" |
3a994742 | 21 | #include "wx/string.h" |
1ef54dcf VZ |
22 | |
23 | #include <limits.h> // for LONG_MAX | |
24 | ||
2a310492 VZ |
25 | // define this to compile wxLongLongWx in "test" mode: the results of all |
26 | // calculations will be compared with the real results taken from | |
617ec456 VZ |
27 | // wxLongLongNative -- this is extremely useful to find the bugs in |
28 | // wxLongLongWx class! | |
29 | ||
f6bcfd97 | 30 | // #define wxLONGLONG_TEST_MODE |
2a310492 VZ |
31 | |
32 | #ifdef wxLONGLONG_TEST_MODE | |
33 | #define wxUSE_LONGLONG_WX 1 | |
34 | #define wxUSE_LONGLONG_NATIVE 1 | |
35 | #endif // wxLONGLONG_TEST_MODE | |
2ea24d9f | 36 | |
8b81872f VZ |
37 | // ---------------------------------------------------------------------------- |
38 | // decide upon which class we will use | |
39 | // ---------------------------------------------------------------------------- | |
40 | ||
41 | // to avoid compilation problems on 64bit machines with ambiguous method calls | |
2f02cb89 | 42 | // we will need to define this |
8b81872f VZ |
43 | #undef wxLongLongIsLong |
44 | ||
45 | // NB: we #define and not typedef wxLongLong_t because we want to be able to | |
2f02cb89 VZ |
46 | // use 'unsigned wxLongLong_t' as well and because we use "#ifdef |
47 | // wxLongLong_t" below | |
8db6ac55 VZ |
48 | |
49 | // first check for generic cases which are long on 64bit machine and "long | |
50 | // long", then check for specific compilers | |
8b81872f VZ |
51 | #if defined(SIZEOF_LONG) && (SIZEOF_LONG == 8) |
52 | #define wxLongLong_t long | |
53 | #define wxLongLongIsLong | |
cd0b1709 | 54 | #elif (defined(__VISUALC__) && defined(__WIN32__)) || defined( __VMS__ ) |
8b81872f | 55 | #define wxLongLong_t __int64 |
f6bcfd97 | 56 | #elif defined(__BORLANDC__) && defined(__WIN32__) && (__BORLANDC__ >= 0x520) |
ad0dc53b | 57 | #define wxLongLong_t __int64 |
5bf2abe3 RD |
58 | #elif defined(SIZEOF_LONG_LONG) && SIZEOF_LONG_LONG >= 8 |
59 | #define wxLongLong_t long long | |
c67d6888 | 60 | #elif defined(__MINGW32__) || defined(__CYGWIN__) || defined(__WXMICROWIN__) |
b2a9ee30 | 61 | #define wxLongLong_t long long |
8b81872f VZ |
62 | #elif defined(__MWERKS__) |
63 | #if __option(longlong) | |
64 | #define wxLongLong_t long long | |
65 | #else | |
66 | #error "The 64 bit integer support in CodeWarrior has been disabled." | |
67 | #error "See the documentation on the 'longlong' pragma." | |
68 | #endif | |
398b582f DW |
69 | #elif defined(__VISAGECPP__) && __IBMCPP__ >= 400 |
70 | #define wxLongLong_t long long | |
92834365 VS |
71 | #elif defined(__DJGPP__) && __DJGPP__ >= 2 |
72 | #define wxLongLong_t long long | |
cd0b1709 | 73 | #else // no native long long type |
9c2882d9 | 74 | // both warning and pragma warning are not portable, but at least an |
58ef67ab VZ |
75 | // unknown pragma should never be an error - except that, actually, some |
76 | // broken compilers don't like it, so we have to disable it in this case | |
77 | // <sigh> | |
78 | #if !(defined(__WATCOMC__) || defined(__VISAGECPP__)) | |
9c2882d9 | 79 | #pragma warning "Your compiler does not appear to support 64 bit "\ |
58ef67ab VZ |
80 | "integers, using emulation class instead.\n" \ |
81 | "Please report your compiler version to " \ | |
82 | "wx-dev@lists.wxwindows.org!" | |
cff4a45c | 83 | #endif |
8db6ac55 | 84 | |
8b81872f VZ |
85 | #define wxUSE_LONGLONG_WX 1 |
86 | #endif // compiler | |
87 | ||
88 | // the user may predefine wxUSE_LONGLONG_NATIVE and/or wxUSE_LONGLONG_NATIVE | |
89 | // to disable automatic testing (useful for the test program which defines | |
90 | // both classes) but by default we only use one class | |
2ea24d9f | 91 | #if (defined(wxUSE_LONGLONG_WX) && wxUSE_LONGLONG_WX) || !defined(wxLongLong_t) |
2a310492 | 92 | // don't use both classes unless wxUSE_LONGLONG_NATIVE was explicitly set: |
384223b3 | 93 | // this is useful in test programs and only there |
2a310492 VZ |
94 | #ifndef wxUSE_LONGLONG_NATIVE |
95 | #define wxUSE_LONGLONG_NATIVE 0 | |
96 | #endif | |
97 | ||
8b81872f | 98 | class WXDLLEXPORT wxLongLongWx; |
d2ce649b | 99 | class WXDLLEXPORT wxULongLongWx; |
92f5ff59 JS |
100 | #if defined(__VISUALC__) && !defined(__WIN32__) |
101 | #define wxLongLong wxLongLongWx | |
8e38fd1f | 102 | #define wxULongLong wxULongLongWx |
92f5ff59 | 103 | #else |
8b81872f | 104 | typedef wxLongLongWx wxLongLong; |
8e38fd1f | 105 | typedef wxULongLongWx wxULongLong; |
92f5ff59 JS |
106 | #endif |
107 | ||
b76b015e VZ |
108 | #else |
109 | // if nothing is defined, use native implementation by default, of course | |
110 | #ifndef wxUSE_LONGLONG_NATIVE | |
111 | #define wxUSE_LONGLONG_NATIVE 1 | |
112 | #endif | |
8b81872f VZ |
113 | #endif |
114 | ||
115 | #ifndef wxUSE_LONGLONG_WX | |
116 | #define wxUSE_LONGLONG_WX 0 | |
117 | class WXDLLEXPORT wxLongLongNative; | |
8e38fd1f | 118 | class WXDLLEXPORT wxULongLongNative; |
8b81872f | 119 | typedef wxLongLongNative wxLongLong; |
8e38fd1f | 120 | typedef wxULongLongNative wxULongLong; |
8b81872f VZ |
121 | #endif |
122 | ||
123 | // NB: if both wxUSE_LONGLONG_WX and NATIVE are defined, the user code should | |
124 | // typedef wxLongLong as it wants, we don't do it | |
125 | ||
126 | // ---------------------------------------------------------------------------- | |
127 | // choose the appropriate class | |
128 | // ---------------------------------------------------------------------------- | |
129 | ||
130 | // we use iostream for wxLongLong output | |
131 | #include "wx/ioswrap.h" | |
132 | ||
133 | #if wxUSE_LONGLONG_NATIVE | |
134 | ||
135 | class WXDLLEXPORT wxLongLongNative | |
136 | { | |
137 | public: | |
138 | // ctors | |
139 | // default ctor initializes to 0 | |
2e403d6d | 140 | wxLongLongNative() : m_ll(0) { } |
8b81872f | 141 | // from long long |
2e403d6d | 142 | wxLongLongNative(wxLongLong_t ll) : m_ll(ll) { } |
8b81872f | 143 | // from 2 longs |
2e403d6d | 144 | wxLongLongNative(long hi, unsigned long lo) : m_ll(0) |
8b81872f VZ |
145 | { |
146 | // assign first to avoid precision loss! | |
147 | m_ll = ((wxLongLong_t) hi) << 32; | |
148 | m_ll |= (wxLongLong_t) lo; | |
149 | } | |
150 | ||
2f02cb89 | 151 | // default copy ctor is ok |
8b81872f VZ |
152 | |
153 | // no dtor | |
154 | ||
155 | // assignment operators | |
156 | // from native 64 bit integer | |
157 | wxLongLongNative& operator=(wxLongLong_t ll) | |
158 | { m_ll = ll; return *this; } | |
159 | ||
cd0b1709 VZ |
160 | // from double: this one has an explicit name because otherwise we |
161 | // would have ambiguity with "ll = int" and also because we don't want | |
162 | // to have implicit conversions between doubles and wxLongLongs | |
163 | wxLongLongNative& Assign(double d) | |
164 | { m_ll = (wxLongLong_t)d; return *this; } | |
165 | ||
8b81872f VZ |
166 | // assignment operators from wxLongLongNative is ok |
167 | ||
168 | // accessors | |
169 | // get high part | |
170 | long GetHi() const | |
2f02cb89 | 171 | { return (long)(m_ll >> 32); } |
8b81872f VZ |
172 | // get low part |
173 | unsigned long GetLo() const | |
2f02cb89 | 174 | { return (unsigned long)m_ll; } |
8b81872f | 175 | |
b76b015e | 176 | // get absolute value |
2ea24d9f | 177 | wxLongLongNative Abs() const { return wxLongLongNative(*this).Abs(); } |
b76b015e VZ |
178 | wxLongLongNative& Abs() { if ( m_ll < 0 ) m_ll = -m_ll; return *this; } |
179 | ||
8b81872f VZ |
180 | // convert to native long long |
181 | wxLongLong_t GetValue() const { return m_ll; } | |
182 | ||
1ef54dcf VZ |
183 | // convert to long with range checking in the debug mode (only!) |
184 | long ToLong() const | |
185 | { | |
186 | wxASSERT_MSG( (m_ll >= LONG_MIN) && (m_ll <= LONG_MAX), | |
187 | _T("wxLongLong to long conversion loss of precision") ); | |
188 | ||
189 | return (long)m_ll; | |
190 | } | |
191 | ||
2f02cb89 VZ |
192 | // don't provide implicit conversion to wxLongLong_t or we will have an |
193 | // ambiguity for all arithmetic operations | |
b76b015e | 194 | //operator wxLongLong_t() const { return m_ll; } |
8b81872f VZ |
195 | |
196 | // operations | |
197 | // addition | |
198 | wxLongLongNative operator+(const wxLongLongNative& ll) const | |
199 | { return wxLongLongNative(m_ll + ll.m_ll); } | |
200 | wxLongLongNative& operator+=(const wxLongLongNative& ll) | |
201 | { m_ll += ll.m_ll; return *this; } | |
202 | ||
203 | wxLongLongNative operator+(const wxLongLong_t ll) const | |
204 | { return wxLongLongNative(m_ll + ll); } | |
205 | wxLongLongNative& operator+=(const wxLongLong_t ll) | |
206 | { m_ll += ll; return *this; } | |
207 | ||
208 | // pre increment | |
209 | wxLongLongNative& operator++() | |
210 | { m_ll++; return *this; } | |
211 | ||
212 | // post increment | |
2e403d6d GD |
213 | wxLongLongNative operator++(int) |
214 | { wxLongLongNative value(*this); m_ll++; return value; } | |
8b81872f VZ |
215 | |
216 | // negation operator | |
217 | wxLongLongNative operator-() const | |
218 | { return wxLongLongNative(-m_ll); } | |
3a994742 | 219 | wxLongLongNative& Negate() { m_ll = -m_ll; return *this; } |
8b81872f VZ |
220 | |
221 | // subtraction | |
222 | wxLongLongNative operator-(const wxLongLongNative& ll) const | |
223 | { return wxLongLongNative(m_ll - ll.m_ll); } | |
224 | wxLongLongNative& operator-=(const wxLongLongNative& ll) | |
225 | { m_ll -= ll.m_ll; return *this; } | |
226 | ||
227 | wxLongLongNative operator-(const wxLongLong_t ll) const | |
228 | { return wxLongLongNative(m_ll - ll); } | |
229 | wxLongLongNative& operator-=(const wxLongLong_t ll) | |
230 | { m_ll -= ll; return *this; } | |
231 | ||
232 | // pre decrement | |
233 | wxLongLongNative& operator--() | |
234 | { m_ll--; return *this; } | |
235 | ||
236 | // post decrement | |
2e403d6d GD |
237 | wxLongLongNative operator--(int) |
238 | { wxLongLongNative value(*this); m_ll--; return value; } | |
8b81872f VZ |
239 | |
240 | // shifts | |
241 | // left shift | |
242 | wxLongLongNative operator<<(int shift) const | |
243 | { return wxLongLongNative(m_ll << shift);; } | |
244 | wxLongLongNative& operator<<=(int shift) | |
245 | { m_ll <<= shift; return *this; } | |
246 | ||
247 | // right shift | |
248 | wxLongLongNative operator>>(int shift) const | |
249 | { return wxLongLongNative(m_ll >> shift);; } | |
250 | wxLongLongNative& operator>>=(int shift) | |
251 | { m_ll >>= shift; return *this; } | |
252 | ||
253 | // bitwise operators | |
254 | wxLongLongNative operator&(const wxLongLongNative& ll) const | |
255 | { return wxLongLongNative(m_ll & ll.m_ll); } | |
256 | wxLongLongNative& operator&=(const wxLongLongNative& ll) | |
257 | { m_ll &= ll.m_ll; return *this; } | |
258 | ||
259 | wxLongLongNative operator|(const wxLongLongNative& ll) const | |
260 | { return wxLongLongNative(m_ll | ll.m_ll); } | |
261 | wxLongLongNative& operator|=(const wxLongLongNative& ll) | |
262 | { m_ll |= ll.m_ll; return *this; } | |
263 | ||
264 | wxLongLongNative operator^(const wxLongLongNative& ll) const | |
265 | { return wxLongLongNative(m_ll ^ ll.m_ll); } | |
266 | wxLongLongNative& operator^=(const wxLongLongNative& ll) | |
267 | { m_ll ^= ll.m_ll; return *this; } | |
268 | ||
b76b015e | 269 | // multiplication/division |
8b81872f VZ |
270 | wxLongLongNative operator*(const wxLongLongNative& ll) const |
271 | { return wxLongLongNative(m_ll * ll.m_ll); } | |
2f02cb89 VZ |
272 | wxLongLongNative operator*(long l) const |
273 | { return wxLongLongNative(m_ll * l); } | |
8b81872f VZ |
274 | wxLongLongNative& operator*=(const wxLongLongNative& ll) |
275 | { m_ll *= ll.m_ll; return *this; } | |
2f02cb89 VZ |
276 | wxLongLongNative& operator*=(long l) |
277 | { m_ll *= l; return *this; } | |
8b81872f VZ |
278 | |
279 | wxLongLongNative operator/(const wxLongLongNative& ll) const | |
280 | { return wxLongLongNative(m_ll / ll.m_ll); } | |
b76b015e VZ |
281 | wxLongLongNative operator/(long l) const |
282 | { return wxLongLongNative(m_ll / l); } | |
8b81872f VZ |
283 | wxLongLongNative& operator/=(const wxLongLongNative& ll) |
284 | { m_ll /= ll.m_ll; return *this; } | |
2f02cb89 VZ |
285 | wxLongLongNative& operator/=(long l) |
286 | { m_ll /= l; return *this; } | |
8b81872f VZ |
287 | |
288 | wxLongLongNative operator%(const wxLongLongNative& ll) const | |
289 | { return wxLongLongNative(m_ll % ll.m_ll); } | |
b76b015e VZ |
290 | wxLongLongNative operator%(long l) const |
291 | { return wxLongLongNative(m_ll % l); } | |
8b81872f VZ |
292 | |
293 | // comparison | |
294 | bool operator==(const wxLongLongNative& ll) const | |
295 | { return m_ll == ll.m_ll; } | |
b76b015e VZ |
296 | bool operator==(long l) const |
297 | { return m_ll == l; } | |
8b81872f VZ |
298 | bool operator!=(const wxLongLongNative& ll) const |
299 | { return m_ll != ll.m_ll; } | |
b76b015e VZ |
300 | bool operator!=(long l) const |
301 | { return m_ll != l; } | |
8b81872f VZ |
302 | bool operator<(const wxLongLongNative& ll) const |
303 | { return m_ll < ll.m_ll; } | |
b76b015e VZ |
304 | bool operator<(long l) const |
305 | { return m_ll < l; } | |
8b81872f VZ |
306 | bool operator>(const wxLongLongNative& ll) const |
307 | { return m_ll > ll.m_ll; } | |
b76b015e VZ |
308 | bool operator>(long l) const |
309 | { return m_ll > l; } | |
8b81872f VZ |
310 | bool operator<=(const wxLongLongNative& ll) const |
311 | { return m_ll <= ll.m_ll; } | |
b76b015e VZ |
312 | bool operator<=(long l) const |
313 | { return m_ll <= l; } | |
8b81872f VZ |
314 | bool operator>=(const wxLongLongNative& ll) const |
315 | { return m_ll >= ll.m_ll; } | |
b76b015e VZ |
316 | bool operator>=(long l) const |
317 | { return m_ll >= l; } | |
8b81872f VZ |
318 | |
319 | // miscellaneous | |
3a994742 VZ |
320 | |
321 | // return the string representation of this number | |
322 | wxString ToString() const; | |
323 | ||
8b81872f VZ |
324 | // conversion to byte array: returns a pointer to static buffer! |
325 | void *asArray() const; | |
326 | ||
fcc3d7cb | 327 | #if wxUSE_STD_IOSTREAM |
8b81872f | 328 | // input/output |
dd107c50 | 329 | friend wxSTD ostream& operator<<(wxSTD ostream&, const wxLongLongNative&); |
fcc3d7cb | 330 | #endif |
8b81872f VZ |
331 | |
332 | private: | |
333 | wxLongLong_t m_ll; | |
334 | }; | |
335 | ||
8e38fd1f RL |
336 | |
337 | class WXDLLEXPORT wxULongLongNative | |
338 | { | |
339 | public: | |
340 | // ctors | |
341 | // default ctor initializes to 0 | |
2e403d6d | 342 | wxULongLongNative() : m_ll(0) { } |
8e38fd1f | 343 | // from long long |
2e403d6d | 344 | wxULongLongNative(unsigned wxLongLong_t ll) : m_ll(ll) { } |
8e38fd1f | 345 | // from 2 longs |
2e403d6d | 346 | wxULongLongNative(unsigned long hi, unsigned long lo) : m_ll(0) |
8e38fd1f RL |
347 | { |
348 | // assign first to avoid precision loss! | |
349 | m_ll = ((unsigned wxLongLong_t) hi) << 32; | |
350 | m_ll |= (unsigned wxLongLong_t) lo; | |
351 | } | |
352 | ||
353 | // default copy ctor is ok | |
354 | ||
355 | // no dtor | |
356 | ||
357 | // assignment operators | |
358 | // from native 64 bit integer | |
359 | wxULongLongNative& operator=(unsigned wxLongLong_t ll) | |
360 | { m_ll = ll; return *this; } | |
361 | ||
362 | // assignment operators from wxULongLongNative is ok | |
363 | ||
364 | // accessors | |
365 | // get high part | |
366 | unsigned long GetHi() const | |
367 | { return (unsigned long)(m_ll >> 32); } | |
368 | // get low part | |
369 | unsigned long GetLo() const | |
370 | { return (unsigned long)m_ll; } | |
371 | ||
372 | // convert to native ulong long | |
373 | unsigned wxLongLong_t GetValue() const { return m_ll; } | |
374 | ||
375 | // convert to ulong with range checking in the debug mode (only!) | |
376 | unsigned long ToULong() const | |
377 | { | |
0ba9f867 | 378 | wxASSERT_MSG( m_ll <= LONG_MAX, |
8e38fd1f RL |
379 | _T("wxULongLong to long conversion loss of precision") ); |
380 | ||
381 | return (unsigned long)m_ll; | |
382 | } | |
383 | ||
8e38fd1f RL |
384 | // operations |
385 | // addition | |
386 | wxULongLongNative operator+(const wxULongLongNative& ll) const | |
387 | { return wxULongLongNative(m_ll + ll.m_ll); } | |
388 | wxULongLongNative& operator+=(const wxULongLongNative& ll) | |
389 | { m_ll += ll.m_ll; return *this; } | |
390 | ||
391 | wxULongLongNative operator+(const unsigned wxLongLong_t ll) const | |
392 | { return wxULongLongNative(m_ll + ll); } | |
393 | wxULongLongNative& operator+=(const unsigned wxLongLong_t ll) | |
394 | { m_ll += ll; return *this; } | |
395 | ||
396 | // pre increment | |
397 | wxULongLongNative& operator++() | |
398 | { m_ll++; return *this; } | |
399 | ||
400 | // post increment | |
2e403d6d GD |
401 | wxULongLongNative operator++(int) |
402 | { wxULongLongNative value(*this); m_ll++; return value; } | |
8e38fd1f RL |
403 | |
404 | // subtraction | |
405 | wxULongLongNative operator-(const wxULongLongNative& ll) const | |
406 | { return wxULongLongNative(m_ll - ll.m_ll); } | |
407 | wxULongLongNative& operator-=(const wxULongLongNative& ll) | |
408 | { m_ll -= ll.m_ll; return *this; } | |
409 | ||
410 | wxULongLongNative operator-(const unsigned wxLongLong_t ll) const | |
411 | { return wxULongLongNative(m_ll - ll); } | |
412 | wxULongLongNative& operator-=(const unsigned wxLongLong_t ll) | |
413 | { m_ll -= ll; return *this; } | |
414 | ||
415 | // pre decrement | |
416 | wxULongLongNative& operator--() | |
417 | { m_ll--; return *this; } | |
418 | ||
419 | // post decrement | |
2e403d6d GD |
420 | wxULongLongNative operator--(int) |
421 | { wxULongLongNative value(*this); m_ll--; return value; } | |
8e38fd1f RL |
422 | |
423 | // shifts | |
424 | // left shift | |
425 | wxULongLongNative operator<<(int shift) const | |
426 | { return wxULongLongNative(m_ll << shift);; } | |
427 | wxULongLongNative& operator<<=(int shift) | |
428 | { m_ll <<= shift; return *this; } | |
429 | ||
430 | // right shift | |
431 | wxULongLongNative operator>>(int shift) const | |
432 | { return wxULongLongNative(m_ll >> shift);; } | |
433 | wxULongLongNative& operator>>=(int shift) | |
434 | { m_ll >>= shift; return *this; } | |
435 | ||
436 | // bitwise operators | |
437 | wxULongLongNative operator&(const wxULongLongNative& ll) const | |
438 | { return wxULongLongNative(m_ll & ll.m_ll); } | |
439 | wxULongLongNative& operator&=(const wxULongLongNative& ll) | |
440 | { m_ll &= ll.m_ll; return *this; } | |
441 | ||
442 | wxULongLongNative operator|(const wxULongLongNative& ll) const | |
443 | { return wxULongLongNative(m_ll | ll.m_ll); } | |
444 | wxULongLongNative& operator|=(const wxULongLongNative& ll) | |
445 | { m_ll |= ll.m_ll; return *this; } | |
446 | ||
447 | wxULongLongNative operator^(const wxULongLongNative& ll) const | |
448 | { return wxULongLongNative(m_ll ^ ll.m_ll); } | |
449 | wxULongLongNative& operator^=(const wxULongLongNative& ll) | |
450 | { m_ll ^= ll.m_ll; return *this; } | |
451 | ||
452 | // multiplication/division | |
453 | wxULongLongNative operator*(const wxULongLongNative& ll) const | |
454 | { return wxULongLongNative(m_ll * ll.m_ll); } | |
455 | wxULongLongNative operator*(unsigned long l) const | |
456 | { return wxULongLongNative(m_ll * l); } | |
457 | wxULongLongNative& operator*=(const wxULongLongNative& ll) | |
458 | { m_ll *= ll.m_ll; return *this; } | |
459 | wxULongLongNative& operator*=(unsigned long l) | |
460 | { m_ll *= l; return *this; } | |
461 | ||
462 | wxULongLongNative operator/(const wxULongLongNative& ll) const | |
463 | { return wxULongLongNative(m_ll / ll.m_ll); } | |
464 | wxULongLongNative operator/(unsigned long l) const | |
465 | { return wxULongLongNative(m_ll / l); } | |
466 | wxULongLongNative& operator/=(const wxULongLongNative& ll) | |
467 | { m_ll /= ll.m_ll; return *this; } | |
468 | wxULongLongNative& operator/=(unsigned long l) | |
469 | { m_ll /= l; return *this; } | |
470 | ||
471 | wxULongLongNative operator%(const wxULongLongNative& ll) const | |
472 | { return wxULongLongNative(m_ll % ll.m_ll); } | |
473 | wxULongLongNative operator%(unsigned long l) const | |
474 | { return wxULongLongNative(m_ll % l); } | |
475 | ||
476 | // comparison | |
477 | bool operator==(const wxULongLongNative& ll) const | |
478 | { return m_ll == ll.m_ll; } | |
479 | bool operator==(unsigned long l) const | |
480 | { return m_ll == l; } | |
481 | bool operator!=(const wxULongLongNative& ll) const | |
482 | { return m_ll != ll.m_ll; } | |
483 | bool operator!=(unsigned long l) const | |
484 | { return m_ll != l; } | |
485 | bool operator<(const wxULongLongNative& ll) const | |
486 | { return m_ll < ll.m_ll; } | |
487 | bool operator<(unsigned long l) const | |
488 | { return m_ll < l; } | |
489 | bool operator>(const wxULongLongNative& ll) const | |
490 | { return m_ll > ll.m_ll; } | |
491 | bool operator>(unsigned long l) const | |
492 | { return m_ll > l; } | |
493 | bool operator<=(const wxULongLongNative& ll) const | |
494 | { return m_ll <= ll.m_ll; } | |
495 | bool operator<=(unsigned long l) const | |
496 | { return m_ll <= l; } | |
497 | bool operator>=(const wxULongLongNative& ll) const | |
498 | { return m_ll >= ll.m_ll; } | |
499 | bool operator>=(unsigned long l) const | |
500 | { return m_ll >= l; } | |
501 | ||
502 | // miscellaneous | |
503 | ||
504 | // return the string representation of this number | |
505 | wxString ToString() const; | |
506 | ||
507 | // conversion to byte array: returns a pointer to static buffer! | |
508 | void *asArray() const; | |
509 | ||
510 | #if wxUSE_STD_IOSTREAM | |
511 | // input/output | |
512 | friend wxSTD ostream& operator<<(wxSTD ostream&, const wxULongLongNative&); | |
513 | #endif | |
514 | ||
515 | private: | |
516 | unsigned wxLongLong_t m_ll; | |
517 | }; | |
518 | ||
8b81872f VZ |
519 | #endif // wxUSE_LONGLONG_NATIVE |
520 | ||
521 | #if wxUSE_LONGLONG_WX | |
522 | ||
523 | class WXDLLEXPORT wxLongLongWx | |
524 | { | |
525 | public: | |
526 | // ctors | |
527 | // default ctor initializes to 0 | |
2a310492 VZ |
528 | wxLongLongWx() |
529 | { | |
530 | m_lo = m_hi = 0; | |
531 | ||
532 | #ifdef wxLONGLONG_TEST_MODE | |
533 | m_ll = 0; | |
534 | ||
535 | Check(); | |
536 | #endif // wxLONGLONG_TEST_MODE | |
537 | } | |
8b81872f | 538 | // from long |
2a310492 | 539 | wxLongLongWx(long l) { *this = l; } |
8b81872f VZ |
540 | // from 2 longs |
541 | wxLongLongWx(long hi, unsigned long lo) | |
2a310492 VZ |
542 | { |
543 | m_hi = hi; | |
544 | m_lo = lo; | |
545 | ||
546 | #ifdef wxLONGLONG_TEST_MODE | |
547 | m_ll = hi; | |
548 | m_ll <<= 32; | |
549 | m_ll |= lo; | |
550 | ||
551 | Check(); | |
552 | #endif // wxLONGLONG_TEST_MODE | |
553 | } | |
8b81872f VZ |
554 | |
555 | // default copy ctor is ok in both cases | |
556 | ||
557 | // no dtor | |
558 | ||
559 | // assignment operators | |
560 | // from long | |
561 | wxLongLongWx& operator=(long l) | |
2a310492 VZ |
562 | { |
563 | m_lo = l; | |
564 | m_hi = (l < 0 ? -1l : 0l); | |
565 | ||
566 | #ifdef wxLONGLONG_TEST_MODE | |
567 | m_ll = l; | |
568 | ||
569 | Check(); | |
570 | #endif // wxLONGLONG_TEST_MODE | |
571 | ||
572 | return *this; | |
573 | } | |
cd0b1709 VZ |
574 | // from double |
575 | wxLongLongWx& Assign(double d); | |
8b81872f VZ |
576 | // can't have assignment operator from 2 longs |
577 | ||
578 | // accessors | |
579 | // get high part | |
580 | long GetHi() const { return m_hi; } | |
581 | // get low part | |
582 | unsigned long GetLo() const { return m_lo; } | |
583 | ||
cd0b1709 | 584 | // get absolute value |
2ea24d9f | 585 | wxLongLongWx Abs() const { return wxLongLongWx(*this).Abs(); } |
2a310492 VZ |
586 | wxLongLongWx& Abs() |
587 | { | |
588 | if ( m_hi < 0 ) | |
589 | m_hi = -m_hi; | |
590 | ||
591 | #ifdef wxLONGLONG_TEST_MODE | |
592 | if ( m_ll < 0 ) | |
593 | m_ll = -m_ll; | |
594 | ||
595 | Check(); | |
596 | #endif // wxLONGLONG_TEST_MODE | |
597 | ||
598 | return *this; | |
599 | } | |
cd0b1709 VZ |
600 | |
601 | // convert to long with range checking in the debug mode (only!) | |
602 | long ToLong() const | |
603 | { | |
2a310492 | 604 | wxASSERT_MSG( (m_hi == 0l) || (m_hi == -1l), |
cd0b1709 VZ |
605 | _T("wxLongLong to long conversion loss of precision") ); |
606 | ||
607 | return (long)m_lo; | |
608 | } | |
609 | ||
8b81872f VZ |
610 | // operations |
611 | // addition | |
612 | wxLongLongWx operator+(const wxLongLongWx& ll) const; | |
613 | wxLongLongWx& operator+=(const wxLongLongWx& ll); | |
614 | wxLongLongWx operator+(long l) const; | |
615 | wxLongLongWx& operator+=(long l); | |
616 | ||
617 | // pre increment operator | |
618 | wxLongLongWx& operator++(); | |
619 | ||
620 | // post increment operator | |
2a310492 | 621 | wxLongLongWx& operator++(int) { return ++(*this); } |
8b81872f VZ |
622 | |
623 | // negation operator | |
624 | wxLongLongWx operator-() const; | |
2a310492 | 625 | wxLongLongWx& Negate(); |
8b81872f VZ |
626 | |
627 | // subraction | |
628 | wxLongLongWx operator-(const wxLongLongWx& ll) const; | |
629 | wxLongLongWx& operator-=(const wxLongLongWx& ll); | |
630 | ||
631 | // pre decrement operator | |
632 | wxLongLongWx& operator--(); | |
633 | ||
634 | // post decrement operator | |
2a310492 | 635 | wxLongLongWx& operator--(int) { return --(*this); } |
8b81872f VZ |
636 | |
637 | // shifts | |
638 | // left shift | |
639 | wxLongLongWx operator<<(int shift) const; | |
640 | wxLongLongWx& operator<<=(int shift); | |
641 | ||
642 | // right shift | |
643 | wxLongLongWx operator>>(int shift) const; | |
644 | wxLongLongWx& operator>>=(int shift); | |
645 | ||
646 | // bitwise operators | |
647 | wxLongLongWx operator&(const wxLongLongWx& ll) const; | |
648 | wxLongLongWx& operator&=(const wxLongLongWx& ll); | |
649 | wxLongLongWx operator|(const wxLongLongWx& ll) const; | |
650 | wxLongLongWx& operator|=(const wxLongLongWx& ll); | |
651 | wxLongLongWx operator^(const wxLongLongWx& ll) const; | |
652 | wxLongLongWx& operator^=(const wxLongLongWx& ll); | |
653 | wxLongLongWx operator~() const; | |
654 | ||
655 | // comparison | |
2ea24d9f VZ |
656 | bool operator==(const wxLongLongWx& ll) const |
657 | { return m_lo == ll.m_lo && m_hi == ll.m_hi; } | |
658 | bool operator!=(const wxLongLongWx& ll) const | |
659 | { return !(*this == ll); } | |
8b81872f VZ |
660 | bool operator<(const wxLongLongWx& ll) const; |
661 | bool operator>(const wxLongLongWx& ll) const; | |
2ea24d9f VZ |
662 | bool operator<=(const wxLongLongWx& ll) const |
663 | { return *this < ll || *this == ll; } | |
664 | bool operator>=(const wxLongLongWx& ll) const | |
665 | { return *this > ll || *this == ll; } | |
8b81872f | 666 | |
f6bcfd97 BP |
667 | bool operator<(long l) const { return *this < wxLongLongWx(l); } |
668 | bool operator>(long l) const { return *this > wxLongLongWx(l); } | |
669 | bool operator==(long l) const | |
670 | { | |
671 | return l >= 0 ? (m_hi == 0 && m_lo == (unsigned long)l) | |
672 | : (m_hi == -1 && m_lo == (unsigned long)l); | |
673 | } | |
674 | ||
675 | bool operator<=(long l) const { return *this < l || *this == l; } | |
676 | bool operator>=(long l) const { return *this > l || *this == l; } | |
677 | ||
8b81872f VZ |
678 | // multiplication |
679 | wxLongLongWx operator*(const wxLongLongWx& ll) const; | |
680 | wxLongLongWx& operator*=(const wxLongLongWx& ll); | |
8b81872f VZ |
681 | |
682 | // division | |
cd0b1709 VZ |
683 | wxLongLongWx operator/(const wxLongLongWx& ll) const; |
684 | wxLongLongWx& operator/=(const wxLongLongWx& ll); | |
685 | ||
686 | wxLongLongWx operator%(const wxLongLongWx& ll) const; | |
687 | ||
8b81872f VZ |
688 | void Divide(const wxLongLongWx& divisor, |
689 | wxLongLongWx& quotient, | |
690 | wxLongLongWx& remainder) const; | |
691 | ||
692 | // input/output | |
3a994742 VZ |
693 | |
694 | // return the string representation of this number | |
695 | wxString ToString() const; | |
696 | ||
697 | void *asArray() const; | |
698 | ||
cd0b1709 | 699 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 700 | friend wxSTD ostream& operator<<(wxSTD ostream&, const wxLongLongWx&); |
fcc3d7cb | 701 | #endif // wxUSE_STD_IOSTREAM |
8b81872f VZ |
702 | |
703 | private: | |
704 | // long is at least 32 bits, so represent our 64bit number as 2 longs | |
705 | ||
706 | long m_hi; // signed bit is in the high part | |
707 | unsigned long m_lo; | |
2a310492 VZ |
708 | |
709 | #ifdef wxLONGLONG_TEST_MODE | |
710 | void Check() | |
711 | { | |
712 | wxASSERT( (m_ll >> 32) == m_hi && (unsigned long)m_ll == m_lo ); | |
713 | } | |
714 | ||
715 | wxLongLong_t m_ll; | |
716 | #endif // wxLONGLONG_TEST_MODE | |
8b81872f VZ |
717 | }; |
718 | ||
8e38fd1f RL |
719 | |
720 | class WXDLLEXPORT wxULongLongWx | |
721 | { | |
722 | public: | |
723 | // ctors | |
724 | // default ctor initializes to 0 | |
725 | wxULongLongWx() | |
726 | { | |
727 | m_lo = m_hi = 0; | |
728 | ||
729 | #ifdef wxLONGLONG_TEST_MODE | |
730 | m_ll = 0; | |
731 | ||
732 | Check(); | |
733 | #endif // wxLONGLONG_TEST_MODE | |
734 | } | |
735 | // from ulong | |
736 | wxULongLongWx(unsigned long l) { *this = l; } | |
737 | // from 2 ulongs | |
738 | wxULongLongWx(unsigned long hi, unsigned long lo) | |
739 | { | |
740 | m_hi = hi; | |
741 | m_lo = lo; | |
742 | ||
743 | #ifdef wxLONGLONG_TEST_MODE | |
744 | m_ll = hi; | |
745 | m_ll <<= 32; | |
746 | m_ll |= lo; | |
747 | ||
748 | Check(); | |
749 | #endif // wxLONGLONG_TEST_MODE | |
750 | } | |
751 | ||
752 | // default copy ctor is ok in both cases | |
753 | ||
754 | // no dtor | |
755 | ||
756 | // assignment operators | |
757 | // from long | |
758 | wxULongLongWx& operator=(unsigned long l) | |
759 | { | |
760 | m_lo = l; | |
761 | m_hi = 0; | |
762 | ||
763 | #ifdef wxLONGLONG_TEST_MODE | |
764 | m_ll = l; | |
765 | ||
766 | Check(); | |
767 | #endif // wxLONGLONG_TEST_MODE | |
768 | ||
769 | return *this; | |
770 | } | |
771 | ||
772 | // can't have assignment operator from 2 longs | |
773 | ||
774 | // accessors | |
775 | // get high part | |
776 | unsigned long GetHi() const { return m_hi; } | |
777 | // get low part | |
778 | unsigned long GetLo() const { return m_lo; } | |
779 | ||
780 | // convert to long with range checking in the debug mode (only!) | |
781 | unsigned long ToULong() const | |
782 | { | |
d7997e1a | 783 | wxASSERT_MSG( m_hi == 0ul, |
8e38fd1f RL |
784 | _T("wxULongLong to long conversion loss of precision") ); |
785 | ||
786 | return (unsigned long)m_lo; | |
787 | } | |
788 | ||
789 | // operations | |
790 | // addition | |
791 | wxULongLongWx operator+(const wxULongLongWx& ll) const; | |
792 | wxULongLongWx& operator+=(const wxULongLongWx& ll); | |
793 | wxULongLongWx operator+(unsigned long l) const; | |
794 | wxULongLongWx& operator+=(unsigned long l); | |
795 | ||
796 | // pre increment operator | |
797 | wxULongLongWx& operator++(); | |
798 | ||
799 | // post increment operator | |
800 | wxULongLongWx& operator++(int) { return ++(*this); } | |
801 | ||
d7997e1a | 802 | // subraction (FIXME: should return wxLongLong) |
8e38fd1f RL |
803 | wxULongLongWx operator-(const wxULongLongWx& ll) const; |
804 | wxULongLongWx& operator-=(const wxULongLongWx& ll); | |
805 | ||
806 | // pre decrement operator | |
807 | wxULongLongWx& operator--(); | |
808 | ||
809 | // post decrement operator | |
810 | wxULongLongWx& operator--(int) { return --(*this); } | |
811 | ||
812 | // shifts | |
813 | // left shift | |
814 | wxULongLongWx operator<<(int shift) const; | |
815 | wxULongLongWx& operator<<=(int shift); | |
816 | ||
817 | // right shift | |
818 | wxULongLongWx operator>>(int shift) const; | |
819 | wxULongLongWx& operator>>=(int shift); | |
820 | ||
821 | // bitwise operators | |
822 | wxULongLongWx operator&(const wxULongLongWx& ll) const; | |
823 | wxULongLongWx& operator&=(const wxULongLongWx& ll); | |
824 | wxULongLongWx operator|(const wxULongLongWx& ll) const; | |
825 | wxULongLongWx& operator|=(const wxULongLongWx& ll); | |
826 | wxULongLongWx operator^(const wxULongLongWx& ll) const; | |
827 | wxULongLongWx& operator^=(const wxULongLongWx& ll); | |
828 | wxULongLongWx operator~() const; | |
829 | ||
830 | // comparison | |
831 | bool operator==(const wxULongLongWx& ll) const | |
832 | { return m_lo == ll.m_lo && m_hi == ll.m_hi; } | |
833 | bool operator!=(const wxULongLongWx& ll) const | |
834 | { return !(*this == ll); } | |
835 | bool operator<(const wxULongLongWx& ll) const; | |
836 | bool operator>(const wxULongLongWx& ll) const; | |
837 | bool operator<=(const wxULongLongWx& ll) const | |
838 | { return *this < ll || *this == ll; } | |
839 | bool operator>=(const wxULongLongWx& ll) const | |
840 | { return *this > ll || *this == ll; } | |
841 | ||
842 | bool operator<(unsigned long l) const { return *this < wxULongLongWx(l); } | |
843 | bool operator>(unsigned long l) const { return *this > wxULongLongWx(l); } | |
844 | bool operator==(unsigned long l) const | |
845 | { | |
846 | return (m_hi == 0 && m_lo == (unsigned long)l); | |
847 | } | |
848 | ||
849 | bool operator<=(unsigned long l) const { return *this < l || *this == l; } | |
850 | bool operator>=(unsigned long l) const { return *this > l || *this == l; } | |
851 | ||
852 | // multiplication | |
853 | wxULongLongWx operator*(const wxULongLongWx& ll) const; | |
854 | wxULongLongWx& operator*=(const wxULongLongWx& ll); | |
855 | ||
856 | // division | |
857 | wxULongLongWx operator/(const wxULongLongWx& ll) const; | |
858 | wxULongLongWx& operator/=(const wxULongLongWx& ll); | |
859 | ||
860 | wxULongLongWx operator%(const wxULongLongWx& ll) const; | |
861 | ||
862 | void Divide(const wxULongLongWx& divisor, | |
863 | wxULongLongWx& quotient, | |
864 | wxULongLongWx& remainder) const; | |
865 | ||
866 | // input/output | |
867 | ||
868 | // return the string representation of this number | |
869 | wxString ToString() const; | |
870 | ||
871 | void *asArray() const; | |
872 | ||
873 | #if wxUSE_STD_IOSTREAM | |
874 | friend wxSTD ostream& operator<<(wxSTD ostream&, const wxULongLongWx&); | |
875 | #endif // wxUSE_STD_IOSTREAM | |
876 | ||
877 | private: | |
878 | // long is at least 32 bits, so represent our 64bit number as 2 longs | |
879 | ||
d2ce649b | 880 | unsigned long m_hi; |
8e38fd1f RL |
881 | unsigned long m_lo; |
882 | ||
883 | #ifdef wxLONGLONG_TEST_MODE | |
884 | void Check() | |
885 | { | |
886 | wxASSERT( (m_ll >> 32) == m_hi && (unsigned long)m_ll == m_lo ); | |
887 | } | |
888 | ||
889 | unsigned wxLongLong_t m_ll; | |
890 | #endif // wxLONGLONG_TEST_MODE | |
891 | }; | |
892 | ||
8b81872f VZ |
893 | #endif // wxUSE_LONGLONG_WX |
894 | ||
2ea24d9f VZ |
895 | // ---------------------------------------------------------------------------- |
896 | // binary operators | |
897 | // ---------------------------------------------------------------------------- | |
898 | ||
6d56eb5c | 899 | inline bool operator<(long l, const wxLongLong& ll) { return ll > l; } |
d7997e1a VZ |
900 | inline bool operator>(long l, const wxLongLong& ll) { return ll < l; } |
901 | inline bool operator<=(long l, const wxLongLong& ll) { return ll >= l; } | |
902 | inline bool operator>=(long l, const wxLongLong& ll) { return ll <= l; } | |
903 | inline bool operator==(long l, const wxLongLong& ll) { return ll == l; } | |
904 | inline bool operator!=(long l, const wxLongLong& ll) { return ll != l; } | |
b01fb5c3 | 905 | |
d7997e1a | 906 | inline wxLongLong operator+(long l, const wxLongLong& ll) { return ll + l; } |
b01fb5c3 VZ |
907 | inline wxLongLong operator-(long l, const wxLongLong& ll) |
908 | { | |
d7997e1a | 909 | return wxLongLong(l) - ll; |
b01fb5c3 | 910 | } |
2ea24d9f | 911 | |
d7997e1a VZ |
912 | inline bool operator<(unsigned long l, const wxULongLong& ull) { return ull > l; } |
913 | inline bool operator>(unsigned long l, const wxULongLong& ull) { return ull < l; } | |
914 | inline bool operator<=(unsigned long l, const wxULongLong& ull) { return ull >= l; } | |
915 | inline bool operator>=(unsigned long l, const wxULongLong& ull) { return ull <= l; } | |
916 | inline bool operator==(unsigned long l, const wxULongLong& ull) { return ull == l; } | |
917 | inline bool operator!=(unsigned long l, const wxULongLong& ull) { return ull != l; } | |
918 | ||
919 | inline wxULongLong operator+(unsigned long l, const wxULongLong& ull) { return ull + l; } | |
8e38fd1f | 920 | |
d7997e1a VZ |
921 | // FIXME: this should return wxLongLong |
922 | inline wxULongLong operator-(unsigned long l, const wxULongLong& ull) | |
923 | { | |
924 | return wxULongLong(l) - ull; | |
925 | } | |
8e38fd1f | 926 | |
8b81872f | 927 | #endif // _WX_LONGLONG_H |