forked from joeferner/node-oracle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutParam.cpp
88 lines (76 loc) · 2.23 KB
/
outParam.cpp
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
#include "outParam.h"
#include "nodeOracleException.h"
#include <iostream>
using namespace std;
Persistent<FunctionTemplate> OutParam::constructorTemplate;
/**
* function OutParam(type, options) {
* this._type = type || 0;
* this._size = options.size;
* this._inOut.hasInParam = options.in;
* }
*/
void OutParam::Init(Handle<Object> target) {
HandleScope scope;
Local<FunctionTemplate> t = FunctionTemplate::New(New);
constructorTemplate = Persistent<FunctionTemplate>::New(t);
constructorTemplate->InstanceTemplate()->SetInternalFieldCount(1);
constructorTemplate->SetClassName(String::NewSymbol("OutParam"));
target->Set(String::NewSymbol("OutParam"), constructorTemplate->GetFunction());
}
Handle<Value> OutParam::New(const Arguments& args) {
HandleScope scope;
OutParam *outParam = new OutParam();
if(args.Length() >=1 ) {
outParam->_type = args[0]->IsUndefined() ? OutParam::OCCIINT : args[0]->NumberValue();
} else {
outParam->_type = OutParam::OCCIINT;
}
if (args.Length() >=2 && !args[1]->IsUndefined()) {
REQ_OBJECT_ARG(1, opts);
OBJ_GET_NUMBER(opts, "size", outParam->_size, 200);
// check if there's an 'in' param
if (opts->Has(String::New("in"))) {
outParam->_inOut.hasInParam = true;
switch(outParam->_type) {
case OutParam::OCCIINT: {
OBJ_GET_NUMBER(opts, "in", outParam->_inOut.intVal, 0);
break;
}
case OutParam::OCCIDOUBLE: {
OBJ_GET_NUMBER(opts, "in", outParam->_inOut.doubleVal, 0);
break;
}
case OutParam::OCCIFLOAT: {
OBJ_GET_NUMBER(opts, "in", outParam->_inOut.floatVal, 0);
break;
}
case OutParam::OCCINUMBER: {
OBJ_GET_NUMBER(opts, "in", outParam->_inOut.numberVal, 0);
break;
}
case OutParam::OCCISTRING: {
OBJ_GET_STRING(opts, "in", outParam->_inOut.stringVal);
break;
}
default:
throw NodeOracleException("Unhandled OutPram type!");
}
}
}
outParam->Wrap(args.This());
return args.This();
}
OutParam::OutParam() {
_type = OutParam::OCCIINT;
_inOut.hasInParam = false;
_size = 200;
}
OutParam::~OutParam() {
}
int OutParam::type() {
return _type;
}
int OutParam::size() {
return _size;
}