-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathRequestBodyStringImpl.cpp
58 lines (40 loc) · 1.14 KB
/
RequestBodyStringImpl.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
54
55
56
57
#include <cassert>
#include <array>
#include <boost/utility/string_ref.hpp>
#include "restc-cpp/restc-cpp.h"
#include "restc-cpp/RequestBody.h"
#include "restc-cpp/DataWriter.h"
using namespace std;
namespace restc_cpp {
namespace impl {
class RequestBodyStringImpl : public RequestBody
{
public:
explicit RequestBodyStringImpl(string body)
: body_{std::move(body)}
{
}
[[nodiscard]] Type GetType() const noexcept override { return Type::FIXED_SIZE; }
[[nodiscard]] std::uint64_t GetFixedSize() const override { return body_.size(); }
bool GetData(write_buffers_t & buffers) override {
if (eof_) {
return false;
}
buffers.emplace_back(body_.c_str(), body_.size());
eof_ = true;
return true;
}
void Reset() override {
eof_ = false;
}
[[nodiscard]] std::string GetCopyOfData() const override { return body_; }
private:
string body_;
bool eof_ = false;
};
} // impl
std::unique_ptr<RequestBody> RequestBody::CreateStringBody(
std::string body) {
return make_unique<impl::RequestBodyStringImpl>(std::move(body));
}
} // restc_cpp