-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathPlainWriterImpl.cpp
55 lines (39 loc) · 1.24 KB
/
PlainWriterImpl.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include "restc-cpp/restc-cpp.h"
#include "restc-cpp/Connection.h"
#include "restc-cpp/Socket.h"
#include "restc-cpp/DataWriter.h"
#include "restc-cpp/logging.h"
using namespace std;
namespace restc_cpp {
class PlainWriterImpl : public DataWriter {
public:
PlainWriterImpl(size_t contentLength, ptr_t&& source)
: next_{std::move(source)}, content_length_{contentLength}
{
}
void WriteDirect(::restc_cpp::boost_const_buffer buffers) override {
next_->WriteDirect(buffers);
}
void Write(::restc_cpp::boost_const_buffer buffers) override {
next_->Write(buffers);
}
void Write(const write_buffers_t& buffers) override {
next_->Write(buffers);
}
void Finish() override {
next_->Finish();
}
void SetHeaders(Request::headers_t& headers) override {
static const string content_length{"Content-Length"};
headers[content_length] = to_string(content_length_);
next_->SetHeaders(headers);
}
private:
unique_ptr<DataWriter> next_;
const size_t content_length_;
};
DataWriter::ptr_t
DataWriter::CreatePlainWriter(size_t contentLength, ptr_t&& source) {
return make_unique<PlainWriterImpl>(contentLength, std::move(source));
}
} // namespace