aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/attribute/imported_attributes_repo.cpp
blob: a45b327362a293a025490ce185efec728278004d (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "imported_attributes_repo.h"
#include <vespa/searchlib/attribute/imported_attribute_vector.h>
#include <vespa/vespalib/stllike/hash_map.hpp>

namespace proton {

using search::attribute::ImportedAttributeVector;

namespace {

ImportedAttributeVector::SP _empty;

}

ImportedAttributesRepo::ImportedAttributesRepo() = default;
ImportedAttributesRepo::~ImportedAttributesRepo() = default;

void
ImportedAttributesRepo::add(const vespalib::string &name,
                            ImportedAttributeVector::SP attr)
{
    _repo[name] = std::move(attr);
}

const ImportedAttributeVector::SP &
ImportedAttributesRepo::get(const vespalib::string &name) const
{
    auto itr = _repo.find(name);
    if (itr != _repo.end()) {
        return itr->second;
    }
    return _empty;
}

void
ImportedAttributesRepo::getAll(std::vector<std::shared_ptr<ImportedAttributeVector>> &result) const
{
    result.reserve(_repo.size());
    for (const auto &itr : _repo) {
        result.push_back(itr.second);
    }
}

}