]> git.mxchange.org Git - simgear.git/blob - simgear/props/props.hxx
cea6d639379eb4fcd69716b7d1ad8032ee71019e
[simgear.git] / simgear / props / props.hxx
1 /**
2  * \file props.hxx
3  * Interface definition for a property list.
4  * Started Fall 2000 by David Megginson, david@megginson.com
5  * This code is released into the Public Domain.
6  *
7  * See props.html for documentation [replace with URL when available].
8  *
9  * $Id$
10  */
11
12 #ifndef __PROPS_HXX
13 #define __PROPS_HXX
14
15 #ifndef PROPS_STANDALONE
16 #define PROPS_STANDALONE 0
17 #endif
18
19 #include <vector>
20
21 #if PROPS_STANDALONE
22
23 #include <string>
24 #include <iostream>
25
26 using std::string;
27 using std::vector;
28 using std::istream;
29 using std::ostream;
30
31 #else
32
33 #include <simgear/compiler.h>
34 #include <simgear/debug/logstream.hxx>
35 #include STL_STRING
36 #include STL_IOSTREAM
37 SG_USING_STD(string);
38 SG_USING_STD(vector);
39 SG_USING_STD(istream);
40 SG_USING_STD(ostream);
41
42 #endif
43
44
45 #ifdef NONE
46 #pragma warn A sloppy coder has defined NONE as a macro!
47 #undef NONE
48 #endif
49
50 #ifdef ALIAS
51 #pragma warn A sloppy coder has defined ALIAS as a macro!
52 #undef ALIAS
53 #endif
54
55 #ifdef UNSPECIFIED
56 #pragma warn A sloppy coder has defined UNSPECIFIED as a macro!
57 #undef UNSPECIFIED
58 #endif
59
60 #ifdef BOOL
61 #pragma warn A sloppy coder has defined BOOL as a macro!
62 #undef BOOL
63 #endif
64
65 #ifdef INT
66 #pragma warn A sloppy coder has defined INT as a macro!
67 #undef INT
68 #endif
69
70 #ifdef LONG
71 #pragma warn A sloppy coder has defined LONG as a macro!
72 #undef LONG
73 #endif
74
75 #ifdef FLOAT
76 #pragma warn A sloppy coder has defined FLOAT as a macro!
77 #undef FLOAT
78 #endif
79
80 #ifdef DOUBLE
81 #pragma warn A sloppy coder has defined DOUBLE as a macro!
82 #undef DOUBLE
83 #endif
84
85 #ifdef STRING
86 #pragma warn A sloppy coder has defined STRING as a macro!
87 #undef STRING
88 #endif
89
90
91 \f
92 ////////////////////////////////////////////////////////////////////////
93 // A raw value.
94 //
95 // This is the mechanism that information-providing routines can
96 // use to link their own values to the property manager.  Any
97 // SGValue can be tied to a raw value and then untied again.
98 //
99 // Note: we are forced to use inlined methods here to ensure
100 // that the templates will be instantiated.  We're probably taking
101 // a small performance hit for that.
102 ////////////////////////////////////////////////////////////////////////
103
104
105 /**
106  * Abstract base class for a raw value.
107  *
108  * <p>The property manager is implemented in two layers.  The {@link
109  * SGPropertyNode} is the highest and most abstract layer,
110  * representing an LValue/RValue pair: it records the position of the
111  * property in the property tree and contains facilities for
112  * navigation to other nodes.  It is guaranteed to be persistent: the
113  * {@link SGPropertyNode} will not change during a session, even if
114  * the property is bound and unbound multiple times.</p>
115  *
116  * <p>When the property value is not managed internally in the
117  * SGPropertyNode, the SGPropertyNode will contain a reference to an
118  * SGRawValue (this class), which provides an abstract way to get,
119  * set, and clone the underlying value.  The SGRawValue may change
120  * frequently during a session as a value is retyped or bound and
121  * unbound to various data source, but the abstract SGPropertyNode
122  * layer insulates the application from those changes.  The raw value
123  * contains no facilities for data binding or for type conversion: it
124  * is simply the abstraction of a primitive data type (or a compound
125  * data type, in the case of a string).</p>
126  *
127  * <p>The SGPropertyNode class always keeps a *copy* of a raw value,
128  * not the original one passed to it; if you override a derived class
129  * but do not replace the {@link #clone} method, strange things will
130  * happen.</p>
131  *
132  * <p>All derived SGRawValue classes must implement {@link #getValue},
133  * {@link #setValue}, and {@link #clone} for the appropriate type.</p>
134  *
135  * @see SGPropertyNode
136  * @see SGRawValuePointer
137  * @see SGRawValueFunctions
138  * @see SGRawValueFunctionsIndexed
139  * @see SGRawValueMethods
140  * @see SGRawValueMethodsIndexed
141  */
142 template <class T>
143 class SGRawValue
144 {
145 public:
146
147   /**
148    * The default underlying value for this type.
149    *
150    * Every raw value has a default; the default is false for a
151    * boolean, 0 for the various numeric values, and "" for a string.
152    * If additional types of raw values are added in the future, they
153    * may need different kinds of default values (such as epoch for a
154    * date type).  The default value is used when creating new values.
155    */
156   static const T DefaultValue;  // Default for this kind of raw value.
157
158
159   /**
160    * Constructor.
161    *
162    * Use the default value for this type.
163    */
164   SGRawValue () {}
165
166
167   /**
168    * Destructor.
169    */
170   virtual ~SGRawValue () {}
171
172
173   /**
174    * Return the underlying value.
175    *
176    * @return The actual value for the property.
177    * @see #setValue
178    */
179   virtual T getValue () const = 0;
180
181
182   /**
183    * Assign a new underlying value.
184    *
185    * If the new value cannot be set (because this is a read-only
186    * raw value, or because the new value is not acceptable for
187    * some reason) this method returns false and leaves the original
188    * value unchanged.
189    *
190    * @param value The actual value for the property.
191    * @return true if the value was set successfully, false otherwise.
192    * @see #getValue
193    */
194   virtual bool setValue (T value) = 0;
195
196
197   /**
198    * Create a new deep copy of this raw value.
199    *
200    * The copy will contain its own version of the underlying value
201    * as well.
202    *
203    * @return A deep copy of the current object.
204    */
205   virtual SGRawValue * clone () const = 0;
206 };
207
208
209 /**
210  * A raw value bound to a pointer.
211  *
212  * This is the most efficient way to tie an external value, but also
213  * the most dangerous, because there is no way for the supplier to
214  * perform bounds checking and derived calculations except by polling
215  * the variable to see if it has changed.  There is no default
216  * constructor, because this class would be meaningless without a
217  * pointer.
218  */
219 template <class T>
220 class SGRawValuePointer : public SGRawValue<T>
221 {
222 public:
223
224   /**
225    * Explicit pointer constructor.
226    *
227    * Create a new raw value bound to the value of the variable
228    * referenced by the pointer.
229    *
230    * @param ptr The pointer to the variable to which this raw value
231    * will be bound.
232    */
233   SGRawValuePointer (T * ptr) : _ptr(ptr) {}
234
235   /**
236    * Destructor.
237    */
238   virtual ~SGRawValuePointer () {}
239
240   /**
241    * Get the underlying value.
242    *
243    * This method will dereference the pointer and return the
244    * variable's value.
245    */
246   virtual T getValue () const { return *_ptr; }
247
248   /**
249    * Set the underlying value.
250    *
251    * This method will dereference the pointer and change the
252    * variable's value.
253    */
254   virtual bool setValue (T value) { *_ptr = value; return true; }
255
256   /**
257    * Create a copy of this raw value.
258    *
259    * The copy will use the same external pointer as the original.
260    */
261   virtual SGRawValue<T> * clone () const {
262     return new SGRawValuePointer<T>(_ptr);
263   }
264
265 private:
266   T * _ptr;
267 };
268
269
270 /**
271  * A value managed through static functions.
272  *
273  * A read-only value will not have a setter; a write-only value will
274  * not have a getter.
275  */
276 template <class T>
277 class SGRawValueFunctions : public SGRawValue<T>
278 {
279 public:
280
281   /**
282    * The template type of a static getter function.
283    */
284   typedef T (*getter_t)();
285
286   /**
287    * The template type of a static setter function.
288    */
289   typedef void (*setter_t)(T);
290
291   /**
292    * Explicit constructor.
293    *
294    * Create a new raw value bound to the getter and setter supplied.
295    *
296    * @param getter A static function for getting a value, or 0
297    * to read-disable the value.
298    * @param setter A static function for setting a value, or 0
299    * to write-disable the value.
300    */
301   SGRawValueFunctions (getter_t getter = 0, setter_t setter = 0)
302     : _getter(getter), _setter(setter) {}
303
304   /**
305    * Destructor.
306    */
307   virtual ~SGRawValueFunctions () {}
308
309   /**
310    * Get the underlying value.
311    *
312    * This method will invoke the getter function to get a value.
313    * If no getter function was supplied, this method will always
314    * return the default value for the type.
315    */
316   virtual T getValue () const {
317     if (_getter) return (*_getter)();
318     else return SGRawValue<T>::DefaultValue;
319   }
320
321   /**
322    * Set the underlying value.
323    *
324    * This method will invoke the setter function to change the
325    * underlying value.  If no setter function was supplied, this
326    * method will return false.
327    */
328   virtual bool setValue (T value) {
329     if (_setter) { (*_setter)(value); return true; }
330     else return false;
331   }
332
333   /**
334    * Create a copy of this raw value, bound to the same functions.
335    */
336   virtual SGRawValue<T> * clone () const {
337     return new SGRawValueFunctions<T>(_getter,_setter);
338   }
339
340 private:
341   getter_t _getter;
342   setter_t _setter;
343 };
344
345
346 /**
347  * An indexed value bound to static functions.
348  *
349  * A read-only value will not have a setter; a write-only value will
350  * not have a getter.  An indexed value is useful for binding one
351  * of a list of possible values (such as multiple engines for a
352  * plane).  The index is hard-coded at creation time.
353  *
354  * @see SGRawValue
355  */
356 template <class T>
357 class SGRawValueFunctionsIndexed : public SGRawValue<T>
358 {
359 public:
360   typedef T (*getter_t)(int);
361   typedef void (*setter_t)(int,T);
362   SGRawValueFunctionsIndexed (int index, getter_t getter = 0, setter_t setter = 0)
363     : _index(index), _getter(getter), _setter(setter) {}
364   virtual ~SGRawValueFunctionsIndexed () {}
365   virtual T getValue () const {
366     if (_getter) return (*_getter)(_index);
367     else return SGRawValue<T>::DefaultValue;
368   }
369   virtual bool setValue (T value) {
370     if (_setter) { (*_setter)(_index, value); return true; }
371     else return false;
372   }
373   virtual SGRawValue<T> * clone () const {
374     return new SGRawValueFunctionsIndexed<T>(_index, _getter, _setter);
375   }
376 private:
377   int _index;
378   getter_t _getter;
379   setter_t _setter;
380 };
381
382
383 /**
384  * A value managed through an object and access methods.
385  *
386  * A read-only value will not have a setter; a write-only value will
387  * not have a getter.
388  */
389 template <class C, class T>
390 class SGRawValueMethods : public SGRawValue<T>
391 {
392 public:
393   typedef T (C::*getter_t)() const;
394   typedef void (C::*setter_t)(T);
395   SGRawValueMethods (C &obj, getter_t getter = 0, setter_t setter = 0)
396     : _obj(obj), _getter(getter), _setter(setter) {}
397   virtual ~SGRawValueMethods () {}
398   virtual T getValue () const {
399     if (_getter) { return (_obj.*_getter)(); }
400     else { return SGRawValue<T>::DefaultValue; }
401   }
402   virtual bool setValue (T value) {
403     if (_setter) { (_obj.*_setter)(value); return true; }
404     else return false;
405   }
406   virtual SGRawValue<T> * clone () const {
407     return new SGRawValueMethods<C,T>(_obj, _getter, _setter);
408   }
409 private:
410   C &_obj;
411   getter_t _getter;
412   setter_t _setter;
413 };
414
415
416 /**
417  * An indexed value managed through an object and access methods.
418  *
419  * A read-only value will not have a setter; a write-only value will
420  * not have a getter.
421  */
422 template <class C, class T>
423 class SGRawValueMethodsIndexed : public SGRawValue<T>
424 {
425 public:
426   typedef T (C::*getter_t)(int) const;
427   typedef void (C::*setter_t)(int, T);
428   SGRawValueMethodsIndexed (C &obj, int index,
429                      getter_t getter = 0, setter_t setter = 0)
430     : _obj(obj), _index(index), _getter(getter), _setter(setter) {}
431   virtual ~SGRawValueMethodsIndexed () {}
432   virtual T getValue () const {
433     if (_getter) { return (_obj.*_getter)(_index); }
434     else { return SGRawValue<T>::DefaultValue; }
435   }
436   virtual bool setValue (T value) {
437     if (_setter) { (_obj.*_setter)(_index, value); return true; }
438     else return false;
439   }
440   virtual SGRawValue<T> * clone () const {
441     return new SGRawValueMethodsIndexed<C,T>(_obj, _index, _getter, _setter);
442   }
443 private:
444   C &_obj;
445   int _index;
446   getter_t _getter;
447   setter_t _setter;
448 };
449
450 \f
451 /**
452  * The smart pointer that manage reference counting
453  */
454 class SGPropertyNode;
455 class SGPropertyNode_ptr
456 {
457 public:
458
459   /**
460    * Default constructor
461    */
462   SGPropertyNode_ptr();
463
464   /**
465    * Copy constructor
466    */
467   SGPropertyNode_ptr( const SGPropertyNode_ptr &r );
468
469   /**
470    * Constructor from a pointer to a node
471    */
472   SGPropertyNode_ptr( SGPropertyNode *p );
473
474   /**
475    * Destructor
476    */
477   ~SGPropertyNode_ptr();
478
479   /**
480    * Assignement operator
481    */
482   SGPropertyNode_ptr &operator=( const SGPropertyNode_ptr &r );
483
484   /**
485    * Pointer access operator
486    */
487   SGPropertyNode *operator->();
488
489   /**
490    * Pointer access operator (const)
491    */
492   const SGPropertyNode *operator->() const;
493
494   /**
495    * Conversion to SGPropertyNode * operator
496    */
497   operator SGPropertyNode *();
498
499   /**
500    * Conversion to const SGPropertyNode * operator
501    */
502   operator const SGPropertyNode *() const;
503
504   /**
505    * Return the pointer.
506    */
507   SGPropertyNode * ptr () { return _ptr; }
508
509   /**
510    * Validity test
511    */
512   bool valid() const;
513
514 private:
515
516   SGPropertyNode *_ptr;
517 };
518
519
520 \f
521 /**
522  * The property change listener interface.
523  *
524  * <p>Any class that needs to listen for property changes must implement
525  * this interface.</p>
526  */
527 class SGPropertyChangeListener
528 {
529 public:
530   virtual ~SGPropertyChangeListener ();
531   virtual void valueChanged (SGPropertyNode * node);
532   virtual void childAdded (SGPropertyNode * parent, SGPropertyNode * child);
533   virtual void childRemoved (SGPropertyNode * parent, SGPropertyNode * child);
534
535 protected:
536   friend class SGPropertyNode;
537   virtual void register_property (SGPropertyNode * node);
538   virtual void unregister_property (SGPropertyNode * node);
539
540 private:
541   vector<SGPropertyNode *> _properties;
542 };
543
544
545 \f
546 /**
547  * A node in a property tree.
548  */
549 class SGPropertyNode
550 {
551 public:
552
553   /**
554    * Public constants.
555    */
556   enum {
557     MAX_STRING_LEN = 1024
558   };
559
560   /**
561    * Property value types.
562    */
563   enum Type {
564     NONE = 0,
565     ALIAS,
566     BOOL,
567     INT,
568     LONG,
569     FLOAT,
570     DOUBLE,
571     STRING,
572     UNSPECIFIED
573   };
574
575
576   /**
577    * Access mode attributes.
578    *
579    * <p>The ARCHIVE attribute is strictly advisory, and controls
580    * whether the property should normally be saved and restored.</p>
581    */
582   enum Attribute {
583     READ = 1,
584     WRITE = 2,
585     ARCHIVE = 4,
586     REMOVED = 8,
587     TRACE_READ = 16,
588     TRACE_WRITE = 32
589   };
590
591
592   /**
593    * Last used attribute
594    * Update as needed when enum Attribute is changed
595    */
596   static const int LAST_USED_ATTRIBUTE;
597
598
599   /**
600    * Default constructor.
601    */
602   SGPropertyNode ();
603
604
605   /**
606    * Copy constructor.
607    */
608   SGPropertyNode (const SGPropertyNode &node);
609
610
611   /**
612    * Destructor.
613    */
614   virtual ~SGPropertyNode ();
615
616
617
618   //
619   // Basic properties.
620   //
621
622   /**
623    * Test whether this node contains a primitive leaf value.
624    */
625   bool hasValue () const { return (_type != NONE); }
626
627
628   /**
629    * Get the node's simple (XML) name.
630    */
631   const char * getName () const { return _name; }
632
633
634   /**
635    * Get the node's pretty display name, with subscript when needed.
636    */
637   const char * getDisplayName (bool simplify = false) const;
638
639
640   /**
641    * Get the node's integer index.
642    */
643   int getIndex () const { return _index; }
644
645
646   /**
647    * Get a non-const pointer to the node's parent.
648    */
649   SGPropertyNode * getParent () { return _parent; }
650
651
652   /**
653    * Get a const pointer to the node's parent.
654    */
655   const SGPropertyNode * getParent () const { return _parent; }
656
657
658   //
659   // Children.
660   //
661
662
663   /**
664    * Get the number of child nodes.
665    */
666   int nChildren () const { return _children.size(); }
667
668
669   /**
670    * Get a child node by position (*NOT* index).
671    */
672   SGPropertyNode * getChild (int position);
673
674
675   /**
676    * Get a const child node by position (*NOT* index).
677    */
678   const SGPropertyNode * getChild (int position) const;
679
680
681   /**
682    * Test whether a named child exists.
683    */
684   bool hasChild (const char * name, int index = 0) const
685   {
686     return (getChild(name, index) != 0);
687   }
688
689
690   /**
691    * Get a child node by name and index.
692    */
693   SGPropertyNode * getChild (const char * name, int index = 0,
694                              bool create = false);
695
696
697   /**
698    * Get a const child node by name and index.
699    */
700   const SGPropertyNode * getChild (const char * name, int index = 0) const;
701
702
703   /**
704    * Get a vector of all children with the specified name.
705    */
706   vector<SGPropertyNode_ptr> getChildren (const char * name) const;
707
708
709   /**
710    * Remove child by position.
711    */
712   SGPropertyNode_ptr removeChild (int pos, bool keep = true);
713
714
715   /**
716    * Remove a child node
717    */
718   SGPropertyNode_ptr removeChild (const char * name, int index = 0,
719                                   bool keep = true);
720
721   /**
722    * Remove all children with the specified name.
723    */
724   vector<SGPropertyNode_ptr> removeChildren (const char * name,
725                                              bool keep = true);
726
727
728   //
729   // Alias support.
730   //
731
732
733   /**
734    * Alias this node's leaf value to another's.
735    */
736   bool alias (SGPropertyNode * target);
737
738
739   /**
740    * Alias this node's leaf value to another's by relative path.
741    */
742   bool alias (const char * path);
743
744
745   /**
746    * Remove any alias for this node.
747    */
748   bool unalias ();
749
750
751   /**
752    * Test whether the node's leaf value is aliased to another's.
753    */
754   bool isAlias () const { return (_type == ALIAS); }
755
756
757   /**
758    * Get a non-const pointer to the current alias target, if any.
759    */
760   SGPropertyNode * getAliasTarget ();
761
762
763   /**
764    * Get a const pointer to the current alias target, if any.
765    */
766   const SGPropertyNode * getAliasTarget () const;
767
768
769   //
770   // Path information.
771   //
772
773
774   /**
775    * Get the path to this node from the root.
776    */
777   const char * getPath (bool simplify = false) const;
778
779
780   /**
781    * Get a pointer to the root node.
782    */
783   SGPropertyNode * getRootNode ();
784
785
786   /**
787    * Get a const pointer to the root node.
788    */
789   const SGPropertyNode * getRootNode () const;
790
791
792   /**
793    * Get a pointer to another node by relative path.
794    */
795   SGPropertyNode * getNode (const char * relative_path, bool create = false);
796
797
798   /**
799    * Get a pointer to another node by relative path.
800    *
801    * This method leaves the index off the last member of the path,
802    * so that the user can specify it separately (and save some
803    * string building).  For example, getNode("/bar[1]/foo", 3) is
804    * exactly equivalent to getNode("bar[1]/foo[3]").  The index
805    * provided overrides any given in the path itself for the last
806    * component.
807    */
808   SGPropertyNode * getNode (const char * relative_path, int index,
809                             bool create = false);
810
811
812   /**
813    * Get a const pointer to another node by relative path.
814    */
815   const SGPropertyNode * getNode (const char * relative_path) const;
816
817
818   /**
819    * Get a const pointer to another node by relative path.
820    *
821    * This method leaves the index off the last member of the path,
822    * so that the user can specify it separate.
823    */
824   const SGPropertyNode * getNode (const char * relative_path,
825                                   int index) const;
826
827
828   //
829   // Access Mode.
830   //
831
832   /**
833    * Check a single mode attribute for the property node.
834    */
835   bool getAttribute (Attribute attr) const { return ((_attr & attr) != 0); }
836
837
838   /**
839    * Set a single mode attribute for the property node.
840    */
841   void setAttribute (Attribute attr, bool state) {
842     (state ? _attr |= attr : _attr &= ~attr);
843   }
844
845
846   /**
847    * Get all of the mode attributes for the property node.
848    */
849   int getAttributes () const { return _attr; }
850
851
852   /**
853    * Set all of the mode attributes for the property node.
854    */
855   void setAttributes (int attr) { _attr = attr; }
856   
857
858   //
859   // Leaf Value (primitive).
860   //
861
862
863   /**
864    * Get the type of leaf value, if any, for this node.
865    */
866   Type getType () const;
867
868
869   /**
870    * Get a bool value for this node.
871    */
872   bool getBoolValue () const;
873
874
875   /**
876    * Get an int value for this node.
877    */
878   int getIntValue () const;
879
880
881   /**
882    * Get a long int value for this node.
883    */
884   long getLongValue () const;
885
886
887   /**
888    * Get a float value for this node.
889    */
890   float getFloatValue () const;
891
892
893   /**
894    * Get a double value for this node.
895    */
896   double getDoubleValue () const;
897
898
899   /**
900    * Get a string value for this node.
901    */
902   const char * getStringValue () const;
903
904
905
906   /**
907    * Set a bool value for this node.
908    */
909   bool setBoolValue (bool value);
910
911
912   /**
913    * Set an int value for this node.
914    */
915   bool setIntValue (int value);
916
917
918   /**
919    * Set a long int value for this node.
920    */
921   bool setLongValue (long value);
922
923
924   /**
925    * Set a float value for this node.
926    */
927   bool setFloatValue (float value);
928
929
930   /**
931    * Set a double value for this node.
932    */
933   bool setDoubleValue (double value);
934
935
936   /**
937    * Set a string value for this node.
938    */
939   bool setStringValue (const char * value);
940
941
942   /**
943    * Set a value of unspecified type for this node.
944    */
945   bool setUnspecifiedValue (const char * value);
946
947
948   //
949   // Data binding.
950   //
951
952
953   /**
954    * Test whether this node is bound to an external data source.
955    */
956   bool isTied () const { return _tied; }
957
958
959   /**
960    * Bind this node to an external bool source.
961    */
962   bool tie (const SGRawValue<bool> &rawValue, bool useDefault = true);
963
964
965   /**
966    * Bind this node to an external int source.
967    */
968   bool tie (const SGRawValue<int> &rawValue, bool useDefault = true);
969
970
971   /**
972    * Bind this node to an external long int source.
973    */
974   bool tie (const SGRawValue<long> &rawValue, bool useDefault = true);
975
976
977   /**
978    * Bind this node to an external float source.
979    */
980   bool tie (const SGRawValue<float> &rawValue, bool useDefault = true);
981
982
983   /**
984    * Bind this node to an external double source.
985    */
986   bool tie (const SGRawValue<double> &rawValue, bool useDefault = true);
987
988
989   /**
990    * Bind this node to an external string source.
991    */
992   bool tie (const SGRawValue<const char *> &rawValue, bool useDefault = true);
993
994
995   /**
996    * Unbind this node from any external data source.
997    */
998   bool untie ();
999
1000
1001   //
1002   // Convenience methods using paths.
1003   // TODO: add attribute methods
1004   //
1005
1006
1007   /**
1008    * Get another node's type.
1009    */
1010   Type getType (const char * relative_path) const;
1011
1012
1013   /**
1014    * Test whether another node has a leaf value.
1015    */
1016   bool hasValue (const char * relative_path) const;
1017
1018
1019   /**
1020    * Get another node's value as a bool.
1021    */
1022   bool getBoolValue (const char * relative_path,
1023                      bool defaultValue = false) const;
1024
1025
1026   /**
1027    * Get another node's value as an int.
1028    */
1029   int getIntValue (const char * relative_path,
1030                    int defaultValue = 0) const;
1031
1032
1033   /**
1034    * Get another node's value as a long int.
1035    */
1036   long getLongValue (const char * relative_path,
1037                      long defaultValue = 0L) const;
1038
1039
1040   /**
1041    * Get another node's value as a float.
1042    */
1043   float getFloatValue (const char * relative_path,
1044                        float defaultValue = 0.0) const;
1045
1046
1047   /**
1048    * Get another node's value as a double.
1049    */
1050   double getDoubleValue (const char * relative_path,
1051                          double defaultValue = 0.0L) const;
1052
1053
1054   /**
1055    * Get another node's value as a string.
1056    */
1057   const char * getStringValue (const char * relative_path,
1058                                const char * defaultValue = "") const;
1059
1060
1061   /**
1062    * Set another node's value as a bool.
1063    */
1064   bool setBoolValue (const char * relative_path, bool value);
1065
1066
1067   /**
1068    * Set another node's value as an int.
1069    */
1070   bool setIntValue (const char * relative_path, int value);
1071
1072
1073   /**
1074    * Set another node's value as a long int.
1075    */
1076   bool setLongValue (const char * relative_path, long value);
1077
1078
1079   /**
1080    * Set another node's value as a float.
1081    */
1082   bool setFloatValue (const char * relative_path, float value);
1083
1084
1085   /**
1086    * Set another node's value as a double.
1087    */
1088   bool setDoubleValue (const char * relative_path, double value);
1089
1090
1091   /**
1092    * Set another node's value as a string.
1093    */
1094   bool setStringValue (const char * relative_path, const char * value);
1095
1096
1097   /**
1098    * Set another node's value with no specified type.
1099    */
1100   bool setUnspecifiedValue (const char * relative_path, const char * value);
1101
1102
1103   /**
1104    * Test whether another node is bound to an external data source.
1105    */
1106   bool isTied (const char * relative_path) const;
1107
1108
1109   /**
1110    * Bind another node to an external bool source.
1111    */
1112   bool tie (const char * relative_path, const SGRawValue<bool> &rawValue,
1113             bool useDefault = true);
1114
1115
1116   /**
1117    * Bind another node to an external int source.
1118    */
1119   bool tie (const char * relative_path, const SGRawValue<int> &rawValue,
1120             bool useDefault = true);
1121
1122
1123   /**
1124    * Bind another node to an external long int source.
1125    */
1126   bool tie (const char * relative_path, const SGRawValue<long> &rawValue,
1127             bool useDefault = true);
1128
1129
1130   /**
1131    * Bind another node to an external float source.
1132    */
1133   bool tie (const char * relative_path, const SGRawValue<float> &rawValue,
1134             bool useDefault = true);
1135
1136
1137   /**
1138    * Bind another node to an external double source.
1139    */
1140   bool tie (const char * relative_path, const SGRawValue<double> &rawValue,
1141             bool useDefault = true);
1142
1143
1144   /**
1145    * Bind another node to an external string source.
1146    */
1147   bool tie (const char * relative_path, const SGRawValue<const char *> &rawValue,
1148             bool useDefault = true);
1149
1150
1151   /**
1152    * Unbind another node from any external data source.
1153    */
1154   bool untie (const char * relative_path);
1155
1156
1157   /**
1158    * Add a change listener to the property.
1159    */
1160   void addChangeListener (SGPropertyChangeListener * listener);
1161
1162
1163   /**
1164    * Remove a change listener from the property.
1165    */
1166   void removeChangeListener (SGPropertyChangeListener * listener);
1167
1168
1169   /**
1170    * Fire a value change event to all listeners.
1171    */
1172   void fireValueChanged ();
1173
1174
1175   /**
1176    * Fire a child-added event to all listeners.
1177    */
1178   void fireChildAdded (SGPropertyNode * child);
1179
1180
1181   /**
1182    * Fire a child-removed event to all listeners.
1183    */
1184   void fireChildRemoved (SGPropertyNode * child);
1185
1186
1187   /**
1188    * Clear any existing value and set the type to NONE.
1189    */
1190   void clearValue ();
1191
1192
1193 protected:
1194
1195   void fireValueChanged (SGPropertyNode * node);
1196   void fireChildAdded (SGPropertyNode * parent, SGPropertyNode * child);
1197   void fireChildRemoved (SGPropertyNode * parent, SGPropertyNode * child);
1198
1199   /**
1200    * Protected constructor for making new nodes on demand.
1201    */
1202   SGPropertyNode (const char * name, int index, SGPropertyNode * parent);
1203
1204
1205 private:
1206
1207                                 // Get the raw value
1208   bool get_bool () const;
1209   int get_int () const;
1210   long get_long () const;
1211   float get_float () const;
1212   double get_double () const;
1213   const char * get_string () const;
1214
1215                                 // Set the raw value
1216   bool set_bool (bool value);
1217   bool set_int (int value);
1218   bool set_long (long value);
1219   bool set_float (float value);
1220   bool set_double (double value);
1221   bool set_string (const char * value);
1222
1223
1224   /**
1225    * Get the value as a string.
1226    */
1227   const char * make_string () const;
1228
1229
1230   /**
1231    * Trace a read access.
1232    */
1233   void trace_read () const;
1234
1235
1236   /**
1237    * Trace a write access.
1238    */
1239   void trace_write () const;
1240
1241
1242   /**
1243    * Increment reference counter
1244    */
1245   void incrementRef();
1246
1247   /**
1248    * Decrement reference counter
1249    */
1250   int decrementRef();
1251
1252   friend class SGPropertyNode_ptr;
1253
1254
1255   mutable char _buffer[MAX_STRING_LEN+1];
1256
1257   class hash_table;
1258
1259   char * _name;
1260   mutable char * _display_name;
1261   int _index;
1262   SGPropertyNode * _parent;
1263   vector<SGPropertyNode_ptr> _children;
1264   vector<SGPropertyNode_ptr> _removedChildren;
1265   mutable char * _path;
1266   hash_table * _path_cache;
1267   Type _type;
1268   bool _tied;
1269   int _attr;
1270   int _count;
1271
1272                                 // The right kind of pointer...
1273   union {
1274     SGPropertyNode * alias;
1275     SGRawValue<bool> * bool_val;
1276     SGRawValue<int> * int_val;
1277     SGRawValue<long> * long_val;
1278     SGRawValue<float> * float_val;
1279     SGRawValue<double> * double_val;
1280     SGRawValue<const char *> * string_val;
1281   } _value;
1282
1283   union {
1284     bool bool_val;
1285     int int_val;
1286     long long_val;
1287     float float_val;
1288     double double_val;
1289     char * string_val;
1290   } _local_val;
1291
1292   vector <SGPropertyChangeListener *> * _listeners;
1293
1294
1295 \f
1296   /**
1297    * A very simple hash table with no remove functionality.
1298    */
1299   class hash_table {
1300   public:
1301
1302     /**
1303      * An entry in a bucket in a hash table.
1304      */
1305     class entry {
1306     public:
1307       entry ();
1308       ~entry ();
1309       const char * get_key () { return _key; }
1310       void set_key (const char * key);
1311       SGPropertyNode * get_value () { return _value; }
1312       void set_value (SGPropertyNode * value);
1313     private:
1314       char * _key;
1315       SGPropertyNode * _value;
1316     };
1317
1318
1319     /**
1320      * A bucket in a hash table.
1321      */
1322     class bucket {
1323     public:
1324       bucket ();
1325       ~bucket ();
1326       entry * get_entry (const char * key, bool create = false);
1327       void erase(const char * key);
1328     private:
1329       int _length;
1330       entry ** _entries;
1331     };
1332
1333     friend class bucket;
1334
1335     hash_table ();
1336     ~hash_table ();
1337     SGPropertyNode * get (const char * key);
1338     void put (const char * key, SGPropertyNode * value);
1339     void erase(const char * key);
1340
1341   private:
1342     unsigned int hashcode (const char * key);
1343     unsigned int _data_length;
1344     bucket ** _data;
1345   };
1346
1347 };
1348
1349 #endif // __PROPS_HXX
1350
1351 // end of props.hxx