-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathInterSpecAddOn.cpp
719 lines (542 loc) · 25.4 KB
/
InterSpecAddOn.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
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
/* InterSpec: an application to analyze spectral gamma radiation data.
Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC
(NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the U.S.
Government retains certain rights in this software.
For questions contact William Johnson via email at [email protected], or
alternative emails of [email protected].
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "InterSpec_config.h"
#include <napi.h>
#include <array>
#include <mutex>
#include <string>
#include <locale>
#include <codecvt>
#include <iostream>
#include <stdlib.h>
#include <condition_variable>
#include <boost/optional.hpp>
#include "target/electron/ElectronUtils.h"
#if( USE_BATCH_TOOLS )
#include "SpecUtils/StringAlgo.h"
#include "SpecUtils/Filesystem.h"
#include "InterSpec/InterSpec.h"
#include "InterSpec/BatchCommandLine.h"
#endif
//A good, simple, N-API tutorial is at:
// https://blog.atulr.com/node-addon-guide/
namespace
{
void call_msg_send_in_node(Napi::Env env, Napi::Function callback, Napi::Reference<Napi::Value> *context, std::array<std::string,3> *data);
using SendMsg_TSFN = Napi::TypedThreadSafeFunction<Napi::Reference<Napi::Value>, std::array<std::string,3>, call_msg_send_in_node>;
boost::optional<SendMsg_TSFN> ns_message_to_node_js_callback;
enum class BrowseForDirStatus { NotStarted, Failed, Successful };
struct BrowseForDirData
{
std::string token, window_title, window_msg;
BrowseForDirStatus status;
std::string result;
std::mutex m;
std::condition_variable cv;
};//struct BrowseForDirData
void call_dir_browse_in_node(Napi::Env env, Napi::Function callback, Napi::Reference<Napi::Value> *context, BrowseForDirData *data);
using BrowseDir_TSFN = Napi::TypedThreadSafeFunction<Napi::Reference<Napi::Value>, BrowseForDirData, call_dir_browse_in_node>;
boost::optional<BrowseDir_TSFN> ns_browse_for_directory_callback;
void call_msg_send_in_node(Napi::Env env, Napi::Function callback, Napi::Reference<Napi::Value> *context, std::array<std::string,3> *data)
{
assert( data ); //we should always have valid data
if( !data )
{
std::cerr << "call_msg_send_in_node: data is nullptr - unexpected." << std::endl;
return;
}
std::unique_ptr<std::array<std::string,3>> data_holder( data );
std::cout << "call_msg_send_in_node" << std::endl;
// Check if TSFN has been aborted
if( env == nullptr )
{
std::cerr << "call_msg_send_in_node: function has been aborted." << std::endl;
return;
}
assert( callback != nullptr );
if( callback == nullptr )
{
std::cerr << "call_msg_send_in_node: callback is null - unexpected." << std::endl;
return;
}
std::array<std::string,3> &d = *data;
callback.Call( context->Value(), { Napi::String::New(env,d[0]), Napi::String::New(env,d[1]),
Napi::String::New(env,d[2])} );
}//call_msg_send_in_node
void call_dir_browse_in_node(Napi::Env env, Napi::Function callback, Napi::Reference<Napi::Value> *context, BrowseForDirData *data)
{
assert( data ); //we should always have valid data
if( !data )
{
std::cerr << "call_dir_browse_in_node: data is nullptr - unexpected." << std::endl;
return;
}
std::cout << "call_dir_browse_in_node" << std::endl;
// Check if TSFN has been aborted
if( env == nullptr )
{
std::cerr << "call_dir_browse_in_node: function has been aborted." << std::endl;
return;
}
assert( callback != nullptr );
if( callback == nullptr )
{
std::cerr << "call_dir_browse_in_node: callback is null - unexpected." << std::endl;
return;
}
std::unique_lock<std::mutex> lk( data->m );
data->status = BrowseForDirStatus::NotStarted;
const std::string &token = data->token;
const std::string &title = data->window_title;
const std::string &msg = data->window_msg;
std::string &result = data->result;
Napi::Value rval = callback.Call( context->Value(), { Napi::String::New(env,token),
Napi::String::New(env,title),
Napi::String::New(env,msg)
} );
if( !rval.IsString() )
{
// This can happen if the user cancelled the operation.
data->status = BrowseForDirStatus::Failed;
std::cerr << "call_dir_browse_in_node: callback to JS didnt return a string." << std::endl;
}else
{
data->status = BrowseForDirStatus::Successful;
// For some reason directly using Napi calls to make UTF-8 string fails (empty string), so we
// will instead get the UTF-16 string, and convert to UTF-8
//result = rval.As<Napi::String>().Utf8Value();
const std::u16string val_as_utf16 = rval.As<Napi::String>().Utf16Value();
std::wstring_convert<std::codecvt_utf8_utf16<char16_t>,char16_t> convert;
result = convert.to_bytes(val_as_utf16);
std::cout << "The call returned " << result.size() << " characters with value '" << result << "'" << std::endl;
}
lk.unlock();
data->cv.notify_all();
}//call_dir_browse_in_node
}//namespace
namespace InterSpecAddOn
{
Napi::Number startServingInterSpec(const Napi::CallbackInfo& info)
{
Napi::Env env = info.Env();
if( info.Length() < 5 || !info[0].IsString() || !info[1].IsString()
|| !info[2].IsString() || !info[3].IsString() || !info[4].IsNumber() )
{
Napi::TypeError::New(env, "startServingInterSpec: Expected 4 strings and one short in port numbers").ThrowAsJavaScriptException();
return Napi::Number();
}
std::string process_name = info[0].ToString();
std::string userdatadir = info[1].ToString();
std::string basedir = info[2].ToString();
std::string xml_config_path = info[3].ToString();
int32_t server_port_num = info[4].ToNumber().Int32Value();
if( server_port_num < 0 || server_port_num > std::numeric_limits<short int>::max() )
{
Napi::TypeError::New(env, "startServingInterSpec: port number out of range.").ThrowAsJavaScriptException();
return Napi::Number();
}
int serverPort = interspec_start_server( process_name.c_str(), userdatadir.c_str(),
basedir.c_str(), xml_config_path.c_str(),
static_cast<unsigned short int>(server_port_num) );
if( serverPort <= 0 )
{
//ToDo: should probably add some mechanism so interspec_start_server() can poplulate the error string.
std::string errmsg;
switch( serverPort )
{
case -1: errmsg = "Failed to create user data directory '" + userdatadir + "'"; break;
case -2: errmsg = "InterSpecUserData.db: error in DataBaseUtils::setPreferenceDatabaseFile() or DbToFilesystemLink::setFileNumToFilePathDBNameBasePath()"; break;
case -3: errmsg = "Error in set_detector_model_input_csv(), unexpected"; break;
case -4: errmsg = "Error in InterSpec::setWritableDataDirectory('" + userdatadir + "')"; break;
case -5: errmsg = "Error in DataBaseVersionUpgrade::checkAndUpgradeVersion()"; break;
case -6: errmsg = "Error in ResourceUpdate::setupGlobalPrefsFromDb()"; break;
case -7: errmsg = "Error in InterSpec::setStaticDataDirectory('" + basedir + "/data')"; break;
case -8: errmsg = "Caught exception trying to start InterSpec server."; break;
default: errmsg = "Unrecognized error code."; break;
}
Napi::TypeError::New(env, "startServingInterSpec: Received error code " + std::to_string(serverPort) + ": " + errmsg ).ThrowAsJavaScriptException();
return Napi::Number();
}
return Napi::Number::New( env, serverPort );
}
Napi::Number openFile(const Napi::CallbackInfo& info)
{
Napi::Env env = info.Env();
if (info.Length() < 2 || !info[0].IsString() || !info[1].IsString())
{
Napi::TypeError::New(env, "openFile: Expected two strings").ThrowAsJavaScriptException();
return Napi::Number();
}
std::string sessionToken = info[0].As<Napi::String>();
std::string filepath = info[1].As<Napi::String>();
int result = interspec_open_file( sessionToken.c_str(), filepath.c_str() );
return Napi::Number::New( env, result );
}
Napi::Boolean killServer(const Napi::CallbackInfo& info)
{
Napi::Env env = info.Env();
interspec_kill_server();
return Napi::Boolean::New( env, true );
}
Napi::Boolean setTempDir(const Napi::CallbackInfo& info)
{
Napi::Env env = info.Env();
if (info.Length() < 1 || !info[0].IsString() )
{
Napi::TypeError::New(env, "setBaseDir: Expected one strings").ThrowAsJavaScriptException();
return Napi::Boolean();
}
#ifdef WIN32
std::u16string tmpdiru16 = info[0].ToString().Utf16Value();
std::wstring tmpdir( std::begin(tmpdiru16), std::end(tmpdiru16) );
_wputenv_s( L"TMPDIR", tmpdir.c_str() );
_wputenv_s( L"WT_TMP_DIR", tmpdir.c_str() );
#else
std::string tmpdir = info[0].ToString();
setenv("TMPDIR", tmpdir.c_str(), 1);
setenv("WT_TMP_DIR", tmpdir.c_str(), 1);
#endif // WIN32
return Napi::Boolean::New( env, true );
}
Napi::Boolean setRequireSessionToken(const Napi::CallbackInfo& info)
{
Napi::Env env = info.Env();
if (info.Length() < 1 || !info[0].IsBoolean() )
{
Napi::TypeError::New(env, "setRequireSessionToken: Expected one bool").ThrowAsJavaScriptException();
return Napi::Boolean();
}
const bool require = info[0].ToBoolean();
interspec_set_require_session_token(require);
return Napi::Boolean::New( env, true );
}
Napi::Boolean setMaxUndoRedoSteps(const Napi::CallbackInfo& info)
{
Napi::Env env = info.Env();
if (info.Length() < 1 || !info[0].IsNumber() )
{
Napi::TypeError::New(env, "setMaxUndoRedoSteps: Expected one int").ThrowAsJavaScriptException();
return Napi::Boolean();
}
const int max_items = info[0].ToNumber().Int32Value();
interspec_set_max_undo_steps( max_items );
return Napi::Boolean::New( env, true );
}
Napi::Boolean addPrimarySessionToken(const Napi::CallbackInfo& info)
{
Napi::Env env = info.Env();
if (info.Length() < 1 || !info[0].IsString() )
{
Napi::TypeError::New(env, "addPrimarySessionToken: Expected one strings").ThrowAsJavaScriptException();
return Napi::Boolean();
}
std::string token = info[0].ToString();
interspec_add_allowed_primary_session_token( token.c_str() );
return Napi::Boolean::New( env, true );
}
Napi::Boolean addExternalSessionToken(const Napi::CallbackInfo& info)
{
Napi::Env env = info.Env();
if (info.Length() < 1 || !info[0].IsString() )
{
Napi::TypeError::New(env, "addExternalSessionToken: Expected one strings").ThrowAsJavaScriptException();
return Napi::Boolean();
}
std::string token = info[0].ToString();
interspec_add_allowed_external_session_token( token.c_str() );
return Napi::Boolean::New( env, true );
}
Napi::Number removeSessionToken(const Napi::CallbackInfo& info)
{
Napi::Env env = info.Env();
if (info.Length() < 1 || !info[0].IsString() )
{
Napi::TypeError::New(env, "removeSessionToken: Expected one strings").ThrowAsJavaScriptException();
return Napi::Number();
}
std::string token = info[0].ToString();
const int removed = interspec_remove_allowed_session_token( token.c_str() );
return Napi::Number::New( env, removed );
}
void setInitialFileToLoad(const Napi::CallbackInfo& info)
{
Napi::Env env = info.Env();
if (info.Length() < 2 || !info[0].IsString() || !info[1].IsString() )
{
Napi::TypeError::New(env, "setInitialFileToLoad: Expected two strings; first should be"
" session token, the second is a file path or app-url"
).ThrowAsJavaScriptException();
return;
}
const std::string token = info[0].ToString();
const std::string filepath = info[1].ToString();
const bool success = interspec_set_initial_file_to_open( token.c_str(), filepath.c_str() );
if( !success )
{
Napi::Error::New(env, "setInitialFileToLoad: Invalid token or session already loaded"
).ThrowAsJavaScriptException();
return;
}
}//setInitialFileToLoad
Napi::Boolean openAppUrl(const Napi::CallbackInfo& info)
{
Napi::Env env = info.Env();
if (info.Length() < 2 || !info[0].IsString() || !info[1].IsString())
{
Napi::TypeError::New(env, "openAppUrl: Expected two strings").ThrowAsJavaScriptException();
return Napi::Boolean();
}
const std::string sessionToken = info[0].As<Napi::String>();
const std::string url = info[1].As<Napi::String>();
const bool result = interspec_open_app_url( sessionToken.c_str(), url.c_str() );
return Napi::Boolean::New( env, result );
}
bool send_nodejs_message( const std::string &session_token, const std::string &msg_name, const std::string &msg_data )
{
std::cout << "In InterSpecAddOn::send_nodejs_message, for msg_name=" << msg_name << std::endl;
if( !ns_message_to_node_js_callback.has_value() )
{
std::cerr << "InterSpecAddOn::send_nodejs_message: callback to JS not initialized" << std::endl;
return false;
}
ns_message_to_node_js_callback->Acquire();
//BlockingCall only blocks while putting into work queue - it does not block until the work
// is done, so we need to amke sure the next array will stick around for long enough, hence
// the call to new; the \c call_msg_send_in_node function will take care of deleting it.
std::array<std::string,3> *value = new std::array<std::string,3>{session_token,msg_name,msg_data};
napi_status status = ns_message_to_node_js_callback->BlockingCall(value);
ns_message_to_node_js_callback->Release();
if( status == napi_ok )
{
std::cout << "InterSpecAddOn::send_nodejs_message: successfully called JS for msg_name=" << msg_name << std::endl;
return true;
}
std::cerr << "InterSpecAddOn::send_nodejs_message: failed call to JS for msg_name=" << msg_name << std::endl;
return false;
}//send_nodejs_message(...)
void setMessageToNodeJsCallback( const Napi::CallbackInfo &info )
{
Napi::Env env = info.Env();
if( info.Length() != 1 || !info[0].IsFunction() )
{
Napi::TypeError::New(env, "setMessageToNodeJsCallback: expected function").ThrowAsJavaScriptException();
return;
}
// See https://github.com/nodejs/node-addon-api/blob/main/doc/typed_threadsafe_function.md#example
// and also https://github.com/nodejs/node-addon-api/blob/main/doc/threadsafe.md
// for info about using this thread safe function callback in Napi.
// Basically, to call a node JS function, we have to do this from the Node main thread, but
// send_nodejs_message(...) is called from some random thread, so we have to use the
// TypedThreadSafeFunction mechanism (the ThreadSafeFunction mechanism didnt seem to work
// when I tried it - caused program aborts).
Napi::Reference<Napi::Value> *context = new Napi::Reference<Napi::Value>( Persistent(info.This() ) );
auto finalizer = []( Napi::Env, void *, Napi::Reference<Napi::Value> *ctx ) {
// This finalizer is called at program exit.
delete ctx;
};//finalizer
ns_message_to_node_js_callback = SendMsg_TSFN::New( env, info[0].As<Napi::Function>(),
"MessageToNodeJs", 0, 1, context, finalizer );
std::cout << "setMessageToNodeJsCallback: Have set callback to JS" << std::endl;
}//setMessageToNodeJsCallback
void setBrowseForDirectoryCallback( const Napi::CallbackInfo &info )
{
Napi::Env env = info.Env();
if( info.Length() != 1 || !info[0].IsFunction() )
{
Napi::TypeError::New(env, "setBrowseForDirectoryCallback: expected function").ThrowAsJavaScriptException();
return;
}
Napi::Reference<Napi::Value> *context = new Napi::Reference<Napi::Value>( Persistent(info.This() ) );
auto finalizer = []( Napi::Env, void *, Napi::Reference<Napi::Value> *ctx ) {
delete ctx;
};//finalizer
ns_browse_for_directory_callback = BrowseDir_TSFN::New( env, info[0].As<Napi::Function>(),
"BrowseForDirectory", 0, 1, context, finalizer );
std::cout << "setBrowseForDirectoryCallback: Have set callback to JS" << std::endl;
}//setBrowseForDirectoryCallback
Napi::Boolean sendMessageToRenderer( const Napi::CallbackInfo &info )
{
Napi::Env env = info.Env();
if( info.Length() < 2 || !(info[0].IsString()
|| info[0].IsNull() || info[0].IsUndefined()) || !info[1].IsString() )
{
Napi::TypeError::New(env, "sendMessageToRenderer: Expected two or more strings").ThrowAsJavaScriptException();
return Napi::Boolean();
}
std::string token;
if( info[0].IsString() )
token = info[0].ToString();
else
std::cerr << "sendMessageToRenderer: first argument is not string" << std::endl;
std::string msg_name = info[1].ToString();
std::string msg_data;
if( info.Length() >= 3 && info[2].IsString() )
msg_data = info[2].ToString();
const bool success = ElectronUtils::handle_message_from_nodejs( token, msg_name, msg_data );
return Napi::Boolean::New( env, success );
}//void sendMessageToRenderer( const Napi::CallbackInfo &info )
#if( USE_BATCH_TOOLS )
Napi::Number runBatchAnalysis( const Napi::CallbackInfo &info )
{
Napi::Env env = info.Env();
if( info.Length() != 1 || !info[0].IsArray() )
{
Napi::TypeError::New(env, "runBatchAnalysis: Expected one array of strings").ThrowAsJavaScriptException();
return Napi::Number();
}
Napi::Array jsArray = info[0].As<Napi::Array>();
const uint32_t numargs = jsArray.Length();
std::vector<std::string> str_args( numargs );
std::vector<char *> str_args_ptrs( numargs, nullptr );
for( uint32_t i = 0; i < numargs; i++ )
{
Napi::Value element = jsArray.Get(i);
// Check if the element is a string
if( !element.IsString() )
{
Napi::TypeError::New(env, "Array elements must be strings").ThrowAsJavaScriptException();
return Napi::Number();
}//if( !element.IsString() )
str_args[i] = element.ToString();
if( str_args[i].empty() )
str_args[i] = " ";
str_args_ptrs[i] = &(str_args[i][0]);
auto checkarg = [&str_args,i,numargs]( const std::string &teststr ) -> std::string {
if( !SpecUtils::istarts_with(str_args[i], teststr) )
return "";
std::string docroot;
if( (str_args[i].length() > (teststr.size()+1)) && (str_args[i][teststr.size()] == '=') )
docroot = str_args[i].substr(teststr.size() + 1);
else if( (i+1) < numargs )
docroot = str_args[i+1];
else
return "";
if( docroot.length() && ((docroot.front()=='\"') || (docroot.front()=='\'')) )
docroot = docroot.substr(1);
if( docroot.length() && ((docroot.back()=='\"') || (docroot.back()=='\'')) )
docroot = docroot.substr(0, docroot.size() - 1);
return docroot;
};//checkarg lambda
// TODO: this setting directories should either be brought out to node.js stuff, or integrated into BatchCommandLine::run_batch_command(...)
const std::string docroot = checkarg( "--docroot" );
const std::string userdatadir = checkarg( "--userdatadir" );
if( !docroot.empty() )
{
const std::string datadir = SpecUtils::append_path( docroot, "data" );
try
{
InterSpec::setStaticDataDirectory( datadir );
}catch( std::exception &e )
{
std::cerr << "Failed to set static data directory: " << e.what() << std::endl;
Napi::Number::New( env, -7 );
}
}//if( !docroot.empty() )
if( !userdatadir.empty() )
{
try
{
InterSpec::setWritableDataDirectory( userdatadir );
}catch( std::exception &e )
{
std::cerr << "Warning: Failed to set user data directory: " << e.what() << std::endl
<< "Use the '--userdatadir' option to set this to the same one the InterSpec GUI app"
<< " uses, if you would like to share detectors, or other files." << std::endl;
//return -8;
}
}//if( !userdatadir.empty() )
}//for( uint32_t i = 0; i < numargs; i++ )
const int rcode = BatchCommandLine::run_batch_command( static_cast<int>(numargs), &(str_args_ptrs[0]) );
return Napi::Number::New( env, rcode );
}//Napi::Number runBatchAnalysis( const Napi::CallbackInfo &info )
#endif
bool browse_for_directory( const std::string &session_token,
const std::string &window_title,
const std::string &window_message,
std::function<void(std::string)> callback )
{
if( !ns_browse_for_directory_callback.has_value() )
{
std::cerr << "InterSpecAddOn::browse_for_directory: callback to JS not initialized" << std::endl;
return false;
}
ns_browse_for_directory_callback->Acquire();
BrowseForDirData data;
data.token = session_token;
data.window_title = window_title;
data.window_msg = window_message;
data.status = BrowseForDirStatus::NotStarted;
std::unique_lock<std::mutex> lk(data.m);
//BlockingCall only blocks while putting into work queue - it does not block until the work
// is done
napi_status status = ns_browse_for_directory_callback->BlockingCall( &data );
//std::cout << "About to start waiting on lock" << std::endl;
data.cv.wait( lk, [&data]{ return data.status != BrowseForDirStatus::NotStarted; } );
//std::cout << "Done waiting on lock" << std::endl;
ns_browse_for_directory_callback->Release();
if( status == napi_ok )
{
switch( data.status )
{
case BrowseForDirStatus::NotStarted:
std::cerr << "InterSpecAddOn::browse_for_directory: call never started? Not calling callback." << std::endl;
return false;
case BrowseForDirStatus::Failed:
std::cerr << "InterSpecAddOn::browse_for_directory: call failed. Not calling callback." << std::endl;
return false;
case BrowseForDirStatus::Successful:
//std::cout << "InterSpecAddOn::browse_for_directory: successfully called=" << data.result << std::endl;
callback( data.result );
return true;
}//switch( data.result )
}
std::cerr << "InterSpecAddOn::send_nodejs_message: failed call to JS (napi status=" << status << ")" << std::endl;
return false;
}
}//namespace InterSpecAddOn
Napi::Object InitAll(Napi::Env env, Napi::Object exports) {
exports.Set( "startServingInterSpec", Napi::Function::New(env, InterSpecAddOn::startServingInterSpec) );
exports.Set( "killServer", Napi::Function::New(env, InterSpecAddOn::killServer) );
exports.Set( "openFile", Napi::Function::New(env, InterSpecAddOn::openFile ));
exports.Set( "setTempDir", Napi::Function::New(env, InterSpecAddOn::setTempDir ));
exports.Set( "setRequireSessionToken", Napi::Function::New(env, InterSpecAddOn::setRequireSessionToken ));
exports.Set( "setMaxUndoRedoSteps", Napi::Function::New(env, InterSpecAddOn::setMaxUndoRedoSteps ));
exports.Set( "addPrimarySessionToken", Napi::Function::New(env, InterSpecAddOn::addPrimarySessionToken ));
exports.Set( "addExternalSessionToken", Napi::Function::New(env, InterSpecAddOn::addExternalSessionToken ));
exports.Set( "setInitialFileToLoad", Napi::Function::New(env, InterSpecAddOn::setInitialFileToLoad ));
exports.Set( "openAppUrl", Napi::Function::New(env, InterSpecAddOn::openAppUrl) );
exports.Set( "removeSessionToken", Napi::Function::New(env, InterSpecAddOn::removeSessionToken ));
exports.Set( "setMessageToNodeJsCallback", Napi::Function::New(env, InterSpecAddOn::setMessageToNodeJsCallback));
exports.Set( "setBrowseForDirectoryCallback", Napi::Function::New(env, InterSpecAddOn::setBrowseForDirectoryCallback));
exports.Set( "sendMessageToRenderer", Napi::Function::New(env, InterSpecAddOn::sendMessageToRenderer));
#if( USE_BATCH_TOOLS )
exports.Set( "runBatchAnalysis", Napi::Function::New(env, InterSpecAddOn::runBatchAnalysis));
#endif
return exports;
}
/**
* This code defines the entry-point for the Node addon, it tells Node where to go
* once the library has been loaded into active memory. The first argument must
* match the "target" in our *binding.gyp*. Using NODE_GYP_MODULE_NAME ensures
* that the argument will be correct, as long as the module is built with
* node-gyp (which is the usual way of building modules). The second argument
* points to the function to invoke. The function must not be namespaced.
// Note that the actual name used doesnt seem to really matter, so I'll just use InsterSpecAddOn
*/
NODE_API_MODULE(InsterSpecAddOn, InitAll)