aboutsummaryrefslogtreecommitdiffstats
path: root/searchsummary/src/vespa/juniper/appender.h
blob: 760fd18feca36d580c8b40bc91af2342c1ca2bd4 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/vespalib/util/hdr_abort.h>
#include <cstddef>
#include <vector>

class SummaryConfig;

namespace juniper {

class Appender
{
private:
    const SummaryConfig *_sumconf;
    bool                 _escape_markup;
    bool                 _preserve_white_space;
    bool                 _last_was_space;
    size_t               _char_len;

    void append(std::vector<char> & s, char c);

public:
    Appender(const SummaryConfig *sumconf);

    size_t charLen() const { return _char_len; }

    void append(std::vector<char>& s, const char* ds, int length);
};

} // end namespace juniper