23#include <Inventor/sys/port.h>
24#include <RemoteViz/Rendering/LibHelper.h>
33 class HTTPResponseImpl;
227 std::shared_ptr<HTTPResponseImpl> getImpl()
const;
232 std::shared_ptr<HTTPResponseImpl> pImpl;
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.
@ REQUEST_HEADER_FIELDS_TOO_LARGE
@ UNAVAILABLE_FOR_LEGAL_REASONS
@ HTTP_VERSION_NOT_SUPPORTED
@ CONNECTION_CLOSED_WITHOUT_RESPONSE
@ PROXY_AUTHENTICATION_REQUIRED
@ NETWORK_AUTHENTICATION_REQUIRED
@ NETWORK_CONNECT_TIMEOUT_ERROR
@ NON_AUTHORITATIVE_INFORMATION
@ VARIANT_ALSO_NEGOTIATES
~HTTPResponse()
Destructor.
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.