aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/vespa/config/common/configkey.cpp
blob: 3bfbfaf2a2a455984f17baa83c8577323f01ec1f (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "configkey.h"

namespace config {

ConfigKey::ConfigKey(vespalib::stringref configId,
                     vespalib::stringref defName,
                     vespalib::stringref defNamespace,
                     vespalib::stringref defMd5)
    : _configId(configId),
      _defName(defName),
      _defNamespace(defNamespace),
      _defMd5(defMd5),
      _defSchema(),
      _key(_configId + _defName + _defNamespace)
{}

ConfigKey::ConfigKey(vespalib::stringref configId,
                     vespalib::stringref defName,
                     vespalib::stringref defNamespace,
                     vespalib::stringref defMd5,
                     const StringVector & defSchema)
    : _configId(configId),
      _defName(defName),
      _defNamespace(defNamespace),
      _defMd5(defMd5),
      _defSchema(defSchema),
      _key(_configId + _defName + _defNamespace)
{
}

ConfigKey::ConfigKey() = default;
ConfigKey::ConfigKey(const ConfigKey &) = default;
ConfigKey & ConfigKey::operator = (const ConfigKey &) = default;
ConfigKey::ConfigKey(ConfigKey &&) noexcept = default;
ConfigKey & ConfigKey::operator = (ConfigKey &&) noexcept = default;
ConfigKey::~ConfigKey() = default;

bool
ConfigKey::operator<(const ConfigKey & rhs) const
{
    return _key < rhs._key;
}

bool
ConfigKey::operator>(const ConfigKey & rhs) const
{
    return _key > rhs._key;
}

bool
ConfigKey::operator==(const ConfigKey & rhs) const
{
    return _key.compare(rhs._key) == 0;
}

const vespalib::string & ConfigKey::getDefName() const { return _defName; }
const vespalib::string & ConfigKey::getConfigId() const { return _configId; }
const vespalib::string & ConfigKey::getDefNamespace() const { return _defNamespace; }
const vespalib::string & ConfigKey::getDefMd5() const { return _defMd5; }
const StringVector & ConfigKey::getDefSchema() const { return _defSchema; }

const vespalib::string
ConfigKey::toString() const
{
    vespalib::string s;
    s.append("name=");
    s.append(_defNamespace);
    s.append(".");
    s.append(_defName);
    s.append(",configId=");
    s.append(_configId);
    return s;
}

}