]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/jaeger-client-cpp/src/jaegertracing/net/http/Request.h
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / jaeger-client-cpp / src / jaegertracing / net / http / Request.h
1 /*
2 * Copyright (c) 2017 Uber Technologies, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #ifndef JAEGERTRACING_NET_HTTP_REQUEST_H
18 #define JAEGERTRACING_NET_HTTP_REQUEST_H
19
20 #include "jaegertracing/net/URI.h"
21 #include "jaegertracing/net/Socket.h"
22 #include "jaegertracing/net/http/Error.h"
23 #include "jaegertracing/net/http/Header.h"
24 #include "jaegertracing/net/http/Method.h"
25
26 namespace jaegertracing {
27 namespace net {
28 namespace http {
29
30 class Request {
31 public:
32 static Request parse(std::istream& in);
33
34 static Request read(Socket& in);
35
36 Request()
37 : _method()
38 , _target()
39 , _version()
40 , _headers()
41 {
42 }
43
44 Method method() const { return _method; }
45
46 const std::string& target() const { return _target; }
47
48 const std::string& version() const { return _version; }
49
50 const std::vector<Header>& headers() const { return _headers; }
51
52 const std::string& body() const { return _body; }
53
54 private:
55 Method _method;
56 std::string _target;
57 std::string _version;
58 std::vector<Header> _headers;
59 std::string _body;
60 };
61
62 } // namespace http
63 } // namespace net
64 } // namespace jaegertracing
65
66 #endif // JAEGERTRACING_NET_HTTP_REQUEST_H