]> git.mxchange.org Git - simgear.git/blob - simgear/io/HTTPClient.hxx
HTTP Client improvements
[simgear.git] / simgear / io / HTTPClient.hxx
1 /**
2  * \file HTTPClient.hxx - simple HTTP client engine for SimHear
3  */
4
5 // Written by James Turner
6 //
7 // Copyright (C) 2013  James Turner  <zakalawe@mac.com>
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU Library General Public
11 // License as published by the Free Software Foundation; either
12 // version 2 of the License, or (at your option) any later version.
13 //
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // Library General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
22 //
23
24 #ifndef SG_HTTP_CLIENT_HXX
25 #define SG_HTTP_CLIENT_HXX
26
27 #include <simgear/io/HTTPRequest.hxx>
28
29 namespace simgear
30 {
31
32 namespace HTTP
33 {
34
35 // forward decls
36 class Connection;
37     
38 class Client
39 {
40 public:
41     Client();
42     ~Client();
43     
44     void update(int waitTimeout = 0);
45     
46     void makeRequest(const Request_ptr& r);
47     
48     void setUserAgent(const std::string& ua);
49     void setProxy(const std::string& proxy, int port, const std::string& auth = "");
50     
51     /**
52      * Specify the maximum permitted simultaneous connections
53      * (default value is 1)
54      */
55     void setMaxConnections(unsigned int maxCons);
56     
57     const std::string& userAgent() const;
58         
59     const std::string& proxyHost() const;
60         
61     const std::string& proxyAuth() const;
62     
63     /**
64      * predicate, check if at least one connection is active, with at
65      * least one request active or queued.
66      */
67     bool hasActiveRequests() const; 
68 private:
69     void requestFinished(Connection* con);
70     
71     friend class Connection;
72     friend class Request;
73     
74     class ClientPrivate;
75     std::auto_ptr<ClientPrivate> d;
76 };
77
78 } // of namespace HTTP
79
80 } // of namespace simgear
81
82 #endif // of SG_HTTP_CLIENT_HXX