aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/fef/objectstore.cpp
blob: c7ef7aa0316ae99caf55a406455350690304f38d (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "objectstore.h"
#include <vespa/vespalib/stllike/hash_map.hpp>

namespace search::fef {

ObjectStore::ObjectStore() :
    _objectMap()
{
}

ObjectStore::~ObjectStore()
{
    for(auto & it : _objectMap) {
        delete it.second;
        it.second = NULL;
    }
}

void
ObjectStore::add(const vespalib::string & key, Anything::UP value)
{
    auto found = _objectMap.find(key);
    if (found != _objectMap.end()) {
        delete found->second;
        found->second = NULL;
    }
    _objectMap[key] = value.release();
}

const Anything *
ObjectStore::get(const vespalib::string & key) const
{
    auto found = _objectMap.find(key);
    return (found != _objectMap.end()) ? found->second : NULL;
}

}