Diag-Client-Lib
uds_transport_protocol_manager.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 
12 
13 namespace diag {
14 namespace client {
15 namespace uds_transport {
16 //ctor
18  /* pass the protocol kind */)
19  : doip_transport_handler{
20  std::make_unique<doip_client::transport_protocol_handler::DoipTransportProtocolHandler>(
21  handler_id_count, *this)} {}
22 
23 // initialize all the transport protocol handler
25  //Initialize all the handlers in box
26  doip_transport_handler->Initialize();
27 }
28 
29 // start all the transport protocol handler
31  //Start all the handlers in box
32  doip_transport_handler->Start();
33 }
34 
35 // terminate all the transport protocol handler
37  //Stop all the handlers in box
38  doip_transport_handler->Stop();
39 }
40 
43  return *doip_transport_handler;
44 }
45 } // namespace uds_transport
46 } // namespace client
47 } // namespace diag
::uds_transport::UdsTransportProtocolHandler & GetTransportProtocolHandler()
std::unique_ptr<::uds_transport::UdsTransportProtocolHandler > doip_transport_handler