| #pragma once |
| |
| #ifdef BMCWEB_ENABLE_GRPC |
| #include "grpc_statistics.h" |
| #endif |
| |
| #include <boost/beast/http/message.hpp> |
| #include <boost/beast/http/string_body.hpp> |
| #include <nlohmann/json.hpp> |
| |
| #include <optional> |
| #include <string> |
| #include <string_view> |
| |
| namespace crow |
| { |
| |
| template <typename Adaptor, typename Handler> |
| class Connection; |
| |
| struct Response |
| { |
| template <typename Adaptor, typename Handler> |
| friend class crow::Connection; |
| using response_type = |
| boost::beast::http::response<boost::beast::http::string_body>; |
| |
| std::optional<response_type> stringResponse; |
| |
| nlohmann::json jsonValue; |
| |
| void addHeader(std::string_view key, std::string_view value) |
| { |
| stringResponse->set(key, value); |
| } |
| |
| void addHeader(boost::beast::http::field key, std::string_view value) |
| { |
| stringResponse->set(key, value); |
| } |
| |
| Response() : stringResponse(response_type{}) |
| {} |
| |
| Response(Response&& res) noexcept : |
| stringResponse(std::move(res.stringResponse)), |
| jsonValue(std::move(res.jsonValue)), completed(res.completed) |
| { |
| // See note in operator= move handler for why this is needed. |
| if (!res.completed) |
| { |
| completeRequestHandler = std::move(res.completeRequestHandler); |
| res.completeRequestHandler = nullptr; |
| } |
| isAliveHelper = res.isAliveHelper; |
| res.isAliveHelper = nullptr; |
| } |
| |
| ~Response() = default; |
| |
| Response(const Response&) = delete; |
| |
| Response& operator=(const Response& r) = delete; |
| |
| Response& operator=(Response&& r) noexcept; |
| |
| void result(unsigned v) |
| { |
| stringResponse->result(v); |
| } |
| |
| void result(boost::beast::http::status v) |
| { |
| stringResponse->result(v); |
| } |
| |
| boost::beast::http::status result() const |
| { |
| return stringResponse->result(); |
| } |
| |
| unsigned resultInt() const |
| { |
| return stringResponse->result_int(); |
| } |
| |
| std::string_view reason() const |
| { |
| return stringResponse->reason(); |
| } |
| |
| bool isCompleted() const noexcept |
| { |
| return completed; |
| } |
| |
| std::string& body() |
| { |
| return stringResponse->body(); |
| } |
| |
| std::string_view getHeaderValue(std::string_view key) const |
| { |
| return stringResponse->base()[key]; |
| } |
| |
| void keepAlive(bool k) |
| { |
| stringResponse->keep_alive(k); |
| } |
| |
| bool keepAlive() const |
| { |
| return stringResponse->keep_alive(); |
| } |
| |
| void preparePayload() |
| { |
| stringResponse->prepare_payload(); |
| } |
| |
| void clear(); |
| |
| void write(std::string_view bodyPart) |
| { |
| stringResponse->body() += std::string(bodyPart); |
| } |
| |
| std::string computeEtag() const; |
| |
| void end(); |
| |
| bool isAlive() const |
| { |
| return isAliveHelper && isAliveHelper(); |
| } |
| |
| #ifdef BMCWEB_ENABLE_GRPC |
| grpc_redfish::gRPCStatistics& grpcstats() |
| { |
| return gRPCStats; |
| } |
| #endif |
| |
| void setCompleteRequestHandler(std::function<void(Response&)>&& handler); |
| |
| std::function<void(Response&)> releaseCompleteRequestHandler(); |
| |
| void setIsAliveHelper(std::function<bool()>&& handler) |
| { |
| isAliveHelper = std::move(handler); |
| } |
| |
| std::function<bool()> releaseIsAliveHelper() |
| { |
| std::function<bool()> ret = std::move(isAliveHelper); |
| isAliveHelper = nullptr; |
| return ret; |
| } |
| |
| void setHashAndHandleNotModified(); |
| |
| void setExpectedHash(std::string_view hash) |
| { |
| expectedHash = hash; |
| } |
| |
| private: |
| std::optional<std::string> expectedHash; |
| bool completed = false; |
| std::function<void(Response&)> completeRequestHandler; |
| #ifdef BMCWEB_ENABLE_GRPC |
| grpc_redfish::gRPCStatistics gRPCStats; |
| #endif |
| std::function<bool()> isAliveHelper; |
| }; |
| } // namespace crow |