Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
w
x
y
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
Enumerator
a
c
d
e
f
i
l
m
n
o
r
t
u
w
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
i
l
m
n
o
p
q
r
s
t
v
Enumerations
Enumerator
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Related Functions
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
Variables
_
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
Typedefs
b
c
f
h
i
l
p
r
s
t
u
Enumerations
Enumerator
c
d
e
i
o
p
r
s
t
w
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
driver
src
tcp
errorhandler.cpp
Go to the documentation of this file.
1
5
#include <stdio.h>
// for printf() and fprintf()
6
#include <stdlib.h>
// for atoi() and exit()
7
// #include <string.h> // for memset()
8
//#include <backward/iostream.h> // fuer cout()
9
// #include "pthread.h"
10
#include "mutex"
11
#include "
sick_scan/tcp/errorhandler.hpp
"
12
#ifndef ROSSIMU
13
#include "
sick_scan/tcp/Time.hpp
"
14
#endif
15
// Print mutex to print thread-safe
16
// pthread_mutex_t m_printMutex = PTHREAD_MUTEX_INITIALIZER;
17
std::mutex
m_printMutex
;
18
22
void
doNothing
()
23
{
24
}
25
26
30
void
dieWithError
(std::string errorMessage)
31
{
32
{
33
std::lock_guard<std::mutex> printGuard(
m_printMutex
);
34
35
// Mutex setzen
36
// pthread_mutex_lock(&m_printMutex);
37
38
// Nachricht schreiben
39
printError
(errorMessage.c_str());
40
41
// Mutex wieder freigeben
42
// pthread_mutex_unlock(&m_printMutex);
43
}
44
45
// Programm abbrechen
46
exit(1);
47
}
48
52
void
infoMessage
(std::string message,
bool
print
)
53
{
54
if
(
print
==
true
)
55
{
56
#ifndef ROSSIMU
57
Time
t
=
Time::now
();
58
#endif
59
std::lock_guard<std::mutex> printGuard(
m_printMutex
);
60
// Mutex setzen
61
// pthread_mutex_lock(&m_printMutex);
62
63
// Nachricht schreiben
64
#ifndef ROSSIMU
65
printf(
"%s "
,
t
.toString().c_str());
66
#endif
67
printf (
"Info: %s\n"
,
message
.c_str());
68
fflush(0);
69
70
// Mutex wieder freigeben
71
// pthread_mutex_unlock(&m_printMutex);
72
}
73
}
74
75
76
77
//
78
// Warnungs-Text auf die Ausgabe schreiben.
79
//
80
void
printWarning
(std::string message)
81
{
82
#ifndef ROSSIMU
83
Time
t
=
Time::now
();
84
#endif
85
std::lock_guard<std::mutex> printGuard(
m_printMutex
);
86
// Mutex setzen
87
// pthread_mutex_lock(&m_printMutex);
88
89
#ifndef ROSSIMU
90
printf (
"%s "
,
t
.toString().c_str());
91
#endif
92
printf (
"Warning: %s\n"
,
message
.c_str());
93
fflush(0);
94
95
// Mutex wieder freigeben
96
// pthread_mutex_unlock(&m_printMutex);
97
}
98
99
//
100
// Fehler-Text auf die Ausgabe schreiben.
101
//
102
void
printError
(std::string message)
103
{
104
#ifndef ROSSIMU
105
Time
t
=
Time::now
();
106
#endif
107
108
std::lock_guard<std::mutex> printGuard(
m_printMutex
);
109
// Mutex setzen
110
// pthread_mutex_lock(&m_printMutex);
111
112
#ifndef ROSSIMU
113
printf(
"%s "
,
t
.toString().c_str());
114
#endif
115
printf (
"ERROR: %s\n"
,
message
.c_str());
116
fflush(0);
117
118
// Mutex wieder freigeben
119
// pthread_mutex_unlock(&m_printMutex);
120
}
Time::now
static Time now()
Definition:
Time.cpp:193
errorhandler.hpp
doNothing
void doNothing()
Definition:
errorhandler.cpp:22
infoMessage
void infoMessage(std::string message, bool print)
Definition:
errorhandler.cpp:52
roswrap::console::print
ROSCONSOLE_DECL void print(FilterBase *filter, void *logger, Level level, const char *file, int line, const char *function, const char *fmt,...) ROSCONSOLE_PRINTF_ATTRIBUTE(7
Don't call this directly. Use the ROS_LOG() macro instead.
m_printMutex
std::mutex m_printMutex
Definition:
errorhandler.cpp:17
dieWithError
void dieWithError(std::string errorMessage)
Definition:
errorhandler.cpp:30
printWarning
void printWarning(std::string message)
Definition:
errorhandler.cpp:80
message
def message(msg, *args, **kwargs)
printError
void printError(std::string message)
Definition:
errorhandler.cpp:102
Time.hpp
Time
Definition:
Time.hpp:51
t
geometry_msgs::TransformStamped t
sick_scan_xd
Author(s): Michael Lehning
, Jochen Sprickerhof
, Martin Günther
autogenerated on Fri Oct 25 2024 02:47:08