]> git.mxchange.org Git - simgear.git/blob - simgear/props/propertyObject.cxx
Update doxgen config and some comments.
[simgear.git] / simgear / props / propertyObject.cxx
1 // Copyright (C) 2010  James Turner - zakalawe@mac.com
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Library General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16 //
17
18 #ifdef HAVE_CONFIG_H
19 #  include "simgear_config.h"
20 #endif
21
22 #include "propertyObject.hxx"
23
24 #include <simgear/structure/exception.hxx>
25
26 namespace simgear
27 {
28
29 SGPropertyNode* static_defaultRoot = NULL;
30
31 void PropertyObjectBase::setDefaultRoot(SGPropertyNode* aRoot)
32 {
33   static_defaultRoot = aRoot;
34 }
35   
36 PropertyObjectBase::PropertyObjectBase() :
37   _path(NULL),
38   _prop(NULL)
39 {
40     
41 }
42
43 PropertyObjectBase::PropertyObjectBase(const PropertyObjectBase& aOther) :
44   _path(aOther._path),
45   _prop(aOther._prop)
46 {
47
48 }
49
50 PropertyObjectBase::PropertyObjectBase(const char* aChild) :
51   _path(aChild),
52   _prop(NULL)
53 {
54 }
55   
56 PropertyObjectBase::PropertyObjectBase(SGPropertyNode* aNode, const char* aChild) :
57   _path(aChild),
58   _prop(aNode)
59 {
60
61 }
62   
63 SGPropertyNode* PropertyObjectBase::node(bool aCreate) const
64 {
65   if (_path == NULL) { // already resolved
66     return _prop;
67   }
68   
69   SGPropertyNode *r = _prop ? _prop : static_defaultRoot,
70                  *prop = r->getNode(_path, aCreate);
71   
72   if( prop )
73   {
74     // resolve worked, we will cache from now on, so clear _path and cache prop
75     _path = NULL;
76     _prop = prop;
77   }
78
79   return prop;
80 }
81
82 SGPropertyNode* PropertyObjectBase::getOrThrow() const
83 {
84   SGPropertyNode* n = node(false);
85   if (!n) {
86     std::string path;
87     if (_prop) {
88       path = _prop->getPath();
89       if (_path) {
90         path += '/';      
91       }
92     }
93
94     if (_path) {
95       path += _path;
96     }
97
98     throw sg_exception("Unknown property:" + path);
99   }
100
101   return n;
102 }
103
104 } // of namespace simgear
105