errorhandler.cpp
Go to the documentation of this file.
1 
5 #include <pthread.h>
6 #include <stdio.h> // for printf() and fprintf()
7 #include <stdlib.h> // for atoi() and exit()
8 // #include <string.h> // for memset()
9 //#include <backward/iostream.h> // fuer cout()
10 
11 #include "errorhandler.hpp"
12 #include "Time.hpp"
13 
14 // Print mutex to print thread-safe
15 pthread_mutex_t m_printMutex = PTHREAD_MUTEX_INITIALIZER;
16 
20 void doNothing()
21 {
22 }
23 
24 
28 void dieWithError(std::string errorMessage)
29 {
30  // Mutex setzen
31  pthread_mutex_lock(&m_printMutex);
32 
33  // Nachricht schreiben
34  printError(errorMessage.c_str());
35 
36  // Mutex wieder freigeben
37  pthread_mutex_unlock(&m_printMutex);
38 
39  // Programm abbrechen
40  exit(1);
41 }
42 
46 void infoMessage(std::string message, bool print)
47 {
48  if (print == true)
49  {
50  Time t = Time::now();
51 
52  // Mutex setzen
53  pthread_mutex_lock(&m_printMutex);
54 
55  // Nachricht schreiben
56  printf ("%s ", t.toString().c_str());
57  printf ("Info: %s\n", message.c_str());
58  fflush(0);
59 
60  // Mutex wieder freigeben
61  pthread_mutex_unlock(&m_printMutex);
62  }
63 }
64 
65 
66 
67 //
68 // Warnungs-Text auf die Ausgabe schreiben.
69 //
70 void printWarning(std::string message)
71 {
72  Time t = Time::now();
73 
74  // Mutex setzen
75  pthread_mutex_lock(&m_printMutex);
76 
77  printf ("%s ", t.toString().c_str());
78  printf ("Warning: %s\n", message.c_str());
79  fflush(0);
80 
81  // Mutex wieder freigeben
82  pthread_mutex_unlock(&m_printMutex);
83 }
84 
85 //
86 // Fehler-Text auf die Ausgabe schreiben.
87 //
88 void printError(std::string message)
89 {
90  Time t = Time::now();
91 
92  // Mutex setzen
93  pthread_mutex_lock(&m_printMutex);
94 
95  printf ("%s ", t.toString().c_str());
96  printf ("ERROR: %s\n", message.c_str());
97  fflush(0);
98 
99  // Mutex wieder freigeben
100  pthread_mutex_unlock(&m_printMutex);
101 }
void printError(std::string message)
void doNothing()
Definition: Time.hpp:44
void dieWithError(std::string errorMessage)
void infoMessage(std::string message, bool print)
pthread_mutex_t m_printMutex
static Time now()
Definition: Time.cpp:168
void printWarning(std::string message)
std::string toString() const
Definition: Time.cpp:40


libsick_ldmrs
Author(s): SICK AG , Martin Günther , Jochen Sprickerhof
autogenerated on Wed Oct 26 2022 02:08:38