]> git.mxchange.org Git - simgear.git/blob - simgear/props/props.hxx
9a3e4a7e315065109aac4ee6cc68149bb97c8ad9
[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    * Detach a child node from the tree and return guarded pointr to it.
711    */
712   SGPropertyNode_ptr detachChild (const char * name, int index = 0,
713                                   bool keep = true);
714
715
716   /**
717    * Remove a child node. Returns "true" if at least one node had to remain,
718    * because it was tied, aliased, or refcounted through SGPropertyNode_ptr.
719    */
720   bool removeChild (const char * name, int index = 0);
721
722
723   /**
724    * Remove all children nodes, or all with a given name.
725    */
726   bool removeChildren(const char * name = 0);
727
728
729   //
730   // Alias support.
731   //
732
733
734   /**
735    * Alias this node's leaf value to another's.
736    */
737   bool alias (SGPropertyNode * target);
738
739
740   /**
741    * Alias this node's leaf value to another's by relative path.
742    */
743   bool alias (const char * path);
744
745
746   /**
747    * Remove any alias for this node.
748    */
749   bool unalias ();
750
751
752   /**
753    * Test whether the node's leaf value is aliased to another's.
754    */
755   bool isAlias () const { return (_type == ALIAS); }
756
757
758   /**
759    * Get a non-const pointer to the current alias target, if any.
760    */
761   SGPropertyNode * getAliasTarget ();
762
763
764   /**
765    * Get a const pointer to the current alias target, if any.
766    */
767   const SGPropertyNode * getAliasTarget () const;
768
769
770   //
771   // Path information.
772   //
773
774
775   /**
776    * Get the path to this node from the root.
777    */
778   const char * getPath (bool simplify = false) const;
779
780
781   /**
782    * Get a pointer to the root node.
783    */
784   SGPropertyNode * getRootNode ();
785
786
787   /**
788    * Get a const pointer to the root node.
789    */
790   const SGPropertyNode * getRootNode () const;
791
792
793   /**
794    * Get a pointer to another node by relative path.
795    */
796   SGPropertyNode * getNode (const char * relative_path, bool create = false);
797
798
799   /**
800    * Get a pointer to another node by relative path.
801    *
802    * This method leaves the index off the last member of the path,
803    * so that the user can specify it separately (and save some
804    * string building).  For example, getNode("/bar[1]/foo", 3) is
805    * exactly equivalent to getNode("bar[1]/foo[3]").  The index
806    * provided overrides any given in the path itself for the last
807    * component.
808    */
809   SGPropertyNode * getNode (const char * relative_path, int index,
810                             bool create = false);
811
812
813   /**
814    * Get a const pointer to another node by relative path.
815    */
816   const SGPropertyNode * getNode (const char * relative_path) const;
817
818
819   /**
820    * Get a const pointer to another node by relative path.
821    *
822    * This method leaves the index off the last member of the path,
823    * so that the user can specify it separate.
824    */
825   const SGPropertyNode * getNode (const char * relative_path,
826                                   int index) const;
827
828
829   //
830   // Access Mode.
831   //
832
833   /**
834    * Check a single mode attribute for the property node.
835    */
836   bool getAttribute (Attribute attr) const { return ((_attr & attr) != 0); }
837
838
839   /**
840    * Set a single mode attribute for the property node.
841    */
842   void setAttribute (Attribute attr, bool state) {
843     (state ? _attr |= attr : _attr &= ~attr);
844   }
845
846
847   /**
848    * Get all of the mode attributes for the property node.
849    */
850   int getAttributes () const { return _attr; }
851
852
853   /**
854    * Set all of the mode attributes for the property node.
855    */
856   void setAttributes (int attr) { _attr = attr; }
857   
858
859   //
860   // Leaf Value (primitive).
861   //
862
863
864   /**
865    * Get the type of leaf value, if any, for this node.
866    */
867   Type getType () const;
868
869
870   /**
871    * Get a bool value for this node.
872    */
873   bool getBoolValue () const;
874
875
876   /**
877    * Get an int value for this node.
878    */
879   int getIntValue () const;
880
881
882   /**
883    * Get a long int value for this node.
884    */
885   long getLongValue () const;
886
887
888   /**
889    * Get a float value for this node.
890    */
891   float getFloatValue () const;
892
893
894   /**
895    * Get a double value for this node.
896    */
897   double getDoubleValue () const;
898
899
900   /**
901    * Get a string value for this node.
902    */
903   const char * getStringValue () const;
904
905
906
907   /**
908    * Set a bool value for this node.
909    */
910   bool setBoolValue (bool value);
911
912
913   /**
914    * Set an int value for this node.
915    */
916   bool setIntValue (int value);
917
918
919   /**
920    * Set a long int value for this node.
921    */
922   bool setLongValue (long value);
923
924
925   /**
926    * Set a float value for this node.
927    */
928   bool setFloatValue (float value);
929
930
931   /**
932    * Set a double value for this node.
933    */
934   bool setDoubleValue (double value);
935
936
937   /**
938    * Set a string value for this node.
939    */
940   bool setStringValue (const char * value);
941
942
943   /**
944    * Set a value of unspecified type for this node.
945    */
946   bool setUnspecifiedValue (const char * value);
947
948
949   //
950   // Data binding.
951   //
952
953
954   /**
955    * Test whether this node is bound to an external data source.
956    */
957   bool isTied () const { return _tied; }
958
959
960   /**
961    * Bind this node to an external bool source.
962    */
963   bool tie (const SGRawValue<bool> &rawValue, bool useDefault = true);
964
965
966   /**
967    * Bind this node to an external int source.
968    */
969   bool tie (const SGRawValue<int> &rawValue, bool useDefault = true);
970
971
972   /**
973    * Bind this node to an external long int source.
974    */
975   bool tie (const SGRawValue<long> &rawValue, bool useDefault = true);
976
977
978   /**
979    * Bind this node to an external float source.
980    */
981   bool tie (const SGRawValue<float> &rawValue, bool useDefault = true);
982
983
984   /**
985    * Bind this node to an external double source.
986    */
987   bool tie (const SGRawValue<double> &rawValue, bool useDefault = true);
988
989
990   /**
991    * Bind this node to an external string source.
992    */
993   bool tie (const SGRawValue<const char *> &rawValue, bool useDefault = true);
994
995
996   /**
997    * Unbind this node from any external data source.
998    */
999   bool untie ();
1000
1001
1002   //
1003   // Convenience methods using paths.
1004   // TODO: add attribute methods
1005   //
1006
1007
1008   /**
1009    * Get another node's type.
1010    */
1011   Type getType (const char * relative_path) const;
1012
1013
1014   /**
1015    * Test whether another node has a leaf value.
1016    */
1017   bool hasValue (const char * relative_path) const;
1018
1019
1020   /**
1021    * Get another node's value as a bool.
1022    */
1023   bool getBoolValue (const char * relative_path,
1024                      bool defaultValue = false) const;
1025
1026
1027   /**
1028    * Get another node's value as an int.
1029    */
1030   int getIntValue (const char * relative_path,
1031                    int defaultValue = 0) const;
1032
1033
1034   /**
1035    * Get another node's value as a long int.
1036    */
1037   long getLongValue (const char * relative_path,
1038                      long defaultValue = 0L) const;
1039
1040
1041   /**
1042    * Get another node's value as a float.
1043    */
1044   float getFloatValue (const char * relative_path,
1045                        float defaultValue = 0.0) const;
1046
1047
1048   /**
1049    * Get another node's value as a double.
1050    */
1051   double getDoubleValue (const char * relative_path,
1052                          double defaultValue = 0.0L) const;
1053
1054
1055   /**
1056    * Get another node's value as a string.
1057    */
1058   const char * getStringValue (const char * relative_path,
1059                                const char * defaultValue = "") const;
1060
1061
1062   /**
1063    * Set another node's value as a bool.
1064    */
1065   bool setBoolValue (const char * relative_path, bool value);
1066
1067
1068   /**
1069    * Set another node's value as an int.
1070    */
1071   bool setIntValue (const char * relative_path, int value);
1072
1073
1074   /**
1075    * Set another node's value as a long int.
1076    */
1077   bool setLongValue (const char * relative_path, long value);
1078
1079
1080   /**
1081    * Set another node's value as a float.
1082    */
1083   bool setFloatValue (const char * relative_path, float value);
1084
1085
1086   /**
1087    * Set another node's value as a double.
1088    */
1089   bool setDoubleValue (const char * relative_path, double value);
1090
1091
1092   /**
1093    * Set another node's value as a string.
1094    */
1095   bool setStringValue (const char * relative_path, const char * value);
1096
1097
1098   /**
1099    * Set another node's value with no specified type.
1100    */
1101   bool setUnspecifiedValue (const char * relative_path, const char * value);
1102
1103
1104   /**
1105    * Test whether another node is bound to an external data source.
1106    */
1107   bool isTied (const char * relative_path) const;
1108
1109
1110   /**
1111    * Bind another node to an external bool source.
1112    */
1113   bool tie (const char * relative_path, const SGRawValue<bool> &rawValue,
1114             bool useDefault = true);
1115
1116
1117   /**
1118    * Bind another node to an external int source.
1119    */
1120   bool tie (const char * relative_path, const SGRawValue<int> &rawValue,
1121             bool useDefault = true);
1122
1123
1124   /**
1125    * Bind another node to an external long int source.
1126    */
1127   bool tie (const char * relative_path, const SGRawValue<long> &rawValue,
1128             bool useDefault = true);
1129
1130
1131   /**
1132    * Bind another node to an external float source.
1133    */
1134   bool tie (const char * relative_path, const SGRawValue<float> &rawValue,
1135             bool useDefault = true);
1136
1137
1138   /**
1139    * Bind another node to an external double source.
1140    */
1141   bool tie (const char * relative_path, const SGRawValue<double> &rawValue,
1142             bool useDefault = true);
1143
1144
1145   /**
1146    * Bind another node to an external string source.
1147    */
1148   bool tie (const char * relative_path, const SGRawValue<const char *> &rawValue,
1149             bool useDefault = true);
1150
1151
1152   /**
1153    * Unbind another node from any external data source.
1154    */
1155   bool untie (const char * relative_path);
1156
1157
1158   /**
1159    * Add a change listener to the property.
1160    */
1161   void addChangeListener (SGPropertyChangeListener * listener);
1162
1163
1164   /**
1165    * Remove a change listener from the property.
1166    */
1167   void removeChangeListener (SGPropertyChangeListener * listener);
1168
1169
1170   /**
1171    * Fire a value change event to all listeners.
1172    */
1173   void fireValueChanged ();
1174
1175
1176   /**
1177    * Fire a child-added event to all listeners.
1178    */
1179   void fireChildAdded (SGPropertyNode * child);
1180
1181
1182   /**
1183    * Fire a child-removed event to all listeners.
1184    */
1185   void fireChildRemoved (SGPropertyNode * child);
1186
1187
1188   /**
1189    * Clear any existing value and set the type to NONE.
1190    */
1191   void clearValue ();
1192
1193
1194 protected:
1195
1196   void fireValueChanged (SGPropertyNode * node);
1197   void fireChildAdded (SGPropertyNode * parent, SGPropertyNode * child);
1198   void fireChildRemoved (SGPropertyNode * parent, SGPropertyNode * child);
1199
1200   /**
1201    * Protected constructor for making new nodes on demand.
1202    */
1203   SGPropertyNode (const char * name, int index, SGPropertyNode * parent);
1204
1205
1206 private:
1207
1208                                 // Get the raw value
1209   bool get_bool () const;
1210   int get_int () const;
1211   long get_long () const;
1212   float get_float () const;
1213   double get_double () const;
1214   const char * get_string () const;
1215
1216                                 // Set the raw value
1217   bool set_bool (bool value);
1218   bool set_int (int value);
1219   bool set_long (long value);
1220   bool set_float (float value);
1221   bool set_double (double value);
1222   bool set_string (const char * value);
1223
1224
1225   /**
1226    * Get the value as a string.
1227    */
1228   const char * make_string () const;
1229
1230
1231   /**
1232    * Trace a read access.
1233    */
1234   void trace_read () const;
1235
1236
1237   /**
1238    * Trace a write access.
1239    */
1240   void trace_write () const;
1241
1242
1243   /**
1244    * Increment reference counter
1245    */
1246   void incrementRef();
1247
1248   /**
1249    * Decrement reference counter
1250    */
1251   int decrementRef();
1252
1253   friend class SGPropertyNode_ptr;
1254
1255
1256   mutable char _buffer[MAX_STRING_LEN+1];
1257
1258   class hash_table;
1259
1260   char * _name;
1261   mutable char * _display_name;
1262   int _index;
1263   SGPropertyNode * _parent;
1264   vector<SGPropertyNode_ptr> _children;
1265   vector<SGPropertyNode_ptr> _removedChildren;
1266   mutable char * _path;
1267   hash_table * _path_cache;
1268   Type _type;
1269   bool _tied;
1270   int _attr;
1271   int _count;
1272
1273                                 // The right kind of pointer...
1274   union {
1275     SGPropertyNode * alias;
1276     SGRawValue<bool> * bool_val;
1277     SGRawValue<int> * int_val;
1278     SGRawValue<long> * long_val;
1279     SGRawValue<float> * float_val;
1280     SGRawValue<double> * double_val;
1281     SGRawValue<const char *> * string_val;
1282   } _value;
1283
1284   union {
1285     bool bool_val;
1286     int int_val;
1287     long long_val;
1288     float float_val;
1289     double double_val;
1290     char * string_val;
1291   } _local_val;
1292
1293   vector <SGPropertyChangeListener *> * _listeners;
1294
1295
1296 \f
1297   /**
1298    * A very simple hash table with no remove functionality.
1299    */
1300   class hash_table {
1301   public:
1302
1303     /**
1304      * An entry in a bucket in a hash table.
1305      */
1306     class entry {
1307     public:
1308       entry ();
1309       virtual ~entry ();
1310       virtual const char * get_key () { return _key; }
1311       virtual void set_key (const char * key);
1312       virtual SGPropertyNode * get_value () { return _value; }
1313       virtual void set_value (SGPropertyNode * value);
1314     private:
1315       char * _key;
1316       SGPropertyNode * _value;
1317     };
1318
1319
1320     /**
1321      * A bucket in a hash table.
1322      */
1323     class bucket {
1324     public:
1325       bucket ();
1326       virtual ~bucket ();
1327       virtual entry * get_entry (const char * key, bool create = false);
1328       virtual void erase(const char * key);
1329     private:
1330       int _length;
1331       entry ** _entries;
1332     };
1333
1334     friend class bucket;
1335
1336     hash_table ();
1337     virtual ~hash_table ();
1338     virtual SGPropertyNode * get (const char * key);
1339     virtual void put (const char * key, SGPropertyNode * value);
1340     virtual void erase(const char * key);
1341
1342   private:
1343     unsigned int hashcode (const char * key);
1344     unsigned int _data_length;
1345     bucket ** _data;
1346   };
1347
1348 };
1349
1350 #endif // __PROPS_HXX
1351
1352 // end of props.hxx