mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 03:42:48 +00:00
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
#include <IO/WriteBufferFromHTTP.h>
|
|
|
|
#include <Common/logger_useful.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
WriteBufferFromHTTP::WriteBufferFromHTTP(
|
|
const Poco::URI & uri,
|
|
const std::string & method,
|
|
const std::string & content_type,
|
|
const std::string & content_encoding,
|
|
const ConnectionTimeouts & timeouts,
|
|
size_t buffer_size_)
|
|
: WriteBufferFromOStream(buffer_size_)
|
|
, session{makeHTTPSession(uri, timeouts)}
|
|
, request{method, uri.getPathAndQuery(), Poco::Net::HTTPRequest::HTTP_1_1}
|
|
{
|
|
request.setHost(uri.getHost());
|
|
request.setChunkedTransferEncoding(true);
|
|
|
|
if (!content_type.empty())
|
|
{
|
|
request.set("Content-Type", content_type);
|
|
}
|
|
|
|
if (!content_encoding.empty())
|
|
request.set("Content-Encoding", content_encoding);
|
|
|
|
LOG_TRACE((&Poco::Logger::get("WriteBufferToHTTP")), "Sending request to {}", uri.toString());
|
|
|
|
ostr = &session->sendRequest(request);
|
|
}
|
|
|
|
void WriteBufferFromHTTP::finalizeImpl()
|
|
{
|
|
// for compressed body, the data is stored in buffered first
|
|
// here, make sure the content in the buffer has been flushed
|
|
this->nextImpl();
|
|
|
|
receiveResponse(*session, request, response, false);
|
|
/// TODO: Response body is ignored.
|
|
}
|
|
|
|
}
|