transport.h
Go to the documentation of this file.
1 // Copyright 2019 Fraunhofer IPA
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <boost/array.hpp>
18 #include <boost/asio.hpp>
19 #include <boost/optional.hpp>
20 
22 
23 class Transport
24 {
25 public:
26  virtual bool connect() = 0;
27  virtual bool disconnect() = 0;
28  virtual bool read(boost::array<uint8_t, 4096>& buf, size_t& len) = 0;
29  virtual bool readWithTimeout(boost::array<uint8_t, 4096>& buf, size_t& len, const uint32_t expiry_time) = 0;
30 
31  Transport(std::string address, transport_type typ) : address_(std::move(address)), type_(typ), is_connected_(false)
32  {
33  }
34 
35  void set_port(std::string port)
36  {
37  port_ = std::move(port);
38  }
39 
40  std::string get_port()
41  {
42  return port_;
43  }
44 
45  std::string get_host_ip()
46  {
47  return host_ip_;
48  }
49 
50  std::string get_device_ip()
51  {
52  return address_;
53  }
54 
56  {
57  return type_;
58  }
59 
60  bool is_connected()
61  {
62  return is_connected_;
63  }
64 
65 protected:
66  std::string address_;
67  std::string host_ip_;
68  std::string port_;
71  std::shared_ptr<boost::asio::io_service> io_service_;
72  std::shared_ptr<boost::asio::deadline_timer> timer_;
73  boost::optional<boost::system::error_code> timer_result_;
74 };
bool is_connected_
Definition: transport.h:69
Transport(std::string address, transport_type typ)
Definition: transport.h:31
boost::optional< boost::system::error_code > timer_result_
Definition: transport.h:73
std::shared_ptr< boost::asio::deadline_timer > timer_
Definition: transport.h:72
virtual bool connect()=0
bool is_connected()
Definition: transport.h:60
std::string host_ip_
Definition: transport.h:67
std::string address_
Definition: transport.h:66
std::string get_device_ip()
Definition: transport.h:50
transport_type
transport_type type_
Definition: transport.h:70
virtual bool readWithTimeout(boost::array< uint8_t, 4096 > &buf, size_t &len, const uint32_t expiry_time)=0
std::string port_
Definition: transport.h:68
void set_port(std::string port)
Definition: transport.h:35
std::shared_ptr< boost::asio::io_service > io_service_
Definition: transport.h:71
transport_type get_type()
Definition: transport.h:55
virtual bool disconnect()=0
void move(std::vector< T > &a, std::vector< T > &b)
std::string get_port()
Definition: transport.h:40
std::string get_host_ip()
Definition: transport.h:45
virtual bool read(boost::array< uint8_t, 4096 > &buf, size_t &len)=0


pf_driver
Author(s): Harsh Deshpande
autogenerated on Fri Feb 24 2023 03:59:35