]> git.mxchange.org Git - simgear.git/blob - simgear/package/Package.cxx
Package: support for variants
[simgear.git] / simgear / package / Package.cxx
1 // Copyright (C) 2013  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 #include <simgear/package/Package.hxx>
19
20 #include <cassert>
21 #include <boost/foreach.hpp>
22 #include <boost/algorithm/string/case_conv.hpp>
23
24 #include <simgear/debug/logstream.hxx> 
25 #include <simgear/structure/exception.hxx>
26
27 #include <simgear/package/Catalog.hxx>
28 #include <simgear/package/Install.hxx>
29 #include <simgear/package/Root.hxx>
30
31 namespace simgear {
32     
33 namespace pkg {
34
35 Package::Package(const SGPropertyNode* aProps, CatalogRef aCatalog) :
36     m_catalog(aCatalog)
37 {
38     initWithProps(aProps);
39 }
40
41 void Package::initWithProps(const SGPropertyNode* aProps)
42 {
43     m_props = const_cast<SGPropertyNode*>(aProps);
44 // cache tag values
45     BOOST_FOREACH(const SGPropertyNode* c, aProps->getChildren("tag")) {
46       std::string t(c->getStringValue());
47       m_tags.insert(boost::to_lower_copy(t));
48     }
49
50     m_id = m_props->getStringValue("id");
51 }
52
53 void Package::updateFromProps(const SGPropertyNode* aProps)
54 {
55     m_tags.clear();
56     initWithProps(aProps);
57 }
58
59 bool Package::matches(const SGPropertyNode* aFilter) const
60 {
61     int nChildren = aFilter->nChildren();
62     for (int i = 0; i < nChildren; i++) {
63         const SGPropertyNode* c = aFilter->getChild(i);
64         const std::string& filter_name = c->getNameString();
65
66         if (strutils::starts_with(filter_name, "rating-")) {
67             int minRating = c->getIntValue();
68             std::string rname = c->getName() + 7;
69             int ourRating = m_props->getChild("rating")->getIntValue(rname, 0);
70             if (ourRating < minRating) {
71                 return false;
72             }
73         }
74         else if (filter_name == "tag") {
75             std::string tag(c->getStringValue());
76             boost::to_lower(tag);
77             if (m_tags.find(tag) == m_tags.end()) {
78                 return false;
79             }
80         }
81         // substring search of name, description
82         else if (filter_name == "name") {
83           std::string n(c->getStringValue());
84           boost::to_lower(n);
85           size_t pos = boost::to_lower_copy(name()).find(n);
86           if (pos == std::string::npos) {
87             return false;
88           }
89         }
90         else if (filter_name == "description") {
91           std::string n(c->getStringValue());
92           boost::to_lower(n);
93           size_t pos = boost::to_lower_copy(description()).find(n);
94           if (pos == std::string::npos) {
95             return false;
96           }
97         }
98         else if (filter_name == "installed") {
99           if (isInstalled() != c->getBoolValue()) {
100             return false;
101           }
102         }
103         else
104           SG_LOG(SG_GENERAL, SG_WARN, "unknown filter term:" << filter_name);
105     } // of filter props iteration
106     
107     return true;
108 }
109
110 bool Package::isInstalled() const
111 {
112     // anything to check for? look for a valid revision file?
113     return pathOnDisk().exists();
114 }
115
116 SGPath Package::pathOnDisk() const
117 {
118     SGPath p(m_catalog->installRoot());
119     p.append("Aircraft");
120     p.append(id());
121     return p;
122 }
123
124 InstallRef Package::install()
125 {
126     InstallRef ins = existingInstall();
127     if (ins) {
128         return ins;
129     }
130   
131   // start a new install
132     ins = new Install(this, pathOnDisk());
133     m_catalog->root()->scheduleToUpdate(ins);
134     return ins;
135 }
136
137 InstallRef Package::existingInstall() const
138 {
139     return m_catalog->installForPackage(const_cast<Package*>(this));
140 }
141
142 std::string Package::id() const
143 {
144     return m_id;
145 }
146
147 std::string Package::qualifiedId() const
148 {
149     return m_catalog->id() + "." + id();
150 }
151
152 std::string Package::md5() const
153 {
154     return m_props->getStringValue("md5");
155 }
156
157 unsigned int Package::revision() const
158 {
159     return m_props->getIntValue("revision");
160 }
161     
162 std::string Package::name() const
163 {
164     return m_props->getStringValue("name");
165 }
166
167 size_t Package::fileSizeBytes() const
168 {
169     return m_props->getIntValue("file-size-bytes");
170 }
171   
172 std::string Package::description() const
173 {
174     return getLocalisedProp("description");
175 }
176     
177 SGPropertyNode* Package::properties() const
178 {
179     return m_props.ptr();
180 }
181
182 string_list Package::thumbnailUrls() const
183 {
184     string_list r;
185     BOOST_FOREACH(SGPropertyNode* dl, m_props->getChildren("thumbnail")) {
186         r.push_back(dl->getStringValue());
187     }
188     return r;
189 }
190
191 string_list Package::downloadUrls() const
192 {
193     string_list r;
194     BOOST_FOREACH(SGPropertyNode* dl, m_props->getChildren("url")) {
195         r.push_back(dl->getStringValue());
196     }
197     return r;
198 }
199
200 std::string Package::getLocalisedProp(const std::string& aName) const
201 {
202     return getLocalisedString(m_props, aName.c_str());
203 }
204
205 std::string Package::getLocalisedString(const SGPropertyNode* aRoot, const char* aName) const
206 {
207     std::string locale = m_catalog->root()->getLocale();
208     if (aRoot->hasChild(locale)) {
209         const SGPropertyNode* localeRoot = aRoot->getChild(locale.c_str());
210         if (localeRoot->hasChild(aName)) {
211             return localeRoot->getStringValue(aName);
212         }
213     }
214     
215     return aRoot->getStringValue(aName);
216 }
217
218 PackageList Package::dependencies() const
219 {
220     PackageList result;
221     
222     BOOST_FOREACH(SGPropertyNode* dep, m_props->getChildren("depends")) {
223         std::string depName = dep->getStringValue("package");
224         unsigned int rev = dep->getIntValue("revision", 0);
225         
226     // prefer local hangar package if possible, in case someone does something
227     // silly with naming. Of course flightgear's aircraft search doesn't know
228     // about hanagrs, so names still need to be unique.
229         PackageRef depPkg = m_catalog->getPackageById(depName);
230         if (!depPkg) {   
231             Root* rt = m_catalog->root();
232             depPkg = rt->getPackageById(depName);
233             if (!depPkg) {
234                 throw sg_exception("Couldn't satisfy dependency of " + id() + " : " + depName);
235             }
236         }
237         
238         if (depPkg->revision() < rev) {
239             throw sg_range_exception("Couldn't find suitable revision of " + depName);
240         }
241     
242     // forbid recursive dependency graphs, we don't need that level
243     // of complexity for aircraft resources
244         assert(depPkg->dependencies() == PackageList());
245         
246         result.push_back(depPkg);
247     }
248     
249     return result;
250 }
251
252 string_list Package::variants() const
253 {
254     string_list result;
255     result.push_back(id());
256
257     BOOST_FOREACH(SGPropertyNode* var, m_props->getChildren("variant")) {
258         result.push_back(var->getStringValue("id"));
259     }
260
261     return result;
262 }
263
264 std::string Package::nameForVariant(const std::string& vid) const
265 {
266     if (vid == id()) {
267         return name();
268     }
269
270     BOOST_FOREACH(SGPropertyNode* var, m_props->getChildren("variant")) {
271         if (vid == var->getStringValue("id")) {
272             return var->getStringValue("name");
273         }
274     }
275
276
277     throw sg_exception("Unknow variant +" + vid + " in package " + id());
278 }
279
280 } // of namespace pkg
281
282 } // of namespace simgear