SVHReceiveThread.h
Go to the documentation of this file.
1 //
3 // © Copyright 2022 SCHUNK Mobile Greifsysteme GmbH, Lauffen/Neckar Germany
4 // © Copyright 2022 FZI Forschungszentrum Informatik, Karlsruhe, Germany
5 //
6 // This file is part of the Schunk SVH Library.
7 //
8 // The Schunk SVH Library is free software: you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation, either version 3 of the License, or (at your
11 // option) any later version.
12 //
13 // The Schunk SVH Library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
16 // Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License along with
19 // the Schunk SVH Library. If not, see <https://www.gnu.org/licenses/>.
20 //
22 
23 //----------------------------------------------------------------------
39 //----------------------------------------------------------------------
40 #ifndef DRIVER_SVH_SVH_RECEIVE_THREAD_H_INCLUDED
41 #define DRIVER_SVH_SVH_RECEIVE_THREAD_H_INCLUDED
42 
45 
47 
48 #include <atomic>
49 #include <chrono>
50 #include <functional>
51 #include <memory>
52 
54 
55 namespace driver_svh {
56 
59  std::function<void(const SVHSerialPacket& packet, unsigned int packet_count)>;
60 
68 {
69 public:
76  SVHReceiveThread(const std::chrono::microseconds& idle_sleep,
77  std::shared_ptr<Serial> device,
78  ReceivedPacketCallback const& received_callback);
79 
82 
84  void run();
85 
87  void stop() { m_continue = false; };
88 
90  unsigned int receivedPacketCount() { return m_packets_received; }
91 
97 
98 private:
100  std::atomic<bool> m_continue{true};
101 
103  std::chrono::microseconds m_idle_sleep;
104 
106  std::shared_ptr<Serial> m_serial_device;
107 
109  enum
110  {
120  } typedef tState;
121 
124 
126  uint16_t m_length;
127 
129  uint8_t m_checksum1;
130  uint8_t m_checksum2;
131 
133  std::vector<uint8_t> m_data;
134 
137 
139  std::atomic<unsigned int> m_packets_received;
140 
142  unsigned int m_skipped_bytes;
143 
145  bool receiveData();
146 
149 };
150 
151 } // namespace driver_svh
152 
153 #endif
std::vector< uint8_t > m_data
length of received serial data
tState m_received_state
current state of the state machine
unsigned int m_skipped_bytes
counter for skipped bytes in case no packet is detected
ReceivedPacketCallback m_received_callback
function callback for received packages
bool receiveData()
state machine processing received data
void resetReceivedPackageCount()
resetReceivedPackageCount Resets the received package count to zero. This can be usefull to set all c...
tState
enum for receive packet state machine states
void run()
run method of the thread, executes the main program in an infinite loop
void stop()
stop the run() method
unsigned int receivedPacketCount()
return the count of received packets
uint16_t m_length
length of received serial data
std::function< void(const SVHSerialPacket &packet, unsigned int packet_count)> ReceivedPacketCallback
definition of function callback for received packages
std::shared_ptr< Serial > m_serial_device
pointer to serial device object
Class for receiving messages from the serial device.
driver_svh::ArrayBuilder m_ab
pointer to array builder object for packet receive
Contains a class that enables access to serial devices.
std::chrono::microseconds m_idle_sleep
sleep time during run() if idle
std::atomic< bool > m_continue
Flag to end the run() method from external callers.
uint8_t m_checksum1
Checksum of packet.
Enables acces to serial devices.
Definition: Serial.h:68
SVHReceiveThread(const std::chrono::microseconds &idle_sleep, std::shared_ptr< Serial > device, ReceivedPacketCallback const &received_callback)
SVHReceiveThread Constructs a new Receivethread.
std::atomic< unsigned int > m_packets_received
packets counter


schunk_svh_library
Author(s): Georg Heppner, Lars Pfotzer, Felix Exner, Johannes Mangler, Stefan Scherzinger, Pascal Becker
autogenerated on Fri Apr 14 2023 02:26:23