Line data Source code
1 : /*
2 : ___________________________________________
3 : | _ ___ _ |
4 : | | | |__ \ | | |
5 : | | |__ ) |__ _ __ _ ___ _ __ | |_ |
6 : | | '_ \ / // _` |/ _` |/ _ \ '_ \| __| | HTTP/2 AGENT FOR MOCK TESTING
7 : | | | | |/ /| (_| | (_| | __/ | | | |_ | Version 0.0.z
8 : | |_| |_|____\__,_|\__, |\___|_| |_|\__| | https://github.com/testillano/h2agent
9 : | __/ | |
10 : | |___/ |
11 : |___________________________________________|
12 :
13 : Licensed under the MIT License <http://opensource.org/licenses/MIT>.
14 : SPDX-License-Identifier: MIT
15 : Copyright (c) 2021 Eduardo Ramos
16 :
17 : Permission is hereby granted, free of charge, to any person obtaining a copy
18 : of this software and associated documentation files (the "Software"), to deal
19 : in the Software without restriction, including without limitation the rights
20 : to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
21 : copies of the Software, and to permit persons to whom the Software is
22 : furnished to do so, subject to the following conditions:
23 :
24 : The above copyright notice and this permission notice shall be included in all
25 : copies or substantial portions of the Software.
26 :
27 : THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 : IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 : FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
30 : AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
31 : LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
32 : OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 : SOFTWARE.
34 : */
35 :
36 : #pragma once
37 :
38 : #include <nlohmann/json.hpp>
39 :
40 : #include <Map.hpp>
41 : #include <AdminSchema.hpp>
42 :
43 : #include <JsonSchema.hpp>
44 : #include <AdminSchemas.hpp>
45 :
46 :
47 : namespace h2agent
48 : {
49 : namespace model
50 : {
51 :
52 : // Map key will be string which has a hash function.
53 : class AdminSchemaData : public Map<schema_key_t, std::shared_ptr<AdminSchema>>
54 : {
55 : public:
56 : AdminSchemaData();
57 154 : ~AdminSchemaData() = default;
58 :
59 : // Load result
60 : enum LoadResult { Success = 0, BadSchema, BadContent };
61 :
62 : /**
63 : * Json string representation for class information (json array)
64 : *
65 : * @return Json string representation ('[]' for empty array).
66 : */
67 : std::string asJsonString() const;
68 :
69 : /**
70 : * Loads schema operation data
71 : *
72 : * @param j Json document from operation body request
73 : *
74 : * @return Load operation result
75 : */
76 : LoadResult load(const nlohmann::json &j);
77 :
78 : /** Clears internal data (map)
79 : *
80 : * @return True if something was removed, false if already empty
81 : */
82 : bool clear();
83 :
84 : /**
85 : * Finds schema item
86 : *
87 : * @param id Schema identifier
88 : *
89 : * @return Schema information or null if missing
90 : */
91 : std::shared_ptr<AdminSchema> find(const std::string &id) const;
92 :
93 : /**
94 : * Gets schema operation schema
95 : */
96 1 : const h2agent::jsonschema::JsonSchema& getSchema() const {
97 1 : return schema_schema_;
98 : }
99 :
100 : private:
101 :
102 : h2agent::jsonschema::JsonSchema schema_schema_{};
103 :
104 : LoadResult loadSingle(const nlohmann::json &j);
105 :
106 : mutable mutex_t rw_mutex_{};
107 : };
108 :
109 : }
110 : }
111 :
|