00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 #ifndef OMPL_UTIL_CONSOLE_
00038 #define OMPL_UTIL_CONSOLE_
00039
00040 #include <string>
00041 #include <cstdarg>
00042
00043 namespace ompl
00044 {
00045
00048 namespace msg
00049 {
00050
00055 class Interface
00056 {
00057 public:
00058
00062 explicit
00063 Interface(const std::string &prefix = "");
00064 virtual ~Interface(void);
00065
00068 void setPrefix(const std::string &prefix);
00069
00071 const std::string& getPrefix(void) const;
00072
00074 void inform(const std::string &text) const;
00075
00077 void warn(const std::string &text) const;
00078
00080 void error(const std::string &text) const;
00081
00083 void debug(const std::string &text) const;
00084
00086 void inform(const char *msg, ...) const;
00087
00089 void warn(const char *msg, ...) const;
00090
00092 void error(const char *msg, ...) const;
00093
00095 void debug(const char *msg, ...) const;
00096
00097 protected:
00098
00100 std::string prefix_;
00101 };
00102
00111 class OutputHandler
00112 {
00113 public:
00114
00115 OutputHandler(void)
00116 {
00117 }
00118
00119 virtual ~OutputHandler(void)
00120 {
00121 }
00122
00124 virtual void error(const std::string &text) = 0;
00125
00127 virtual void warn(const std::string &text) = 0;
00128
00130 virtual void inform(const std::string &text) = 0;
00131
00133 virtual void debug(const std::string &text) = 0;
00134 };
00135
00138 class OutputHandlerSTD : public OutputHandler
00139 {
00140 public:
00141
00142 OutputHandlerSTD(void) : OutputHandler()
00143 {
00144 }
00145
00146 virtual void error(const std::string &text);
00147
00148 virtual void warn(const std::string &text);
00149
00150 virtual void inform(const std::string &text);
00151
00152 virtual void debug(const std::string &text);
00153
00154
00155 };
00156
00158 void noOutputHandler(void);
00159
00161 void restorePreviousOutputHandler(void);
00162
00164 void useOutputHandler(OutputHandler *oh);
00165
00167 OutputHandler* getOutputHandler(void);
00168 }
00169
00170 }
00171
00172 #endif