]> git.mxchange.org Git - simgear.git/blob - simgear/io/HTTPRepository.hxx
c3953011a33bd94d75497bcd13239c1f6c01ca7a
[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
25 namespace simgear  {
26
27 class HTTPRepoPrivate;
28
29 class HTTPRepository : public AbstractRepository
30 {
31 public:
32
33     HTTPRepository(const SGPath& root, HTTP::Client* cl);
34     virtual ~HTTPRepository();
35
36     virtual SGPath fsBase() const;
37
38     virtual void setBaseUrl(const std::string& url);
39     virtual std::string baseUrl() const;
40
41     virtual HTTP::Client* http() const;
42
43     virtual void update();
44
45     virtual bool isDoingSync() const;
46
47     virtual ResultCode failure() const;
48 private:
49     bool isBare() const;
50
51     std::auto_ptr<HTTPRepoPrivate> _d;
52 };
53
54 } // of namespace simgear
55
56 #endif // of HTTPRepository