]> git.mxchange.org Git - simgear.git/blob - simgear/package/Root.hxx
Package support hacking
[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 <memory> // for auto_ptr
23
24 #include <simgear/misc/sg_path.hxx>
25 #include <simgear/package/Delegate.hxx>
26
27 #include <simgear/structure/SGReferenced.hxx>
28 #include <simgear/structure/SGSharedPtr.hxx>
29
30 class SGPropertyNode;
31
32 namespace simgear
33 {
34     
35 namespace HTTP {
36     class Client;
37     class Request;
38 }
39     
40 namespace pkg
41 {
42
43 // forward decls
44 class Package;
45 class Catalog;
46 class Install;
47   
48 typedef SGSharedPtr<Package> PackageRef;
49 typedef SGSharedPtr<Catalog> CatalogRef;
50 typedef SGSharedPtr<Install> InstallRef;
51   
52 typedef std::vector<PackageRef> PackageList;
53 typedef std::vector<CatalogRef> CatalogList;
54
55 class Root : public SGReferenced
56 {
57 public:
58     Root(const SGPath& aPath, const std::string& aVersion);
59     virtual ~Root();
60     
61     SGPath path() const;
62     
63     void setLocale(const std::string& aLocale);
64         
65     void addDelegate(Delegate* aDelegate);
66     
67     void removeDelegate(Delegate* aDelegate);
68     
69     std::string getLocale() const;
70     
71     CatalogList catalogs() const;
72         
73     void setMaxAgeSeconds(unsigned int seconds);
74     unsigned int maxAgeSeconds() const;
75     
76     void setHTTPClient(HTTP::Client* aHTTP);
77
78     /**
79      * Submit an HTTP request. The Root may delay or queue requests if it needs
80      * too, for example during startup when the HTTP engine may not have been
81      * set yet.
82      */
83     void makeHTTPRequest(HTTP::Request* req);
84     
85     /**
86      * the version string of the root. Catalogs must match this version,
87      * or they will be ignored / rejected.
88      */
89     std::string catalogVersion() const;
90     
91     /**
92      * refresh catalogs which are more than the maximum age (24 hours by default)
93      * set force to true, to download all catalogs regardless of age.
94      */
95     void refresh(bool aForce = false);
96
97     /**
98      *
99      */
100     PackageList allPackages() const;
101     
102     /**
103      * retrieve packages matching a filter.
104      * filter consists of required / minimum values, AND-ed together.
105      */
106     PackageList packagesMatching(const SGPropertyNode* aFilter) const;
107     
108     /**
109      * retrieve all the packages which are installed
110      * and have a pending update
111      */ 
112     PackageList packagesNeedingUpdate() const;
113      
114     PackageRef getPackageById(const std::string& aId) const;
115     
116     CatalogRef getCatalogById(const std::string& aId) const;
117     
118     void scheduleToUpdate(InstallRef aInstall);
119     
120     /**
121      * remove a catalog. Will uninstall all packages originating
122      * from the catalog too.
123      */
124     bool removeCatalogById(const std::string& aId);
125     
126     /**
127      * request thumbnail data from the cache / network
128      */
129     void requestThumbnailData(const std::string& aUrl);
130     
131     bool isInstallQueued(InstallRef aInstall) const;
132 private:
133     friend class Install;
134     friend class Catalog;    
135     friend class Package;
136     
137     InstallRef existingInstallForPackage(PackageRef p) const;
138     
139     void catalogRefreshStatus(CatalogRef aCat, Delegate::StatusCode aReason);
140         
141     void startNext(InstallRef aCurrent);
142     
143     void startInstall(InstallRef aInstall);
144     void installProgress(InstallRef aInstall, unsigned int aBytes, unsigned int aTotal);
145     void finishInstall(InstallRef aInstall, Delegate::StatusCode aReason);
146     void cancelDownload(InstallRef aInstall);
147     
148     void registerInstall(InstallRef ins);
149     void unregisterInstall(InstallRef ins);
150     
151     class ThumbnailDownloader;
152     class RootPrivate;
153     std::auto_ptr<RootPrivate> d;
154 };
155   
156 typedef SGSharedPtr<Root> RootRef;
157   
158 } // of namespace pkg
159
160 } // of namespace simgear
161
162 #endif // of SG_PACKAGE_ROOT_HXX