X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FScripting%2FNasalSys.cxx;h=991147e790c5619d3b4e0ad14e24f86fe1f47612;hb=50e19ee23970db9bf7314d74f0ed223d8bf702c0;hp=fda06b465294a759fc41c5d66b39753599922079;hpb=a9ea5223884dceca51c32e32fcb7d0f9f60102c8;p=flightgear.git diff --git a/src/Scripting/NasalSys.cxx b/src/Scripting/NasalSys.cxx index fda06b465..991147e79 100644 --- a/src/Scripting/NasalSys.cxx +++ b/src/Scripting/NasalSys.cxx @@ -3,10 +3,15 @@ # include "config.h" #endif +#ifdef HAVE_SYS_TIME_H +# include // gettimeofday +#endif + #include #include #include #include +#include #include @@ -15,13 +20,19 @@ #include #include #include +#include #include +#include #include
#include
+#include #include "NasalSys.hxx" +static FGNasalSys* nasalSys = 0; + + // Read and return file contents in a single buffer. Note use of // stat() to get the file size. This is a win32 function, believe it // or not. :) Note the REALLY IMPORTANT use of the "b" flag to fopen. @@ -52,20 +63,43 @@ static char* readfile(const char* file, int* lenOut) FGNasalSys::FGNasalSys() { + nasalSys = this; _context = 0; _globals = naNil(); _gcHash = naNil(); _nextGCKey = 0; // Any value will do + _callCount = 0; + _purgeListeners = false; +} + +// Does a naCall() in a new context. Wrapped here to make lock +// tracking easier. Extension functions are called with the lock, but +// we have to release it before making a new naCall(). So rather than +// drop the lock in every extension function that might call back into +// Nasal, we keep a stack depth counter here and only unlock/lock +// around the naCall if it isn't the first one. +naRef FGNasalSys::call(naRef code, naRef locals) +{ + naContext ctx = naNewContext(); + if(_callCount) naModUnlock(); + _callCount++; + naRef result = naCall(ctx, code, 0, 0, naNil(), locals); + if(naGetError(ctx)) + logError(ctx); + _callCount--; + if(_callCount) naModLock(); + naFreeContext(ctx); + return result; } FGNasalSys::~FGNasalSys() { - // Nasal doesn't have a "destroy context" API yet. :( - // Not a problem for a global subsystem that will never be - // destroyed. And the context is actually a global, so no memory - // is technically leaked (although the GC pool memory obviously - // won't be freed). - _context = 0; + nasalSys = 0; + map::iterator it, end = _listener.end(); + for(it = _listener.begin(); it != end; ++it) + delete it->second; + + naFreeContext(_context); _globals = naNil(); } @@ -75,12 +109,8 @@ bool FGNasalSys::parseAndRun(const char* sourceCode) strlen(sourceCode)); if(naIsNil(code)) return false; - - naCall(_context, code, 0, 0, naNil(), naNil()); - - if(!naGetError(_context)) return true; - logError(_context); - return false; + call(code, naNil()); + return true; } FGNasalScript* FGNasalSys::parseScript(const char* src, const char* name) @@ -91,7 +121,7 @@ FGNasalScript* FGNasalSys::parseScript(const char* src, const char* name) char buf[256]; if(!name) { - sprintf(buf, "FGNasalScript@%p", script); + sprintf(buf, "FGNasalScript@%p", (void *)script); name = buf; } @@ -124,11 +154,16 @@ void FGNasalSys::hashset(naRef hash, const char* key, naRef val) static SGPropertyNode* findnode(naContext c, naRef* vec, int len) { SGPropertyNode* p = globals->get_props(); - for(int i=0; igetNode(naStr_data(a)); - if(p == 0) return 0; + try { + for(int i=0; igetNode(naStr_data(a)); + if(p == 0) return 0; + } + } catch (const string& err) { + naRuntimeError(c, (char *)err.c_str()); + return 0; } return p; } @@ -185,8 +220,17 @@ static naRef f_setprop(naContext c, naRef me, int argc, naRef* args) SGPropertyNode* props = globals->get_props(); naRef val = args[argc-1]; - if(naIsString(val)) props->setStringValue(buf, naStr_data(val)); - else props->setDoubleValue(buf, naNumValue(val).num); + try { + if(naIsString(val)) props->setStringValue(buf, naStr_data(val)); + else { + naRef n = naNumValue(val); + if(naIsNil(n)) + naRuntimeError(c, "setprop() value is not string or number"); + props->setDoubleValue(buf, n.num); + } + } catch (const string& err) { + naRuntimeError(c, (char *)err.c_str()); + } return naNil(); #undef BUFLEN } @@ -196,24 +240,15 @@ static naRef f_setprop(naContext c, naRef me, int argc, naRef* args) // make sure it appears. Is there better way to do this? static naRef f_print(naContext c, naRef me, int argc, naRef* args) { -#define BUFLEN 1024 - char buf[BUFLEN + 1]; - buf[BUFLEN] = 0; // extra nul to handle strncpy brain damage - buf[0] = 0; // Zero-length in case there are no arguments - char* p = buf; - int buflen = BUFLEN; + string buf; int n = argc; for(int i=0; i 0 ? args[0] : naNil(); + naRef props = argc > 1 ? args[1] : naNil(); + if(!naIsString(cmd) || (!naIsNil(props) && !naIsGhost(props))) naRuntimeError(c, "bad arguments to fgcommand()"); - naRef cmd = args[0], props = args[1]; - SGPropertyNode_ptr* node = (SGPropertyNode_ptr*)naGhost_ptr(props); - globals->get_commands()->execute(naStr_data(cmd), *node); - return naNil(); - + SGPropertyNode_ptr tmp, *node; + if(!naIsNil(props)) + node = (SGPropertyNode_ptr*)naGhost_ptr(props); + else { + tmp = new SGPropertyNode(); + node = &tmp; + } + return naNum(globals->get_commands()->execute(naStr_data(cmd), *node)); } // settimer(func, dt, simtime) extension function. Falls through to // FGNasalSys::setTimer(). See there for docs. static naRef f_settimer(naContext c, naRef me, int argc, naRef* args) { - FGNasalSys* nasal = (FGNasalSys*)globals->get_subsystem("nasal"); - nasal->setTimer(argc, args); + nasalSys->setTimer(c, argc, args); return naNil(); } @@ -243,24 +282,21 @@ static naRef f_settimer(naContext c, naRef me, int argc, naRef* args) // FGNasalSys::setListener(). See there for docs. static naRef f_setlistener(naContext c, naRef me, int argc, naRef* args) { - FGNasalSys* nasal = (FGNasalSys*)globals->get_subsystem("nasal"); - return nasal->setListener(argc, args); + return nasalSys->setListener(c, argc, args); } // removelistener(int) extension function. Falls through to // FGNasalSys::removeListener(). See there for docs. static naRef f_removelistener(naContext c, naRef me, int argc, naRef* args) { - FGNasalSys* nasal = (FGNasalSys*)globals->get_subsystem("nasal"); - return nasal->removeListener(argc, args); + return nasalSys->removeListener(c, argc, args); } // Returns a ghost handle to the argument to the currently executing // command static naRef f_cmdarg(naContext c, naRef me, int argc, naRef* args) { - FGNasalSys* nasal = (FGNasalSys*)globals->get_subsystem("nasal"); - return nasal->cmdArgGhost(); + return nasalSys->cmdArgGhost(); } // Sets up a property interpolation. The first argument is either a @@ -285,7 +321,8 @@ static naRef f_interpolate(naContext c, naRef me, int argc, naRef* args) deltas[i] = naNumValue(naVec_get(curve, 2*i+1)).num; } - ((SGInterpolator*)globals->get_subsystem("interpolator")) + ((SGInterpolator*)globals->get_subsystem_mgr() + ->get_group(SGSubsystemMgr::INIT)->get_subsystem("interpolator")) ->interpolate(node, nPoints, values, deltas); return naNil(); @@ -322,6 +359,128 @@ static naRef f_directory(naContext c, naRef me, int argc, naRef* args) return result; } +// Parse XML file. +// parsexml( [, [, [, [, ]]]]); +// +// ... absolute path of an XML file +// ... callback function with two args: tag name, attribute hash +// ... callback function with one arg: tag name +// ... callback function with one arg: data +// ... callback function with two args: target, data +// (pi = "processing instruction") +// All four callback functions are optional and default to nil. +// The function returns nil on error, and the file name otherwise. +static naRef f_parsexml(naContext c, naRef me, int argc, naRef* args) +{ + if(argc < 1 || !naIsString(args[0])) + naRuntimeError(c, "parsexml(): path argument missing or not a string"); + if(argc > 5) argc = 5; + for(int i=1; iget_scenery()->get_elevation_m(lat, lon, 10000.0, elev, &mat)) + return naNil(); + naRef vec = naNewVector(c); + naVec_append(vec, naNum(elev)); + naRef matdata = naNil(); + if(mat) { + matdata = naNewHash(c); + naRef names = naNewVector(c); + const vector n = mat->get_names(); + for(unsigned int i=0; i(n[i].c_str()), n[i].size())); + HASHSET("names", 5, names); + HASHSET("solid", 5, naNum(mat->get_solid())); + HASHSET("friction_factor", 15, naNum(mat->get_friction_factor())); + HASHSET("rolling_friction", 16, naNum(mat->get_rolling_friction())); + HASHSET("load_resistance", 15, naNum(mat->get_load_resistance())); + HASHSET("bumpiness", 9, naNum(mat->get_bumpiness())); + HASHSET("light_coverage", 14, naNum(mat->get_light_coverage())); + } + naVec_append(vec, matdata); + return vec; +#undef HASHSET +} + // Table of extension functions. Terminate with zeros. static struct { char* name; naCFunction func; } funcs[] = { { "getprop", f_getprop }, @@ -336,6 +495,11 @@ static struct { char* name; naCFunction func; } funcs[] = { { "rand", f_rand }, { "srand", f_srand }, { "directory", f_directory }, + { "parsexml", f_parsexml }, + { "systime", f_systime }, + { "carttogeod", f_carttogeod }, + { "geodtocart", f_geodtocart }, + { "geodinfo", f_geodinfo }, { 0, 0 } }; @@ -354,16 +518,15 @@ void FGNasalSys::init() // sub-reference under the name "globals". This gives client-code // write access to the namespace if someone wants to do something // fancy. - _globals = naStdLib(_context); + _globals = naInit_std(_context); naSave(_context, _globals); hashset(_globals, "globals", _globals); - // Add in the math library under "math" - hashset(_globals, "math", naMathLib(_context)); - - // Add in the IO library. Disabled currently until after the - // 0.9.10 release. - // hashset(_globals, "io", naIOLib(_context)); + hashset(_globals, "math", naInit_math(_context)); + hashset(_globals, "bits", naInit_bits(_context)); + hashset(_globals, "io", naInit_io(_context)); + hashset(_globals, "thread", naInit_thread(_context)); + hashset(_globals, "utf8", naInit_utf8(_context)); // Add our custom extension functions: for(i=0; funcs[i].name; i++) @@ -393,10 +556,33 @@ void FGNasalSys::init() } ulCloseDir(dir); + // set signal and remove node to avoid restoring at reinit + const char *s = "nasal-dir-initialized"; + SGPropertyNode *signal = fgGetNode("/sim/signals", true); + signal->setBoolValue(s, true); + signal->removeChildren(s); + // Pull scripts out of the property tree, too loadPropertyScripts(); } +void FGNasalSys::update(double) +{ + if(_purgeListeners) { + _purgeListeners = false; + map::iterator it; + for(it = _listener.begin(); it != _listener.end();) { + FGNasalListener *nl = it->second; + if(nl->_dead) { + _listener.erase(it++); + delete nl; + } else { + ++it; + } + } + } +} + // Loads the scripts found under /nasal in the global tree void FGNasalSys::loadPropertyScripts() { @@ -434,7 +620,7 @@ void FGNasalSys::loadPropertyScripts() loadModule(p, module); } */ - + const char* src = n->getStringValue("script"); if(!n->hasChild("script")) src = 0; // Hrm... if(src) @@ -480,9 +666,11 @@ void FGNasalSys::loadModule(SGPath file, const char* module) } // Parse and run. Save the local variables namespace, as it will -// become a sub-object of globals. +// become a sub-object of globals. The optional "arg" argument can be +// used to pass an associated property node to the module, which can then +// be accessed via cmdarg(). (This is, for example, used by XML dialogs.) void FGNasalSys::createModule(const char* moduleName, const char* fileName, - const char* src, int len) + const char* src, int len, const SGPropertyNode* arg) { naRef code = parse(fileName, src, len); if(naIsNil(code)) @@ -497,11 +685,9 @@ void FGNasalSys::createModule(const char* moduleName, const char* fileName, if(!naHash_get(_globals, modname, &locals)) locals = naNewHash(_context); - naCall(_context, code, 0, 0, naNil(), locals); - if(naGetError(_context)) { - logError(_context); - return; - } + _cmdArg = (SGPropertyNode*)arg; + + call(code, locals); hashset(_globals, moduleName, locals); } @@ -509,9 +695,7 @@ void FGNasalSys::deleteModule(const char* moduleName) { naRef modname = naNewString(_context); naStr_fromdata(modname, (char*)moduleName, strlen(moduleName)); - naModLock(); naHash_delete(_globals, modname); - naModUnlock(); } naRef FGNasalSys::parse(const char* filename, const char* buf, int len) @@ -538,29 +722,26 @@ bool FGNasalSys::handleCommand(const SGPropertyNode* arg) naRef code = parse(arg->getPath(true), nasal, strlen(nasal)); if(naIsNil(code)) return false; - naContext c = naNewContext(); + // Commands can be run "in" a module. Make sure that module + // exists, and set it up as the local variables hash for the + // command. naRef locals = naNil(); if(moduleName[0]) { - naRef modname = naNewString(c); + naRef modname = naNewString(_context); naStr_fromdata(modname, (char*)moduleName, strlen(moduleName)); - if(!naHash_get(_globals, modname, &locals)) - locals = naNewHash(c); + if(!naHash_get(_globals, modname, &locals)) { + locals = naNewHash(_context); + naHash_set(_globals, modname, locals); + } } - // Cache the command argument for inspection via cmdarg(). For + + // Cache this command's argument for inspection via cmdarg(). For // performance reasons, we won't bother with it if the invoked // code doesn't need it. _cmdArg = (SGPropertyNode*)arg; - // Call it! - naModUnlock(); - naRef result = naCall(c, code, 0, 0, naNil(), locals); - naModLock(); - bool error = naGetError(c); - if(error) - logError(c); - - naFreeContext(c); - return !error; + call(code, locals); + return true; } // settimer(func, dt, simtime) extension function. The first argument @@ -573,15 +754,20 @@ bool FGNasalSys::handleCommand(const SGPropertyNode* arg) // "saved" somehow lest they be inadvertently cleaned. In this case, // they are inserted into a globals.__gcsave hash and removed on // expiration. -void FGNasalSys::setTimer(int argc, naRef* args) +void FGNasalSys::setTimer(naContext c, int argc, naRef* args) { // Extract the handler, delta, and simtime arguments: naRef handler = argc > 0 ? args[0] : naNil(); - if(!(naIsCode(handler) || naIsCCode(handler) || naIsFunc(handler))) + if(!(naIsCode(handler) || naIsCCode(handler) || naIsFunc(handler))) { + naRuntimeError(c, "settimer() with invalid function argument"); return; + } naRef delta = argc > 1 ? args[1] : naNil(); - if(naIsNil(delta)) return; + if(naIsNil(delta)) { + naRuntimeError(c, "settimer() with invalid time argument"); + return; + } bool simtime = (argc > 2 && naTrue(args[2])) ? false : true; @@ -598,9 +784,7 @@ void FGNasalSys::setTimer(int argc, naRef* args) void FGNasalSys::handleTimer(NasalTimer* t) { - naCall(_context, t->handler, 0, 0, naNil(), naNil()); - if(naGetError(_context)) - logError(_context); + call(t->handler, naNil()); gcRelease(t->gcKey); } @@ -630,22 +814,31 @@ int FGNasalSys::_listenerId = 0; // If the bool is true, then the listener is executed initially. The // setlistener() function returns a unique id number, that can be used // as argument to the removelistener() function. -naRef FGNasalSys::setListener(int argc, naRef* args) +naRef FGNasalSys::setListener(naContext c, int argc, naRef* args) { SGPropertyNode_ptr node; naRef prop = argc > 0 ? args[0] : naNil(); if(naIsString(prop)) node = fgGetNode(naStr_data(prop), true); else if(naIsGhost(prop)) node = *(SGPropertyNode_ptr*)naGhost_ptr(prop); - else return naNil(); + else { + naRuntimeError(c, "setlistener() with invalid property argument"); + return naNil(); + } + + if(node->isTied()) + SG_LOG(SG_NASAL, SG_DEBUG, "Attaching listener to tied property " << + node->getPath()); naRef handler = argc > 1 ? args[1] : naNil(); - if(!(naIsCode(handler) || naIsCCode(handler) || naIsFunc(handler))) + if(!(naIsCode(handler) || naIsCCode(handler) || naIsFunc(handler))) { + naRuntimeError(c, "setlistener() with invalid function argument"); return naNil(); + } bool initial = argc > 2 && naTrue(args[2]); FGNasalListener *nl = new FGNasalListener(node, handler, this, - gcSave(handler)); + gcSave(handler), _listenerId); node->addChangeListener(nl, initial); _listener[_listenerId] = nl; @@ -654,65 +847,160 @@ naRef FGNasalSys::setListener(int argc, naRef* args) // removelistener(int) extension function. The argument is the id of // a listener as returned by the setlistener() function. -naRef FGNasalSys::removeListener(int argc, naRef* args) +naRef FGNasalSys::removeListener(naContext c, int argc, naRef* args) { naRef id = argc > 0 ? args[0] : naNil(); - if(!naIsNum(id)) - return naNil(); + map::iterator it = _listener.find(int(id.num)); - int i = int(id.num); - if (_listener.find(i) == _listener.end()) + if(!naIsNum(id) || it == _listener.end() || it->second->_dead) { + naRuntimeError(c, "removelistener() with invalid listener id"); return naNil(); + } + + FGNasalListener *nl = it->second; + if(nl->_active) { + nl->_dead = true; + _purgeListeners = true; + return naNum(-1); + } - FGNasalListener *nl = _listener[i]; - nl->_node->removeChangeListener(nl); - _listener.erase(i); + _listener.erase(it); delete nl; return naNum(_listener.size()); } +// FGNasalListener class. + +FGNasalListener::FGNasalListener(SGPropertyNode_ptr node, naRef handler, + FGNasalSys* nasal, int key, int id) : + _node(node), + _handler(handler), + _gcKey(key), + _id(id), + _nas(nasal), + _active(0), + _dead(false) +{ +} + +FGNasalListener::~FGNasalListener() +{ + _node->removeChangeListener(this); + _nas->gcRelease(_gcKey); +} + +void FGNasalListener::valueChanged(SGPropertyNode* node) +{ + // drop recursive listener calls + if(_active || _dead) + return; + + SG_LOG(SG_NASAL, SG_DEBUG, "trigger listener #" << _id); + _active++; + _nas->_cmdArg = node; + _nas->call(_handler, naNil()); + _active--; +} + + + + // FGNasalModelData class. If sgLoad3DModel() is called with a pointer to // such a class, then it lets modelLoaded() run the script, and the // destructor the script. The latter happens when the model branch // is removed from the scene graph. void FGNasalModelData::modelLoaded(const string& path, SGPropertyNode *prop, - ssgBranch *) + osg::Node *) { SGPropertyNode *n = prop->getNode("nasal"), *load; - if (!n) + if(!n) return; load = n->getNode("load"); _unload = n->getNode("unload"); - if (!load && !_unload) + if(!load && !_unload) return; _module = path; const char *s = load ? load->getStringValue() : ""; - FGNasalSys *nas = (FGNasalSys *)globals->get_subsystem("nasal"); - nas->createModule(_module.c_str(), _module.c_str(), s, strlen(s)); + nasalSys->createModule(_module.c_str(), _module.c_str(), s, strlen(s), _props); } FGNasalModelData::~FGNasalModelData() { - if (_module.empty()) + if(_module.empty()) return; - FGNasalSys *nas = (FGNasalSys *)globals->get_subsystem("nasal"); - if (!nas) { + if(!nasalSys) { SG_LOG(SG_NASAL, SG_ALERT, "Trying to run an script " "without Nasal subsystem present."); return; } - if (_unload) { + if(_unload) { const char *s = _unload->getStringValue(); - nas->createModule(_module.c_str(), _module.c_str(), s, strlen(s)); + nasalSys->createModule(_module.c_str(), _module.c_str(), s, strlen(s), _props); } - nas->deleteModule(_module.c_str()); + nasalSys->deleteModule(_module.c_str()); +} + + + +// NasalXMLVisitor class: handles EasyXML visitor callback for parsexml() +// +NasalXMLVisitor::NasalXMLVisitor(naContext c, int argc, naRef* args) : + _c(naSubContext(c)), + _start_element(argc > 1 ? args[1] : naNil()), + _end_element(argc > 2 ? args[2] : naNil()), + _data(argc > 3 ? args[3] : naNil()), + _pi(argc > 4 ? args[4] : naNil()) +{ +} + +void NasalXMLVisitor::startElement(const char* tag, const XMLAttributes& a) +{ + if(naIsNil(_start_element)) return; + naRef attr = naNewHash(_c); + for(int i=0; i(s), + n < 0 ? strlen(s) : n); }