-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathserialport.cpp
More file actions
368 lines (314 loc) · 10.9 KB
/
serialport.cpp
File metadata and controls
368 lines (314 loc) · 10.9 KB
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
#include "./serialport.h"
#ifdef __APPLE__
#include "./darwin_list.h"
#endif
#ifdef WIN32
#define strncasecmp strnicmp
#include "./serialport_win.h"
#else
#include "./poller.h"
#endif
Napi::Value getValueFromObject(Napi::Object options, std::string key) {
Napi::String str = Napi::String::New(options.Env(), key);
return (options).Get(str);
}
int getIntFromObject(Napi::Object options, std::string key) {
return getValueFromObject(options, key).ToNumber().Int64Value();
}
bool getBoolFromObject(Napi::Object options, std::string key) {
return getValueFromObject(options, key).ToBoolean().Value();
}
Napi::String getStringFromObj(Napi::Object options, std::string key) {
return getValueFromObject(options, key).ToString();
}
double getDoubleFromObject(Napi::Object options, std::string key) {
return getValueFromObject(options, key).ToNumber().DoubleValue();
}
bool hasKeyWithDefinedValue(Napi::Object options, std::string key) {
if ((options).Has(key)) {
Napi::Value val = getValueFromObject(options, key);
if (val.IsUndefined() || val.IsNull()) {
return false;
}
return true;
}
return false;
}
Napi::Value Open(const Napi::CallbackInfo& info) {
Napi::Env env = info.Env();
// path
if (!info[0].IsString()) {
Napi::TypeError::New(env, "First argument must be a string").ThrowAsJavaScriptException();
return env.Null();
}
std::string path = info[0].ToString().Utf8Value();
// options
if (!info[1].IsObject()) {
Napi::TypeError::New(env, "Second argument must be an object").ThrowAsJavaScriptException();
return env.Null();
}
Napi::Object options = info[1].ToObject();
// callback
if (!info[2].IsFunction()) {
Napi::TypeError::New(env, "Third argument must be a function").ThrowAsJavaScriptException();
return env.Null();
}
Napi::Function callback = info[2].As<Napi::Function>();
OpenBaton* baton = new OpenBaton(callback);
snprintf(baton->path, sizeof(baton->path), "%s", path.c_str());
baton->baudRate = getIntFromObject(options, "baudRate");
baton->dataBits = getIntFromObject(options, "dataBits");
baton->parity = ToParityEnum(getStringFromObj(options, "parity"));
baton->stopBits = ToStopBitEnum(getDoubleFromObject(options, "stopBits"));
baton->rtscts = getBoolFromObject(options, "rtscts");
baton->rtsMode = ToRtsModeEnum(getStringFromObj(options, "rtsMode"));
baton->xon = getBoolFromObject(options, "xon");
baton->xoff = getBoolFromObject(options, "xoff");
baton->xany = getBoolFromObject(options, "xany");
baton->hupcl = getBoolFromObject(options, "hupcl");
baton->lock = getBoolFromObject(options, "lock");
#ifndef WIN32
baton->vmin = getIntFromObject(options, "vmin");
baton->vtime = getIntFromObject(options, "vtime");
#endif
baton->Queue();
return env.Undefined();
}
Napi::Value Update(const Napi::CallbackInfo& info) {
Napi::Env env = info.Env();
// file descriptor
if (!info[0].IsNumber()) {
Napi::TypeError::New(env, "First argument must be an int").ThrowAsJavaScriptException();
return env.Null();
}
int fd = info[0].As<Napi::Number>().Int32Value();
// options
if (!info[1].IsObject()) {
Napi::TypeError::New(env, "Second argument must be an object").ThrowAsJavaScriptException();
return env.Null();
}
Napi::Object options = info[1].ToObject();
if (!(options).Has("baudRate")) {
Napi::TypeError::New(env, "\"baudRate\" must be set on options object").ThrowAsJavaScriptException();
return env.Null();
}
// callback
if (!info[2].IsFunction()) {
Napi::TypeError::New(env, "Third argument must be a function").ThrowAsJavaScriptException();
return env.Null();
}
Napi::Function callback = info[2].As<Napi::Function>();
ConnectionOptionsBaton* baton = new ConnectionOptionsBaton(callback);
baton->fd = fd;
baton->baudRate = getIntFromObject(options, "baudRate");
baton->Queue();
return env.Undefined();
}
Napi::Value Close(const Napi::CallbackInfo& info) {
Napi::Env env = info.Env();
// file descriptor
if (!info[0].IsNumber()) {
Napi::TypeError::New(env, "First argument must be an int").ThrowAsJavaScriptException();
return env.Null();
}
// callback
if (!info[1].IsFunction()) {
Napi::TypeError::New(env, "Second argument must be a function").ThrowAsJavaScriptException();
return env.Null();
}
Napi::Function callback = info[1].As<Napi::Function>();
CloseBaton* baton = new CloseBaton(callback);
baton->fd = info[0].ToNumber().Int64Value();;
baton->Queue();
return env.Undefined();
}
Napi::Value Flush(const Napi::CallbackInfo& info) {
Napi::Env env = info.Env();
// file descriptor
if (!info[0].IsNumber()) {
Napi::TypeError::New(env, "First argument must be an int").ThrowAsJavaScriptException();
return env.Null();
}
int fd = info[0].As<Napi::Number>().Int32Value();
// callback
if (!info[1].IsFunction()) {
Napi::TypeError::New(env, "Second argument must be a function").ThrowAsJavaScriptException();
return env.Null();
}
Napi::Function callback = info[1].As<Napi::Function>();
FlushBaton* baton = new FlushBaton(callback);
baton->fd = fd;
baton->Queue();
return env.Undefined();
}
Napi::Value Set(const Napi::CallbackInfo& info) {
Napi::Env env = info.Env();
// file descriptor
if (!info[0].IsNumber()) {
Napi::TypeError::New(env, "First argument must be an int").ThrowAsJavaScriptException();
return env.Null();
}
int fd = info[0].As<Napi::Number>().Int32Value();
// options
if (!info[1].IsObject()) {
Napi::TypeError::New(env, "Second argument must be an object").ThrowAsJavaScriptException();
return env.Null();
}
Napi::Object options = info[1].ToObject();
// callback
if (!info[2].IsFunction()) {
Napi::TypeError::New(env, "Third argument must be a function").ThrowAsJavaScriptException();
return env.Null();
}
Napi::Function callback = info[2].As<Napi::Function>();
SetBaton* baton = new SetBaton(callback);
baton->fd = fd;
if (hasKeyWithDefinedValue(options, "brk")) {
baton->brkToSet = true;
baton->brk = getBoolFromObject(options, "brk");
}
if (hasKeyWithDefinedValue(options, "rts")) {
baton->rtsToSet = true;
baton->rts = getBoolFromObject(options, "rts");
}
if (hasKeyWithDefinedValue(options, "cts")) {
baton->ctsToSet = true;
baton->cts = getBoolFromObject(options, "cts");
}
if (hasKeyWithDefinedValue(options, "dtr")) {
baton->dtrToSet = true;
baton->dtr = getBoolFromObject(options, "dtr");
}
if (hasKeyWithDefinedValue(options, "dsr")) {
baton->rtsToSet = true;
baton->dsr = getBoolFromObject(options, "dsr");
}
baton->lowLatency = getBoolFromObject(options, "lowLatency");
baton->Queue();
return env.Undefined();
}
Napi::Value Get(const Napi::CallbackInfo& info) {
Napi::Env env = info.Env();
// file descriptor
if (!info[0].IsNumber()) {
Napi::TypeError::New(env, "First argument must be an int").ThrowAsJavaScriptException();
return env.Null();
}
int fd = info[0].As<Napi::Number>().Int32Value();
// callback
if (!info[1].IsFunction()) {
Napi::TypeError::New(env, "Second argument must be a function").ThrowAsJavaScriptException();
return env.Null();
}
Napi::Function callback = info[1].As<Napi::Function>();
GetBaton* baton = new GetBaton(callback);
baton->fd = fd;
baton->cts = false;
baton->dsr = false;
baton->dcd = false;
baton->lowLatency = false;
baton->Queue();
return env.Undefined();
}
Napi::Value GetBaudRate(const Napi::CallbackInfo& info) {
Napi::Env env = info.Env();
// file descriptor
if (!info[0].IsNumber()) {
Napi::TypeError::New(env, "First argument must be an int").ThrowAsJavaScriptException();
return env.Null();
}
int fd = info[0].As<Napi::Number>().Int32Value();
// callback
if (!info[1].IsFunction()) {
Napi::TypeError::New(env, "Second argument must be a function").ThrowAsJavaScriptException();
return env.Null();
}
Napi::Function callback = info[1].As<Napi::Function>();
GetBaudRateBaton* baton = new GetBaudRateBaton(callback);
baton->fd = fd;
baton->baudRate = 0;
baton->Queue();
return env.Undefined();
}
Napi::Value Drain(const Napi::CallbackInfo& info) {
Napi::Env env = info.Env();
// file descriptor
if (!info[0].IsNumber()) {
Napi::TypeError::New(env, "First argument must be an int").ThrowAsJavaScriptException();
return env.Null();
}
int fd = info[0].As<Napi::Number>().Int32Value();
// callback
if (!info[1].IsFunction()) {
Napi::TypeError::New(env, "Second argument must be a function").ThrowAsJavaScriptException();
return env.Null();
}
Napi::Function callback = info[1].As<Napi::Function>();
DrainBaton* baton = new DrainBaton(callback);
baton->fd = fd;
baton->Queue();
return env.Undefined();
}
inline SerialPortParity ToParityEnum(const Napi::String& napistr) {
auto tmp = napistr.Utf8Value();
const char* str = tmp.c_str();
size_t count = strlen(str);
SerialPortParity parity = SERIALPORT_PARITY_NONE;
if (!strncasecmp(str, "none", count)) {
parity = SERIALPORT_PARITY_NONE;
} else if (!strncasecmp(str, "even", count)) {
parity = SERIALPORT_PARITY_EVEN;
} else if (!strncasecmp(str, "mark", count)) {
parity = SERIALPORT_PARITY_MARK;
} else if (!strncasecmp(str, "odd", count)) {
parity = SERIALPORT_PARITY_ODD;
} else if (!strncasecmp(str, "space", count)) {
parity = SERIALPORT_PARITY_SPACE;
}
return parity;
}
inline SerialPortStopBits ToStopBitEnum(double stopBits) {
if (stopBits > 1.4 && stopBits < 1.6) {
return SERIALPORT_STOPBITS_ONE_FIVE;
}
if (stopBits == 2) {
return SERIALPORT_STOPBITS_TWO;
}
return SERIALPORT_STOPBITS_ONE;
}
inline SerialPortRtsMode ToRtsModeEnum(const Napi::String& napistr) {
auto tmp = napistr.Utf8Value();
const char* str = tmp.c_str();
size_t count = strlen(str);
SerialPortRtsMode mode = SERIALPORT_RTSMODE_HANDSHAKE;
if (!strncasecmp(str, "enable", count)) {
mode = SERIALPORT_RTSMODE_ENABLE;
} else if (!strncasecmp(str, "handshake", count)) {
mode = SERIALPORT_RTSMODE_HANDSHAKE;
} else if (!strncasecmp(str, "toggle", count)) {
mode = SERIALPORT_RTSMODE_TOGGLE;
}
return mode;
}
Napi::Object init(Napi::Env env, Napi::Object exports) {
exports.Set("set", Napi::Function::New(env, Set));
exports.Set("get", Napi::Function::New(env, Get));
exports.Set("getBaudRate", Napi::Function::New(env, GetBaudRate));
exports.Set("open", Napi::Function::New(env, Open));
exports.Set("update", Napi::Function::New(env, Update));
exports.Set("close", Napi::Function::New(env, Close));
exports.Set("flush", Napi::Function::New(env, Flush));
exports.Set("drain", Napi::Function::New(env, Drain));
#ifdef __APPLE__
exports.Set("list", Napi::Function::New(env, List));
#endif
#ifdef WIN32
exports.Set("write", Napi::Function::New(env, Write));
exports.Set("read", Napi::Function::New(env, Read));
exports.Set("list", Napi::Function::New(env, List));
#else
Poller::Init(env, exports);
#endif
return exports;
}
NODE_API_MODULE(serialport, init);