Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / compiler / souschef / src / LexicalCast.cpp
1 /*
2  * Copyright (c) 2020 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 #include "souschef/LexicalCast.h"
18
19 #include <cassert>
20 #include <limits>
21
22 namespace souschef
23 {
24
25 template <> float to_number(const std::string &s) { return std::stof(s); }
26 template <> int to_number(const std::string &s) { return std::stoi(s); }
27 template <> int64_t to_number(const std::string &s) { return std::stoll(s); }
28 template <> uint8_t to_number(const std::string &s)
29 {
30   int temp = std::stoi(s);
31   assert(temp >= 0);
32   assert(temp <= std::numeric_limits<uint8_t>::max());
33   return static_cast<uint8_t>(temp);
34 }
35 template <> bool to_number(const std::string &s)
36 {
37   if (std::stoi(s) || s == "T" || s == "t" || s == "TRUE" || s == "true")
38     return true;
39   return false;
40 }
41
42 } // namespace souschef