Diag-Client-Lib
dm_uds_message.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_SERVICE_DM_UDS_MESSAGE_H
9 #define DIAGNOSTIC_CLIENT_LIB_APPL_SRC_DCM_SERVICE_DM_UDS_MESSAGE_H
10 /* includes */
14 
15 namespace diag {
16 namespace client {
17 namespace uds_message {
18 
20  public:
21  // ctor
22  DmUdsMessage(Address sa, Address ta, IpAddress host_ip_address,
23  uds_transport::ByteVector &payload);
24 
25  // dtor
26  ~DmUdsMessage() noexcept override = default;
27 
28  private:
29  // SA
31 
32  // TA
34 
35  // TA type
37 
38  // Host Ip Address
39  std::string host_ip_address_;
40 
41  // store only UDS payload to be sent
43 
44  // add new metaInfo to this message.
45  void AddMetaInfo(std::shared_ptr<const MetaInfoMap>) override {
46  // Todo [Add meta info information]
47  }
48 
49  // Get the UDS message data starting with the SID (A_Data as per ISO)
50  const uds_transport::ByteVector &GetPayload() const override { return uds_payload_; }
51 
52  // return the underlying buffer for write access
54 
55  // Get the source address of the uds message.
56  Address GetSa() const noexcept override { return source_address_; }
57 
58  // Get the target address of the uds message.
59  Address GetTa() const noexcept override { return target_address_; }
60 
61  // Get the target address type (phys/func) of the uds message.
62  TargetAddressType GetTaType() const noexcept override { return target_address_type_; }
63 
64  // Get Host Ip address
65  IpAddress GetHostIpAddress() const noexcept override { return host_ip_address_; }
66 
67  // Get Host port number
68  PortNumber GetHostPortNumber() const noexcept override { return 13400U; }
69 };
70 
71 class DmUdsResponse final : public UdsMessage {
72  public:
73  explicit DmUdsResponse(ByteVector &payload);
74 
75  ~DmUdsResponse() noexcept override = default;
76 
77  private:
78  // store only UDS payload to be sent
80  // Host Ip Address
82 
83  // Get the UDS message data starting with the SID (A_Data as per ISO)
84  const ByteVector &GetPayload() const override { return uds_payload_; }
85 
86  // return the underlying buffer for write access
87  ByteVector &GetPayload() override { return uds_payload_; }
88 
89  // Get Host Ip address
90  IpAddress GetHostIpAddress() const noexcept override { return host_ip_address_; }
91 };
92 
93 } // namespace uds_message
94 } // namespace client
95 } // namespace diag
96 #endif // DIAGNOSTIC_CLIENT_LIB_APPL_SRC_DCM_SERVICE_DM_UDS_MESSAGE_H
Address GetSa() const noexcept override
~DmUdsMessage() noexcept override=default
const uds_transport::ByteVector & GetPayload() const override
IpAddress GetHostIpAddress() const noexcept override
uds_transport::ByteVector & GetPayload() override
PortNumber GetHostPortNumber() const noexcept override
TargetAddressType GetTaType() const noexcept override
DmUdsMessage(Address sa, Address ta, IpAddress host_ip_address, uds_transport::ByteVector &payload)
Address GetTa() const noexcept override
uds_transport::ByteVector & uds_payload_
void AddMetaInfo(std::shared_ptr< const MetaInfoMap >) override
const ByteVector & GetPayload() const override
Get the UDS message data starting with the SID (A_Data as per ISO)
ByteVector & GetPayload() override
Return the underlying buffer for write access.
~DmUdsResponse() noexcept override=default
IpAddress GetHostIpAddress() const noexcept override
Get the remote ip address present.
Class represents an UDS message exchanged between User of diag-client-lib and implementation of diag-...
std::vector< std::uint8_t > ByteVector
Type alias of byte vector type.
std::string_view IpAddress
Type alias of ip address type.
std::string_view IpAddress
Definition: uds_message.h:24
std::map< std::string, std::string > MetaInfoMap
Definition: uds_message.h:28
std::uint16_t PortNumber
Definition: uds_message.h:26
std::vector< std::uint8_t > ByteVector