[dali_2.0.7] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-scene-loader / internal / json-reader.cpp
1 /*
2 * Copyright (c) 2020 Samsung Electronics Co., Ltd.
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 "dali-scene-loader/internal/json-reader.h"
18 #include <algorithm>
19 #include <cstring>
20
21 namespace json
22 {
23
24 int StrCmp(const json_string_s& js, const char* s)
25 {
26   auto sSize = strlen(s);
27   auto shorter = std::min(js.string_size, sSize);
28   auto base = strncmp(js.string, s, shorter);
29   return ((base != 0) || (sSize == js.string_size)) ? base : ((js.string_size < sSize) ?
30     -s[shorter] : js.string[shorter]);
31 }
32
33 int StrCmp(const json_string_s& js, const std::string& s)
34 {
35   auto sSize = s.size();
36   auto shorter = std::min(js.string_size, sSize);
37   auto base = strncmp(js.string, s.c_str(), shorter);
38   return ((base != 0) || (sSize == js.string_size)) ? base : ((js.string_size < sSize) ?
39     -s[shorter] : js.string[shorter]);
40 }
41
42 void Validate(const json_value_s & jv, json_type_e type)
43 {
44   if (jv.type != type)
45   {
46     throw std::runtime_error("Invalid type; expected: " + std::to_string(type) + ", got: " + std::to_string(jv.type));
47   }
48 }
49
50 json_value_s* FindObjectChild(const std::string& key, json_object_s& obj)
51 {
52   auto i = obj.start;
53   while (i)
54   {
55     if (0 == StrCmp(*i->name, key))
56     {
57       return i->value;
58     }
59     i = i->next;
60   }
61   return nullptr;
62 }
63
64 }