20 namespace conversation {
23 std::vector<std::uint8_t> &input_buffer) {
24 std::string hex_string{};
25 std::uint8_t total_char_count{
static_cast<uint8_t
>(char_start + char_count)};
27 for (std::uint8_t char_start_count = char_start; char_start_count < total_char_count;
29 std::stringstream vehicle_info_data_eid{};
30 int payload_byte{input_buffer[char_start_count]};
31 if ((payload_byte <= 15)) {
33 vehicle_info_data_eid <<
"0";
35 vehicle_info_data_eid << std::hex << payload_byte <<
":";
36 hex_string.append(vehicle_info_data_eid.str());
38 hex_string.pop_back();
43 std::vector<std::uint8_t> &input_buffer) {
44 std::string ascii_string{};
45 std::uint8_t total_char_count{
static_cast<uint8_t
>(char_start + char_count)};
47 for (std::uint8_t char_start_count = char_start; char_start_count < total_char_count;
49 std::stringstream vehicle_info_data_vin{};
50 vehicle_info_data_vin << input_buffer[char_start_count];
51 ascii_string.append(vehicle_info_data_vin.str());
57 std::uint8_t total_size, std::uint8_t substring_range) {
59 for (
auto char_count = 0U; char_count < total_size; char_count += substring_range) {
60 std::string input_string_new{
61 input_string.substr(char_count,
static_cast<std::uint8_t
>(substring_range))};
62 std::stringstream input_string_stream{input_string_new};
64 input_string_stream >> std::hex >> get_byte;
65 output_buffer.emplace_back(
static_cast<std::uint8_t
>(get_byte));
70 std::uint8_t total_size, std::uint8_t substring_range) {
72 for (
auto char_count = 0U; char_count < total_size; char_count += substring_range) {
73 std::string input_string_new{
74 input_string.substr(char_count,
static_cast<std::uint8_t
>(substring_range))};
75 std::stringstream input_string_stream{input_string_new};
76 int get_byte{input_string_stream.get()};
77 output_buffer.emplace_back(
static_cast<std::uint8_t
>(get_byte));
85 std::map<std::uint16_t, vehicle_info::VehicleAddrInfoResponse> &vehicle_info_collection)
87 for (std::pair<std::uint16_t, vehicle_info::VehicleAddrInfoResponse> vehicle_info:
88 vehicle_info_collection) {
89 Push(vehicle_info.second);
175 priority, protocol_kind, payloadInfo));
199 conversion_identifier.handler_id, *this)},
200 conversation_name_{conversion_name},
201 broadcast_address_{conversion_identifier.udp_broadcast_address},
203 vehicle_info_collection_{},
204 vehicle_info_container_mutex_{} {}
216 FILE_NAME, __LINE__, __func__, [&](std::stringstream &msg) {
219 <<
"Startup completed";
230 FILE_NAME, __LINE__, __func__, [&](std::stringstream &msg) {
233 <<
"Shutdown completed";
239 std::unique_ptr<uds_transport::Connection> connection) noexcept {
240 connection_ptr_ = std::move(connection);
247 using VehicleIdentificationResponseResult =
251 VehicleIdentificationResponseResult result{VehicleIdentificationResponseResult::FromError(
255 std::pair<PreselectionMode, PreselectionValue> vehicle_info_request_deserialized_value{
256 DeserializeVehicleInfoRequest(vehicle_info_request)};
258 if (VerifyVehicleInfoRequest(
259 vehicle_info_request_deserialized_value.first,
260 static_cast<uint8_t
>(vehicle_info_request_deserialized_value.second.size()))) {
261 if (connection_ptr_->Transmit(std::make_unique<diag::client::vd_message::VdMessage>(
262 vehicle_info_request_deserialized_value.first,
263 vehicle_info_request_deserialized_value.second, broadcast_address_)) !=
266 if (vehicle_info_collection_.empty()) {
270 FILE_NAME, __LINE__, __func__, [&](std::stringstream &msg) {
271 msg <<
"'" << conversation_name_ <<
"'"
273 <<
"No vehicle identification response received, timed out "
277 result.EmplaceValue(std::make_unique<VehicleInfoMessageImpl>(vehicle_info_collection_));
279 vehicle_info_collection_.clear();
302 IndicationResult ret_val{
304 if (!payload_info.empty()) {
306 ret_val.second = std::make_unique<diag::client::vd_message::VdMessage>();
307 ret_val.second->GetPayload().resize(size);
313 if (message !=
nullptr) {
314 std::lock_guard<std::mutex>
const lock{vehicle_info_container_mutex_};
315 std::pair<std::uint16_t, VehicleAddrInfoResponseStruct> vehicle_info_request{
316 DeserializeVehicleInfoResponse(std::move(message))};
318 vehicle_info_collection_.emplace(vehicle_info_request.first, vehicle_info_request.second);
323 std::uint8_t preselection_value_length) {
324 bool is_veh_info_valid{
false};
326 if (preselection_mode == 0U && (preselection_value_length == 0U)) {
327 is_veh_info_valid =
true;
330 else if (preselection_mode == 1U && (preselection_value_length == 17U)) {
331 is_veh_info_valid =
true;
334 else if (preselection_mode == 2U && (preselection_value_length == 6U)) {
335 is_veh_info_valid =
true;
340 return is_veh_info_valid;
343 std::pair<VdConversation::LogicalAddress, VdConversation::VehicleAddrInfoResponseStruct>
345 constexpr std::uint8_t start_index_vin{0U};
346 constexpr std::uint8_t total_vin_length{17U};
347 constexpr std::uint8_t start_index_eid{19U};
348 constexpr std::uint8_t start_index_gid{25U};
349 constexpr std::uint8_t total_eid_gid_length{6U};
351 std::string
const vehicle_info_data_vin{
353 std::string
const vehicle_info_data_eid{
355 std::string
const vehicle_info_data_gid{
359 ((message->GetPayload()[17U] & 0xFF) << 8) | (message->GetPayload()[18U] & 0xFF)))};
363 std::string{message->GetHostIpAddress()},
365 vehicle_info_data_vin,
366 vehicle_info_data_eid,
367 vehicle_info_data_gid};
369 return std::pair<std::uint16_t, VdConversation::VehicleAddrInfoResponseStruct>{logical_address,
377 std::pair<VdConversation::PreselectionMode, VdConversation::PreselectionValue>
381 std::pair<VdConversation::PreselectionMode, VdConversation::PreselectionValue> ret_val{};
384 if (ret_val.first == 1U) {
389 }
else if (ret_val.first == 2U) {
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
A view over a contiguous sequence of objects.
VehicleInfoResponseError
Definitions of Vehicle Identification response error code.
auto GetActivityStatus() const noexcept -> ActivityStatusType
Get the current activity status of this conversation.
ActivityStatusType activity_status_
Store the conversation activity status.
Class to manage reception from transport protocol handler to vd connection handler.
~VdConversationHandler() override=default
Destructs an instance of DmConversationHandler.
VdConversationHandler(VdConversationHandler &&other) noexcept=delete
Deleted move assignment and move constructor.
void HandleMessage(::uds_transport::UdsMessagePtr message) const noexcept override
Function to Hands over a valid received Uds message.
VdConversationHandler & operator=(const VdConversationHandler &other) noexcept=delete
VdConversation & vd_conversation_
Store the reference of vd conversation.
VdConversationHandler(::uds_transport::conversion_manager::ConversionHandlerID handler_id, VdConversation &vd_conversion)
Constructs an instance of VdConversationHandler.
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 > payloadInfo) const noexcept override
Function to indicate a start of reception of message.
VdConversationHandler(const VdConversationHandler &other) noexcept=delete
Deleted copy assignment and copy constructor.
VdConversationHandler & operator=(VdConversationHandler &&other) noexcept=delete
Class to search for available diagnostic server over a network.
::uds_transport::ConversionHandler & GetConversationHandler() noexcept override
Function to get the conversation handler from conversation object.
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 > payloadInfo) noexcept override
Function to indicate a start of reception of message.
static std::pair< PreselectionMode, PreselectionValue > DeserializeVehicleInfoRequest(vehicle_info::VehicleInfoListRequestType &vehicle_info_request)
Function to deserialize the Vehicle Information request from user.
static std::pair< LogicalAddress, VehicleAddrInfoResponseStruct > DeserializeVehicleInfoResponse(::uds_transport::UdsMessagePtr message)
Function to deserialize the received Vehicle Identification Response/ Announcement.
~VdConversation() override
Destructs an instance of DmConversation.
VdConversation(std::string_view conversion_name, VDConversationType &conversion_identifier)
Constructs an instance of VdConversation.
void Shutdown() noexcept override
Function to shutdown the DmConversation.
std::unique_ptr<::uds_transport::Connection > connection_ptr_
Store the underlying transport protocol connection object.
void RegisterConnection(std::unique_ptr<::uds_transport::Connection > connection) noexcept override
Function to register the conversation to underlying transport protocol handler.
std::uint16_t LogicalAddress
Type alias of logical address.
std::unique_ptr<::uds_transport::ConversionHandler > vd_conversion_handler_
Store the vd conversation handler.
void Startup() noexcept override
Function to start the DmConversation.
bool VerifyVehicleInfoRequest(PreselectionMode preselection_mode, std::uint8_t preselection_value_length)
Function to verify the received vehicle info request.
vehicle_info::VehicleInfoMessageResponseUniquePtr GetDiagnosticServerList()
Function to get the list of available diagnostic server.
void HandleMessage(::uds_transport::UdsMessagePtr message) noexcept override
Function to Hands over a valid received Uds message.
core_type::Result< diag::client::vehicle_info::VehicleInfoMessageResponseUniquePtr, DiagClient::VehicleInfoResponseError > SendVehicleIdentificationRequest(vehicle_info::VehicleInfoListRequestType vehicle_info_request) noexcept override
Function to send vehicle identification request and get the Diagnostic Server list.
std::string conversation_name_
Store the conversation name.
std::uint8_t PreselectionMode
Type alias of pre-selection mode.
VehicleInfoListResponseType vehicle_info_messages_
~VehicleInfoMessageImpl() override=default
void Push(vehicle_info::VehicleAddrInfoResponse &vehicle_addr_info_response)
VehicleInfoListResponseType & GetVehicleList() override
Function to get the list of vehicle available in the network.
VehicleInfoMessageImpl(std::map< std::uint16_t, vehicle_info::VehicleAddrInfoResponse > &vehicle_info_collection)
static auto GetDiagClientLogger() noexcept -> DiagClientLogger &
Get the diag client logger instance.
Class provide storage of list of all available vehicle entity.
std::vector< VehicleAddrInfoResponse > VehicleInfoListResponseType
Alias to collection of Vehicle info response.
Class to manage reception from transport protocol handler to connection handler.
ConversionHandler(conversion_manager::ConversionHandlerID handler_id)
Constructs an instance of ConversionHandler.
void SerializeVINFromString(std::string &input_string, std::vector< uint8_t > &output_buffer, std::uint8_t total_size, std::uint8_t substring_range)
void SerializeEIDGIDFromString(std::string &input_string, std::vector< uint8_t > &output_buffer, std::uint8_t total_size, std::uint8_t substring_range)
std::string ConvertToAsciiString(std::uint8_t char_start, std::uint8_t char_count, std::vector< std::uint8_t > &input_buffer)
std::string ConvertToHexString(std::uint8_t char_start, std::uint8_t char_count, std::vector< std::uint8_t > &input_buffer)
std::unique_ptr< VehicleInfoMessage > VehicleInfoMessageResponseUniquePtr
The unique_ptr for Vehicle Identification Response Message.
std::uint8_t ConversionHandlerID
std::string_view ProtocolKind
std::unique_ptr< UdsMessage > UdsMessagePtr
Structure containing VD conversation type.
Struct containing Vehicle selection mode.
std::uint8_t preselection_mode
Mode to be used during sending of Vehicle Identification request. 0U : No preselection 1U : DoIP Enti...
std::string preselection_value
Value to be used based on preselection mode. VIN when preselection_mode = 1U EID when preselection_mo...
Structure containing available Vehicle Address Information.