]> git.mxchange.org Git - simgear.git/blob - simgear/package/Root.hxx
Lots more work on package support.
[simgear.git] / simgear / package / Root.hxx
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 #ifndef SG_PACKAGE_ROOT_HXX
19 #define SG_PACKAGE_ROOT_HXX
20
21 #include <vector>
22 #include <map>
23 #include <deque>
24 #include <set>
25
26 #include <simgear/misc/sg_path.hxx>
27 #include <simgear/package/Delegate.hxx>
28
29 class SGPropertyNode;
30
31 namespace simgear
32 {
33     
34 namespace HTTP { class Client; }
35     
36 namespace pkg
37 {
38
39 // forward decls
40 class Package;
41 class Catalog;
42 class Install;
43
44 typedef std::vector<Package*> PackageList;
45 typedef std::vector<Catalog*> CatalogList;
46
47 typedef std::map<std::string, Catalog*> CatalogDict;
48
49 class Root
50 {
51 public:
52     Root(const SGPath& aPath, const std::string& aVersion);
53     virtual ~Root();
54     
55     SGPath path() const
56         { return m_path; }
57     
58     void setLocale(const std::string& aLocale);
59         
60     void setDelegate(Delegate* aDelegate);
61         
62     std::string getLocale() const;
63     
64     CatalogList catalogs() const;
65         
66     void setMaxAgeSeconds(int seconds);
67
68     void setHTTPClient(HTTP::Client* aHTTP);
69
70     HTTP::Client* getHTTPClient() const;
71
72     /**
73      * the version string of the root. Catalogs must match this version,
74      * or they will be ignored / rejected.
75      */
76     std::string catalogVersion() const;
77     
78     /**
79      * refresh catalogs which are more than the maximum age (24 hours by default)
80      * set force to true, to download all catalogs regardless of age.
81      */
82     void refresh(bool aForce = false);
83
84     /**
85      * retrieve packages matching a filter.
86      * filter consists of required / minimum values, AND-ed together.
87      */
88     PackageList packagesMatching(const SGPropertyNode* aFilter) const;
89     
90     /**
91      * retrieve all the packages which are installed
92      * and have a pending update
93      */ 
94     PackageList packagesNeedingUpdate() const;
95      
96     Package* getPackageById(const std::string& aId) const;
97     
98     Catalog* getCatalogById(const std::string& aId) const;
99     
100     void scheduleToUpdate(Install* aInstall);
101 private:
102     friend class Install;
103     friend class Catalog;    
104     
105
106     void catalogRefreshBegin(Catalog* aCat);
107     void catalogRefreshComplete(Catalog* aCat, Delegate::FailureCode aReason);
108         
109     void startNext(Install* aCurrent);
110     
111     void startInstall(Install* aInstall);
112     void installProgress(Install* aInstall, unsigned int aBytes, unsigned int aTotal);
113     void finishInstall(Install* aInstall);    
114     void failedInstall(Install* aInstall, Delegate::FailureCode aReason);
115     
116     SGPath m_path;
117     std::string m_locale;
118     HTTP::Client* m_http;
119     CatalogDict m_catalogs;
120     unsigned int m_maxAgeSeconds;
121     Delegate* m_delegate;
122     std::string m_version;
123     
124     std::set<Catalog*> m_refreshing;
125     std::deque<Install*> m_updateDeque;
126 };  
127     
128 } // of namespace pkg
129
130 } // of namespace simgear
131
132 #endif // of SG_PACKAGE_ROOT_HXX