]> git.mxchange.org Git - flightgear.git/blob - src/Scripting/NasalSys.cxx
Canvas: update for SimGear changes.
[flightgear.git] / src / Scripting / NasalSys.cxx
1
2 #ifdef HAVE_CONFIG_H
3 #  include "config.h"
4 #endif
5
6 #ifdef HAVE_WINDOWS_H
7 #include <windows.h>
8 #endif
9
10 #ifdef HAVE_SYS_TIME_H
11 #  include <sys/time.h>  // gettimeofday
12 #endif
13
14 #include <string.h>
15 #include <stdio.h>
16 #include <sys/types.h>
17 #include <sys/stat.h>
18 #include <fstream>
19 #include <sstream>
20
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/structure/commands.hxx>
27 #include <simgear/math/sg_geodesy.hxx>
28 #include <simgear/structure/event_mgr.hxx>
29 #include <simgear/debug/BufferedLogCallback.hxx>
30
31 #include <simgear/nasal/cppbind/from_nasal.hxx>
32 #include <simgear/nasal/cppbind/to_nasal.hxx>
33 #include <simgear/nasal/cppbind/Ghost.hxx>
34 #include <simgear/nasal/cppbind/NasalHash.hxx>
35
36 #include "NasalSys.hxx"
37 #include "NasalSys_private.hxx"
38 #include "NasalModelData.hxx"
39 #include "NasalPositioned.hxx"
40 #include "NasalCanvas.hxx"
41 #include "NasalClipboard.hxx"
42 #include "NasalCondition.hxx"
43 #include "NasalString.hxx"
44
45 #include <Main/globals.hxx>
46 #include <Main/util.hxx>
47 #include <Main/fg_props.hxx>
48
49 using std::map;
50
51 void postinitNasalGUI(naRef globals, naContext c);
52
53 static FGNasalSys* nasalSys = 0;
54
55 // Listener class for loading Nasal modules on demand
56 class FGNasalModuleListener : public SGPropertyChangeListener
57 {
58 public:
59     FGNasalModuleListener(SGPropertyNode* node);
60
61     virtual void valueChanged(SGPropertyNode* node);
62
63 private:
64     SGPropertyNode_ptr _node;
65 };
66
67 FGNasalModuleListener::FGNasalModuleListener(SGPropertyNode* node) : _node(node)
68 {
69 }
70
71 void FGNasalModuleListener::valueChanged(SGPropertyNode*)
72 {
73     if (_node->getBoolValue("enabled",false)&&
74         !_node->getBoolValue("loaded",true))
75     {
76         nasalSys->loadPropertyScripts(_node);
77     }
78 }
79
80 //////////////////////////////////////////////////////////////////////////
81
82
83 class TimerObj : public SGReferenced
84 {
85 public:
86   TimerObj(FGNasalSys* sys, naRef f, naRef self, double interval) :
87     _sys(sys),
88     _func(f),
89     _self(self),
90     _isRunning(false),
91     _interval(interval),
92     _singleShot(false)
93   {
94     char nm[128];
95     snprintf(nm, 128, "nasal-timer-%p", this);
96     _name = nm;
97     _gcRoot =  sys->gcSave(f);
98     _gcSelf = sys->gcSave(self);
99   }
100   
101   virtual ~TimerObj()
102   {
103     stop();
104     _sys->gcRelease(_gcRoot);
105     _sys->gcRelease(_gcSelf);
106   }
107   
108   bool isRunning() const { return _isRunning; }
109     
110   void stop()
111   {
112     if (_isRunning) {
113       globals->get_event_mgr()->removeTask(_name);
114       _isRunning = false;
115     }
116   }
117   
118   void start()
119   {
120     if (_isRunning) {
121       return;
122     }
123     
124     _isRunning = true;
125     if (_singleShot) {
126       globals->get_event_mgr()->addEvent(_name, this, &TimerObj::invoke, _interval);
127     } else {
128       globals->get_event_mgr()->addTask(_name, this, &TimerObj::invoke, _interval);
129     }
130   }
131   
132   // stop and then start -
133   void restart(double newInterval)
134   {
135     _interval = newInterval;
136     stop();
137     start();
138   }
139   
140   void invoke()
141   {
142     naRef *args = NULL;
143     _sys->callMethod(_func, _self, 0, args, naNil() /* locals */);
144     if (_singleShot) {
145       _isRunning = false;
146     }
147   }
148   
149   void setSingleShot(bool aSingleShot)
150   {
151     _singleShot = aSingleShot;
152   }
153   
154   bool isSingleShot() const
155   { return _singleShot; }
156 private:
157   std::string _name;
158   FGNasalSys* _sys;
159   naRef _func, _self;
160   int _gcRoot, _gcSelf;
161   bool _isRunning;
162   double _interval;
163   bool _singleShot;
164 };
165
166 typedef SGSharedPtr<TimerObj> TimerObjRef;
167 typedef nasal::Ghost<TimerObjRef> NasalTimerObj;
168
169 ///////////////////////////////////////////////////////////////////////////
170
171 // Read and return file contents in a single buffer.  Note use of
172 // stat() to get the file size.  This is a win32 function, believe it
173 // or not. :) Note the REALLY IMPORTANT use of the "b" flag to fopen.
174 // Text mode brain damage will kill us if we're trying to do bytewise
175 // I/O.
176 static char* readfile(const char* file, int* lenOut)
177 {
178     struct stat data;
179     if(stat(file, &data) != 0) return 0;
180     FILE* f = fopen(file, "rb");
181     if(!f) return 0;
182     char* buf = new char[data.st_size];
183     *lenOut = fread(buf, 1, data.st_size, f);
184     fclose(f);
185     if(*lenOut != data.st_size) {
186         // Shouldn't happen, but warn anyway since it represents a
187         // platform bug and not a typical runtime error (missing file,
188         // etc...)
189         SG_LOG(SG_NASAL, SG_ALERT,
190                "ERROR in Nasal initialization: " <<
191                "short count returned from fread() of " << file <<
192                ".  Check your C library!");
193         delete[] buf;
194         return 0;
195     }
196     return buf;
197 }
198
199 FGNasalSys::FGNasalSys()
200 {
201     nasalSys = this;
202     _context = 0;
203     _globals = naNil();
204     _string = naNil();
205     _gcHash = naNil();
206     _nextGCKey = 0; // Any value will do
207     _callCount = 0;
208     
209     _log = new simgear::BufferedLogCallback(SG_NASAL, SG_INFO);
210     _log->truncateAt(255);
211     sglog().addCallback(_log);
212 }
213
214 // Utility.  Sets a named key in a hash by C string, rather than nasal
215 // string object.
216 void FGNasalSys::hashset(naRef hash, const char* key, naRef val)
217 {
218     naRef s = naNewString(_context);
219     naStr_fromdata(s, (char*)key, strlen(key));
220     naHash_set(hash, s, val);
221 }
222
223 void FGNasalSys::globalsSet(const char* key, naRef val)
224 {
225   hashset(_globals, key, val);
226 }
227
228 naRef FGNasalSys::call(naRef code, int argc, naRef* args, naRef locals)
229 {
230   return callMethod(code, naNil(), argc, args, locals);
231 }
232
233 // Does a naCall() in a new context.  Wrapped here to make lock
234 // tracking easier.  Extension functions are called with the lock, but
235 // we have to release it before making a new naCall().  So rather than
236 // drop the lock in every extension function that might call back into
237 // Nasal, we keep a stack depth counter here and only unlock/lock
238 // around the naCall if it isn't the first one.
239
240 naRef FGNasalSys::callMethod(naRef code, naRef self, int argc, naRef* args, naRef locals)
241 {
242     naContext ctx = naNewContext();
243     if(_callCount) naModUnlock();
244     _callCount++;
245     naRef result = naCall(ctx, code, argc, args, self, locals);
246     if(naGetError(ctx))
247         logError(ctx);
248     _callCount--;
249     if(_callCount) naModLock();
250     naFreeContext(ctx);
251     return result;
252 }
253
254 FGNasalSys::~FGNasalSys()
255 {
256     nasalSys = 0;
257     map<int, FGNasalListener *>::iterator it, end = _listener.end();
258     for(it = _listener.begin(); it != end; ++it)
259         delete it->second;
260
261     naFreeContext(_context);
262     _globals = naNil();
263     _string = naNil();
264 }
265
266 bool FGNasalSys::parseAndRun(const char* sourceCode)
267 {
268     naRef code = parse("FGNasalSys::parseAndRun()", sourceCode,
269                        strlen(sourceCode));
270     if(naIsNil(code))
271         return false;
272     call(code, 0, 0, naNil());
273     return true;
274 }
275
276 #if 0
277 FGNasalScript* FGNasalSys::parseScript(const char* src, const char* name)
278 {
279     FGNasalScript* script = new FGNasalScript();
280     script->_gcKey = -1; // important, if we delete it on a parse
281     script->_nas = this; // error, don't clobber a real handle!
282
283     char buf[256];
284     if(!name) {
285         sprintf(buf, "FGNasalScript@%p", (void *)script);
286         name = buf;
287     }
288
289     script->_code = parse(name, src, strlen(src));
290     if(naIsNil(script->_code)) {
291         delete script;
292         return 0;
293     }
294
295     script->_gcKey = gcSave(script->_code);
296     return script;
297 }
298 #endif
299
300 // The get/setprop functions accept a *list* of strings and walk
301 // through the property tree with them to find the appropriate node.
302 // This allows a Nasal object to hold onto a property path and use it
303 // like a node object, e.g. setprop(ObjRoot, "size-parsecs", 2.02).  This
304 // is the utility function that walks the property tree.
305 // Future enhancement: support integer arguments to specify array
306 // elements.
307 static SGPropertyNode* findnode(naContext c, naRef* vec, int len)
308 {
309     SGPropertyNode* p = globals->get_props();
310     try {
311         for(int i=0; i<len; i++) {
312             naRef a = vec[i];
313             if(!naIsString(a)) return 0;
314             p = p->getNode(naStr_data(a));
315             if(p == 0) return 0;
316         }
317     } catch (const string& err) {
318         naRuntimeError(c, (char *)err.c_str());
319         return 0;
320     }
321     return p;
322 }
323
324 // getprop() extension function.  Concatenates its string arguments as
325 // property names and returns the value of the specified property.  Or
326 // nil if it doesn't exist.
327 static naRef f_getprop(naContext c, naRef me, int argc, naRef* args)
328 {
329     using namespace simgear;
330     const SGPropertyNode* p = findnode(c, args, argc);
331     if(!p) return naNil();
332
333     switch(p->getType()) {
334     case props::BOOL:   case props::INT:
335     case props::LONG:   case props::FLOAT:
336     case props::DOUBLE:
337         {
338         double dv = p->getDoubleValue();
339         if (SGMisc<double>::isNaN(dv)) {
340           SG_LOG(SG_NASAL, SG_ALERT, "Nasal getprop: property " << p->getPath() << " is NaN");
341           return naNil();
342         }
343         
344         return naNum(dv);
345         }
346         
347     case props::STRING:
348     case props::UNSPECIFIED:
349         {
350             naRef nastr = naNewString(c);
351             const char* val = p->getStringValue();
352             naStr_fromdata(nastr, (char*)val, strlen(val));
353             return nastr;
354         }
355     case props::ALIAS: // <--- FIXME, recurse?
356     default:
357         return naNil();
358     }
359 }
360
361 // setprop() extension function.  Concatenates its string arguments as
362 // property names and sets the value of the specified property to the
363 // final argument.
364 static naRef f_setprop(naContext c, naRef me, int argc, naRef* args)
365 {
366 #define BUFLEN 1024
367     char buf[BUFLEN + 1];
368     buf[BUFLEN] = 0;
369     char* p = buf;
370     int buflen = BUFLEN;
371     if(argc < 2) naRuntimeError(c, "setprop() expects at least 2 arguments");
372     for(int i=0; i<argc-1; i++) {
373         naRef s = naStringValue(c, args[i]);
374         if(naIsNil(s)) return naNil();
375         strncpy(p, naStr_data(s), buflen);
376         p += naStr_len(s);
377         buflen = BUFLEN - (p - buf);
378         if(i < (argc-2) && buflen > 0) {
379             *p++ = '/';
380             buflen--;
381         }
382     }
383
384     SGPropertyNode* props = globals->get_props();
385     naRef val = args[argc-1];
386     bool result = false;
387     try {
388         if(naIsString(val)) result = props->setStringValue(buf, naStr_data(val));
389         else {
390             naRef n = naNumValue(val);
391             if(naIsNil(n))
392                 naRuntimeError(c, "setprop() value is not string or number");
393                 
394             if (SGMisc<double>::isNaN(n.num)) {
395                 naRuntimeError(c, "setprop() passed a NaN");
396             }
397             
398             result = props->setDoubleValue(buf, n.num);
399         }
400     } catch (const string& err) {
401         naRuntimeError(c, (char *)err.c_str());
402     }
403     return naNum(result);
404 #undef BUFLEN
405 }
406
407 // print() extension function.  Concatenates and prints its arguments
408 // to the FlightGear log.  Uses the highest log level (SG_ALERT), to
409 // make sure it appears.  Is there better way to do this?
410 static naRef f_print(naContext c, naRef me, int argc, naRef* args)
411 {
412     string buf;
413     int n = argc;
414     for(int i=0; i<n; i++) {
415         naRef s = naStringValue(c, args[i]);
416         if(naIsNil(s)) continue;
417         buf += naStr_data(s);
418     }
419     SG_LOG(SG_NASAL, SG_ALERT, buf);
420     return naNum(buf.length());
421 }
422
423 // logprint() extension function.  Same as above, all arguments after the
424 // first argument are concatenated. Argument 0 is the log-level, matching
425 // sgDebugPriority.
426 static naRef f_logprint(naContext c, naRef me, int argc, naRef* args)
427 {
428   if (argc < 1)
429     naRuntimeError(c, "no prioirty argument to logprint()");
430   
431   naRef priority = args[0];
432   string buf;
433   int n = argc;
434   for(int i=1; i<n; i++) {
435     naRef s = naStringValue(c, args[i]);
436     if(naIsNil(s)) continue;
437     buf += naStr_data(s);
438   }
439 // use the nasal source file and line for the message location, since
440 // that's more useful than the location here!
441   sglog().log(SG_NASAL, (sgDebugPriority)(int) priority.num,
442                naStr_data(naGetSourceFile(c, 0)),
443                naGetLine(c, 0), buf);
444   return naNum(buf.length());
445 }
446
447
448 // fgcommand() extension function.  Executes a named command via the
449 // FlightGear command manager.  Takes a single property node name as
450 // an argument.
451 static naRef f_fgcommand(naContext c, naRef me, int argc, naRef* args)
452 {
453     naRef cmd = argc > 0 ? args[0] : naNil();
454     naRef props = argc > 1 ? args[1] : naNil();
455     if(!naIsString(cmd) || (!naIsNil(props) && !naIsGhost(props)))
456         naRuntimeError(c, "bad arguments to fgcommand()");
457     SGPropertyNode_ptr tmp, *node;
458     if(!naIsNil(props))
459         node = (SGPropertyNode_ptr*)naGhost_ptr(props);
460     else {
461         tmp = new SGPropertyNode();
462         node = &tmp;
463     }
464     return naNum(globals->get_commands()->execute(naStr_data(cmd), *node));
465 }
466
467 // settimer(func, dt, simtime) extension function.  Falls through to
468 // FGNasalSys::setTimer().  See there for docs.
469 static naRef f_settimer(naContext c, naRef me, int argc, naRef* args)
470 {
471     nasalSys->setTimer(c, argc, args);
472     return naNil();
473 }
474
475 static naRef f_makeTimer(naContext c, naRef me, int argc, naRef* args)
476 {
477   if (!naIsNum(args[0])) {
478     naRuntimeError(c, "bad interval argument to maketimer");
479   }
480     
481   naRef func, self = naNil();
482   if (naIsFunc(args[1])) {
483     func = args[1];
484   } else if ((argc == 3) && naIsFunc(args[2])) {
485     self = args[1];
486     func = args[2];
487   }
488   
489   TimerObj* timerObj = new TimerObj(nasalSys, func, self, args[0].num);
490   return NasalTimerObj::create(c, timerObj);
491 }
492
493 // setlistener(func, property, bool) extension function.  Falls through to
494 // FGNasalSys::setListener().  See there for docs.
495 static naRef f_setlistener(naContext c, naRef me, int argc, naRef* args)
496 {
497     return nasalSys->setListener(c, argc, args);
498 }
499
500 // removelistener(int) extension function. Falls through to
501 // FGNasalSys::removeListener(). See there for docs.
502 static naRef f_removelistener(naContext c, naRef me, int argc, naRef* args)
503 {
504     return nasalSys->removeListener(c, argc, args);
505 }
506
507 // Returns a ghost handle to the argument to the currently executing
508 // command
509 static naRef f_cmdarg(naContext c, naRef me, int argc, naRef* args)
510 {
511     return nasalSys->cmdArgGhost();
512 }
513
514 // Sets up a property interpolation.  The first argument is either a
515 // ghost (SGPropertyNode_ptr*) or a string (global property path) to
516 // interpolate.  The second argument is a vector of pairs of
517 // value/delta numbers.
518 static naRef f_interpolate(naContext c, naRef me, int argc, naRef* args)
519 {
520   SGPropertyNode* node;
521   naRef prop = argc > 0 ? args[0] : naNil();
522   if(naIsString(prop)) node = fgGetNode(naStr_data(prop), true);
523   else if(naIsGhost(prop)) node = *(SGPropertyNode_ptr*)naGhost_ptr(prop);
524   else return naNil();
525
526   naRef curve = argc > 1 ? args[1] : naNil();
527   if(!naIsVector(curve)) return naNil();
528   int nPoints = naVec_size(curve) / 2;
529
530   simgear::PropertyList value_nodes;
531   value_nodes.reserve(nPoints);
532   double_list deltas;
533   deltas.reserve(nPoints);
534
535   for( int i = 0; i < nPoints; ++i )
536   {
537     SGPropertyNode* val = new SGPropertyNode;
538     val->setDoubleValue(naNumValue(naVec_get(curve, 2*i)).num);
539     value_nodes.push_back(val);
540     deltas.push_back(naNumValue(naVec_get(curve, 2*i+1)).num);
541   }
542
543   node->interpolate("numeric", value_nodes, deltas, "linear");
544   return naNil();
545 }
546
547 // This is a better RNG than the one in the default Nasal distribution
548 // (which is based on the C library rand() implementation). It will
549 // override.
550 static naRef f_rand(naContext c, naRef me, int argc, naRef* args)
551 {
552     return naNum(sg_random());
553 }
554
555 static naRef f_srand(naContext c, naRef me, int argc, naRef* args)
556 {
557     sg_srandom_time();
558     return naNum(0);
559 }
560
561 static naRef f_abort(naContext c, naRef me, int argc, naRef* args)
562 {
563     abort();
564     return naNil();
565 }
566
567 // Return an array listing of all files in a directory
568 static naRef f_directory(naContext c, naRef me, int argc, naRef* args)
569 {
570     if(argc != 1 || !naIsString(args[0]))
571         naRuntimeError(c, "bad arguments to directory()");
572     
573     simgear::Dir d(SGPath(naStr_data(args[0])));
574     if(!d.exists()) return naNil();
575     naRef result = naNewVector(c);
576
577     simgear::PathList paths = d.children(simgear::Dir::TYPE_FILE | simgear::Dir::TYPE_DIR);
578     for (unsigned int i=0; i<paths.size(); ++i) {
579       std::string p = paths[i].file();
580       naVec_append(result, naStr_fromdata(naNewString(c), p.c_str(), p.size()));
581     }
582     
583     return result;
584 }
585
586 /**
587  * Given a data path, resolve it in FG_ROOT or an FG_AIRCRFT directory
588  */
589 static naRef f_resolveDataPath(naContext c, naRef me, int argc, naRef* args)
590 {
591     if(argc != 1 || !naIsString(args[0]))
592         naRuntimeError(c, "bad arguments to resolveDataPath()");
593
594     SGPath p = globals->resolve_maybe_aircraft_path(naStr_data(args[0]));
595     const char* pdata = p.c_str();
596     return naStr_fromdata(naNewString(c), const_cast<char*>(pdata), strlen(pdata));
597 }
598
599 static naRef f_findDataDir(naContext c, naRef me, int argc, naRef* args)
600 {
601     if(argc != 1 || !naIsString(args[0]))
602         naRuntimeError(c, "bad arguments to findDataDir()");
603     
604     SGPath p = globals->find_data_dir(naStr_data(args[0]));
605     const char* pdata = p.c_str();
606     return naStr_fromdata(naNewString(c), const_cast<char*>(pdata), strlen(pdata));
607 }
608
609 class NasalCommand : public SGCommandMgr::Command
610 {
611 public:
612     NasalCommand(FGNasalSys* sys, naRef f) :
613         _sys(sys),
614         _func(f)
615     {
616         _gcRoot =  sys->gcSave(f);
617     }
618     
619     virtual ~NasalCommand()
620     {
621         _sys->gcRelease(_gcRoot);
622     }
623     
624     virtual bool operator()(const SGPropertyNode* aNode)
625     {
626         _sys->setCmdArg(const_cast<SGPropertyNode*>(aNode));
627         naRef args[1];
628         args[0] = _sys->wrappedPropsNode(const_cast<SGPropertyNode*>(aNode));
629     
630         _sys->callMethod(_func, naNil(), 1, args, naNil() /* locals */);
631
632         return true;
633     }
634     
635 private:
636     FGNasalSys* _sys;
637     naRef _func;
638     int _gcRoot;
639 };
640
641 static naRef f_addCommand(naContext c, naRef me, int argc, naRef* args)
642 {
643     if(argc != 2 || !naIsString(args[0]) || !naIsFunc(args[1]))
644         naRuntimeError(c, "bad arguments to addcommand()");
645     
646     naRef func = args[1];
647     NasalCommand* cmd = new NasalCommand(nasalSys, func);
648     globals->get_commands()->addCommandObject(naStr_data(args[0]), cmd);
649     return naNil();
650 }
651
652 static naRef f_removeCommand(naContext c, naRef me, int argc, naRef* args)
653 {
654     SGCommandMgr::Command* cmd = globals->get_commands()->getCommand(naStr_data(args[0]));
655
656   //  SGCommandMgr::Command* cmd = globals->get_commands()->removeCommand(naStr_data(args[0]))
657     
658     delete cmd;
659     
660     return naNil();
661 }
662
663 // Parse XML file.
664 //     parsexml(<path> [, <start-tag> [, <end-tag> [, <data> [, <pi>]]]]);
665 //
666 // <path>      ... absolute path to an XML file
667 // <start-tag> ... callback function with two args: tag name, attribute hash
668 // <end-tag>   ... callback function with one arg:  tag name
669 // <data>      ... callback function with one arg:  data
670 // <pi>        ... callback function with two args: target, data
671 //                 (pi = "processing instruction")
672 // All four callback functions are optional and default to nil.
673 // The function returns nil on error, or the validated file name otherwise.
674 static naRef f_parsexml(naContext c, naRef me, int argc, naRef* args)
675 {
676     if(argc < 1 || !naIsString(args[0]))
677         naRuntimeError(c, "parsexml(): path argument missing or not a string");
678     if(argc > 5) argc = 5;
679     for(int i=1; i<argc; i++)
680         if(!(naIsNil(args[i]) || naIsFunc(args[i])))
681             naRuntimeError(c, "parsexml(): callback argument not a function");
682
683     const char* file = fgValidatePath(naStr_data(args[0]), false);
684     if(!file) {
685         naRuntimeError(c, "parsexml(): reading '%s' denied "
686                 "(unauthorized access)", naStr_data(args[0]));
687         return naNil();
688     }
689     std::ifstream input(file);
690     NasalXMLVisitor visitor(c, argc, args);
691     try {
692         readXML(input, visitor);
693     } catch (const sg_exception& e) {
694         naRuntimeError(c, "parsexml(): file '%s' %s",
695                 file, e.getFormattedMessage().c_str());
696         return naNil();
697     }
698     return naStr_fromdata(naNewString(c), const_cast<char*>(file), strlen(file));
699 }
700
701 // Return UNIX epoch time in seconds.
702 static naRef f_systime(naContext c, naRef me, int argc, naRef* args)
703 {
704 #ifdef _WIN32
705     FILETIME ft;
706     GetSystemTimeAsFileTime(&ft);
707     double t = (4294967296.0 * ft.dwHighDateTime + ft.dwLowDateTime);
708     // Converts from 100ns units in 1601 epoch to unix epoch in sec
709     return naNum((t * 1e-7) - 11644473600.0);
710 #else
711     struct timeval td;
712     gettimeofday(&td, 0);
713     return naNum(td.tv_sec + 1e-6 * td.tv_usec);
714 #endif
715 }
716
717 // Table of extension functions.  Terminate with zeros.
718 static struct { const char* name; naCFunction func; } funcs[] = {
719     { "getprop",   f_getprop },
720     { "setprop",   f_setprop },
721     { "print",     f_print },
722     { "logprint",  f_logprint },
723     { "_fgcommand", f_fgcommand },
724     { "settimer",  f_settimer },
725     { "maketimer", f_makeTimer },
726     { "_setlistener", f_setlistener },
727     { "removelistener", f_removelistener },
728     { "addcommand", f_addCommand },
729     { "removecommand", f_removeCommand },
730     { "_cmdarg",  f_cmdarg },
731     { "_interpolate",  f_interpolate },
732     { "rand",  f_rand },
733     { "srand",  f_srand },
734     { "abort", f_abort },
735     { "directory", f_directory },
736     { "resolvepath", f_resolveDataPath },
737     { "finddata", f_findDataDir },
738     { "parsexml", f_parsexml },
739     { "systime", f_systime },
740     { 0, 0 }
741 };
742
743 naRef FGNasalSys::cmdArgGhost()
744 {
745     return propNodeGhost(_cmdArg);
746 }
747
748 void FGNasalSys::setCmdArg(SGPropertyNode* aNode)
749 {
750     _cmdArg = aNode;
751 }
752
753 void FGNasalSys::init()
754 {
755     int i;
756
757     _context = naNewContext();
758
759     // Start with globals.  Add it to itself as a recursive
760     // sub-reference under the name "globals".  This gives client-code
761     // write access to the namespace if someone wants to do something
762     // fancy.
763     _globals = naInit_std(_context);
764     naSave(_context, _globals);
765     hashset(_globals, "globals", _globals);
766
767     hashset(_globals, "math", naInit_math(_context));
768     hashset(_globals, "bits", naInit_bits(_context));
769     hashset(_globals, "io", naInit_io(_context));
770     hashset(_globals, "thread", naInit_thread(_context));
771     hashset(_globals, "utf8", naInit_utf8(_context));
772
773     // Add our custom extension functions:
774     for(i=0; funcs[i].name; i++)
775         hashset(_globals, funcs[i].name,
776                 naNewFunc(_context, naNewCCode(_context, funcs[i].func)));
777
778     // And our SGPropertyNode wrapper
779     hashset(_globals, "props", genPropsModule());
780
781     // Make a "__gcsave" hash to hold the naRef objects which get
782     // passed to handles outside the interpreter (to protect them from
783     // begin garbage-collected).
784     _gcHash = naNewHash(_context);
785     hashset(_globals, "__gcsave", _gcHash);
786
787     // Add string methods
788     _string = naInit_string(_context);
789     naSave(_context, _string);
790     initNasalString(_globals, _string, _context, _gcHash);
791
792     initNasalPositioned(_globals, _context, _gcHash);
793     initNasalPositioned_cppbind(_globals, _context, _gcHash);
794     NasalClipboard::init(this);
795     initNasalCanvas(_globals, _context, _gcHash);
796     initNasalCondition(_globals, _context, _gcHash);
797   
798     NasalTimerObj::init("Timer")
799       .method("start", &TimerObj::start)
800       .method("stop", &TimerObj::stop)
801       .method("restart", &TimerObj::restart)
802       .member("singleShot", &TimerObj::isSingleShot, &TimerObj::setSingleShot)
803       .member("isRunning", &TimerObj::isRunning);
804   
805     // Now load the various source files in the Nasal directory
806     simgear::Dir nasalDir(SGPath(globals->get_fg_root(), "Nasal"));
807     loadScriptDirectory(nasalDir);
808
809     // Add modules in Nasal subdirectories to property tree
810     simgear::PathList directories = nasalDir.children(simgear::Dir::TYPE_DIR+
811             simgear::Dir::NO_DOT_OR_DOTDOT, "");
812     for (unsigned int i=0; i<directories.size(); ++i) {
813         simgear::Dir dir(directories[i]);
814         simgear::PathList scripts = dir.children(simgear::Dir::TYPE_FILE, ".nas");
815         addModule(directories[i].file(), scripts);
816     }
817
818     // set signal and remove node to avoid restoring at reinit
819     const char *s = "nasal-dir-initialized";
820     SGPropertyNode *signal = fgGetNode("/sim/signals", true);
821     signal->setBoolValue(s, true);
822     signal->removeChildren(s, false);
823
824     // Pull scripts out of the property tree, too
825     loadPropertyScripts();
826   
827     // now Nasal modules are loaded, we can do some delayed work
828     postinitNasalPositioned(_globals, _context);
829     postinitNasalGUI(_globals, _context);
830 }
831
832 naRef FGNasalSys::wrappedPropsNode(SGPropertyNode* aProps)
833 {
834     static naRef wrapNodeFunc = naNil();
835     if (naIsNil(wrapNodeFunc)) {
836         nasal::Hash props = getGlobals().get<nasal::Hash>("props");
837         wrapNodeFunc = props.get("wrapNode");
838     }
839     
840     naRef args[1];
841     args[0] = propNodeGhost(aProps);
842     return naCall(_context, wrapNodeFunc, 1, args, naNil(), naNil());
843 }
844
845 void FGNasalSys::update(double)
846 {
847     if( NasalClipboard::getInstance() )
848         NasalClipboard::getInstance()->update();
849
850     if(!_dead_listener.empty()) {
851         vector<FGNasalListener *>::iterator it, end = _dead_listener.end();
852         for(it = _dead_listener.begin(); it != end; ++it) delete *it;
853         _dead_listener.clear();
854     }
855
856     if (!_loadList.empty())
857     {
858         if( _delay_load )
859           _delay_load = false;
860         else
861           // process Nasal load hook (only one per update loop to avoid excessive lags)
862           _loadList.pop()->load();
863     }
864     else
865     if (!_unloadList.empty())
866     {
867         // process pending Nasal unload hooks after _all_ load hooks were processed
868         // (only unload one per update loop to avoid excessive lags)
869         _unloadList.pop()->unload();
870     }
871
872     // The global context is a legacy thing.  We use dynamically
873     // created contexts for naCall() now, so that we can call them
874     // recursively.  But there are still spots that want to use it for
875     // naNew*() calls, which end up leaking memory because the context
876     // only clears out its temporary vector when it's *used*.  So just
877     // junk it and fetch a new/reinitialized one every frame.  This is
878     // clumsy: the right solution would use the dynamic context in all
879     // cases and eliminate _context entirely.  But that's more work,
880     // and this works fine (yes, they say "New" and "Free", but
881     // they're very fast, just trust me). -Andy
882     naFreeContext(_context);
883     _context = naNewContext();
884 }
885
886 bool pathSortPredicate(const SGPath& p1, const SGPath& p2)
887 {
888   return p1.file() < p2.file();
889 }
890
891 // Loads all scripts in given directory 
892 void FGNasalSys::loadScriptDirectory(simgear::Dir nasalDir)
893 {
894     simgear::PathList scripts = nasalDir.children(simgear::Dir::TYPE_FILE, ".nas");
895     // Note: simgear::Dir already reports file entries in a deterministic order,
896     // so a fixed loading sequence is guaranteed (same for every user)
897     for (unsigned int i=0; i<scripts.size(); ++i) {
898       SGPath fullpath(scripts[i]);
899       SGPath file = fullpath.file();
900       loadModule(fullpath, file.base().c_str());
901     }
902 }
903
904 // Create module with list of scripts
905 void FGNasalSys::addModule(string moduleName, simgear::PathList scripts)
906 {
907     if (! scripts.empty())
908     {
909         SGPropertyNode* nasal = globals->get_props()->getNode("nasal");
910         SGPropertyNode* module_node = nasal->getChild(moduleName,0,true);
911         for (unsigned int i=0; i<scripts.size(); ++i) {
912             SGPropertyNode* pFileNode = module_node->getChild("file",i,true);
913             pFileNode->setStringValue(scripts[i].c_str());
914         }
915         if (!module_node->hasChild("enabled",0))
916         {
917             SGPropertyNode* node = module_node->getChild("enabled",0,true);
918             node->setBoolValue(true);
919             node->setAttribute(SGPropertyNode::USERARCHIVE,true);
920         }
921     }
922 }
923
924 // Loads the scripts found under /nasal in the global tree
925 void FGNasalSys::loadPropertyScripts()
926 {
927     SGPropertyNode* nasal = globals->get_props()->getNode("nasal");
928     if(!nasal) return;
929
930     for(int i=0; i<nasal->nChildren(); i++)
931     {
932         SGPropertyNode* n = nasal->getChild(i);
933         loadPropertyScripts(n);
934     }
935 }
936
937 // Loads the scripts found under /nasal in the global tree
938 void FGNasalSys::loadPropertyScripts(SGPropertyNode* n)
939 {
940     bool is_loaded = false;
941
942     const char* module = n->getName();
943     if(n->hasChild("module"))
944         module = n->getStringValue("module");
945     if (n->getBoolValue("enabled",true))
946     {
947         // allow multiple files to be specified within a single
948         // Nasal module tag
949         int j = 0;
950         SGPropertyNode *fn;
951         bool file_specified = false;
952         bool ok=true;
953         while((fn = n->getChild("file", j)) != NULL) {
954             file_specified = true;
955             const char* file = fn->getStringValue();
956             SGPath p(file);
957             if (!p.isAbsolute() || !p.exists())
958             {
959                 p = globals->resolve_maybe_aircraft_path(file);
960                 if (p.isNull())
961                 {
962                     SG_LOG(SG_NASAL, SG_ALERT, "Cannot find Nasal script '" <<
963                             file << "' for module '" << module << "'.");
964                 }
965             }
966             ok &= p.isNull() ? false : loadModule(p, module);
967             j++;
968         }
969
970         const char* src = n->getStringValue("script");
971         if(!n->hasChild("script")) src = 0; // Hrm...
972         if(src)
973             createModule(module, n->getPath().c_str(), src, strlen(src));
974
975         if(!file_specified && !src)
976         {
977             // module no longer exists - clear the archived "enable" flag
978             n->setAttribute(SGPropertyNode::USERARCHIVE,false);
979             SGPropertyNode* node = n->getChild("enabled",0,false);
980             if (node)
981                 node->setAttribute(SGPropertyNode::USERARCHIVE,false);
982
983             SG_LOG(SG_NASAL, SG_ALERT, "Nasal error: " <<
984                     "no <file> or <script> defined in " <<
985                     "/nasal/" << module);
986         }
987         else
988             is_loaded = ok;
989     }
990     else
991     {
992         SGPropertyNode* enable = n->getChild("enabled");
993         if (enable)
994         {
995             FGNasalModuleListener* listener = new FGNasalModuleListener(n);
996             enable->addChangeListener(listener, false);
997         }
998     }
999     SGPropertyNode* loaded = n->getChild("loaded",0,true);
1000     loaded->setAttribute(SGPropertyNode::PRESERVE,true);
1001     loaded->setBoolValue(is_loaded);
1002 }
1003
1004 // Logs a runtime error, with stack trace, to the FlightGear log stream
1005 void FGNasalSys::logError(naContext context)
1006 {
1007     SG_LOG(SG_NASAL, SG_ALERT,
1008            "Nasal runtime error: " << naGetError(context));
1009     SG_LOG(SG_NASAL, SG_ALERT,
1010            "  at " << naStr_data(naGetSourceFile(context, 0)) <<
1011            ", line " << naGetLine(context, 0));
1012     for(int i=1; i<naStackDepth(context); i++)
1013         SG_LOG(SG_NASAL, SG_ALERT,
1014                "  called from: " << naStr_data(naGetSourceFile(context, i)) <<
1015                ", line " << naGetLine(context, i));
1016 }
1017
1018 // Reads a script file, executes it, and places the resulting
1019 // namespace into the global namespace under the specified module
1020 // name.
1021 bool FGNasalSys::loadModule(SGPath file, const char* module)
1022 {
1023     int len = 0;
1024     char* buf = readfile(file.c_str(), &len);
1025     if(!buf) {
1026         SG_LOG(SG_NASAL, SG_ALERT,
1027                "Nasal error: could not read script file " << file.c_str()
1028                << " into module " << module);
1029         return false;
1030     }
1031
1032     bool ok = createModule(module, file.c_str(), buf, len);
1033     delete[] buf;
1034     return ok;
1035 }
1036
1037 // Parse and run.  Save the local variables namespace, as it will
1038 // become a sub-object of globals.  The optional "arg" argument can be
1039 // used to pass an associated property node to the module, which can then
1040 // be accessed via cmdarg().  (This is, for example, used by XML dialogs.)
1041 bool FGNasalSys::createModule(const char* moduleName, const char* fileName,
1042                               const char* src, int len,
1043                               const SGPropertyNode* cmdarg,
1044                               int argc, naRef* args)
1045 {
1046     naRef code = parse(fileName, src, len);
1047     if(naIsNil(code))
1048         return false;
1049
1050     // See if we already have a module hash to use.  This allows the
1051     // user to, for example, add functions to the built-in math
1052     // module.  Make a new one if necessary.
1053     naRef locals;
1054     naRef modname = naNewString(_context);
1055     naStr_fromdata(modname, (char*)moduleName, strlen(moduleName));
1056     if(!naHash_get(_globals, modname, &locals))
1057         locals = naNewHash(_context);
1058
1059     _cmdArg = (SGPropertyNode*)cmdarg;
1060
1061     call(code, argc, args, locals);
1062     hashset(_globals, moduleName, locals);
1063     return true;
1064 }
1065
1066 void FGNasalSys::deleteModule(const char* moduleName)
1067 {
1068     naRef modname = naNewString(_context);
1069     naStr_fromdata(modname, (char*)moduleName, strlen(moduleName));
1070     naHash_delete(_globals, modname);
1071 }
1072
1073 naRef FGNasalSys::parse(const char* filename, const char* buf, int len)
1074 {
1075     int errLine = -1;
1076     naRef srcfile = naNewString(_context);
1077     naStr_fromdata(srcfile, (char*)filename, strlen(filename));
1078     naRef code = naParseCode(_context, srcfile, 1, (char*)buf, len, &errLine);
1079     if(naIsNil(code)) {
1080         SG_LOG(SG_NASAL, SG_ALERT,
1081                "Nasal parse error: " << naGetError(_context) <<
1082                " in "<< filename <<", line " << errLine);
1083         return naNil();
1084     }
1085
1086     // Bind to the global namespace before returning
1087     return naBindFunction(_context, code, _globals);
1088 }
1089
1090 bool FGNasalSys::handleCommand( const char* moduleName,
1091                                 const char* fileName,
1092                                 const char* src,
1093                                 const SGPropertyNode* arg )
1094 {
1095     naRef code = parse(fileName, src, strlen(src));
1096     if(naIsNil(code)) return false;
1097
1098     // Commands can be run "in" a module.  Make sure that module
1099     // exists, and set it up as the local variables hash for the
1100     // command.
1101     naRef locals = naNil();
1102     if(moduleName[0]) {
1103         naRef modname = naNewString(_context);
1104         naStr_fromdata(modname, (char*)moduleName, strlen(moduleName));
1105         if(!naHash_get(_globals, modname, &locals)) {
1106             locals = naNewHash(_context);
1107             naHash_set(_globals, modname, locals);
1108         }
1109     }
1110
1111     // Cache this command's argument for inspection via cmdarg().  For
1112     // performance reasons, we won't bother with it if the invoked
1113     // code doesn't need it.
1114     _cmdArg = (SGPropertyNode*)arg;
1115
1116     call(code, 0, 0, locals);
1117     return true;
1118 }
1119
1120 bool FGNasalSys::handleCommand(const SGPropertyNode* arg)
1121 {
1122   const char* src = arg->getStringValue("script");
1123   const char* moduleName = arg->getStringValue("module");
1124
1125   return handleCommand( moduleName,
1126                         arg ? arg->getPath(true).c_str() : moduleName,
1127                         src,
1128                         arg );
1129 }
1130
1131 // settimer(func, dt, simtime) extension function.  The first argument
1132 // is a Nasal function to call, the second is a delta time (from now),
1133 // in seconds.  The third, if present, is a boolean value indicating
1134 // that "real world" time (rather than simulator time) is to be used.
1135 //
1136 // Implementation note: the FGTimer objects don't live inside the
1137 // garbage collector, so the Nasal handler functions have to be
1138 // "saved" somehow lest they be inadvertently cleaned.  In this case,
1139 // they are inserted into a globals.__gcsave hash and removed on
1140 // expiration.
1141 void FGNasalSys::setTimer(naContext c, int argc, naRef* args)
1142 {
1143     // Extract the handler, delta, and simtime arguments:
1144     naRef handler = argc > 0 ? args[0] : naNil();
1145     if(!(naIsCode(handler) || naIsCCode(handler) || naIsFunc(handler))) {
1146         naRuntimeError(c, "settimer() with invalid function argument");
1147         return;
1148     }
1149
1150     naRef delta = argc > 1 ? args[1] : naNil();
1151     if(naIsNil(delta)) {
1152         naRuntimeError(c, "settimer() with invalid time argument");
1153         return;
1154     }
1155
1156     bool simtime = (argc > 2 && naTrue(args[2])) ? false : true;
1157
1158     // Generate and register a C++ timer handler
1159     NasalTimer* t = new NasalTimer;
1160     t->handler = handler;
1161     t->gcKey = gcSave(handler);
1162     t->nasal = this;
1163
1164     globals->get_event_mgr()->addEvent("NasalTimer",
1165                                        t, &NasalTimer::timerExpired,
1166                                        delta.num, simtime);
1167 }
1168
1169 void FGNasalSys::handleTimer(NasalTimer* t)
1170 {
1171     call(t->handler, 0, 0, naNil());
1172     gcRelease(t->gcKey);
1173 }
1174
1175 int FGNasalSys::gcSave(naRef r)
1176 {
1177     int key = _nextGCKey++;
1178     naHash_set(_gcHash, naNum(key), r);
1179     return key;
1180 }
1181
1182 void FGNasalSys::gcRelease(int key)
1183 {
1184     naHash_delete(_gcHash, naNum(key));
1185 }
1186
1187 void FGNasalSys::NasalTimer::timerExpired()
1188 {
1189     nasal->handleTimer(this);
1190     delete this;
1191 }
1192
1193 int FGNasalSys::_listenerId = 0;
1194
1195 // setlistener(<property>, <func> [, <initial=0> [, <persistent=1>]])
1196 // Attaches a callback function to a property (specified as a global
1197 // property path string or a SGPropertyNode_ptr* ghost). If the third,
1198 // optional argument (default=0) is set to 1, then the function is also
1199 // called initially. If the fourth, optional argument is set to 0, then the
1200 // function is only called when the property node value actually changes.
1201 // Otherwise it's called independent of the value whenever the node is
1202 // written to (default). The setlistener() function returns a unique
1203 // id number, which is to be used as argument to the removelistener()
1204 // function.
1205 naRef FGNasalSys::setListener(naContext c, int argc, naRef* args)
1206 {
1207     SGPropertyNode_ptr node;
1208     naRef prop = argc > 0 ? args[0] : naNil();
1209     if(naIsString(prop)) node = fgGetNode(naStr_data(prop), true);
1210     else if(naIsGhost(prop)) node = *(SGPropertyNode_ptr*)naGhost_ptr(prop);
1211     else {
1212         naRuntimeError(c, "setlistener() with invalid property argument");
1213         return naNil();
1214     }
1215
1216     if(node->isTied())
1217         SG_LOG(SG_NASAL, SG_DEBUG, "Attaching listener to tied property " <<
1218                 node->getPath());
1219
1220     naRef code = argc > 1 ? args[1] : naNil();
1221     if(!(naIsCode(code) || naIsCCode(code) || naIsFunc(code))) {
1222         naRuntimeError(c, "setlistener() with invalid function argument");
1223         return naNil();
1224     }
1225
1226     int init = argc > 2 && naIsNum(args[2]) ? int(args[2].num) : 0;
1227     int type = argc > 3 && naIsNum(args[3]) ? int(args[3].num) : 1;
1228     FGNasalListener *nl = new FGNasalListener(node, code, this,
1229             gcSave(code), _listenerId, init, type);
1230
1231     node->addChangeListener(nl, init != 0);
1232
1233     _listener[_listenerId] = nl;
1234     return naNum(_listenerId++);
1235 }
1236
1237 // removelistener(int) extension function. The argument is the id of
1238 // a listener as returned by the setlistener() function.
1239 naRef FGNasalSys::removeListener(naContext c, int argc, naRef* args)
1240 {
1241     naRef id = argc > 0 ? args[0] : naNil();
1242     map<int, FGNasalListener *>::iterator it = _listener.find(int(id.num));
1243
1244     if(!naIsNum(id) || it == _listener.end() || it->second->_dead) {
1245         naRuntimeError(c, "removelistener() with invalid listener id");
1246         return naNil();
1247     }
1248
1249     it->second->_dead = true;
1250     _dead_listener.push_back(it->second);
1251     _listener.erase(it);
1252     return naNum(_listener.size());
1253 }
1254
1255 void FGNasalSys::registerToLoad(FGNasalModelData *data)
1256 {
1257   if( _loadList.empty() )
1258     _delay_load = true;
1259   _loadList.push(data);
1260 }
1261
1262 void FGNasalSys::registerToUnload(FGNasalModelData *data)
1263 {
1264     _unloadList.push(data);
1265 }
1266
1267 //////////////////////////////////////////////////////////////////////////
1268 // FGNasalListener class.
1269
1270 FGNasalListener::FGNasalListener(SGPropertyNode *node, naRef code,
1271                                  FGNasalSys* nasal, int key, int id,
1272                                  int init, int type) :
1273     _node(node),
1274     _code(code),
1275     _gcKey(key),
1276     _id(id),
1277     _nas(nasal),
1278     _init(init),
1279     _type(type),
1280     _active(0),
1281     _dead(false),
1282     _last_int(0L),
1283     _last_float(0.0)
1284 {
1285     if(_type == 0 && !_init)
1286         changed(node);
1287 }
1288
1289 FGNasalListener::~FGNasalListener()
1290 {
1291     _node->removeChangeListener(this);
1292     _nas->gcRelease(_gcKey);
1293 }
1294
1295 void FGNasalListener::call(SGPropertyNode* which, naRef mode)
1296 {
1297     if(_active || _dead) return;
1298     _active++;
1299     naRef arg[4];
1300     arg[0] = _nas->propNodeGhost(which);
1301     arg[1] = _nas->propNodeGhost(_node);
1302     arg[2] = mode;                  // value changed, child added/removed
1303     arg[3] = naNum(_node != which); // child event?
1304     _nas->call(_code, 4, arg, naNil());
1305     _active--;
1306 }
1307
1308 void FGNasalListener::valueChanged(SGPropertyNode* node)
1309 {
1310     if(_type < 2 && node != _node) return;   // skip child events
1311     if(_type > 0 || changed(_node) || _init)
1312         call(node, naNum(0));
1313
1314     _init = 0;
1315 }
1316
1317 void FGNasalListener::childAdded(SGPropertyNode*, SGPropertyNode* child)
1318 {
1319     if(_type == 2) call(child, naNum(1));
1320 }
1321
1322 void FGNasalListener::childRemoved(SGPropertyNode*, SGPropertyNode* child)
1323 {
1324     if(_type == 2) call(child, naNum(-1));
1325 }
1326
1327 bool FGNasalListener::changed(SGPropertyNode* node)
1328 {
1329     using namespace simgear;
1330     props::Type type = node->getType();
1331     if(type == props::NONE) return false;
1332     if(type == props::UNSPECIFIED) return true;
1333
1334     bool result;
1335     switch(type) {
1336     case props::BOOL:
1337     case props::INT:
1338     case props::LONG:
1339         {
1340             long l = node->getLongValue();
1341             result = l != _last_int;
1342             _last_int = l;
1343             return result;
1344         }
1345     case props::FLOAT:
1346     case props::DOUBLE:
1347         {
1348             double d = node->getDoubleValue();
1349             result = d != _last_float;
1350             _last_float = d;
1351             return result;
1352         }
1353     default:
1354         {
1355             string s = node->getStringValue();
1356             result = s != _last_string;
1357             _last_string = s;
1358             return result;
1359         }
1360     }
1361 }
1362
1363 // NasalXMLVisitor class: handles EasyXML visitor callback for parsexml()
1364 //
1365 NasalXMLVisitor::NasalXMLVisitor(naContext c, int argc, naRef* args) :
1366     _c(naSubContext(c)),
1367     _start_element(argc > 1 ? args[1] : naNil()),
1368     _end_element(argc > 2 ? args[2] : naNil()),
1369     _data(argc > 3 ? args[3] : naNil()),
1370     _pi(argc > 4 ? args[4] : naNil())
1371 {
1372 }
1373
1374 void NasalXMLVisitor::startElement(const char* tag, const XMLAttributes& a)
1375 {
1376     if(naIsNil(_start_element)) return;
1377     naRef attr = naNewHash(_c);
1378     for(int i=0; i<a.size(); i++) {
1379         naRef name = make_string(a.getName(i));
1380         naRef value = make_string(a.getValue(i));
1381         naHash_set(attr, name, value);
1382     }
1383     call(_start_element, 2, make_string(tag), attr);
1384 }
1385
1386 void NasalXMLVisitor::endElement(const char* tag)
1387 {
1388     if(!naIsNil(_end_element)) call(_end_element, 1, make_string(tag));
1389 }
1390
1391 void NasalXMLVisitor::data(const char* str, int len)
1392 {
1393     if(!naIsNil(_data)) call(_data, 1, make_string(str, len));
1394 }
1395
1396 void NasalXMLVisitor::pi(const char* target, const char* data)
1397 {
1398     if(!naIsNil(_pi)) call(_pi, 2, make_string(target), make_string(data));
1399 }
1400
1401 void NasalXMLVisitor::call(naRef func, int num, naRef a, naRef b)
1402 {
1403     naRef args[2];
1404     args[0] = a;
1405     args[1] = b;
1406     naCall(_c, func, num, args, naNil(), naNil());
1407     if(naGetError(_c))
1408         naRethrowError(_c);
1409 }
1410
1411 naRef NasalXMLVisitor::make_string(const char* s, int n)
1412 {
1413     return naStr_fromdata(naNewString(_c), const_cast<char *>(s),
1414                           n < 0 ? strlen(s) : n);
1415 }
1416
1417