-
Notifications
You must be signed in to change notification settings - Fork 94
/
common.h
112 lines (89 loc) · 1.95 KB
/
common.h
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
/****
* common.h
*
* Definitions common to all files.
*****/
#ifndef COMMON_H
#define COMMON_H
#undef NDEBUG
#if defined(_WIN32)
#include <Winsock2.h>
#endif
#include <iostream>
#include <memory>
#include <climits>
#include <cstdint>
#if defined(_MSC_VER)
// for and/or/not operators. not supported natively on MSVC
#include <BaseTsd.h>
#include <ciso646>
typedef SSIZE_T ssize_t;
#define STDOUT_FILENO 1
#define STDIN_FILENO 0
#define STDERR_FILENO 2
#endif
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <optional.hpp>
using nonstd::optional;
using nonstd::nullopt;
using nonstd::make_optional;
using std::make_pair;
#if !defined(FOR_SHARED) && \
((defined(HAVE_LIBGL) && defined(HAVE_LIBGLUT) && defined(HAVE_LIBGLM)) || \
defined(HAVE_LIBOSMESA))
#define HAVE_GL
#endif
#if defined(HAVE_LIBREADLINE) || defined(HAVE_LIBEDIT)
#define HAVE_READLINE
#endif
#ifdef HAVE_PTHREAD
#include <pthread.h>
#endif
#include "memory.h"
#define Int_MAX2 INT64_MAX
#define Int_MIN INT64_MIN
typedef int64_t Int;
typedef uint64_t unsignedInt;
#ifndef COMPACT
#if Int_MAX2 >= 0x7fffffffffffffffLL
#define COMPACT 1
#else
#define COMPACT 0
#endif
#endif
#if COMPACT
// Reserve highest two values for DefaultValue and Undefined states.
#define Int_MAX (Int_MAX2-2)
#define int_MAX (LONG_MAX-2)
#else
#define Int_MAX Int_MAX2
#define int_MAX LONG_MAX
#endif
#define int_MIN LONG_MIN
#ifndef RANDOM_MAX
#define RANDOM_MAX 0x7FFFFFFF
#endif
using std::cout;
using std::cin;
using std::cerr;
using std::endl;
using std::istream;
using std::ostream;
using mem::string;
using mem::stringstream;
using mem::istringstream;
using mem::ostringstream;
using mem::stringbuf;
using std::shared_ptr;
using std::unique_ptr;
using std::make_shared;
static const struct ws_t {} ws={};
// Portable way of skipping whitespace
inline std::istream &operator >> (std::istream & s, const ws_t &ws) {
if(!s.eof())
s >> std::ws;
return s;
}
#endif