]> git.mxchange.org Git - simgear.git/blob - simgear/io/HTTPRepository.hxx
Introduce SGBinaryFile
[simgear.git] / simgear / io / HTTPRepository.hxx
1 // HTTPRepository.hxx - plain HTTP TerraSync remote server client
2 //
3 // Copyright (C) 2016  James Turner <zakalawe@mac.com>
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
19
20 #ifndef SG_IO_HTTP_REPOSITORY_HXX
21 #define SG_IO_HTTP_REPOSITORY_HXX
22
23 #include <simgear/io/AbstractRepository.hxx>
24 #include <memory>
25
26 namespace simgear  {
27
28 class HTTPRepoPrivate;
29
30 class HTTPRepository : public AbstractRepository
31 {
32 public:
33
34     HTTPRepository(const SGPath& root, HTTP::Client* cl);
35     virtual ~HTTPRepository();
36
37     virtual SGPath fsBase() const;
38
39     virtual void setBaseUrl(const std::string& url);
40     virtual std::string baseUrl() const;
41
42     virtual HTTP::Client* http() const;
43
44     virtual void update();
45
46     virtual bool isDoingSync() const;
47
48     virtual ResultCode failure() const;
49
50     virtual size_t bytesToDownload() const;
51
52     virtual size_t bytesDownloaded() const;
53 private:
54     bool isBare() const;
55
56     std::auto_ptr<HTTPRepoPrivate> _d;
57 };
58
59 } // of namespace simgear
60
61 #endif // of HTTPRepository