b6a8144fda8e085f2611dd433b5ff7991ef12945
[platform/core/ml/nnfw.git] / runtime / onert / core / include / util / ConfigSource.h
1 /*
2  * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __ONERT_UTIL_CONFIG_SOURCE_H__
18 #define __ONERT_UTIL_CONFIG_SOURCE_H__
19
20 #include <memory>
21
22 #include "IConfigSource.h"
23
24 namespace onert
25 {
26 namespace util
27 {
28
29 void config_source(std::unique_ptr<IConfigSource> &&source);
30
31 bool toBool(const std::string &val);
32 int toInt(const std::string &val);
33
34 bool getConfigBool(const std::string &key);
35 int getConfigInt(const std::string &key);
36 std::string getConfigString(const std::string &key);
37
38 } // namespace util
39 } // namespace onert
40
41 namespace onert
42 {
43 namespace util
44 {
45 namespace config
46 {
47
48 #define CONFIG(Name, Type, Default) extern const char *Name;
49
50 #include "Config.lst"
51
52 #undef CONFIG
53
54 } // namespace config
55 } // namespace util
56 } // namespace onert
57
58 #endif // __ONERT_UTIL_CONFIG_SOURCE_H__