10 #ifdef HAVE_SYS_TIME_H
11 # include <sys/time.h> // gettimeofday
16 #include <sys/types.h>
21 #include <simgear/nasal/nasal.h>
22 #include <simgear/props/props.hxx>
23 #include <simgear/math/sg_random.h>
24 #include <simgear/misc/sg_path.hxx>
25 #include <simgear/misc/sg_dir.hxx>
26 #include <simgear/misc/SimpleMarkdown.hxx>
27 #include <simgear/structure/commands.hxx>
28 #include <simgear/math/sg_geodesy.hxx>
29 #include <simgear/structure/event_mgr.hxx>
30 #include <simgear/debug/BufferedLogCallback.hxx>
32 #include <simgear/nasal/cppbind/from_nasal.hxx>
33 #include <simgear/nasal/cppbind/to_nasal.hxx>
34 #include <simgear/nasal/cppbind/Ghost.hxx>
35 #include <simgear/nasal/cppbind/NasalHash.hxx>
37 #include "NasalSGPath.hxx"
38 #include "NasalSys.hxx"
39 #include "NasalSys_private.hxx"
40 #include "NasalAircraft.hxx"
41 #include "NasalModelData.hxx"
42 #include "NasalPositioned.hxx"
43 #include "NasalCanvas.hxx"
44 #include "NasalClipboard.hxx"
45 #include "NasalCondition.hxx"
46 #include "NasalHTTP.hxx"
47 #include "NasalString.hxx"
49 #include <Main/globals.hxx>
50 #include <Main/util.hxx>
51 #include <Main/fg_props.hxx>
57 void postinitNasalGUI(naRef globals, naContext c);
59 static FGNasalSys* nasalSys = 0;
61 // Listener class for loading Nasal modules on demand
62 class FGNasalModuleListener : public SGPropertyChangeListener
65 FGNasalModuleListener(SGPropertyNode* node);
67 virtual void valueChanged(SGPropertyNode* node);
70 SGPropertyNode_ptr _node;
73 FGNasalModuleListener::FGNasalModuleListener(SGPropertyNode* node) : _node(node)
77 void FGNasalModuleListener::valueChanged(SGPropertyNode*)
79 if (_node->getBoolValue("enabled",false)&&
80 !_node->getBoolValue("loaded",true))
82 nasalSys->loadPropertyScripts(_node);
86 //////////////////////////////////////////////////////////////////////////
89 class TimerObj : public SGReferenced
92 TimerObj(FGNasalSys* sys, naRef f, naRef self, double interval) :
101 snprintf(nm, 128, "nasal-timer-%p", this);
103 _gcRoot = sys->gcSave(f);
104 _gcSelf = sys->gcSave(self);
110 _sys->gcRelease(_gcRoot);
111 _sys->gcRelease(_gcSelf);
114 bool isRunning() const { return _isRunning; }
119 globals->get_event_mgr()->removeTask(_name);
132 globals->get_event_mgr()->addEvent(_name, this, &TimerObj::invoke, _interval);
134 globals->get_event_mgr()->addTask(_name, this, &TimerObj::invoke,
135 _interval, _interval /* delay */);
139 // stop and then start -
140 void restart(double newInterval)
142 _interval = newInterval;
150 // Callback may restart the timer, so update status before callback is
151 // called (Prevent warnings of deleting not existing tasks from the
156 _sys->callMethod(_func, _self, 0, args, naNil() /* locals */);
159 void setSingleShot(bool aSingleShot)
161 _singleShot = aSingleShot;
164 bool isSingleShot() const
165 { return _singleShot; }
170 int _gcRoot, _gcSelf;
176 typedef SGSharedPtr<TimerObj> TimerObjRef;
177 typedef nasal::Ghost<TimerObjRef> NasalTimerObj;
179 ///////////////////////////////////////////////////////////////////////////
181 // Read and return file contents in a single buffer. Note use of
182 // stat() to get the file size. This is a win32 function, believe it
183 // or not. :) Note the REALLY IMPORTANT use of the "b" flag to fopen.
184 // Text mode brain damage will kill us if we're trying to do bytewise
186 static char* readfile(const char* file, int* lenOut)
189 if(stat(file, &data) != 0) return 0;
190 FILE* f = fopen(file, "rb");
192 char* buf = new char[data.st_size];
193 *lenOut = fread(buf, 1, data.st_size, f);
195 if(*lenOut != data.st_size) {
196 // Shouldn't happen, but warn anyway since it represents a
197 // platform bug and not a typical runtime error (missing file,
199 SG_LOG(SG_NASAL, SG_ALERT,
200 "ERROR in Nasal initialization: " <<
201 "short count returned from fread() of " << file <<
202 ". Check your C library!");
209 FGNasalSys::FGNasalSys() :
216 _wrappedNodeFunc = naNil();
218 _log = new simgear::BufferedLogCallback(SG_NASAL, SG_INFO);
219 _log->truncateAt(255);
220 sglog().addCallback(_log);
222 naSetErrorHandler(&logError);
225 // Utility. Sets a named key in a hash by C string, rather than nasal
227 void FGNasalSys::hashset(naRef hash, const char* key, naRef val)
229 naRef s = naNewString(_context);
230 naStr_fromdata(s, (char*)key, strlen(key));
231 naHash_set(hash, s, val);
234 void FGNasalSys::globalsSet(const char* key, naRef val)
236 hashset(_globals, key, val);
239 naRef FGNasalSys::call(naRef code, int argc, naRef* args, naRef locals)
241 return callMethod(code, naNil(), argc, args, locals);
244 naRef FGNasalSys::callWithContext(naContext ctx, naRef code, int argc, naRef* args, naRef locals)
246 return callMethodWithContext(ctx, code, naNil(), argc, args, locals);
249 // Does a naCall() in a new context. Wrapped here to make lock
250 // tracking easier. Extension functions are called with the lock, but
251 // we have to release it before making a new naCall(). So rather than
252 // drop the lock in every extension function that might call back into
253 // Nasal, we keep a stack depth counter here and only unlock/lock
254 // around the naCall if it isn't the first one.
256 naRef FGNasalSys::callMethod(naRef code, naRef self, int argc, naRef* args, naRef locals)
258 return naCallMethod(code, self, argc, args, locals);
261 naRef FGNasalSys::callMethodWithContext(naContext ctx, naRef code, naRef self, int argc, naRef* args, naRef locals)
263 return naCallMethodCtx(ctx, code, self, argc, args, locals);
266 FGNasalSys::~FGNasalSys()
269 SG_LOG(SG_GENERAL, SG_ALERT, "Nasal was not shutdown");
274 bool FGNasalSys::parseAndRun(const char* sourceCode)
276 naContext ctx = naNewContext();
277 naRef code = parse(ctx, "FGNasalSys::parseAndRun()", sourceCode,
283 callWithContext(ctx, code, 0, 0, naNil());
289 FGNasalScript* FGNasalSys::parseScript(const char* src, const char* name)
291 FGNasalScript* script = new FGNasalScript();
292 script->_gcKey = -1; // important, if we delete it on a parse
293 script->_nas = this; // error, don't clobber a real handle!
297 sprintf(buf, "FGNasalScript@%p", (void *)script);
301 script->_code = parse(name, src, strlen(src));
302 if(naIsNil(script->_code)) {
307 script->_gcKey = gcSave(script->_code);
312 // The get/setprop functions accept a *list* of strings and walk
313 // through the property tree with them to find the appropriate node.
314 // This allows a Nasal object to hold onto a property path and use it
315 // like a node object, e.g. setprop(ObjRoot, "size-parsecs", 2.02). This
316 // is the utility function that walks the property tree.
317 static SGPropertyNode* findnode(naContext c, naRef* vec, int len, bool create=false)
319 SGPropertyNode* p = globals->get_props();
321 for(int i=0; i<len; i++) {
324 naRuntimeError(c, "bad argument to setprop/getprop path: expected a string");
326 naRef b = i < len-1 ? naNumValue(vec[i+1]) : naNil();
328 p = p->getNode(naStr_data(a), (int)b.num, create);
331 p = p->getNode(naStr_data(a), create);
335 } catch (const string& err) {
336 naRuntimeError(c, (char *)err.c_str());
341 // getprop() extension function. Concatenates its string arguments as
342 // property names and returns the value of the specified property. Or
343 // nil if it doesn't exist.
344 static naRef f_getprop(naContext c, naRef me, int argc, naRef* args)
346 using namespace simgear;
348 naRuntimeError(c, "getprop() expects at least 1 argument");
350 const SGPropertyNode* p = findnode(c, args, argc, false);
351 if(!p) return naNil();
353 switch(p->getType()) {
354 case props::BOOL: case props::INT:
355 case props::LONG: case props::FLOAT:
358 double dv = p->getDoubleValue();
359 if (SGMisc<double>::isNaN(dv)) {
360 SG_LOG(SG_NASAL, SG_ALERT, "Nasal getprop: property " << p->getPath() << " is NaN");
368 case props::UNSPECIFIED:
370 naRef nastr = naNewString(c);
371 const char* val = p->getStringValue();
372 naStr_fromdata(nastr, (char*)val, strlen(val));
375 case props::ALIAS: // <--- FIXME, recurse?
381 // setprop() extension function. Concatenates its string arguments as
382 // property names and sets the value of the specified property to the
384 static naRef f_setprop(naContext c, naRef me, int argc, naRef* args)
387 naRuntimeError(c, "setprop() expects at least 2 arguments");
389 naRef val = args[argc - 1];
390 SGPropertyNode* p = findnode(c, args, argc-1, true);
394 if(naIsString(val)) result = p->setStringValue(naStr_data(val));
397 naRuntimeError(c, "setprop() value is not string or number");
399 if (SGMisc<double>::isNaN(val.num)) {
400 naRuntimeError(c, "setprop() passed a NaN");
403 result = p->setDoubleValue(val.num);
405 } catch (const string& err) {
406 naRuntimeError(c, (char *)err.c_str());
408 return naNum(result);
411 // print() extension function. Concatenates and prints its arguments
412 // to the FlightGear log. Uses the highest log level (SG_ALERT), to
413 // make sure it appears. Is there better way to do this?
414 static naRef f_print(naContext c, naRef me, int argc, naRef* args)
418 for(int i=0; i<n; i++) {
419 naRef s = naStringValue(c, args[i]);
420 if(naIsNil(s)) continue;
421 buf += naStr_data(s);
423 SG_LOG(SG_NASAL, SG_ALERT, buf);
424 return naNum(buf.length());
427 // logprint() extension function. Same as above, all arguments after the
428 // first argument are concatenated. Argument 0 is the log-level, matching
430 static naRef f_logprint(naContext c, naRef me, int argc, naRef* args)
433 naRuntimeError(c, "no prioirty argument to logprint()");
435 naRef priority = args[0];
438 for(int i=1; i<n; i++) {
439 naRef s = naStringValue(c, args[i]);
440 if(naIsNil(s)) continue;
441 buf += naStr_data(s);
443 // use the nasal source file and line for the message location, since
444 // that's more useful than the location here!
445 sglog().log(SG_NASAL, (sgDebugPriority)(int) priority.num,
446 naStr_data(naGetSourceFile(c, 0)),
447 naGetLine(c, 0), buf);
448 return naNum(buf.length());
452 // fgcommand() extension function. Executes a named command via the
453 // FlightGear command manager. Takes a single property node name as
455 static naRef f_fgcommand(naContext c, naRef me, int argc, naRef* args)
457 naRef cmd = argc > 0 ? args[0] : naNil();
458 naRef props = argc > 1 ? args[1] : naNil();
459 if(!naIsString(cmd) || (!naIsNil(props) && !naIsGhost(props)))
460 naRuntimeError(c, "bad arguments to fgcommand()");
461 SGPropertyNode_ptr node;
463 node = static_cast<SGPropertyNode*>(naGhost_ptr(props));
465 node = new SGPropertyNode;
467 return naNum(globals->get_commands()->execute(naStr_data(cmd), node));
470 // settimer(func, dt, simtime) extension function. Falls through to
471 // FGNasalSys::setTimer(). See there for docs.
472 static naRef f_settimer(naContext c, naRef me, int argc, naRef* args)
474 nasalSys->setTimer(c, argc, args);
478 static naRef f_makeTimer(naContext c, naRef me, int argc, naRef* args)
480 if (!naIsNum(args[0])) {
481 naRuntimeError(c, "bad interval argument to maketimer");
484 naRef func, self = naNil();
485 if (naIsFunc(args[1])) {
487 } else if ((argc == 3) && naIsFunc(args[2])) {
492 TimerObj* timerObj = new TimerObj(nasalSys, func, self, args[0].num);
493 return nasal::to_nasal(c, timerObj);
496 // setlistener(func, property, bool) extension function. Falls through to
497 // FGNasalSys::setListener(). See there for docs.
498 static naRef f_setlistener(naContext c, naRef me, int argc, naRef* args)
500 return nasalSys->setListener(c, argc, args);
503 // removelistener(int) extension function. Falls through to
504 // FGNasalSys::removeListener(). See there for docs.
505 static naRef f_removelistener(naContext c, naRef me, int argc, naRef* args)
507 return nasalSys->removeListener(c, argc, args);
510 // Returns a ghost handle to the argument to the currently executing
512 static naRef f_cmdarg(naContext c, naRef me, int argc, naRef* args)
514 return nasalSys->cmdArgGhost();
517 // Sets up a property interpolation. The first argument is either a
518 // ghost (SGPropertyNode*) or a string (global property path) to
519 // interpolate. The second argument is a vector of pairs of
520 // value/delta numbers.
521 static naRef f_interpolate(naContext c, naRef me, int argc, naRef* args)
523 SGPropertyNode* node;
524 naRef prop = argc > 0 ? args[0] : naNil();
525 if(naIsString(prop)) node = fgGetNode(naStr_data(prop), true);
526 else if(naIsGhost(prop)) node = static_cast<SGPropertyNode*>(naGhost_ptr(prop));
529 naRef curve = argc > 1 ? args[1] : naNil();
530 if(!naIsVector(curve)) return naNil();
531 int nPoints = naVec_size(curve) / 2;
533 simgear::PropertyList value_nodes;
534 value_nodes.reserve(nPoints);
536 deltas.reserve(nPoints);
538 for( int i = 0; i < nPoints; ++i )
540 SGPropertyNode* val = new SGPropertyNode;
541 val->setDoubleValue(naNumValue(naVec_get(curve, 2*i)).num);
542 value_nodes.push_back(val);
543 deltas.push_back(naNumValue(naVec_get(curve, 2*i+1)).num);
546 node->interpolate("numeric", value_nodes, deltas, "linear");
550 // This is a better RNG than the one in the default Nasal distribution
551 // (which is based on the C library rand() implementation). It will
553 static naRef f_rand(naContext c, naRef me, int argc, naRef* args)
555 return naNum(sg_random());
558 static naRef f_srand(naContext c, naRef me, int argc, naRef* args)
564 static naRef f_abort(naContext c, naRef me, int argc, naRef* args)
570 // Return an array listing of all files in a directory
571 static naRef f_directory(naContext c, naRef me, int argc, naRef* args)
573 if(argc != 1 || !naIsString(args[0]))
574 naRuntimeError(c, "bad arguments to directory()");
576 simgear::Dir d(SGPath(naStr_data(args[0])));
577 if(!d.exists()) return naNil();
578 naRef result = naNewVector(c);
580 simgear::PathList paths = d.children(simgear::Dir::TYPE_FILE | simgear::Dir::TYPE_DIR);
581 for (unsigned int i=0; i<paths.size(); ++i) {
582 std::string p = paths[i].file();
583 naVec_append(result, naStr_fromdata(naNewString(c), p.c_str(), p.size()));
590 * Given a data path, resolve it in FG_ROOT or an FG_AIRCRFT directory
592 static naRef f_resolveDataPath(naContext c, naRef me, int argc, naRef* args)
594 if(argc != 1 || !naIsString(args[0]))
595 naRuntimeError(c, "bad arguments to resolveDataPath()");
597 SGPath p = globals->resolve_maybe_aircraft_path(naStr_data(args[0]));
598 const char* pdata = p.c_str();
599 return naStr_fromdata(naNewString(c), const_cast<char*>(pdata), strlen(pdata));
602 static naRef f_findDataDir(naContext c, naRef me, int argc, naRef* args)
604 if(argc != 1 || !naIsString(args[0]))
605 naRuntimeError(c, "bad arguments to findDataDir()");
607 SGPath p = globals->find_data_dir(naStr_data(args[0]));
608 const char* pdata = p.c_str();
609 return naStr_fromdata(naNewString(c), const_cast<char*>(pdata), strlen(pdata));
612 class NasalCommand : public SGCommandMgr::Command
615 NasalCommand(FGNasalSys* sys, naRef f, const std::string& name) :
620 globals->get_commands()->addCommandObject(_name, this);
621 _gcRoot = sys->gcSave(f);
624 virtual ~NasalCommand()
626 _sys->gcRelease(_gcRoot);
629 virtual bool operator()(const SGPropertyNode* aNode)
631 _sys->setCmdArg(const_cast<SGPropertyNode*>(aNode));
633 args[0] = _sys->wrappedPropsNode(const_cast<SGPropertyNode*>(aNode));
635 _sys->callMethod(_func, naNil(), 1, args, naNil() /* locals */);
647 static naRef f_addCommand(naContext c, naRef me, int argc, naRef* args)
649 if(argc != 2 || !naIsString(args[0]) || !naIsFunc(args[1]))
650 naRuntimeError(c, "bad arguments to addcommand()");
652 nasalSys->addCommand(args[1], naStr_data(args[0]));
656 static naRef f_removeCommand(naContext c, naRef me, int argc, naRef* args)
658 if ((argc < 1) || !naIsString(args[0]))
659 naRuntimeError(c, "bad argument to removecommand()");
661 globals->get_commands()->removeCommand(naStr_data(args[0]));
666 // parsexml(<path> [, <start-tag> [, <end-tag> [, <data> [, <pi>]]]]);
668 // <path> ... absolute path to an XML file
669 // <start-tag> ... callback function with two args: tag name, attribute hash
670 // <end-tag> ... callback function with one arg: tag name
671 // <data> ... callback function with one arg: data
672 // <pi> ... callback function with two args: target, data
673 // (pi = "processing instruction")
674 // All four callback functions are optional and default to nil.
675 // The function returns nil on error, or the validated file name otherwise.
676 static naRef f_parsexml(naContext c, naRef me, int argc, naRef* args)
678 if(argc < 1 || !naIsString(args[0]))
679 naRuntimeError(c, "parsexml(): path argument missing or not a string");
680 if(argc > 5) argc = 5;
681 for(int i=1; i<argc; i++)
682 if(!(naIsNil(args[i]) || naIsFunc(args[i])))
683 naRuntimeError(c, "parsexml(): callback argument not a function");
685 const char* file = fgValidatePath(naStr_data(args[0]), false);
687 naRuntimeError(c, "parsexml(): reading '%s' denied "
688 "(unauthorized access)", naStr_data(args[0]));
691 std::ifstream input(file);
692 NasalXMLVisitor visitor(c, argc, args);
694 readXML(input, visitor);
695 } catch (const sg_exception& e) {
696 naRuntimeError(c, "parsexml(): file '%s' %s",
697 file, e.getFormattedMessage().c_str());
700 return naStr_fromdata(naNewString(c), const_cast<char*>(file), strlen(file));
704 * Parse very simple and small subset of markdown
706 * parse_markdown(src)
708 static naRef f_parse_markdown(naContext c, naRef me, int argc, naRef* args)
710 nasal::CallContext ctx(c, me, argc, args);
712 simgear::SimpleMarkdown::parse(ctx.requireArg<std::string>(0))
717 * Create md5 hash from given string
721 static naRef f_md5(naContext c, naRef me, int argc, naRef* args)
723 if( argc != 1 || !naIsString(args[0]) )
724 naRuntimeError(c, "md5(): wrong type or number of arguments");
726 return nasal::to_nasal(
728 simgear::strutils::md5(naStr_data(args[0]), naStr_len(args[0]))
732 // Return UNIX epoch time in seconds.
733 static naRef f_systime(naContext c, naRef me, int argc, naRef* args)
737 GetSystemTimeAsFileTime(&ft);
738 double t = (4294967296.0 * ft.dwHighDateTime + ft.dwLowDateTime);
739 // Converts from 100ns units in 1601 epoch to unix epoch in sec
740 return naNum((t * 1e-7) - 11644473600.0);
743 gettimeofday(&td, 0);
744 return naNum(td.tv_sec + 1e-6 * td.tv_usec);
748 // Table of extension functions. Terminate with zeros.
749 static struct { const char* name; naCFunction func; } funcs[] = {
750 { "getprop", f_getprop },
751 { "setprop", f_setprop },
752 { "print", f_print },
753 { "logprint", f_logprint },
754 { "_fgcommand", f_fgcommand },
755 { "settimer", f_settimer },
756 { "maketimer", f_makeTimer },
757 { "_setlistener", f_setlistener },
758 { "removelistener", f_removelistener },
759 { "addcommand", f_addCommand },
760 { "removecommand", f_removeCommand },
761 { "_cmdarg", f_cmdarg },
762 { "_interpolate", f_interpolate },
764 { "srand", f_srand },
765 { "abort", f_abort },
766 { "directory", f_directory },
767 { "resolvepath", f_resolveDataPath },
768 { "finddata", f_findDataDir },
769 { "parsexml", f_parsexml },
770 { "parse_markdown", f_parse_markdown },
772 { "systime", f_systime },
776 naRef FGNasalSys::cmdArgGhost()
778 return propNodeGhost(_cmdArg);
781 void FGNasalSys::setCmdArg(SGPropertyNode* aNode)
786 void FGNasalSys::init()
789 SG_LOG(SG_GENERAL, SG_ALERT, "duplicate init of Nasal");
793 _context = naNewContext();
795 // Start with globals. Add it to itself as a recursive
796 // sub-reference under the name "globals". This gives client-code
797 // write access to the namespace if someone wants to do something
799 _globals = naInit_std(_context);
800 naSave(_context, _globals);
801 hashset(_globals, "globals", _globals);
803 hashset(_globals, "math", naInit_math(_context));
804 hashset(_globals, "bits", naInit_bits(_context));
805 hashset(_globals, "io", naInit_io(_context));
806 hashset(_globals, "thread", naInit_thread(_context));
807 hashset(_globals, "utf8", naInit_utf8(_context));
809 // Add our custom extension functions:
810 for(i=0; funcs[i].name; i++)
811 hashset(_globals, funcs[i].name,
812 naNewFunc(_context, naNewCCode(_context, funcs[i].func)));
814 // And our SGPropertyNode wrapper
815 hashset(_globals, "props", genPropsModule());
817 // Add string methods
818 _string = naInit_string(_context);
819 naSave(_context, _string);
820 initNasalString(_globals, _string, _context);
822 initNasalPositioned(_globals, _context);
823 initNasalPositioned_cppbind(_globals, _context);
824 initNasalAircraft(_globals, _context);
825 NasalClipboard::init(this);
826 initNasalCanvas(_globals, _context);
827 initNasalCondition(_globals, _context);
828 initNasalHTTP(_globals, _context);
829 initNasalSGPath(_globals, _context);
831 NasalTimerObj::init("Timer")
832 .method("start", &TimerObj::start)
833 .method("stop", &TimerObj::stop)
834 .method("restart", &TimerObj::restart)
835 .member("singleShot", &TimerObj::isSingleShot, &TimerObj::setSingleShot)
836 .member("isRunning", &TimerObj::isRunning);
838 // Now load the various source files in the Nasal directory
839 simgear::Dir nasalDir(SGPath(globals->get_fg_root(), "Nasal"));
840 loadScriptDirectory(nasalDir);
842 // Add modules in Nasal subdirectories to property tree
843 simgear::PathList directories = nasalDir.children(simgear::Dir::TYPE_DIR+
844 simgear::Dir::NO_DOT_OR_DOTDOT, "");
845 for (unsigned int i=0; i<directories.size(); ++i) {
846 simgear::Dir dir(directories[i]);
847 simgear::PathList scripts = dir.children(simgear::Dir::TYPE_FILE, ".nas");
848 addModule(directories[i].file(), scripts);
851 // set signal and remove node to avoid restoring at reinit
852 const char *s = "nasal-dir-initialized";
853 SGPropertyNode *signal = fgGetNode("/sim/signals", true);
854 signal->setBoolValue(s, true);
855 signal->removeChildren(s);
857 if( !checkIOrules() )
859 SG_LOG(SG_NASAL, SG_ALERT, "Required IOrules check failed.");
863 // Pull scripts out of the property tree, too
864 loadPropertyScripts();
866 // now Nasal modules are loaded, we can do some delayed work
867 postinitNasalPositioned(_globals, _context);
868 postinitNasalGUI(_globals, _context);
873 void FGNasalSys::shutdown()
879 shutdownNasalPositioned();
881 map<int, FGNasalListener *>::iterator it, end = _listener.end();
882 for(it = _listener.begin(); it != end; ++it)
886 NasalCommandDict::iterator j = _commands.begin();
887 for (; j != _commands.end(); ++j) {
888 globals->get_commands()->removeCommand(j->first);
892 std::vector<FGNasalModuleListener*>::iterator k = _moduleListeners.begin();
893 for(; k!= _moduleListeners.end(); ++k)
895 _moduleListeners.clear();
899 _string = naNil(); // will be freed by _context
900 naFreeContext(_context);
902 //setWatchedRef(_globals);
904 // remove the recursive reference in globals
905 hashset(_globals, "globals", naNil());
912 naRef FGNasalSys::wrappedPropsNode(SGPropertyNode* aProps)
914 if (naIsNil(_wrappedNodeFunc)) {
915 nasal::Hash props = getGlobals().get<nasal::Hash>("props");
916 _wrappedNodeFunc = props.get("wrapNode");
920 args[0] = propNodeGhost(aProps);
921 naContext ctx = naNewContext();
922 naRef wrapped = naCallMethodCtx(ctx, _wrappedNodeFunc, naNil(), 1, args, naNil());
927 void FGNasalSys::update(double)
929 if( NasalClipboard::getInstance() )
930 NasalClipboard::getInstance()->update();
932 if(!_dead_listener.empty()) {
933 vector<FGNasalListener *>::iterator it, end = _dead_listener.end();
934 for(it = _dead_listener.begin(); it != end; ++it) delete *it;
935 _dead_listener.clear();
938 if (!_loadList.empty())
943 // process Nasal load hook (only one per update loop to avoid excessive lags)
944 _loadList.pop()->load();
947 if (!_unloadList.empty())
949 // process pending Nasal unload hooks after _all_ load hooks were processed
950 // (only unload one per update loop to avoid excessive lags)
951 _unloadList.pop()->unload();
954 // Destroy all queued ghosts
955 nasal::ghostProcessDestroyList();
957 // The global context is a legacy thing. We use dynamically
958 // created contexts for naCall() now, so that we can call them
959 // recursively. But there are still spots that want to use it for
960 // naNew*() calls, which end up leaking memory because the context
961 // only clears out its temporary vector when it's *used*. So just
962 // junk it and fetch a new/reinitialized one every frame. This is
963 // clumsy: the right solution would use the dynamic context in all
964 // cases and eliminate _context entirely. But that's more work,
965 // and this works fine (yes, they say "New" and "Free", but
966 // they're very fast, just trust me). -Andy
967 naFreeContext(_context);
968 _context = naNewContext();
971 bool pathSortPredicate(const SGPath& p1, const SGPath& p2)
973 return p1.file() < p2.file();
976 // Loads all scripts in given directory
977 void FGNasalSys::loadScriptDirectory(simgear::Dir nasalDir)
979 simgear::PathList scripts = nasalDir.children(simgear::Dir::TYPE_FILE, ".nas");
980 // Note: simgear::Dir already reports file entries in a deterministic order,
981 // so a fixed loading sequence is guaranteed (same for every user)
982 for (unsigned int i=0; i<scripts.size(); ++i) {
983 SGPath fullpath(scripts[i]);
984 SGPath file = fullpath.file();
985 loadModule(fullpath, file.base().c_str());
989 // Create module with list of scripts
990 void FGNasalSys::addModule(string moduleName, simgear::PathList scripts)
992 if (! scripts.empty())
994 SGPropertyNode* nasal = globals->get_props()->getNode("nasal");
995 SGPropertyNode* module_node = nasal->getChild(moduleName,0,true);
996 for (unsigned int i=0; i<scripts.size(); ++i) {
997 SGPropertyNode* pFileNode = module_node->getChild("file",i,true);
998 pFileNode->setStringValue(scripts[i].c_str());
1000 if (!module_node->hasChild("enabled",0))
1002 SGPropertyNode* node = module_node->getChild("enabled",0,true);
1003 node->setBoolValue(true);
1004 node->setAttribute(SGPropertyNode::USERARCHIVE,true);
1009 // Loads the scripts found under /nasal in the global tree
1010 void FGNasalSys::loadPropertyScripts()
1012 SGPropertyNode* nasal = globals->get_props()->getNode("nasal");
1015 for(int i=0; i<nasal->nChildren(); i++)
1017 SGPropertyNode* n = nasal->getChild(i);
1018 loadPropertyScripts(n);
1022 // Loads the scripts found under /nasal in the global tree
1023 void FGNasalSys::loadPropertyScripts(SGPropertyNode* n)
1025 bool is_loaded = false;
1027 const char* module = n->getName();
1028 if(n->hasChild("module"))
1029 module = n->getStringValue("module");
1030 if (n->getBoolValue("enabled",true))
1032 // allow multiple files to be specified within a single
1036 bool file_specified = false;
1038 while((fn = n->getChild("file", j)) != NULL) {
1039 file_specified = true;
1040 const char* file = fn->getStringValue();
1042 if (!p.isAbsolute() || !p.exists())
1044 p = globals->resolve_maybe_aircraft_path(file);
1047 SG_LOG(SG_NASAL, SG_ALERT, "Cannot find Nasal script '" <<
1048 file << "' for module '" << module << "'.");
1051 ok &= p.isNull() ? false : loadModule(p, module);
1055 const char* src = n->getStringValue("script");
1056 if(!n->hasChild("script")) src = 0; // Hrm...
1058 createModule(module, n->getPath().c_str(), src, strlen(src));
1060 if(!file_specified && !src)
1062 // module no longer exists - clear the archived "enable" flag
1063 n->setAttribute(SGPropertyNode::USERARCHIVE,false);
1064 SGPropertyNode* node = n->getChild("enabled",0,false);
1066 node->setAttribute(SGPropertyNode::USERARCHIVE,false);
1068 SG_LOG(SG_NASAL, SG_ALERT, "Nasal error: " <<
1069 "no <file> or <script> defined in " <<
1070 "/nasal/" << module);
1077 SGPropertyNode* enable = n->getChild("enabled");
1080 FGNasalModuleListener* listener = new FGNasalModuleListener(n);
1081 _moduleListeners.push_back(listener);
1082 enable->addChangeListener(listener, false);
1085 SGPropertyNode* loaded = n->getChild("loaded",0,true);
1086 loaded->setAttribute(SGPropertyNode::PRESERVE,true);
1087 loaded->setBoolValue(is_loaded);
1090 // Logs a runtime error, with stack trace, to the FlightGear log stream
1091 void FGNasalSys::logError(naContext context)
1093 SG_LOG(SG_NASAL, SG_ALERT, "Nasal runtime error: " << naGetError(context));
1094 int stack_depth = naStackDepth(context);
1095 if( stack_depth < 1 )
1097 SG_LOG(SG_NASAL, SG_ALERT,
1098 " at " << naStr_data(naGetSourceFile(context, 0)) <<
1099 ", line " << naGetLine(context, 0));
1100 for(int i=1; i<stack_depth; i++)
1101 SG_LOG(SG_NASAL, SG_ALERT,
1102 " called from: " << naStr_data(naGetSourceFile(context, i)) <<
1103 ", line " << naGetLine(context, i));
1106 // Reads a script file, executes it, and places the resulting
1107 // namespace into the global namespace under the specified module
1109 bool FGNasalSys::loadModule(SGPath file, const char* module)
1112 char* buf = readfile(file.c_str(), &len);
1114 SG_LOG(SG_NASAL, SG_ALERT,
1115 "Nasal error: could not read script file " << file.c_str()
1116 << " into module " << module);
1120 bool ok = createModule(module, file.c_str(), buf, len);
1125 // Parse and run. Save the local variables namespace, as it will
1126 // become a sub-object of globals. The optional "arg" argument can be
1127 // used to pass an associated property node to the module, which can then
1128 // be accessed via cmdarg(). (This is, for example, used by XML dialogs.)
1129 bool FGNasalSys::createModule(const char* moduleName, const char* fileName,
1130 const char* src, int len,
1131 const SGPropertyNode* cmdarg,
1132 int argc, naRef* args)
1134 naContext ctx = naNewContext();
1135 naRef code = parse(ctx, fileName, src, len);
1142 // See if we already have a module hash to use. This allows the
1143 // user to, for example, add functions to the built-in math
1144 // module. Make a new one if necessary.
1146 naRef modname = naNewString(ctx);
1147 naStr_fromdata(modname, (char*)moduleName, strlen(moduleName));
1148 if(!naHash_get(_globals, modname, &locals))
1149 locals = naNewHash(ctx);
1151 _cmdArg = (SGPropertyNode*)cmdarg;
1153 callWithContext(ctx, code, argc, args, locals);
1154 hashset(_globals, moduleName, locals);
1160 void FGNasalSys::deleteModule(const char* moduleName)
1163 // can occur on shutdown due to us being shutdown first, but other
1164 // subsystems having Nasal objects.
1168 naContext ctx = naNewContext();
1169 naRef modname = naNewString(ctx);
1170 naStr_fromdata(modname, (char*)moduleName, strlen(moduleName));
1171 naHash_delete(_globals, modname);
1175 naRef FGNasalSys::parse(naContext ctx, const char* filename, const char* buf, int len)
1178 naRef srcfile = naNewString(ctx);
1179 naStr_fromdata(srcfile, (char*)filename, strlen(filename));
1180 naRef code = naParseCode(ctx, srcfile, 1, (char*)buf, len, &errLine);
1182 SG_LOG(SG_NASAL, SG_ALERT,
1183 "Nasal parse error: " << naGetError(ctx) <<
1184 " in "<< filename <<", line " << errLine);
1188 // Bind to the global namespace before returning
1189 return naBindFunction(ctx, code, _globals);
1192 bool FGNasalSys::handleCommand( const char* moduleName,
1193 const char* fileName,
1195 const SGPropertyNode* arg )
1197 naContext ctx = naNewContext();
1198 naRef code = parse(ctx, fileName, src, strlen(src));
1204 // Commands can be run "in" a module. Make sure that module
1205 // exists, and set it up as the local variables hash for the
1207 naRef locals = naNil();
1209 naRef modname = naNewString(ctx);
1210 naStr_fromdata(modname, (char*)moduleName, strlen(moduleName));
1211 if(!naHash_get(_globals, modname, &locals)) {
1212 locals = naNewHash(ctx);
1213 naHash_set(_globals, modname, locals);
1217 // Cache this command's argument for inspection via cmdarg(). For
1218 // performance reasons, we won't bother with it if the invoked
1219 // code doesn't need it.
1220 _cmdArg = (SGPropertyNode*)arg;
1222 callWithContext(ctx, code, 0, 0, locals);
1227 bool FGNasalSys::handleCommand(const SGPropertyNode* arg)
1229 const char* src = arg->getStringValue("script");
1230 const char* moduleName = arg->getStringValue("module");
1232 return handleCommand( moduleName,
1233 arg->getPath(true).c_str(),
1238 // settimer(func, dt, simtime) extension function. The first argument
1239 // is a Nasal function to call, the second is a delta time (from now),
1240 // in seconds. The third, if present, is a boolean value indicating
1241 // that "real world" time (rather than simulator time) is to be used.
1243 // Implementation note: the FGTimer objects don't live inside the
1244 // garbage collector, so the Nasal handler functions have to be
1245 // "saved" somehow lest they be inadvertently cleaned. In this case,
1246 // they are inserted into a globals.__gcsave hash and removed on
1248 void FGNasalSys::setTimer(naContext c, int argc, naRef* args)
1250 // Extract the handler, delta, and simtime arguments:
1251 naRef handler = argc > 0 ? args[0] : naNil();
1252 if(!(naIsCode(handler) || naIsCCode(handler) || naIsFunc(handler))) {
1253 naRuntimeError(c, "settimer() with invalid function argument");
1257 naRef delta = argc > 1 ? args[1] : naNil();
1258 if(naIsNil(delta)) {
1259 naRuntimeError(c, "settimer() with invalid time argument");
1263 bool simtime = (argc > 2 && naTrue(args[2])) ? false : true;
1265 // Generate and register a C++ timer handler
1266 NasalTimer* t = new NasalTimer;
1267 t->handler = handler;
1268 t->gcKey = gcSave(handler);
1271 globals->get_event_mgr()->addEvent("NasalTimer",
1272 t, &NasalTimer::timerExpired,
1273 delta.num, simtime);
1276 void FGNasalSys::handleTimer(NasalTimer* t)
1278 call(t->handler, 0, 0, naNil());
1279 gcRelease(t->gcKey);
1282 int FGNasalSys::gcSave(naRef r)
1287 void FGNasalSys::gcRelease(int key)
1292 //------------------------------------------------------------------------------
1293 bool FGNasalSys::checkIOrules()
1295 // Ensure IOrules and path validation are working properly by trying to
1296 // access a folder/file which should never be accessible.
1297 const char* no_access_path =
1303 bool success = true;
1306 if( fgValidatePath(no_access_path, true) )
1313 "Check your IOrules! (write to '" << no_access_path << "' is allowed)"
1318 if( fgValidatePath(no_access_path, false) )
1325 "Check your IOrules! (read from '" << no_access_path << "' is allowed)"
1332 //------------------------------------------------------------------------------
1333 void FGNasalSys::NasalTimer::timerExpired()
1335 nasal->handleTimer(this);
1339 int FGNasalSys::_listenerId = 0;
1341 // setlistener(<property>, <func> [, <initial=0> [, <persistent=1>]])
1342 // Attaches a callback function to a property (specified as a global
1343 // property path string or a SGPropertyNode* ghost). If the third,
1344 // optional argument (default=0) is set to 1, then the function is also
1345 // called initially. If the fourth, optional argument is set to 0, then the
1346 // function is only called when the property node value actually changes.
1347 // Otherwise it's called independent of the value whenever the node is
1348 // written to (default). The setlistener() function returns a unique
1349 // id number, which is to be used as argument to the removelistener()
1351 naRef FGNasalSys::setListener(naContext c, int argc, naRef* args)
1353 SGPropertyNode_ptr node;
1354 naRef prop = argc > 0 ? args[0] : naNil();
1355 if(naIsString(prop)) node = fgGetNode(naStr_data(prop), true);
1356 else if(naIsGhost(prop)) node = static_cast<SGPropertyNode*>(naGhost_ptr(prop));
1358 naRuntimeError(c, "setlistener() with invalid property argument");
1363 SG_LOG(SG_NASAL, SG_DEBUG, "Attaching listener to tied property " <<
1366 naRef code = argc > 1 ? args[1] : naNil();
1367 if(!(naIsCode(code) || naIsCCode(code) || naIsFunc(code))) {
1368 naRuntimeError(c, "setlistener() with invalid function argument");
1372 int init = argc > 2 && naIsNum(args[2]) ? int(args[2].num) : 0;
1373 int type = argc > 3 && naIsNum(args[3]) ? int(args[3].num) : 1;
1374 FGNasalListener *nl = new FGNasalListener(node, code, this,
1375 gcSave(code), _listenerId, init, type);
1377 node->addChangeListener(nl, init != 0);
1379 _listener[_listenerId] = nl;
1380 return naNum(_listenerId++);
1383 // removelistener(int) extension function. The argument is the id of
1384 // a listener as returned by the setlistener() function.
1385 naRef FGNasalSys::removeListener(naContext c, int argc, naRef* args)
1387 naRef id = argc > 0 ? args[0] : naNil();
1388 map<int, FGNasalListener *>::iterator it = _listener.find(int(id.num));
1390 if(!naIsNum(id) || it == _listener.end() || it->second->_dead) {
1391 naRuntimeError(c, "removelistener() with invalid listener id");
1395 it->second->_dead = true;
1396 _dead_listener.push_back(it->second);
1397 _listener.erase(it);
1398 return naNum(_listener.size());
1401 void FGNasalSys::registerToLoad(FGNasalModelData *data)
1403 if( _loadList.empty() )
1405 _loadList.push(data);
1408 void FGNasalSys::registerToUnload(FGNasalModelData *data)
1410 _unloadList.push(data);
1413 void FGNasalSys::addCommand(naRef func, const std::string& name)
1415 if (_commands.find(name) != _commands.end()) {
1416 SG_LOG(SG_NASAL, SG_WARN, "duplicate add of command:" << name);
1420 NasalCommand* cmd = new NasalCommand(this, func, name);
1421 _commands[name] = cmd;
1424 void FGNasalSys::removeCommand(const std::string& name)
1426 NasalCommandDict::iterator it = _commands.find(name);
1427 if (it == _commands.end()) {
1428 SG_LOG(SG_NASAL, SG_WARN, "remove of unknwon command:" << name);
1432 // will delete the NasalCommand instance
1433 globals->get_commands()->removeCommand(name);
1434 _commands.erase(it);
1437 //////////////////////////////////////////////////////////////////////////
1438 // FGNasalListener class.
1440 FGNasalListener::FGNasalListener(SGPropertyNode *node, naRef code,
1441 FGNasalSys* nasal, int key, int id,
1442 int init, int type) :
1455 if(_type == 0 && !_init)
1459 FGNasalListener::~FGNasalListener()
1461 _node->removeChangeListener(this);
1462 _nas->gcRelease(_gcKey);
1465 void FGNasalListener::call(SGPropertyNode* which, naRef mode)
1467 if(_active || _dead) return;
1470 arg[0] = _nas->propNodeGhost(which);
1471 arg[1] = _nas->propNodeGhost(_node);
1472 arg[2] = mode; // value changed, child added/removed
1473 arg[3] = naNum(_node != which); // child event?
1474 _nas->call(_code, 4, arg, naNil());
1478 void FGNasalListener::valueChanged(SGPropertyNode* node)
1480 if(_type < 2 && node != _node) return; // skip child events
1481 if(_type > 0 || changed(_node) || _init)
1482 call(node, naNum(0));
1487 void FGNasalListener::childAdded(SGPropertyNode*, SGPropertyNode* child)
1489 if(_type == 2) call(child, naNum(1));
1492 void FGNasalListener::childRemoved(SGPropertyNode*, SGPropertyNode* child)
1494 if(_type == 2) call(child, naNum(-1));
1497 bool FGNasalListener::changed(SGPropertyNode* node)
1499 using namespace simgear;
1500 props::Type type = node->getType();
1501 if(type == props::NONE) return false;
1502 if(type == props::UNSPECIFIED) return true;
1510 long l = node->getLongValue();
1511 result = l != _last_int;
1518 double d = node->getDoubleValue();
1519 result = d != _last_float;
1525 string s = node->getStringValue();
1526 result = s != _last_string;
1533 // NasalXMLVisitor class: handles EasyXML visitor callback for parsexml()
1535 NasalXMLVisitor::NasalXMLVisitor(naContext c, int argc, naRef* args) :
1536 _c(naSubContext(c)),
1537 _start_element(argc > 1 ? args[1] : naNil()),
1538 _end_element(argc > 2 ? args[2] : naNil()),
1539 _data(argc > 3 ? args[3] : naNil()),
1540 _pi(argc > 4 ? args[4] : naNil())
1544 void NasalXMLVisitor::startElement(const char* tag, const XMLAttributes& a)
1546 if(naIsNil(_start_element)) return;
1547 naRef attr = naNewHash(_c);
1548 for(int i=0; i<a.size(); i++) {
1549 naRef name = make_string(a.getName(i));
1550 naRef value = make_string(a.getValue(i));
1551 naHash_set(attr, name, value);
1553 call(_start_element, 2, make_string(tag), attr);
1556 void NasalXMLVisitor::endElement(const char* tag)
1558 if(!naIsNil(_end_element)) call(_end_element, 1, make_string(tag));
1561 void NasalXMLVisitor::data(const char* str, int len)
1563 if(!naIsNil(_data)) call(_data, 1, make_string(str, len));
1566 void NasalXMLVisitor::pi(const char* target, const char* data)
1568 if(!naIsNil(_pi)) call(_pi, 2, make_string(target), make_string(data));
1571 void NasalXMLVisitor::call(naRef func, int num, naRef a, naRef b)
1576 naCall(_c, func, num, args, naNil(), naNil());
1581 naRef NasalXMLVisitor::make_string(const char* s, int n)
1583 return naStr_fromdata(naNewString(_c), const_cast<char *>(s),
1584 n < 0 ? strlen(s) : n);