]> git.mxchange.org Git - simgear.git/blob - simgear/package/Root.hxx
Package support progress
[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 catalog XML/property version in use. This is used to make incomaptible
87      * changes to the package/catalog syntax
88      */
89     int catalogVersion() const;
90
91     /**
92      * the version string of the application. Catalogs must match this version,
93      * or they will be ignored / rejected.
94      */
95     std::string applicationVersion() const;
96
97     /**
98      * refresh catalogs which are more than the maximum age (24 hours by default)
99      * set force to true, to download all catalogs regardless of age.
100      */
101     void refresh(bool aForce = false);
102
103     /**
104      *
105      */
106     PackageList allPackages() const;
107     
108     /**
109      * retrieve packages matching a filter.
110      * filter consists of required / minimum values, AND-ed together.
111      */
112     PackageList packagesMatching(const SGPropertyNode* aFilter) const;
113     
114     /**
115      * retrieve all the packages which are installed
116      * and have a pending update
117      */ 
118     PackageList packagesNeedingUpdate() const;
119      
120     PackageRef getPackageById(const std::string& aId) const;
121     
122     CatalogRef getCatalogById(const std::string& aId) const;
123     
124     void scheduleToUpdate(InstallRef aInstall);
125     
126     /**
127      * remove a catalog. Will uninstall all packages originating
128      * from the catalog too.
129      */
130     bool removeCatalogById(const std::string& aId);
131     
132     /**
133      * request thumbnail data from the cache / network
134      */
135     void requestThumbnailData(const std::string& aUrl);
136     
137     bool isInstallQueued(InstallRef aInstall) const;
138 private:
139     friend class Install;
140     friend class Catalog;    
141     friend class Package;
142     
143     InstallRef existingInstallForPackage(PackageRef p) const;
144     
145     void catalogRefreshStatus(CatalogRef aCat, Delegate::StatusCode aReason);
146         
147     void startNext(InstallRef aCurrent);
148     
149     void startInstall(InstallRef aInstall);
150     void installProgress(InstallRef aInstall, unsigned int aBytes, unsigned int aTotal);
151     void finishInstall(InstallRef aInstall, Delegate::StatusCode aReason);
152     void cancelDownload(InstallRef aInstall);
153     
154     void registerInstall(InstallRef ins);
155     void unregisterInstall(InstallRef ins);
156     
157     class ThumbnailDownloader;
158     class RootPrivate;
159     std::auto_ptr<RootPrivate> d;
160 };
161   
162 typedef SGSharedPtr<Root> RootRef;
163   
164 } // of namespace pkg
165
166 } // of namespace simgear
167
168 #endif // of SG_PACKAGE_ROOT_HXX