aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/vespa/config/common/configvalue.cpp
blob: 4df0e1edc0e35a499d392e4b5f8fa3d3135f4a1c (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "configvalue.h"
#include "payload_converter.h"
#include "misc.h"
#include <vespa/config/frt/protocol.h>
#include <vespa/vespalib/data/slime/slime.h>

namespace config {

ConfigValue::ConfigValue(StringVector lines, const vespalib::string & xxhash)
    : _payload(),
      _lines(std::move(lines)),
      _xxhash64(xxhash)
{ }

ConfigValue::ConfigValue(StringVector lines)
    : _payload(),
      _lines(std::move(lines)),
      _xxhash64(calculateContentXxhash64(_lines))
{ }

ConfigValue::ConfigValue()
    : _payload(),
      _lines(),
      _xxhash64()
{ }

ConfigValue::ConfigValue(PayloadPtr payload, const vespalib::string & xxhash)
    : _payload(std::move(payload)),
      _lines(),
      _xxhash64(xxhash)
{ }

ConfigValue::ConfigValue(const ConfigValue &) = default;
ConfigValue & ConfigValue::operator = (const ConfigValue &) = default;
ConfigValue::~ConfigValue() = default;

int
ConfigValue::operator==(const ConfigValue & rhs) const
{
    return (_xxhash64.compare(rhs._xxhash64) == 0);
}

int
ConfigValue::operator!=(const ConfigValue & rhs) const
{
    return (!(*this == rhs));
}

StringVector
ConfigValue::getLegacyFormat() const
{
    StringVector lines;
    if (_payload) {
        const vespalib::slime::Inspector & payload(_payload->getSlimePayload());
        PayloadConverter converter(payload);
        lines = converter.convert();
    } else {
        lines = _lines;
    }
    return lines;
}

vespalib::string
ConfigValue::asJson() const {
    if (_payload) {
        const vespalib::slime::Inspector & payload(_payload->getSlimePayload());
        return payload.toString();
    } else {
        return {};
    }
}

void
ConfigValue::serializeV1(vespalib::slime::Cursor & cursor) const
{
    // TODO: Remove v1 when we can bump disk format.
    StringVector lines(getLegacyFormat());
    for (size_t i = 0; i < lines.size(); i++) {
        cursor.addString(vespalib::Memory(lines[i]));
    }
}

void
ConfigValue::serializeV2(vespalib::slime::Cursor & cursor) const
{
    if (_payload) {
        copySlimeObject(_payload->getSlimePayload(), cursor);
    }
}

}