blob: 2dfe3fcd8d0606970c79034fc05310f3647d22f3 [file] [log] [blame]
sandeepindiae64778d2022-12-06 00:17:19 +05301/*
2# ==================================================================================
3# Copyright (c) 2020 HCL Technologies Limited.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# ==================================================================================
17*/
18#ifndef _CleintModelBase_H
19#define _CleintModelBase_H
20#include<nlohmann/json.hpp>
21#include <nlohmann/json-schema.hpp>
22#include <type_traits>
23#include<vector>
24#include<string>
25#include<iostream>
26#include<limits.h>
27#include"temperory.h"
28namespace xapp
29{
30 namespace model
31 {
32 struct ModelBase {
33 nlohmann::json validator_schema = R"(
34 {
35 "$schema": "http://json-schema.org/draft-07/schema#",
36 "title": "ModelBase"
37 })"_json;
38
39
40
41 void validate_json(const nlohmann::json& _json) {
42 nlohmann::json_schema::json_validator validator;
43 validator.set_root_schema(get_validator_schema());
44
45 try {
46 validator.validate(_json);
47 }
48 catch (const std::exception& e) {
49 throw;
50 }
51
52 return;
53 }
54
55 virtual nlohmann::json get_validator_schema() const { return validator_schema; }
56 };
57
58 }
59
60}
61
62
63#endif