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

enum ConfigFlag {
    CF_OFF,
    CF_ON,
    CF_AUTO
};


/* Query highlight parameter class */

#ifndef _NEED_SUMMARY_CONFIG_IMPL
class SummaryConfig;
#else
#include <bitset>

class SummaryConfig
{
public:
    SummaryConfig(const char* hi_on, const char* hi_off,
                  const char* usedots, const char* separators,
                  const unsigned char* connectors,
                  ConfigFlag esc_markup,
                  ConfigFlag preserve_white_space_);

    ~SummaryConfig() {}

    inline const std::string & highlight_on()  const { return _highlight_on; }
    inline const std::string & highlight_off() const { return _highlight_off; }
    inline const std::string & dots()          const { return _dots; }
    inline bool separator(const char c) const { return ((signed char) c < 0 ? false : _separator.test(c)); }
    inline bool connector(const unsigned char c) const { return _connector.test(c); }
    inline ConfigFlag escape_markup() const { return _escape_markup; }
    inline ConfigFlag preserve_white_space() const { return _preserve_white_space; }


protected:
    void init(std::string&, const char*);
private:
    std::string _highlight_on;
    std::string _highlight_off;
    std::string _dots;
    std::bitset<128> _separator; // Identify characters that should be removed in a teaser
    std::bitset<256> _connector; // Identify characters that connects two tokens into one
    ConfigFlag _escape_markup;
    ConfigFlag _preserve_white_space;
};

#endif


ConfigFlag StringToConfigFlag(const char* confstring);


SummaryConfig* CreateSummaryConfig(const char* highlight_on,
				   const char* highlight_off,
				   const char* dots,
				   const char* separators,
				   const unsigned char* connectors,
				   const ConfigFlag escape_markup = CF_AUTO,
				   const ConfigFlag preserve_white_space = CF_OFF);

void DeleteSummaryConfig(SummaryConfig*& sumconf);