summaryrefslogtreecommitdiff
path: root/runtimes/neurun/core/src/util/ConfigSource.cc
blob: f84e955663eb133d0b6c941a2adeede837a90c32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
 * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "util/ConfigSource.h"
#include "util/GeneralConfigSource.h"

#include <algorithm>
#include <cassert>

#include "cpp14/memory.h"
#include "EnvConfigSource.h"

namespace neurun
{
namespace util
{

static std::unique_ptr<IConfigSource> _source;

void config_source(std::unique_ptr<IConfigSource> &&source) { _source = std::move(source); }

static IConfigSource *config_source()
{
  if (!_source)
  {
#ifdef ENVVAR_FOR_DEFAULT_CONFIG
    // Default ConfigSource is EnvConfigSource
    _source = nnfw::cpp14::make_unique<EnvConfigSource>();
#else
    _source = nnfw::cpp14::make_unique<GeneralConfigSource>();
#endif // ENVVAR_FOR_DEFAULT_CONFIG
  }
  return _source.get();
}

static std::string getConfigOrDefault(const std::string &key)
{
  static std::unordered_map<std::string, std::string> defaults;
  if (defaults.empty())
  {
#define CONFIG(Name, Type, Default)               \
  {                                               \
    auto name = std::string{#Name};               \
    defaults.emplace(name, std::string{Default}); \
  }

#include "util/Config.lst"

#undef CONFIG
  }

  // Treat empty string and absence of the value to be the same
  auto ret = config_source()->get(key);
  if (ret.empty())
  {
    auto itr = defaults.find(key);
    if (itr != defaults.end())
    {
      // Return the default value if exists
      ret = itr->second;
    }
  }

  return ret;
}

bool getConfigBool(const std::string &key)
{
  auto raw = getConfigOrDefault(key);
  static const std::array<std::string, 5> false_list{"0", "OFF", "FALSE", "N", "NO"};
  auto false_found = std::find(false_list.begin(), false_list.end(), raw);

  return (false_found == false_list.end());
}

int getConfigInt(const std::string &key)
{
  auto raw = getConfigOrDefault(key);
  return std::stoi(raw);
}

std::string getConfigString(const std::string &key) { return getConfigOrDefault(key); }

} // namespace util
} // namespace neurun

namespace neurun
{
namespace util
{
namespace config
{

#define CONFIG(Name, Type, Default) const char *Name = #Name;

#include "util/Config.lst"

#undef CONFIG

} // namespace config
} // namespace util
} // namespace neurun