net-cpp  2.0.0
C++11 library for networking purposes
streaming_client.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2013 Canonical Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU Lesser General Public License version 3,
6  * as published by the Free Software Foundation.
7  *
8  * This program 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
11  * GNU Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored by: Thomas Voß <thomas.voss@canonical.com>
17  */
18 #ifndef CORE_NET_HTTP_STREAMING_CLIENT_H_
19 #define CORE_NET_HTTP_STREAMING_CLIENT_H_
20 
21 #include <core/net/http/client.h>
22 
24 
25 namespace core
26 {
27 namespace net
28 {
29 namespace http
30 {
31 class StreamingClient : public Client
32 {
33 public:
34 
35  virtual ~StreamingClient() = default;
36 
43  virtual std::shared_ptr<StreamingRequest> streaming_get(const Request::Configuration& configuration) = 0;
44 
51  virtual std::shared_ptr<StreamingRequest> streaming_head(const Request::Configuration& configuration) = 0;
52 
61  virtual std::shared_ptr<StreamingRequest> streaming_put(const Request::Configuration& configuration, std::istream& payload, std::size_t size) = 0;
62 
71  virtual std::shared_ptr<StreamingRequest> streaming_post(const Request::Configuration& configuration, const std::string& payload, const std::string& type) = 0;
72 
80  virtual std::shared_ptr<StreamingRequest> streaming_post_form(const Request::Configuration& configuration, const std::map<std::string, std::string>& values) = 0;
81 };
82 
84 CORE_NET_DLL_PUBLIC std::shared_ptr<StreamingClient> make_streaming_client();
85 }
86 }
87 }
88 #endif // CORE_NET_HTTP_STREAMING_CLIENT_H_
virtual ~StreamingClient()=default
Definition: location.h:23
virtual std::shared_ptr< StreamingRequest > streaming_get(const Request::Configuration &configuration)=0
streaming_get is a convenience method for issueing a GET request for the given URI.
virtual std::shared_ptr< StreamingRequest > streaming_post_form(const Request::Configuration &configuration, const std::map< std::string, std::string > &values)=0
streaming_post_form is a convenience method for issuing a POST request for the given URI...
The Configuration struct encapsulates all options for creating requests.
Definition: request.h:161
#define CORE_NET_DLL_PUBLIC
Definition: visibility.h:25
virtual std::shared_ptr< StreamingRequest > streaming_post(const Request::Configuration &configuration, const std::string &payload, const std::string &type)=0
streaming_post is a convenience method for issuing a POST request for the given URI.
virtual std::shared_ptr< StreamingRequest > streaming_put(const Request::Configuration &configuration, std::istream &payload, std::size_t size)=0
streaming_put is a convenience method for issuing a PUT request for the given URI.
virtual std::shared_ptr< StreamingRequest > streaming_head(const Request::Configuration &configuration)=0
streaming_head is a convenience method for issueing a HEAD request for the given URI.
CORE_NET_DLL_PUBLIC std::shared_ptr< StreamingClient > make_streaming_client()
Dispatches to the default implementation and returns a streaming client instance. ...