]> git.mxchange.org Git - flightgear.git/blob - src/Scripting/NasalSys.cxx
a8f913ee682a5b92bd5782102240b992016cf868
[flightgear.git] / src / Scripting / NasalSys.cxx
1 #include <string.h>
2 #include <stdio.h>
3 #include <sys/types.h>
4 #include <sys/stat.h>
5
6 #include <plib/ul.h>
7
8 #include <simgear/nasal/nasal.h>
9 #include <simgear/props/props.hxx>
10 #include <simgear/math/sg_random.h>
11 #include <simgear/misc/sg_path.hxx>
12 #include <simgear/misc/interpolator.hxx>
13 #include <simgear/structure/commands.hxx>
14
15 #include <Main/globals.hxx>
16 #include <Main/fg_props.hxx>
17
18 #include "NasalSys.hxx"
19
20 // Read and return file contents in a single buffer.  Note use of
21 // stat() to get the file size.  This is a win32 function, believe it
22 // or not. :) Note the REALLY IMPORTANT use of the "b" flag to fopen.
23 // Text mode brain damage will kill us if we're trying to do bytewise
24 // I/O.
25 static char* readfile(const char* file, int* lenOut)
26 {
27     struct stat data;
28     if(stat(file, &data) != 0) return 0;
29     FILE* f = fopen(file, "rb");
30     if(!f) return 0;
31     char* buf = new char[data.st_size];
32     *lenOut = fread(buf, 1, data.st_size, f);
33     fclose(f);
34     if(*lenOut != data.st_size) {
35         // Shouldn't happen, but warn anyway since it represents a
36         // platform bug and not a typical runtime error (missing file,
37         // etc...)
38         SG_LOG(SG_NASAL, SG_ALERT,
39                "ERROR in Nasal initialization: " <<
40                "short count returned from fread() of " << file <<
41                ".  Check your C library!");
42         delete[] buf;
43         return 0;
44     }
45     return buf;
46 }
47
48 FGNasalSys::FGNasalSys()
49 {
50     _context = 0;
51     _globals = naNil();
52     _gcHash = naNil();
53     _nextGCKey = 0; // Any value will do
54 }
55
56 FGNasalSys::~FGNasalSys()
57 {
58     // Nasal doesn't have a "destroy context" API yet. :(
59     // Not a problem for a global subsystem that will never be
60     // destroyed.  And the context is actually a global, so no memory
61     // is technically leaked (although the GC pool memory obviously
62     // won't be freed).
63     _context = 0;
64     _globals = naNil();
65 }
66
67 bool FGNasalSys::parseAndRun(const char* sourceCode)
68 {
69     naRef code = parse("FGNasalSys::parseAndRun()", sourceCode,
70                        strlen(sourceCode));
71     if(naIsNil(code))
72         return false;
73
74     naCall(_context, code, naNil(), naNil(), naNil());
75
76     if(!naGetError(_context)) return true;
77     logError();
78     return false;
79 }
80
81 FGNasalScript* FGNasalSys::parseScript(const char* src, const char* name)
82 {
83     FGNasalScript* script = new FGNasalScript();
84     script->_gcKey = -1; // important, if we delete it on a parse
85     script->_nas = this; // error, don't clobber a real handle!
86
87     char buf[256];
88     if(!name) {
89         sprintf(buf, "FGNasalScript@%8.8x", (int)script);
90         name = buf;
91     }
92
93     script->_code = parse(name, src);
94     if(naIsNil(script->_code)) {
95         delete script;
96         return 0;
97     }
98
99     script->_gcKey = gcSave(script->_code);
100     return script;
101 }
102
103 // Utility.  Sets a named key in a hash by C string, rather than nasal
104 // string object.
105 void FGNasalSys::hashset(naRef hash, const char* key, naRef val)
106 {
107     naRef s = naNewString(_context);
108     naStr_fromdata(s, (char*)key, strlen(key));
109     naHash_set(hash, s, val);
110 }
111
112 // The get/setprop functions accept a *list* of strings and walk
113 // through the property tree with them to find the appropriate node.
114 // This allows a Nasal object to hold onto a property path and use it
115 // like a node object, e.g. setprop(ObjRoot, "size-parsecs", 2.02).  This
116 // is the utility function that walks the property tree.
117 // Future enhancement: support integer arguments to specify array
118 // elements.
119 static SGPropertyNode* findnode(naContext c, naRef vec, int len)
120 {
121     SGPropertyNode* p = globals->get_props();
122     for(int i=0; i<len; i++) {
123         naRef a = naVec_get(vec, i);
124         if(!naIsString(a)) return 0;
125         p = p->getNode(naStr_data(a));
126         if(p == 0) return 0;
127     }
128     return p;
129 }
130
131 // getprop() extension function.  Concatenates its string arguments as
132 // property names and returns the value of the specified property.  Or
133 // nil if it doesn't exist.
134 static naRef f_getprop(naContext c, naRef args)
135 {
136     const SGPropertyNode* p = findnode(c, args, naVec_size(args));
137     if(!p) return naNil();
138
139     switch(p->getType()) {
140     case SGPropertyNode::BOOL:   case SGPropertyNode::INT:
141     case SGPropertyNode::LONG:   case SGPropertyNode::FLOAT:
142     case SGPropertyNode::DOUBLE:
143         return naNum(p->getDoubleValue());
144
145     case SGPropertyNode::STRING:
146     case SGPropertyNode::UNSPECIFIED:
147         {
148             naRef nastr = naNewString(c);
149             const char* val = p->getStringValue();
150             naStr_fromdata(nastr, (char*)val, strlen(val));
151             return nastr;
152         }
153     case SGPropertyNode::ALIAS: // <--- FIXME, recurse?
154     default:
155         return naNil();
156     }
157 }
158
159 // setprop() extension function.  Concatenates its string arguments as
160 // property names and sets the value of the specified property to the
161 // final argument.
162 static naRef f_setprop(naContext c, naRef args)
163 {
164 #define BUFLEN 1024
165     int argc = naVec_size(args);
166     char buf[BUFLEN + 1];
167     buf[BUFLEN] = 0;
168     char* p = buf;
169     int buflen = BUFLEN;
170     for(int i=0; i<argc-1; i++) {
171         naRef s = naStringValue(c, naVec_get(args, i));
172         if(naIsNil(s)) return naNil();
173         strncpy(p, naStr_data(s), buflen);
174         p += naStr_len(s);
175         buflen = BUFLEN - (p - buf);
176         if(i < (argc-2) && buflen > 0) {
177             *p++ = '/';
178             buflen--;
179         }
180     }
181
182     SGPropertyNode* props = globals->get_props();
183     naRef val = naVec_get(args, argc-1);
184     if(naIsString(val)) props->setStringValue(buf, naStr_data(val));
185     else                props->setDoubleValue(buf, naNumValue(val).num);
186     return naNil();
187 #undef BUFLEN
188 }
189
190 // print() extension function.  Concatenates and prints its arguments
191 // to the FlightGear log.  Uses the highest log level (SG_ALERT), to
192 // make sure it appears.  Is there better way to do this?
193 static naRef f_print(naContext c, naRef args)
194 {
195 #define BUFLEN 1024
196     char buf[BUFLEN + 1];
197     buf[BUFLEN] = 0; // extra nul to handle strncpy brain damage
198     char* p = buf;
199     int buflen = BUFLEN;
200     int n = naVec_size(args);
201     for(int i=0; i<n; i++) {
202         naRef s = naStringValue(c, naVec_get(args, i));
203         if(naIsNil(s)) continue;
204         strncpy(p, naStr_data(s), buflen);
205         p += naStr_len(s);
206         buflen = BUFLEN - (p - buf);
207         if(buflen <= 0) break;
208     }
209     SG_LOG(SG_GENERAL, SG_ALERT, buf);
210     return naNil();
211 #undef BUFLEN
212 }
213
214 // fgcommand() extension function.  Executes a named command via the
215 // FlightGear command manager.  Takes a single property node name as
216 // an argument.
217 static naRef f_fgcommand(naContext c, naRef args)
218 {
219     naRef cmd = naVec_get(args, 0);
220     naRef props = naVec_get(args, 1);
221     if(!naIsString(cmd) || !naIsGhost(props)) return naNil();
222     SGPropertyNode_ptr* node = (SGPropertyNode_ptr*)naGhost_ptr(props);
223     globals->get_commands()->execute(naStr_data(cmd), *node);
224     return naNil();
225
226 }
227
228 // settimer(func, dt, simtime) extension function.  Falls through to
229 // FGNasalSys::setTimer().  See there for docs.
230 static naRef f_settimer(naContext c, naRef args)
231 {
232     FGNasalSys* nasal = (FGNasalSys*)globals->get_subsystem("nasal");
233     nasal->setTimer(args);
234     return naNil();
235 }
236
237 // Returns a ghost handle to the argument to the currently executing
238 // command
239 static naRef f_cmdarg(naContext c, naRef args)
240 {
241     FGNasalSys* nasal = (FGNasalSys*)globals->get_subsystem("nasal");
242     return nasal->cmdArgGhost();
243 }
244
245 // Sets up a property interpolation.  The first argument is either a
246 // ghost (SGPropertyNode_ptr*) or a string (global property path) to
247 // interpolate.  The second argument is a vector of pairs of
248 // value/delta numbers.
249 static naRef f_interpolate(naContext c, naRef args)
250 {
251     SGPropertyNode* node;
252     naRef prop = naVec_get(args, 0);
253     if(naIsString(prop)) node = fgGetNode(naStr_data(prop), true);
254     else if(naIsGhost(prop)) node = *(SGPropertyNode_ptr*)naGhost_ptr(prop);
255     else return naNil();
256
257     naRef curve = naVec_get(args, 1);
258     if(!naIsVector(curve)) return naNil();
259     int nPoints = naVec_size(curve) / 2;
260     double* values = new double[nPoints];
261     double* deltas = new double[nPoints];
262     for(int i=0; i<nPoints; i++) {
263         values[i] = naNumValue(naVec_get(curve, 2*i)).num;
264         deltas[i] = naNumValue(naVec_get(curve, 2*i+1)).num;
265     }
266
267     ((SGInterpolator*)globals->get_subsystem("interpolator"))
268         ->interpolate(node, nPoints, values, deltas);
269 }
270
271 static naRef f_rand(naContext c, naRef args)
272 {
273     return naNum(sg_random());
274 }
275
276 // Table of extension functions.  Terminate with zeros.
277 static struct { char* name; naCFunction func; } funcs[] = {
278     { "getprop",   f_getprop },
279     { "setprop",   f_setprop },
280     { "print",     f_print },
281     { "_fgcommand", f_fgcommand },
282     { "settimer",  f_settimer },
283     { "_cmdarg",  f_cmdarg },
284     { "_interpolate",  f_interpolate },
285     { "rand",  f_rand },
286     { 0, 0 }
287 };
288
289 naRef FGNasalSys::cmdArgGhost()
290 {
291     return propNodeGhost(_cmdArg);
292 }
293
294 void FGNasalSys::init()
295 {
296     int i;
297
298     _context = naNewContext();
299
300     // Start with globals.  Add it to itself as a recursive
301     // sub-reference under the name "globals".  This gives client-code
302     // write access to the namespace if someone wants to do something
303     // fancy.
304     _globals = naStdLib(_context);
305     naSave(_context, _globals);
306     hashset(_globals, "globals", _globals);
307
308     // Add in the math library under "math"
309     hashset(_globals, "math", naMathLib(_context));
310
311     // Add our custom extension functions:
312     for(i=0; funcs[i].name; i++)
313         hashset(_globals, funcs[i].name,
314                 naNewFunc(_context, naNewCCode(_context, funcs[i].func)));
315
316     // And our SGPropertyNode wrapper
317     hashset(_globals, "props", genPropsModule());
318
319     // Make a "__gcsave" hash to hold the naRef objects which get
320     // passed to handles outside the interpreter (to protect them from
321     // begin garbage-collected).
322     _gcHash = naNewHash(_context);
323     hashset(_globals, "__gcsave", _gcHash);
324
325     // Now load the various source files in the Nasal directory
326     SGPath p(globals->get_fg_root());
327     p.append("Nasal");
328     ulDirEnt* dent;
329     ulDir* dir = ulOpenDir(p.c_str());
330     while(dir && (dent = ulReadDir(dir)) != 0) {
331         SGPath fullpath(p);
332         fullpath.append(dent->d_name);
333         SGPath file(dent->d_name);
334         if(file.extension() != "nas") continue;
335         readScriptFile(fullpath, file.base().c_str());
336     }
337
338     // Pull scripts out of the property tree, too
339     loadPropertyScripts();
340 }
341
342 // Loads the scripts found under /nasal in the global tree
343 void FGNasalSys::loadPropertyScripts()
344 {
345     SGPropertyNode* nasal = globals->get_props()->getNode("nasal");
346     if(!nasal) return;
347
348     for(int i=0; i<nasal->nChildren(); i++) {
349         SGPropertyNode* n = nasal->getChild(i);
350
351         const char* module = n->getName();
352         if(n->hasChild("module"))
353             module = n->getStringValue("module");
354
355         const char* file = n->getStringValue("file");
356         if(!n->hasChild("file")) file = 0; // Hrm...
357         if(file) {
358             SGPath p(globals->get_fg_root());
359             p.append(file);
360             readScriptFile(p, module);
361         }
362         
363         const char* src = n->getStringValue("script");
364         if(!n->hasChild("script")) src = 0; // Hrm...
365         if(src)
366             initModule(module, n->getPath(), src, strlen(src));
367
368         if(!file && !src)
369             SG_LOG(SG_NASAL, SG_ALERT, "Nasal error: " <<
370                    "no <file> or <script> defined in " <<
371                    "/nasal/" << module);
372     }
373 }
374
375 // Logs a runtime error, with stack trace, to the FlightGear log stream
376 void FGNasalSys::logError()
377 {
378     SG_LOG(SG_NASAL, SG_ALERT,
379            "Nasal runtime error: " << naGetError(_context));
380     SG_LOG(SG_NASAL, SG_ALERT,
381            "  at " << naStr_data(naGetSourceFile(_context, 0)) <<
382            ", line " << naGetLine(_context, 0));
383     for(int i=1; i<naStackDepth(_context); i++)
384         SG_LOG(SG_NASAL, SG_ALERT,
385                "  called from: " << naStr_data(naGetSourceFile(_context, i)) <<
386                ", line " << naGetLine(_context, i));
387 }
388
389 // Reads a script file, executes it, and places the resulting
390 // namespace into the global namespace under the specified module
391 // name.
392 void FGNasalSys::readScriptFile(SGPath file, const char* module)
393 {
394     int len = 0;
395     char* buf = readfile(file.c_str(), &len);
396     if(!buf) {
397         SG_LOG(SG_NASAL, SG_ALERT,
398                "Nasal error: could not read script file " << file.c_str()
399                << " into module " << module);
400         return;
401     }
402
403     initModule(module, file.c_str(), buf, len);
404     delete[] buf;
405 }
406
407 // Parse and run.  Save the local variables namespace, as it will
408 // become a sub-object of globals.
409 void FGNasalSys::initModule(const char* moduleName, const char* fileName,
410                             const char* src, int len)
411 {
412     if(len == 0) len = strlen(src);
413
414     naRef code = parse(fileName, src, len);
415     if(naIsNil(code))
416         return;
417
418     // See if we already have a module hash to use.  This allows the
419     // user to, for example, add functions to the built-in math
420     // module.  Make a new one if necessary.
421     naRef locals;
422     naRef modname = naNewString(_context);
423     naStr_fromdata(modname, (char*)moduleName, strlen(moduleName));
424     if(!naHash_get(_globals, modname, &locals))
425         locals = naNewHash(_context);
426
427     naCall(_context, code, naNil(), naNil(), locals);
428     if(naGetError(_context)) {
429         logError();
430         return;
431     }
432     hashset(_globals, moduleName, locals);
433 }
434
435 naRef FGNasalSys::parse(const char* filename, const char* buf, int len)
436 {
437     if(len == 0) len = strlen(buf);
438     int errLine = -1;
439     naRef srcfile = naNewString(_context);
440     naStr_fromdata(srcfile, (char*)filename, strlen(filename));
441     naRef code = naParseCode(_context, srcfile, 1, (char*)buf, len, &errLine);
442     if(naIsNil(code)) {
443         SG_LOG(SG_NASAL, SG_ALERT,
444                "Nasal parse error: " << naGetError(_context) <<
445                " in "<< filename <<", line " << errLine);
446         return naNil();
447     }
448
449     // Bind to the global namespace before returning
450     return naBindFunction(_context, code, _globals);
451 }
452
453 bool FGNasalSys::handleCommand(const SGPropertyNode* arg)
454 {
455     // Parse the Nasal source.  I'd love to use the property name of
456     // the argument, but it's actually a *clone* of the original
457     // location in the property tree.  arg->getPath() returns an empty
458     // string.
459     const char* nasal = arg->getStringValue("script");
460     naRef code = parse("<command>", nasal);
461     if(naIsNil(code)) return false;
462     
463     // Cache the command argument for inspection via cmdarg().  For
464     // performance reasons, we won't bother with it if the invoked
465     // code doesn't need it.
466     _cmdArg = (SGPropertyNode*)arg;
467
468     // Call it!
469     naRef result = naCall(_context, code, naNil(), naNil(), naNil());
470     if(!naGetError(_context)) return true;
471     logError();
472     return false;
473 }
474
475 // settimer(func, dt, simtime) extension function.  The first argument
476 // is a Nasal function to call, the second is a delta time (from now),
477 // in seconds.  The third, if present, is a boolean value indicating
478 // that "simulator" time (rather than real time) is to be used.
479 //
480 // Implementation note: the FGTimer objects don't live inside the
481 // garbage collector, so the Nasal handler functions have to be
482 // "saved" somehow lest they be inadvertently cleaned.  In this case,
483 // they are inserted into a globals.__gcsave hash and removed on
484 // expiration.
485 void FGNasalSys::setTimer(naRef args)
486 {
487     // Extract the handler, delta, and simtime arguments:
488     naRef handler = naVec_get(args, 0);
489     if(!(naIsCode(handler) || naIsCCode(handler) || naIsFunc(handler)))
490         return;
491
492     naRef delta = naNumValue(naVec_get(args, 1));
493     if(naIsNil(delta)) return;
494     
495     bool simtime = naTrue(naVec_get(args, 2)) ? true : false;
496
497     // Generate and register a C++ timer handler
498     NasalTimer* t = new NasalTimer;
499     t->handler = handler;
500     t->gcKey = gcSave(handler);
501     t->nasal = this;
502
503     globals->get_event_mgr()->addEvent("NasalTimer",
504                                        t, &NasalTimer::timerExpired,
505                                        delta.num, simtime);
506 }
507
508 void FGNasalSys::handleTimer(NasalTimer* t)
509 {
510     naCall(_context, t->handler, naNil(), naNil(), naNil());
511     if(naGetError(_context))
512         logError();
513     gcRelease(t->gcKey);
514 }
515
516 int FGNasalSys::gcSave(naRef r)
517 {
518     int key = _nextGCKey++;
519     naHash_set(_gcHash, naNum(key), r);
520     return key;
521 }
522
523 void FGNasalSys::gcRelease(int key)
524 {
525     naHash_delete(_gcHash, naNum(key));
526 }
527
528 void FGNasalSys::NasalTimer::timerExpired()
529 {
530     nasal->handleTimer(this);
531     delete this;
532 }