mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 08:37:12 +08:00
Updating files modified in 2018 only. Older files remain with old style copyright header Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92 Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
34 lines
877 B
C++
34 lines
877 B
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#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;
|
|
|
|
return createOsReader(false);
|
|
}
|
|
static SettingsReader *createOsReader(bool userScope);
|
|
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;
|
|
};
|
|
}; // namespace OCLRT
|