]> git.mxchange.org Git - simgear.git/blob - simgear/props/propertyObject.cxx
Shrink PropertyObjectBase by a pointer, don't pull exception header into the header.
[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(const PropertyObjectBase& aOther) :
37   _path(aOther._path),
38   _prop(aOther._prop)
39 {
40
41 }
42
43 PropertyObjectBase::PropertyObjectBase(const char* aChild) :
44   _path(aChild),
45   _prop(NULL)
46 {
47 }
48   
49 PropertyObjectBase::PropertyObjectBase(SGPropertyNode* aNode, const char* aChild) :
50   _path(aChild),
51   _prop(aNode)
52 {
53
54 }
55   
56 SGPropertyNode* PropertyObjectBase::node(bool aCreate) const
57 {
58   if (_path == NULL) { // already resolved
59     return _prop;
60   }
61   
62   SGPropertyNode* r = _prop ? _prop : static_defaultRoot;
63   _prop = r->getNode(_path, aCreate);
64   
65   if (_prop) {
66     // resolve worked, we will cache from now on, so clear _path
67     _path = NULL;
68   }
69
70   return _prop;
71 }
72
73 SGPropertyNode* PropertyObjectBase::getOrThrow() const
74 {
75   SGPropertyNode* n = node(false);
76   if (!n) {
77     std::string path;
78     if (_prop) {
79       path = _prop->getPath();
80       if (_path) {
81         path += '/';      
82       }
83     }
84
85     if (_path) {
86       path += _path;
87     }
88
89     throw sg_exception("Unknown property:" + path);
90   }
91
92   return n;
93 }
94
95 } // of namespace simgear
96