summaryrefslogtreecommitdiff
path: root/src/log.hpp
blob: 73c9c10dba3bcb8724d2d1bf307bd2c83df923b3 (plain)
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
#ifndef UR_LOG_H
#define UR_LOG_H

#include "helper.hpp"
#include <ctime>
#include <iostream>
#include <string>
/**
 * A very simple stdio/stderr logger
 */
namespace Log {

// if we want debug to action
// will be noop fork, but cleaner for a simple program
#ifdef DEBUG
static const bool is_debug = true;
#else
static const bool is_debug = false;
#endif
// log message constants
static const std::string L_INFO = "[INFO]";
static const std::string L_ERROR = "[ERROR]";
static const std::string L_WARN = "[WARN]";
static const std::string L_DEBUG = "[DEBUG]";

// wrap <string> to_string to keep all semantics within the log namespace
//
// UR SPECIFIC CODE
std::string
str(GameState gs)
{
  switch (gs) {
    case WAITING:
      return "WAITING";
    case ROLLING:
      return "ROLLING";
    case PASSING:
      return "PASSING";
    case PLACING:
      return "PLACING";
    case GAME_OVER:
      return "GAME_OVER";
    default:
      return "Unknown state: " + std::to_string(gs);
  }
}

// END UR SPECIFIC CODE
std::string
str(int i)
{
  return std::to_string(i);
}

std::string
str(long i)
{
  return std::to_string(i);
}

std::string
str(long long i)
{
  return std::to_string(i);
}

std::string
str(unsigned i)
{
  return std::to_string(i);
}

std::string
str(unsigned long i)
{
  return std::to_string(i);
}

std::string
str(unsigned long long i)
{
  return std::to_string(i);
}

std::string
str(float i)
{
  return std::to_string(i);
}

std::string
str(double i)
{
  return std::to_string(i);
}

std::string
str(long double i)
{
  return std::to_string(i);
}
// end to_string

// helper functions
std::string
now()
{
  std::time_t current_time;
  std::time(&current_time);
  char now[25];
  std::strftime(now, sizeof(now), "%FT%T %Z", std::localtime(&current_time));

  return std::string(now);
}
// end helper fns

// log functions
void
log(std::string msg, std::string level)
{
  std::clog << now() << "\t" << level << "\t" << msg << std::endl;
}

void
log_d(std::string msg)
{
  if (is_debug) {
    log(msg, L_DEBUG);
  }
}
// end log fns

// DEBUG
void
debug()
{
  log_d("");
}

void
debug(int msg)
{
  log_d(str(msg));
}

void
debug(long msg)
{
  log_d(str(msg));
}

void
debug(long long msg)
{
  log_d(str(msg));
}

void
debug(unsigned msg)
{
  log_d(str(msg));
}

void
debug(unsigned long msg)
{
  log_d(str(msg));
}

void
debug(unsigned long long msg)
{
  log_d(str(msg));
}

void
debug(float msg)
{
  log_d(str(msg));
}

void
debug(double msg)
{
  log_d(str(msg));
}

void
debug(long double msg)
{
  log_d(str(msg));
}

void
debug(std::string msg)
{
  log_d(msg);
}

// L_INFO
void
info()
{
  log("", L_INFO);
}

void
info(int msg)
{
  log(str(msg), L_INFO);
}

void
info(long msg)
{
  log(str(msg), L_INFO);
}

void
info(long long msg)
{
  log(str(msg), L_INFO);
}

void
info(unsigned msg)
{
  log(str(msg), L_INFO);
}

void
info(unsigned long msg)
{
  log(str(msg), L_INFO);
}

void
info(unsigned long long msg)
{
  log(str(msg), L_INFO);
}

void
info(float msg)
{
  log(str(msg), L_INFO);
}

void
info(double msg)
{
  log(str(msg), L_INFO);
}

void
info(long double msg)
{
  log(str(msg), L_INFO);
}

void
info(std::string msg)
{
  log(msg, L_INFO);
}

// L_WARN
void
warn()
{
  log("", L_WARN);
}

void
warn(int msg)
{
  log(str(msg), L_WARN);
}

void
warn(long msg)
{
  log(str(msg), L_WARN);
}

void
warn(long long msg)
{
  log(str(msg), L_WARN);
}

void
warn(unsigned msg)
{
  log(str(msg), L_WARN);
}

void
warn(unsigned long msg)
{
  log(str(msg), L_WARN);
}

void
warn(unsigned long long msg)
{
  log(str(msg), L_WARN);
}

void
warn(float msg)
{
  log(str(msg), L_WARN);
}

void
warn(double msg)
{
  log(str(msg), L_WARN);
}

void
warn(long double msg)
{
  log(str(msg), L_WARN);
}

void
warn(std::string msg)
{
  log(msg, L_WARN);
}

// L_ERROR
void
error()
{
  log("", L_ERROR);
}

void
error(int msg)
{
  log(str(msg), L_ERROR);
}

void
error(long msg)
{
  log(str(msg), L_ERROR);
}

void
error(long long msg)
{
  log(str(msg), L_ERROR);
}

void
error(unsigned msg)
{
  log(str(msg), L_ERROR);
}

void
error(unsigned long msg)
{
  log(str(msg), L_ERROR);
}

void
error(unsigned long long msg)
{
  log(str(msg), L_ERROR);
}

void
error(float msg)
{
  log(str(msg), L_ERROR);
}

void
error(double msg)
{
  log(str(msg), L_ERROR);
}

void
error(long double msg)
{
  log(str(msg), L_ERROR);
}

void
error(std::string msg)
{
  log(msg, L_ERROR);
}
}
#endif