Diag-Client-Lib
dm_conversation.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_APPL_SRC_DCM_CONVERSATION_DM_CONVERSATION_H
9 #define DIAGNOSTIC_CLIENT_LIB_APPL_SRC_DCM_CONVERSATION_DM_CONVERSATION_H
10 /* includes */
11 #include <string_view>
12 
19 #include "utility/sync_timer.h"
20 
21 namespace diag {
22 namespace client {
23 namespace conversation {
24 
28 class DmConversation final : public Conversation {
29  public:
38 
39  public:
47  DmConversation(std::string_view conversion_name, DMConversationType &conversion_identifier);
48 
52  DmConversation(const DmConversation &other) noexcept = delete;
53  DmConversation &operator=(const DmConversation &other) noexcept = delete;
54 
58  DmConversation(DmConversation &&other) noexcept = delete;
59  DmConversation &operator=(DmConversation &&other) noexcept = delete;
60 
64  ~DmConversation() override;
65 
69  void Startup() noexcept override;
70 
74  void Shutdown() noexcept override;
75 
81  void RegisterConnection(
82  std::unique_ptr<::uds_transport::Connection> connection) noexcept override;
83 
89  ::uds_transport::ConversionHandler &GetConversationHandler() noexcept override;
90 
100  ConnectResult ConnectToDiagServer(std::uint16_t target_address,
101  IpAddress host_ip_addr) noexcept override;
102 
108  DisconnectResult DisconnectFromDiagServer() noexcept override;
109 
135  std::pair<::uds_transport::UdsTransportProtocolMgr::IndicationResult,
137  IndicateMessage(::uds_transport::UdsMessage::Address source_addr,
138  ::uds_transport::UdsMessage::Address target_addr,
139  ::uds_transport::UdsMessage::TargetAddressType type,
140  ::uds_transport::ChannelID channel_id, std::size_t size,
141  ::uds_transport::Priority priority, ::uds_transport::ProtocolKind protocol_kind,
142  core_type::Span<std::uint8_t const> payload_info) noexcept override;
143 
150  void HandleMessage(::uds_transport::UdsMessagePtr message) noexcept override;
151 
162  uds_message::UdsRequestMessageConstPtr message) noexcept override;
163 
164  private:
168  enum class SessionControlType : std::uint8_t {
169  kDefaultSession = 0x01,
170  kProgrammingSession = 0x02,
171  kExtendedSession = 0x03,
172  kSystemSafetySession = 0x04
173  };
174 
178  enum class SecurityLevelType : std::uint8_t {
179  kLocked = 0x00,
180  kUnLocked = 0x01,
181  };
182 
183  private:
193 
198 
203 
207  std::uint32_t rx_buffer_size_;
208 
212  std::uint16_t p2_client_max_;
213 
217  std::uint16_t p2_star_client_max_;
218 
222  std::uint16_t source_address_;
223 
227  std::uint16_t target_address_;
228 
232  std::string remote_address_;
233 
237  std::string conversation_name_;
238 
242  std::unique_ptr<::uds_transport::ConversionHandler> dm_conversion_handler_;
243 
247  std::unique_ptr<::uds_transport::Connection> connection_;
248 
253 
258 
263 };
264 
265 } // namespace conversation
266 } // namespace client
267 } // namespace diag
268 
269 #endif // DIAGNOSTIC_CLIENT_LIB_APPL_SRC_DCM_CONVERSATION_DM_CONVERSATION_H
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Definition: result.h:29
Interface for diag client conversation.
Definition: conversation.h:24
DiagClientConversation::IpAddress IpAddress
Type alias for Ip address.
Definition: conversation.h:29
DiagError
Definitions of Diagnostics Request Response results.
Class to establish connection with Diagnostic Server.
void Startup() noexcept override
Function to start the DmConversation.
std::uint16_t p2_client_max_
Store the maximum p2 client time.
~DmConversation() override
Destructs an instance of DmConversation.
DmConversation & operator=(DmConversation &&other) noexcept=delete
std::pair<::uds_transport::UdsTransportProtocolMgr::IndicationResult, ::uds_transport::UdsMessagePtr > IndicateMessage(::uds_transport::UdsMessage::Address source_addr, ::uds_transport::UdsMessage::Address target_addr, ::uds_transport::UdsMessage::TargetAddressType type, ::uds_transport::ChannelID channel_id, std::size_t size, ::uds_transport::Priority priority, ::uds_transport::ProtocolKind protocol_kind, core_type::Span< std::uint8_t const > payload_info) noexcept override
Function to indicate a start of reception of message.
DisconnectResult DisconnectFromDiagServer() noexcept override
Function to disconnect from Diagnostic Server.
DmConversation(const DmConversation &other) noexcept=delete
Deleted copy assignment and copy constructor.
std::unique_ptr<::uds_transport::ConversionHandler > dm_conversion_handler_
Store the dm conversation handler.
DmConversation(std::string_view conversion_name, DMConversationType &conversion_identifier)
Constructs an instance of DmConversation.
std::uint32_t rx_buffer_size_
Store the size of reception buffer size setting.
void HandleMessage(::uds_transport::UdsMessagePtr message) noexcept override
Function to Hands over a valid received Uds message.
void RegisterConnection(std::unique_ptr<::uds_transport::Connection > connection) noexcept override
Function to register the conversation to underlying transport protocol handler.
ConnectResult ConnectToDiagServer(std::uint16_t target_address, IpAddress host_ip_addr) noexcept override
Function to connect to Diagnostic Server.
std::uint16_t p2_star_client_max_
Store the maximum p2 star client time.
SecurityLevelType
Definitions of active security level.
DmConversation(DmConversation &&other) noexcept=delete
Deleted move assignment and move constructor.
::uds_transport::ConversionHandler & GetConversationHandler() noexcept override
Function to get the conversation handler from conversation object.
Result< uds_message::UdsResponseMessagePtr, DiagError > SendDiagnosticRequest(uds_message::UdsRequestMessageConstPtr message) noexcept override
Function to send Diagnostic Request and get Diagnostic Response.
SessionControlType active_session_
Store the active diagnostic session.
std::uint16_t target_address_
Store the logical target address of remote server.
::uds_transport::ByteVector payload_rx_buffer_
Store the received uds response.
std::string remote_address_
Store the remote IP address of remote server.
SyncTimer sync_timer_
Store the synchronous timer.
SecurityLevelType active_security_level_
Store the active diagnostic security level.
void Shutdown() noexcept override
Function to shutdown the DmConversation.
std::uint16_t source_address_
Store the logical source address of conversation.
conversation_state_impl::ConversationStateImpl conversation_state_
Store the conversation state.
std::unique_ptr<::uds_transport::Connection > connection_
Store the underlying transport protocol connection object.
std::string conversation_name_
Store the conversation name.
DmConversation & operator=(const DmConversation &other) noexcept=delete
SessionControlType
Definitions of active diagnostic session.
static DiagClientConversation::DiagError ConvertResponseType(::uds_transport::UdsTransportProtocolMgr::TransmissionResult result_type)
Helper function to convert response type.
Span(T(&)[N]) -> Span< T, N >
std::unique_ptr< UdsMessage > UdsResponseMessagePtr
Type alias of unique_ptr for Response Message.
std::unique_ptr< const UdsMessage > UdsRequestMessageConstPtr
Type alias of unique_ptr for constant UdsRequestMessage.
std::string_view ProtocolKind
std::unique_ptr< UdsMessage > UdsMessagePtr
Definition: uds_message.h:71
uint32_t ChannelID
std::uint8_t Priority
std::vector< std::uint8_t > ByteVector
Structure containing DM conversation type.