forked from joeferner/node-oracle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.h
79 lines (66 loc) · 4.48 KB
/
utils.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
#ifndef _util_h_
#define _util_h_
#include <string>
#include <sstream>
#include <stdio.h>
#include <stdlib.h>
#ifdef _WIN32
// emulate snprintf() on windows, _snprintf() doesn't zero-terminate the buffer
// on overflow...
#include <stdarg.h>
inline static int snprintf(char* buf, unsigned int len, const char* fmt, ...) {
va_list ap;
va_start(ap, fmt);
int n = _vsprintf_p(buf, len, fmt, ap);
if (len)
buf[len - 1] = '\0';
va_end(ap);
return n;
}
#endif
#define REQ_BOOL_ARG(I, VAR) \
if (args.Length() <= (I) || !args[I]->IsBoolean()) \
return ThrowException(Exception::TypeError(String::New("Argument " #I " must be a bool"))); \
bool VAR = args[I]->IsTrue();
#define REQ_INT_ARG(I, VAR) \
if (args.Length() <= (I) || !args[I]->IsNumber()) \
return ThrowException(Exception::TypeError(String::New("Argument " #I " must be an integer"))); \
int VAR = args[I]->NumberValue();
#define REQ_STRING_ARG(I, VAR) \
if (args.Length() <= (I) || !args[I]->IsString()) \
return ThrowException(Exception::TypeError(String::New("Argument " #I " must be a string"))); \
Local<String> VAR = Local<String>::Cast(args[I]);
#define REQ_ARRAY_ARG(I, VAR) \
if (args.Length() <= (I) || !args[I]->IsArray()) \
return ThrowException(Exception::TypeError(String::New("Argument " #I " must be an array"))); \
Local<Array> VAR = Local<Array>::Cast(args[I]);
#define REQ_FUN_ARG(I, VAR) \
if (args.Length() <= (I) || !args[I]->IsFunction()) \
return ThrowException(Exception::TypeError(String::New("Argument " #I " must be a function"))); \
Local<Function> VAR = Local<Function>::Cast(args[I]);
#define REQ_OBJECT_ARG(I, VAR) \
if (args.Length() <= (I) || !args[I]->IsObject()) \
return ThrowException(Exception::TypeError(String::New("Argument " #I " must be an object"))); \
Local<Object> VAR = Local<Object>::Cast(args[I]);
#define OBJ_GET_STRING(OBJ, KEY, VAR) \
{ \
Local<Value> __val = OBJ->Get(String::New(KEY)); \
if(__val->IsString()) { \
String::Utf8Value __utf8Val(__val); \
VAR = *__utf8Val; \
} \
}
#define OBJ_GET_NUMBER(OBJ, KEY, VAR, DEFAULT) \
{ \
Local<Value> __val = OBJ->Get(String::New(KEY)); \
if(__val->IsNumber()) { \
VAR = __val->ToNumber()->Value(); \
} \
else if(__val->IsString()) { \
String::Utf8Value __utf8Value(__val); \
VAR = atoi(*__utf8Value); \
} else { \
VAR = DEFAULT; \
} \
}
#endif