Diag-Client-Lib
udp_client.cpp
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 
10 
14 
15 namespace boost_support {
16 namespace client {
17 namespace udp {
18 
23  public:
31  UdpClientImpl(std::string_view local_ip_address, std::uint16_t local_port_num) noexcept
32  : io_context_{"UdpClient"},
34  socket::udp::UdpSocket{local_ip_address, local_port_num, io_context_.GetContext()}} {}
35 
39  UdpClientImpl(const UdpClientImpl &other) noexcept = delete;
40  UdpClientImpl &operator=(const UdpClientImpl &other) noexcept = delete;
41 
45  UdpClientImpl(UdpClientImpl &&other) noexcept = delete;
46  UdpClientImpl &operator=(UdpClientImpl &&other) noexcept = delete;
47 
51  ~UdpClientImpl() noexcept = default;
52 
56  void Initialize() noexcept {
59  }
60 
64  void DeInitialize() noexcept {
67  }
68 
75  void SetReadHandler(HandlerRead read_handler) noexcept {
76  udp_connection_.SetReadHandler(std::move(read_handler));
77  }
78 
86  return udp_connection_.Transmit(std::move(udp_message));
87  }
88 
89  private:
94 
99 
104 
109 };
110 
111 UdpClient::UdpClient(std::string_view local_ip_address, std::uint16_t local_port_num) noexcept
112  : udp_client_impl_{std::make_unique<UdpClientImpl>(local_ip_address, local_port_num)} {}
113 
114 UdpClient::UdpClient(UdpClient &&other) noexcept = default;
115 
116 UdpClient &UdpClient::operator=(UdpClient &&other) noexcept = default;
117 
118 UdpClient::~UdpClient() noexcept = default;
119 
120 void UdpClient::Initialize() noexcept { udp_client_impl_->Initialize(); }
121 
122 void UdpClient::DeInitialize() noexcept { udp_client_impl_->DeInitialize(); }
123 
125  udp_client_impl_->SetReadHandler(std::move(read_handler));
126 }
127 
129  return udp_client_impl_->Transmit(std::move(udp_message));
130 }
131 
132 } // namespace udp
133 } // namespace client
134 } // namespace boost_support
Class to provide implementation of udp client.
Definition: udp_client.cpp:22
~UdpClientImpl() noexcept=default
Destruct an instance of UdpClientImpl.
UdpClientImpl & operator=(UdpClientImpl &&other) noexcept=delete
UdpClientImpl(const UdpClientImpl &other) noexcept=delete
Deleted copy assignment and copy constructor.
void DeInitialize() noexcept
De-initialize the client.
Definition: udp_client.cpp:64
void SetReadHandler(HandlerRead read_handler) noexcept
Function to set the read handler that is invoked when message is received.
Definition: udp_client.cpp:75
UdpClientImpl(std::string_view local_ip_address, std::uint16_t local_port_num) noexcept
Constructs an instance of UdpClientImpl.
Definition: udp_client.cpp:31
UdpClientImpl(UdpClientImpl &&other) noexcept=delete
Deleted move assignment and move constructor.
UdpClientImpl & operator=(const UdpClientImpl &other) noexcept=delete
core_type::Result< void > Transmit(MessageConstPtr udp_message)
Function to transmit the provided udp message.
Definition: udp_client.cpp:85
void Initialize() noexcept
Initialize the client.
Definition: udp_client.cpp:56
UdpConnection udp_connection_
Store the udp connection.
Definition: udp_client.cpp:108
Client that manages udp connection.
Definition: udp_client.h:24
std::unique_ptr< UdpClientImpl > udp_client_impl_
Unique pointer to udp client implementation.
Definition: udp_client.h:103
core_type::Result< void > Transmit(MessageConstPtr udp_message)
Function to transmit the provided tcp message.
Definition: udp_client.cpp:128
void SetReadHandler(HandlerRead read_handler) noexcept
Function to set the read handler that is invoked when message is received.
Definition: udp_client.cpp:124
boost_support::message::udp::UdpMessageConstPtr MessageConstPtr
Type alias for Tcp message const pointer.
Definition: udp_client.h:39
void DeInitialize() noexcept
De-initialize the client.
Definition: udp_client.cpp:122
UdpClient(std::string_view local_ip_address, std::uint16_t local_port_num) noexcept
Constructs an instance of UdpClient.
Definition: udp_client.cpp:111
void Initialize() noexcept
Initialize the client.
Definition: udp_client.cpp:120
std::function< void(MessagePtr)> HandlerRead
Tcp function template used for reception.
Definition: udp_client.h:44
UdpClient & operator=(const UdpClient &other) noexcept=delete
~UdpClient() noexcept
Destruct an instance of UdpClient.
core_type::Result< void > Transmit(UdpMessageConstPtr message) noexcept
Function to trigger transmission.
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.
void Initialize() noexcept
Initialize the client.
Wrapper class to hold boost io context required for io object( sockets)
Definition: io_context.h:22
void DeInitialize() noexcept
De-initialize the context.
Definition: io_context.cpp:61
void Initialize() noexcept
Initialize the context.
Definition: io_context.cpp:55
Context & GetContext() noexcept
Function to get the io context reference.
Definition: io_context.cpp:68
Class used to create a udp socket for handling transmission and reception of udp message from driver.
Definition: udp_socket.h:24
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Definition: result.h:29