CuteHMI - Modbus (CuteHMI.Modbus.4)
DummyClientConfig.hpp
1#ifndef H_EXTENSIONS_CUTEHMI_MODBUS_4_INCLUDE_CUTEHMI_MODBUS_INTERNAL_DUMMYCLIENTCONFIG_HPP
2#define H_EXTENSIONS_CUTEHMI_MODBUS_4_INCLUDE_CUTEHMI_MODBUS_INTERNAL_DUMMYCLIENTCONFIG_HPP
3
4#include "common.hpp"
5
6#include <QObject>
7#include <QReadWriteLock>
8
9namespace cutehmi {
10namespace modbus {
11namespace internal {
12
13class CUTEHMI_MODBUS_PRIVATE DummyClientConfig:
14 public QObject
15{
16 Q_OBJECT
17
18 public:
19 static constexpr int INITIAL_OPEN_LATENCY = 1000;
20 static constexpr int INITIAL_CLOSE_LATENCY = 1000;
21 static constexpr int INITIAL_LATENCY = 1000;
22 static constexpr int INITIAL_TIMEOUT = 1000;
23
24 explicit DummyClientConfig(QObject * parent = nullptr);
25
26 int openLatency() const;
27
28 void setOpenLatency(int openLatency);
29
30 int closeLatency() const;
31
32 void setCloseLatency(int closeLatency);
33
34 int latency() const;
35
36 void setLatency(int latency);
37
38 int timeout() const;
39
40 void setTimeout(int timeout);
41
42 signals:
44
45 private:
46 struct Members
47 {
48 int openLatency = INITIAL_OPEN_LATENCY;
49 int closeLatency = INITIAL_CLOSE_LATENCY;
50 int latency = INITIAL_LATENCY;
51 int timeout = INITIAL_TIMEOUT;
52 mutable QReadWriteLock lock;
53 };
54
56};
57
58}
59}
60}
61
62#endif
63
64//(c)C: Copyright © 2022, Michał Policht <michal@policht.pl>. All rights reserved.
65//(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
66//(c)C: This file is a part of CuteHMI.
67//(c)C: CuteHMI is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
68//(c)C: CuteHMI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
69//(c)C: You should have received a copy of the GNU Lesser General Public License along with CuteHMI. If not, see <https://www.gnu.org/licenses/>.
70//(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
71//(c)C: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
72//(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
73//(c)C: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Definition: DummyClientConfig.hpp:15
T internal(T... args)