summaryrefslogtreecommitdiffstats
path: root/searchsummary/src/vespa/juniper/propreader.h
blob: 45557716cd080b94ab345d258bd18d3d3d48431a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "IJuniperProperties.h"
#include "stringmap.h"

/** Simple property reader using same format as fsearchrc.
 *  Implemented for standalone testing of Juniper.
 */
class PropReader : public IJuniperProperties
{
public:
    PropReader(const char* filename);
    const char* GetProperty(const char* name, const char* def = nullptr) const override;
    void UpdateProperty(const char* name, const char* value);
    ~PropReader() {}
protected:
    void Process(const char* filename);
private:
    Fast_StringMap _keymap;
};