blob: 52d64c91cecc8ad0afa21dcc47e17a1a130ea8b6 (
plain) (
blame)
| 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
58
59
60
61
62
63
64
65
 | #include "response.h"
#include <util/stream/output.h>
#include <util/stream/mem.h>
#include <util/string/cast.h>
THttpResponse& THttpResponse::AddMultipleHeaders(const THttpHeaders& headers) {
    for (THttpHeaders::TConstIterator i = headers.Begin(); i != headers.End(); ++i) {
        this->Headers.AddHeader(*i);
    }
    return *this;
}
THttpResponse& THttpResponse::SetContentType(const TStringBuf& contentType) {
    Headers.AddOrReplaceHeader(THttpInputHeader("Content-Type", ToString(contentType)));
    return *this;
}
void THttpResponse::OutTo(IOutputStream& os) const {
    TVector<IOutputStream::TPart> parts;
    const size_t FIRST_LINE_PARTS = 3;
    const size_t HEADERS_PARTS = Headers.Count() * 4;
    const size_t CONTENT_PARTS = 5;
    parts.reserve(FIRST_LINE_PARTS + HEADERS_PARTS + CONTENT_PARTS);
    // first line
    parts.push_back(IOutputStream::TPart(TStringBuf("HTTP/1.1 ")));
    parts.push_back(IOutputStream::TPart(HttpCodeStrEx(Code)));
    parts.push_back(IOutputStream::TPart::CrLf());
    // headers
    for (THttpHeaders::TConstIterator i = Headers.Begin(); i != Headers.End(); ++i) {
        parts.push_back(IOutputStream::TPart(i->Name()));
        parts.push_back(IOutputStream::TPart(TStringBuf(": ")));
        parts.push_back(IOutputStream::TPart(i->Value()));
        parts.push_back(IOutputStream::TPart::CrLf());
    }
    char buf[50];
    if (!Content.empty()) {
        TMemoryOutput mo(buf, sizeof(buf));
        mo << Content.size();
        parts.push_back(IOutputStream::TPart(TStringBuf("Content-Length: ")));
        parts.push_back(IOutputStream::TPart(buf, mo.Buf() - buf));
        parts.push_back(IOutputStream::TPart::CrLf());
    }
    // content
    parts.push_back(IOutputStream::TPart::CrLf());
    if (!Content.empty()) {
        parts.push_back(IOutputStream::TPart(Content));
    }
    os.Write(parts.data(), parts.size());
}
template <>
void Out<THttpResponse>(IOutputStream& os, const THttpResponse& resp) {
    resp.OutTo(os);
}
 |