Files
compute-runtime/core/utilities/debug_settings_reader.h
Jobczyk, Lukasz 86edfea3bf Fix OCL specific registry path in a core dir
Change-Id: I5b7792582e6c77a29ffb42b8fe024bc826ae1867
Signed-off-by: Jobczyk, Lukasz <lukasz.jobczyk@intel.com>
2019-09-02 17:33:50 +02:00

34 lines
1006 B
C++

/*
* Copyright (C) 2017-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <fstream>
#include <stdint.h>
#include <string>
namespace NEO {
class SettingsReader {
public:
virtual ~SettingsReader() {}
static SettingsReader *create(const std::string &regKey) {
SettingsReader *readerImpl = createFileReader();
if (readerImpl != nullptr)
return readerImpl;
return createOsReader(false, regKey);
}
static SettingsReader *createOsReader(bool userScope, const std::string &regKey);
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;
virtual const char *appSpecificLocation(const std::string &name) = 0;
static const char *settingsFileName;
};
}; // namespace NEO