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 <Configuration.hpp>
41 :
42 :
43 : namespace h2agent
44 : {
45 : namespace model
46 : {
47 :
48 : /**
49 : * This class stores general process static configuration
50 : */
51 : class Configuration
52 : {
53 : unsigned int long_term_files_close_delay_us_{};
54 : unsigned int short_term_files_close_delay_us_{};
55 : bool lazy_client_connection_{};
56 :
57 : public:
58 : /**
59 : * Constructor
60 : */
61 177 : Configuration() {
62 177 : long_term_files_close_delay_us_ = 1000000; // 1 second
63 177 : short_term_files_close_delay_us_ = 0; // instant close
64 177 : lazy_client_connection_ = false;
65 177 : }
66 :
67 : /**
68 : * Destructor
69 : */
70 177 : ~Configuration() {;}
71 :
72 : /**
73 : * Set long-term files category close delay (microseconds)
74 : *
75 : * @param usecs close delay in microseconds for long-term files category
76 : */
77 1 : void setLongTermFilesCloseDelayUsecs(unsigned int usecs) {
78 1 : long_term_files_close_delay_us_ = usecs;
79 1 : }
80 :
81 : /**
82 : * Set short-term files category close delay (microseconds)
83 : *
84 : * @param usecs close delay in microseconds for short-term files category
85 : */
86 1 : void setShortTermFilesCloseDelayUsecs(unsigned int usecs) {
87 1 : short_term_files_close_delay_us_ = usecs;
88 1 : }
89 :
90 : /**
91 : * Set lazy client connection
92 : *
93 : * @param lazy Lazy client connection boolean
94 : */
95 17 : void setLazyClientConnection(bool lazy) {
96 17 : lazy_client_connection_ = lazy;
97 17 : }
98 :
99 : /**
100 : * Get long-term files category close delay (microseconds)
101 : *
102 : * @return usecs close delay in microseconds for long-term files category
103 : */
104 4 : unsigned int getLongTermFilesCloseDelayUsecs() const {
105 4 : return long_term_files_close_delay_us_;
106 : }
107 :
108 : /**
109 : * Get short-term files category close delay (microseconds)
110 : *
111 : * @return usecs close delay in microseconds for short-term files category
112 : */
113 2 : unsigned int getShortTermFilesCloseDelayUsecs() const {
114 2 : return short_term_files_close_delay_us_;
115 : }
116 :
117 : /**
118 : * Get lazy client connection
119 : *
120 : * @return Lazy client connection boolean
121 : */
122 15 : bool getLazyClientConnection() const {
123 15 : return lazy_client_connection_;
124 : }
125 :
126 : /**
127 : * Json string representation for class information (json object)
128 : *
129 : * @return Json string representation
130 : */
131 : std::string asJsonString() const;
132 :
133 : /**
134 : * Builds json document for class information
135 : *
136 : * @return Json object
137 : */
138 : nlohmann::json getJson() const;
139 : };
140 :
141 : }
142 : }
143 :
|