summaryrefslogtreecommitdiffstats
path: root/searchsummary/src/vespa/juniper/propreader.h
blob: fbc6f53bfb19f457f31eaddbedc26d511075a439 (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 = NULL) override;
    void UpdateProperty(const char* name, const char* value);
    ~PropReader() {}
protected:
    void Process(const char* filename);
private:
    Fast_StringMap _keymap;
};