2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string>
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
namespace OCLRT {
|
|
|
|
|
|
|
|
class SettingsReader {
|
|
|
|
public:
|
|
|
|
virtual ~SettingsReader() {}
|
|
|
|
static SettingsReader *create() {
|
|
|
|
SettingsReader *readerImpl = createFileReader();
|
|
|
|
if (readerImpl != nullptr)
|
|
|
|
return readerImpl;
|
|
|
|
|
2018-07-02 00:44:29 +08:00
|
|
|
return createOsReader(false);
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
2018-07-02 00:44:29 +08:00
|
|
|
static SettingsReader *createOsReader(bool userScope);
|
2017-12-21 07:45:38 +08:00
|
|
|
static SettingsReader *createFileReader();
|
|
|
|
virtual int32_t getSetting(const char *settingName, int32_t defaultValue) = 0;
|
|
|
|
virtual bool getSetting(const char *settingName, bool defaultValue) = 0;
|
|
|
|
virtual std::string getSetting(const char *settingName, const std::string &value) = 0;
|
|
|
|
|
|
|
|
static const char *settingsFileName;
|
|
|
|
};
|
2018-06-13 03:54:39 +08:00
|
|
|
}; // namespace OCLRT
|