Diag-Client-Lib
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 DIAGNOSTIC_CLIENT_LIB_LIB_UDS_TRANSPORT_LAYER_API_UDS_TRANSPORT_CONNECTION_H
9 #define DIAGNOSTIC_CLIENT_LIB_LIB_UDS_TRANSPORT_LAYER_API_UDS_TRANSPORT_CONNECTION_H
10 
11 /* includes */
12 #include <cstdint>
13 #include <string>
14 #include <string_view>
15 
16 #include "core/include/span.h"
20 
21 namespace uds_transport {
22 namespace {
23 
24 template<typename... T>
25 std::string Append(T... args) {
26  std::string appended_name{};
27  (appended_name.append(args), ...);
28  return appended_name;
29 }
30 
34 inline std::string CreateConnectionName(std::string_view connection_name,
35  std::uint8_t connection_id) {
36  std::string final_connection_name{connection_name};
37  final_connection_name.append(std::to_string(connection_id));
38  return final_connection_name;
39 }
40 } // namespace
41 
45 class Connection {
46  public:
50  using ConnectionId = std::uint8_t;
51 
56 
66  Connection(std::string_view connection_name, ConnectionId connection_id,
67  uds_transport::ConversionHandler const &conversation_handler) noexcept
68  : conversation_handler_{conversation_handler},
69  connection_id_{connection_id},
71 
75  virtual ~Connection() = default;
76 
82 
87  [[nodiscard]] ConnectionId GetConnectionId() const noexcept { return connection_id_; }
88 
93  [[nodiscard]] std::string_view GetConnectionName() const noexcept { return connection_name_; }
94 
98  virtual void Start() = 0;
99 
103  virtual void Stop() = 0;
104 
109  virtual bool IsConnectToHost() = 0;
110 
118 
124 
150  virtual std::pair<UdsTransportProtocolMgr::IndicationResult, UdsMessagePtr> IndicateMessage(
151  UdsMessage::Address source_addr, UdsMessage::Address target_addr,
152  UdsMessage::TargetAddressType type, ChannelID channel_id, std::size_t size, Priority priority,
153  ProtocolKind protocol_kind, core_type::Span<std::uint8_t const> payload_info) = 0;
154 
161 
168  virtual void HandleMessage(UdsMessagePtr message) = 0;
169 
170  protected:
175 
176  private:
181 
185  std::string connection_name_;
186 };
187 
188 } // namespace uds_transport
189 
190 #endif // DIAGNOSTIC_CLIENT_LIB_LIB_UDS_TRANSPORT_LAYER_API_UDS_TRANSPORT_CONNECTION_H
A view over a contiguous sequence of objects.
Definition: span.h:191
Interface class to handle connection between two layers.
Definition: connection.h:45
std::uint8_t ConnectionId
Type alias for connection id.
Definition: connection.h:50
virtual ~Connection()=default
Destruct an instance of Connection.
uds_transport::ConversionHandler const & conversation_handler_
Store the conversation handler.
Definition: connection.h:174
ConnectionId GetConnectionId() const noexcept
Function to get the connection id.
Definition: connection.h:87
virtual std::pair< UdsTransportProtocolMgr::IndicationResult, UdsMessagePtr > IndicateMessage(UdsMessage::Address source_addr, UdsMessage::Address target_addr, UdsMessage::TargetAddressType type, ChannelID channel_id, std::size_t size, Priority priority, ProtocolKind protocol_kind, core_type::Span< std::uint8_t const > payload_info)=0
Function to indicate a start of reception of message.
virtual UdsTransportProtocolMgr::TransmissionResult Transmit(UdsMessageConstPtr message)=0
Function to transmit a valid Uds message.
virtual InitializationResult Initialize()=0
Function to initialize the connection.
ConnectionId connection_id_
Store the connection id.
Definition: connection.h:180
std::string connection_name_
Store the connection name.
Definition: connection.h:185
virtual void Stop()=0
Function to stop the connection.
virtual bool IsConnectToHost()=0
Function to check if connected to host remote server.
virtual UdsTransportProtocolMgr::ConnectionResult ConnectToHost(UdsMessageConstPtr message)=0
Function to establish connection to remote host server.
Connection(std::string_view connection_name, ConnectionId connection_id, uds_transport::ConversionHandler const &conversation_handler) noexcept
Constructor to create a new connection.
Definition: connection.h:66
virtual void Start()=0
Function to start the connection.
virtual void HandleMessage(UdsMessagePtr message)=0
Function to Hands over a valid received Uds message.
virtual UdsTransportProtocolMgr::DisconnectionResult DisconnectFromHost()=0
Function to disconnect from remote host server.
std::string_view GetConnectionName() const noexcept
Function to get the connection name.
Definition: connection.h:93
Class to manage reception from transport protocol handler to connection handler.
InitializationResult
Definitions of different initialization result.
std::string CreateConnectionName(std::string_view connection_name, std::uint8_t connection_id)
Function to append the connection id to the connection name.
Definition: connection.h:34
std::string_view ProtocolKind
std::unique_ptr< const UdsMessage > UdsMessageConstPtr
Definition: uds_message.h:69
std::unique_ptr< UdsMessage > UdsMessagePtr
Definition: uds_message.h:71
uint32_t ChannelID
std::uint8_t Priority