27 #include <olp/core/CoreApi.h>
28 #include <olp/core/http/NetworkTypes.h>
50 : bytes_uploaded_{bytes_uploaded}, bytes_downloaded_{bytes_downloaded} {}
68 bytes_uploaded_ += other.bytes_uploaded_;
69 bytes_downloaded_ += other.bytes_downloaded_;
81 uint64_t bytes_uploaded_{0};
82 uint64_t bytes_downloaded_{0};
101 : status_(status), response_(std::move(response)) {}
111 : status_(status), response_(std::move(response)) {}
123 response_(std::move(response)),
124 headers_(std::move(headers)) {}
135 : status_(other.status_), headers_(other.headers_) {
136 response_ << other.response_.rdbuf();
137 if (!response_.good()) {
155 if (
this != &other) {
156 status_ = other.status_;
157 response_ = std::stringstream{};
158 response_ << other.response_.rdbuf();
159 headers_ = other.headers_;
177 response_.seekg(0, std::ios::end);
178 const auto pos = response_.tellg();
182 response_.seekg(0, std::ios::beg);
183 response_.read(
reinterpret_cast<char*
>(output.data()), output.size());
184 response_.seekg(0, std::ios::beg);
192 void GetResponse(std::string& output)
const { output = response_.str(); }
200 std::vector<unsigned char> bytes;
246 network_statistics_ = network_statistics;
255 return network_statistics_;
260 std::stringstream response_;
262 NetworkStatistics network_statistics_;
This class represents the HTTP response created from the NetworkResponse and the request body.
Definition: HttpResponse.h:89
HttpResponse(int status, std::stringstream &&response, http::Headers headers)
Creates the HttpResponse instance.
Definition: HttpResponse.h:121
HttpResponse(int status, std::string response={})
Creates the HttpResponse instance.
Definition: HttpResponse.h:100
std::stringstream & GetRawResponse()
Return the reference to the response object.
Definition: HttpResponse.h:221
const NetworkStatistics & GetNetworkStatistics() const
Get the NetworkStatistics.
Definition: HttpResponse.h:254
HttpResponse(int status, std::stringstream &&response)
Creates the HttpResponse instance.
Definition: HttpResponse.h:110
HttpResponse(const HttpResponse &other)
A copy constructor.
Definition: HttpResponse.h:134
int GetStatus() const
Return the response status.
Definition: HttpResponse.h:238
void GetResponse(std::string &output) const
Copy HttpResponse content to a string.
Definition: HttpResponse.h:192
std::string GetResponseAsString() const
Renders HttpResponse content to a string.
Definition: HttpResponse.h:210
HttpResponse & operator=(HttpResponse &&)=default
A default move assignment operator.
void GetResponse(std::vector< unsigned char > &output)
Copy HttpResponse content to a vector of unsigned chars.
Definition: HttpResponse.h:176
HttpResponse & operator=(const HttpResponse &other)
A copy assignment operator.
Definition: HttpResponse.h:154
const http::Headers & GetHeaders() const
Return the const reference to the response headers.
Definition: HttpResponse.h:228
std::vector< unsigned char > GetResponseAsBytes()
Get the response body as a vector of unsigned chars.
Definition: HttpResponse.h:199
void SetNetworkStatistics(NetworkStatistics network_statistics)
Set NetworkStatistics.
Definition: HttpResponse.h:245
HttpResponse(HttpResponse &&)=default
A default move constructor.
Network statistics with information on the outbound and inbound trafic during API calls.
Definition: HttpResponse.h:37
NetworkStatistics & operator+=(const NetworkStatistics &other)
An overloaded addition operator for accumulating statistics.
Definition: HttpResponse.h:67
NetworkStatistics(uint64_t bytes_uploaded, uint64_t bytes_downloaded)
Creates the NetworkStatistics instance.
Definition: HttpResponse.h:49
NetworkStatistics operator+(const NetworkStatistics &other) const
An overloaded addition operator for accumulating statistics.
Definition: HttpResponse.h:74
uint64_t GetBytesUploaded() const
Get the number of bytes of outbound traffic.
Definition: HttpResponse.h:57
uint64_t GetBytesDownloaded() const
Get the number of bytes of inbound traffic.
Definition: HttpResponse.h:64
@ UNKNOWN_ERROR
Internal error that can't be interpreted.
std::vector< Header > Headers
An alias for a vector of the HTTP headers.
Definition: NetworkTypes.h:140
Rules all the other namespaces.
Definition: AppleSignInProperties.h:24