toolbox.hpp
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
6 #ifndef TOOLBOX_HPP
7 #define TOOLBOX_HPP
8 
9 #include <stdio.h> /* for printf() and fprintf() */
10 #ifdef _MSC_VER
11 #include <winsock2.h>
12 #else
13 #include <sys/socket.h> /* for socket(), bind(), and connect() */
14 #include <arpa/inet.h> /* for sockaddr_in and inet_ntoa() */
15 #endif
16 #include <stdlib.h> /* for atoi() and exit() */
17 #include <string.h> /* for memset() */
18 #include "sick_scan/tcp/BasicDatatypes.hpp" // for PI
19 
20 // Konvertierung eines Hex-Zeichens -> Zahlenwert.
21 int hexCharToValue(char c);
22 
23 // Konvertierung Zahlenwert (0-15) -> Hex-Zeichen.
24 char convertNibbleToHexChar(int value, bool useLowerCaseLetters = false);
25 
26 // Konvertiert Byte (0-255) in Hex-String 00-FF
27 void convertUINT8toHexString(UINT8 byte, char* buffer);
28 
29 // Konvertiert 3 Byte-Werte (RGB) in einen char-String
30 void convertRGBtoHexString(UINT8 r, UINT8 g, UINT8 b, char* buffer);
31 
32 // Bringt den Winkel in den Bereich ]PI..-PI]
33 double makeAngleValid(double angle);
34 
35 // Konvertiere eine IP-Adresse (IPv4)+Port in einen String
36 std::string ipTargetToString(UINT32 ipAddress, UINT16 port);
37 // Konvertiere eine reine IP-Adresse (IPv4), ohne Port, in einen String
38 std::string ipAdrToString(UINT32 ipAddress);
39 
40 // Konvertiere einen String (IP-Adresse (IPv4)+Port) in seine Bestandteile.
41 // Enthaelt der String keinen Port, bleibt dieser unveraendert.
42 void stringToIpTarget(std::string ipAdrStr, UINT32& ipAddress, UINT16& port);
43 
44 // Konvertiere eine Integer-Zahl in einen Hex-String
45 std::string toHexString(UINT32 val);
46 std::string toHexString(UINT16 val);
47 std::string toHexString(UINT8 val);
48 std::string toHexStringNbble(UINT8 val);
49 
50 // Konvertiere eine Integer-Zahl in einen String
51 std::string toString(UINT32 val);
52 std::string toString(INT32 val);
53 #if INTPTR_MAX != INT32_MAX
54 std::string toString(size_t val);
55 #endif
56 
57 // Konvertiere eine Gleitkomma-Zahl in einen String
58 std::string toString(double val, int digits_after_decimal_point);
59 std::string doubleToString(double val, int digits_after_decimal_point);
60 std::string doubleToString(double val, int digits_before_decimal_point, int digits_after_decimal_point);
61 
62 // Converts a length in [m] to a string with feet and inches. Intended for text output.
63 std::string convertMeterToFeetAndInch(double m);
64 
65 // Konvertiere einen String in eine Zahl
66 UINT16 fromString(const std::string& text);
67 
68 // Konvertiere einen String in Kleinbuchstaben
69 std::string toLower(const std::string& text);
70 
71 //
72 // Write a binary trace output, e.g. of buffer contents.
73 // Can be used for debugging.
74 //
75 void traceBuffer(std::string headerText, BYTE* buffer, UINT32 len);
76 
77 //
78 // Access functions for binary data in buffers (big endian format)
79 //
80 UINT32 memread_UINT32(BYTE*& buffer);
81 UINT16 memread_UINT16(BYTE*& buffer);
82 UINT8 memread_UINT8(BYTE*& buffer);
83 INT32 memread_INT32(BYTE*& buffer);
84 INT16 memread_INT16(BYTE*& buffer);
85 float memread_float(BYTE*& buffer);
86 std::string memread_string(BYTE*& buffer, UINT16 length);
87 
88 void memwrite_float(BYTE*& buffer, float value);
89 void memwrite_INT32(BYTE*& buffer, INT32 value);
90 void memwrite_UINT32(BYTE*& buffer, UINT32 value);
91 void memwrite_INT16(BYTE*& buffer, INT16 value);
92 void memwrite_UINT16(BYTE*& buffer, UINT16 value);
93 void memwrite_INT8(BYTE*& buffer, INT8 value);
94 void memwrite_UINT8(BYTE*& buffer, UINT8 value);
95 void memwrite_string(BYTE*& buffer, std::string text);
96 
97 #endif // TOOLBOX_HPP
UINT16
uint16_t UINT16
Definition: BasicDatatypes.hpp:73
UINT8
uint8_t UINT8
Definition: BasicDatatypes.hpp:75
toHexString
std::string toHexString(UINT32 val)
Definition: toolbox.cpp:79
INT16
int16_t INT16
Definition: BasicDatatypes.hpp:74
memread_string
std::string memread_string(BYTE *&buffer, UINT16 length)
Definition: toolbox.cpp:506
memwrite_INT16
void memwrite_INT16(BYTE *&buffer, INT16 value)
Definition: toolbox.cpp:575
BasicDatatypes.hpp
BYTE
unsigned char BYTE
toLower
std::string toLower(const std::string &text)
Definition: toolbox.cpp:109
memread_INT32
INT32 memread_INT32(BYTE *&buffer)
Definition: toolbox.cpp:493
INT8
int8_t INT8
Definition: BasicDatatypes.hpp:76
hexCharToValue
int hexCharToValue(char c)
Definition: toolbox.cpp:181
doubleToString
std::string doubleToString(double val, int digits_after_decimal_point)
Definition: toolbox.cpp:352
INT32
int32_t INT32
Definition: BasicDatatypes.hpp:71
toString
std::string toString(UINT32 val)
Definition: toolbox.cpp:289
memread_UINT32
UINT32 memread_UINT32(BYTE *&buffer)
Definition: toolbox.cpp:447
convertUINT8toHexString
void convertUINT8toHexString(UINT8 byte, char *buffer)
Definition: toolbox.cpp:235
memwrite_INT8
void memwrite_INT8(BYTE *&buffer, INT8 value)
Definition: toolbox.cpp:603
memread_float
float memread_float(BYTE *&buffer)
Definition: toolbox.cpp:531
memread_INT16
INT16 memread_INT16(BYTE *&buffer)
Definition: toolbox.cpp:482
fromString
UINT16 fromString(const std::string &text)
Definition: toolbox.cpp:166
makeAngleValid
double makeAngleValid(double angle)
Definition: toolbox.cpp:260
stringToIpTarget
void stringToIpTarget(std::string ipAdrStr, UINT32 &ipAddress, UINT16 &port)
Definition: toolbox.cpp:373
convertNibbleToHexChar
char convertNibbleToHexChar(int value, bool useLowerCaseLetters=false)
Definition: toolbox.cpp:205
memwrite_UINT8
void memwrite_UINT8(BYTE *&buffer, UINT8 value)
Definition: toolbox.cpp:594
memread_UINT16
UINT16 memread_UINT16(BYTE *&buffer)
Definition: toolbox.cpp:461
sick_scan_xd_api_test.c
c
Definition: sick_scan_xd_api_test.py:445
memwrite_UINT32
void memwrite_UINT32(BYTE *&buffer, UINT32 value)
Definition: toolbox.cpp:562
memwrite_float
void memwrite_float(BYTE *&buffer, float value)
Definition: toolbox.cpp:542
convertMeterToFeetAndInch
std::string convertMeterToFeetAndInch(double m)
Definition: toolbox.cpp:133
sick_scan_base.h
ipTargetToString
std::string ipTargetToString(UINT32 ipAddress, UINT16 port)
Definition: toolbox.cpp:415
UINT32
uint32_t UINT32
Definition: BasicDatatypes.hpp:72
traceBuffer
void traceBuffer(std::string headerText, BYTE *buffer, UINT32 len)
Definition: toolbox.cpp:28
memread_UINT8
UINT8 memread_UINT8(BYTE *&buffer)
Definition: toolbox.cpp:472
convertRGBtoHexString
void convertRGBtoHexString(UINT8 r, UINT8 g, UINT8 b, char *buffer)
Definition: toolbox.cpp:248
toHexStringNbble
std::string toHexStringNbble(UINT8 val)
memwrite_string
void memwrite_string(BYTE *&buffer, std::string text)
Definition: toolbox.cpp:612
memwrite_INT32
void memwrite_INT32(BYTE *&buffer, INT32 value)
Definition: toolbox.cpp:553
memwrite_UINT16
void memwrite_UINT16(BYTE *&buffer, UINT16 value)
Definition: toolbox.cpp:584
ipAdrToString
std::string ipAdrToString(UINT32 ipAddress)
Definition: toolbox.cpp:432


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:12