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 <regex>
39 : #include <mutex>
40 : #include <shared_mutex>
41 :
42 : #include <common.hpp>
43 :
44 : #include <nlohmann/json.hpp>
45 :
46 : #include <JsonSchema.hpp>
47 : #include <AdminSchemas.hpp>
48 :
49 :
50 : namespace h2agent
51 : {
52 : namespace model
53 : {
54 :
55 : class AdminServerMatchingData
56 : {
57 : public:
58 : AdminServerMatchingData();
59 154 : ~AdminServerMatchingData() = default;
60 :
61 : // Algorithm type
62 : enum AlgorithmType { FullMatching = 0, FullMatchingRegexReplace, RegexMatching };
63 : // UriPathQueryParameters filter type
64 : enum UriPathQueryParametersFilterType { Sort = 0, PassBy, Ignore };
65 : // UriPathQueryParameters separator type
66 : enum UriPathQueryParametersSeparatorType { Ampersand = 0, Semicolon };
67 :
68 : // Load result
69 : enum LoadResult { Success = 0, BadSchema, BadContent };
70 :
71 : // getters
72 143 : AlgorithmType getAlgorithm() const {
73 143 : read_guard_t guard(rw_mutex_);
74 143 : return algorithm_;
75 143 : }
76 :
77 2 : const std::regex& getRgx() const {
78 2 : read_guard_t guard(rw_mutex_);
79 2 : return rgx_;
80 2 : }
81 :
82 2 : const std::string& getFmt() const {
83 2 : read_guard_t guard(rw_mutex_);
84 2 : return fmt_;
85 2 : }
86 :
87 10 : UriPathQueryParametersFilterType getUriPathQueryParametersFilter() const {
88 10 : read_guard_t guard(rw_mutex_);
89 10 : return uri_path_query_parameters_filter_;
90 10 : }
91 :
92 10 : UriPathQueryParametersSeparatorType getUriPathQueryParametersSeparator() const {
93 10 : read_guard_t guard(rw_mutex_);
94 10 : return uri_path_query_parameters_separator_;
95 10 : }
96 :
97 : /**
98 : * Json for class information
99 : *
100 : * @return Json object
101 : */
102 8 : const nlohmann::json &getJson() const {
103 8 : read_guard_t guard(rw_mutex_);
104 :
105 8 : return json_;
106 8 : }
107 :
108 : /**
109 : * Loads server matching operation data
110 : *
111 : * @param j Json document from operation body request
112 : *
113 : * @return Load operation result
114 : */
115 : LoadResult load(const nlohmann::json &j);
116 :
117 : /**
118 : * Gets matching schema
119 : */
120 1 : const h2agent::jsonschema::JsonSchema& getSchema() const {
121 1 : return server_matching_schema_;
122 : }
123 :
124 : private:
125 : h2agent::jsonschema::JsonSchema server_matching_schema_{};
126 :
127 : mutable mutex_t rw_mutex_{};
128 :
129 : nlohmann::json json_{};
130 :
131 : AlgorithmType algorithm_{};
132 : std::regex rgx_{};
133 : std::string fmt_{};
134 : UriPathQueryParametersFilterType uri_path_query_parameters_filter_{};
135 : UriPathQueryParametersSeparatorType uri_path_query_parameters_separator_{};
136 : };
137 :
138 : }
139 : }
140 :
|