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