Diag-Client-Lib
udp_connection.h
Go to the documentation of this file.
1 /* Diagnostic Client library
2  * Copyright (C) 2024 Avijit Dey
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
8 #ifndef DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SRC_BOOST_SUPPORT_CONNECTION_UDP_UDP_CONNECTION_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SRC_BOOST_SUPPORT_CONNECTION_UDP_UDP_CONNECTION_H_
10 
11 #include <functional>
12 
14 #include "core/include/result.h"
15 
16 namespace boost_support {
17 namespace connection {
18 namespace udp {
19 
25 template<typename Socket>
26 class UdpConnection final {
27  public:
31  using UdpMessage = typename Socket::UdpMessage;
32 
37 
42 
46  using HandlerRead = std::function<void(UdpMessagePtr)>;
47 
48  public:
54  explicit UdpConnection(Socket socket) noexcept : socket_{std::move(socket)} {}
55 
59  UdpConnection(const UdpConnection &other) noexcept = delete;
60  UdpConnection &operator=(const UdpConnection &other) &noexcept = delete;
61 
65  UdpConnection(UdpConnection &&other) noexcept = default;
66  UdpConnection &operator=(UdpConnection &&other) &noexcept = default;
67 
71  ~UdpConnection() noexcept = default;
72 
79  void SetReadHandler(HandlerRead read_handler) { socket_.SetReadHandler(std::move(read_handler)); }
80 
84  void Initialize() noexcept {
85  // Open socket
86  socket_.Open();
87  }
88 
92  void DeInitialize() noexcept { socket_.Close(); }
93 
101  return socket_.Transmit(std::move(message))
102  .AndThen([]() { return core_type::Result<void>::FromValue(); })
103  .MapError([](typename Socket::SocketError const &) {
105  });
106  }
107 
108  private:
112  Socket socket_;
113 };
114 
115 } // namespace udp
116 } // namespace connection
117 } // namespace boost_support
118 #endif // DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SRC_BOOST_SUPPORT_CONNECTION_UDP_UDP_CONNECTION_H_
Client connection class used to handle transmission and reception of udp message from socket.
UdpConnection(Socket socket) noexcept
Constructs an instance of UdpConnection.
core_type::Result< void > Transmit(UdpMessageConstPtr message) noexcept
Function to trigger transmission.
UdpConnection(const UdpConnection &other) noexcept=delete
Deleted copy assignment and copy constructor.
~UdpConnection() noexcept=default
Destruct an instance of UdpConnection.
typename Socket::UdpMessageConstPtr UdpMessageConstPtr
Type alias for Udp message const pointer.
Socket socket_
Store socket used for reading and writing tcp message.
UdpConnection & operator=(const UdpConnection &other) &noexcept=delete
typename Socket::UdpMessage UdpMessage
Type alias for Udp message.
void SetReadHandler(HandlerRead read_handler)
Function to set the read handler that is invoked when message is received.
void DeInitialize() noexcept
De-initialize the client.
UdpConnection(UdpConnection &&other) noexcept=default
Move assignment and move constructor.
typename Socket::UdpMessagePtr UdpMessagePtr
Type alias for Udp message pointer.
void Initialize() noexcept
Initialize the client.
UdpConnection & operator=(UdpConnection &&other) &noexcept=default
std::function< void(UdpMessagePtr)> HandlerRead
Tcp function template used for reception.
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Definition: result.h:29
static Result FromValue(T &t) noexcept
Build a new Result from the specified value (given as lvalue)
Definition: result.h:48
auto MakeErrorCode(BoostSupportErrorDomain::Errc code, BoostSupportErrorDomain::SupportDataType data) noexcept -> core_type::ErrorCode
Create a new ErrorCode within DoipErrorDomain.
std::unique_ptr< UdpMessage > UdpMessagePtr
The unique pointer to UdpMessage.
Definition: udp_message.h:110
std::unique_ptr< UdpMessage const > UdpMessageConstPtr
The unique pointer to const UdpMessage.
Definition: udp_message.h:105