SNode.C
Loading...
Searching...
No Matches
SocketAddress.h
Go to the documentation of this file.
1/*
2 * SNode.C - a slim toolkit for network communication
3 * Copyright (C) Volker Christian <me@vchrist.at>
4 * 2020, 2021, 2022, 2023, 2024, 2025
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published
8 * by the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef NET_RC_SOCKETADDRESS_H
21#define NET_RC_SOCKETADDRESS_H
22
23#include "net/SocketAddress.h" // IWYU pragma: export
24
25// IWYU pragma: no_include "net/SocketAddress.hpp"
26
27#ifndef DOXYGEN_SHOULD_SKIP_THIS
28
29#include <bluetooth/bluetooth.h> // IWYU pragma: keep
30#include <bluetooth/rfcomm.h>
31#include <cstdint>
32#include <string>
33
34#endif /* DOXYGEN_SHOULD_SKIP_THIS */
35
36namespace net::rc {
37
38 class SocketAddress final : public net::SocketAddress<sockaddr_rc> {
39 private:
40 using Super = net::SocketAddress<sockaddr_rc>;
41
42 public:
44 explicit SocketAddress(const std::string& btAddress);
45 explicit SocketAddress(uint8_t channel);
46 SocketAddress(const std::string& btAddress, uint8_t channel);
47 SocketAddress(const SockAddr& sockAddr, SockLen sockAddrLen);
48
49 void init();
50
51 SocketAddress& setBtAddress(const std::string& btAddress);
52 std::string getBtAddress() const;
53
54 SocketAddress& setChannel(uint8_t channel);
55 uint8_t getChannel() const;
56
57 std::string toString(bool expanded = true) const override;
58
59 private:
60 std::string btAddress;
61 uint8_t channel = 0;
62 };
63
64} // namespace net::rc
65
66extern template class net::SocketAddress<sockaddr_rc>;
67
68#endif // NET_RC_SOCKETADDRESS_H
uint8_t getChannel() const
SocketAddress & setChannel(uint8_t channel)
std::string toString(bool expanded=true) const override
SocketAddress(const SockAddr &sockAddr, SockLen sockAddrLen)
std::string getBtAddress() const
SocketAddress(uint8_t channel)
SocketAddress * init() final
std::string getBtAddress() const
ConfigAddress(net::config::ConfigInstance *instance, const std::string &addressOptionName, const std::string &addressOptionDescription)
ConfigAddress & setChannel(uint8_t channel)
ConfigAddress & setBtAddress(const std::string &btAddress)
ConfigAddress & setSocketAddress(const SocketAddress &socketAddress)
ConfigAddress & setChannelRequired(bool required=true)
ConfigAddress & setBtAddressRequired(bool required=true)