Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
HTTPResponse.h
1/*=======================================================================
2*** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
3*** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
4*** ***
5*** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
6*** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
7*** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
8*** ***
9*** RESTRICTED RIGHTS LEGEND ***
10*** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
11*** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
12*** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
13*** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
14*** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
15*** ***
16*** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, ***
17*** BORDEAUX, FRANCE ***
18*** ALL RIGHTS RESERVED ***
19**=======================================================================*/
20
21#pragma once
22
23#include <Inventor/sys/port.h>
24#include <RemoteViz/Rendering/LibHelper.h>
25
26#include <memory>
27#include <string>
28
29namespace RemoteViz
30{
31 namespace Rendering
32 {
33 class HTTPResponseImpl;
34 class HTTPHeaders;
35
49 class RENDERSERVICE_API HTTPResponse
50 {
51 public:
52
57 {
59
60 /* 1xx - Informational */
61 CONTINUE = 100,
65
66 /* 2xx - Successful */
67 OK = 200,
68 CREATED = 201,
69 ACCEPTED = 202,
76 IM_USED = 226,
77
78 /* 3xx - Redirection */
81 FOUND = 302,
82 SEE_OTHER = 303,
84 USE_PROXY = 305,
87
88 /* 4xx - Client Error */
92 FORBIDDEN = 403,
93 NOT_FOUND = 404,
98 CONFLICT = 409,
99 GONE = 410,
109 LOCKED = 423,
118
119 /* 5xx - Server Error */
132 };
133
138
143
147 HTTPResponse(HTTPStatus statusCode, const std::string& reason);
148
152 HTTPResponse(HTTPStatus statusCode, const std::string& reason, const std::string& body);
153
157 HTTPResponse(HTTPStatus statusCode, const std::string& reason, const std::string& body, int versionMajor, int versionMinor, const HTTPHeaders& headers);
158
163
168
173
178
182 const std::string& getReason() const;
183
185
188 const std::string& getVersion() const;
189
194 int getVersionMajor() const;
195
200 int getVersionMinor() const;
202
207 const std::string& getBody() const;
208
212 int64_t getContentLength() const;
213
217 const HTTPHeaders& getHeaders() const;
218
222 static std::string getReasonPhrase(HTTPStatus status);
223
224 private:
227 std::shared_ptr<HTTPResponseImpl> getImpl() const;
229
230 private:
232 std::shared_ptr<HTTPResponseImpl> pImpl;
233
234 };
235
236 }
237}
<a href="IconLegend.html"><img src="extRV.gif" alt="RemoteViz" border="0"></a>
Definition HTTPHeaders.h:49
HTTPResponse & operator=(const HTTPResponse &obj)
Copy assignment operator.
HTTPResponse(HTTPStatus statusCode, const std::string &reason)
Creates a HTTP/1.1 response with the given status and reason phrase.
int getVersionMajor() const
HTTP uses a "major.minor" numbering scheme to indicate versions of the protocol.
HTTPResponse(HTTPStatus statusCode, const std::string &reason, const std::string &body)
Creates a HTTP/1.1 response with the given status, reason phrase and message body data.
HTTPResponse(HTTPStatus statusCode, const std::string &reason, const std::string &body, int versionMajor, int versionMinor, const HTTPHeaders &headers)
Creates a HTTP response with the given status, reason phrase, message body data, version and headers.
HTTPStatus getStatusCode() const
Returns the HTTP status.
HTTPResponse(HTTPStatus statusCode)
Creates a HTTP/1.1 response with the given status and a standard reason phrase.
const std::string & getVersion() const
Returns the HTTP version for incoming request (example "HTTP/1.1").
HTTPResponse()
Creates a HTTP/1.1 response with "200 OK" status.
HTTPResponse(const HTTPResponse &obj)
Copy constructor.
const std::string & getReason() const
Returns the HTTP reason phrase.
int getVersionMinor() const
HTTP uses a "major.minor" numbering scheme to indicate versions of the protocol.
static std::string getReasonPhrase(HTTPStatus status)
Returns the standard HTTP reason phrase for a HTTP status code.
int64_t getContentLength() const
Returns the size of the body, in bytes (Content-Length entity header)
HTTPStatus
Enum for the HTTP status codes.
const HTTPHeaders & getHeaders() const
Returns HTTP headers.
const std::string & getBody() const
Returns the HTTP message body data (optional).
This namespace manages the server-side rendering mechanism.
Definition Client.h:33