Go to the documentation of this file.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
00040 #ifndef __UTILITY_BASE_H__
00041 #define __UTILITY_BASE_H__
00042
00043
00044
00045 #include <iostream>
00046 #include <string>
00047 #include <fstream>
00048
00049
00050 #include <Types.h>
00051 #include <ForwardDeclarations.h>
00052
00053
00054 namespace beliefstate {
00055 class UtilityBase {
00056 private:
00057 static bool m_bRedirectOutput;
00058 std::string m_strMessagePrefixLabel;
00059 bool m_bOnlyDisplayImportant;
00060
00061 public:
00062 UtilityBase();
00063 ~UtilityBase();
00064
00065 void setMessagePrefixLabel(std::string strMessagePrefixLabel);
00066 std::string messagePrefixLabel();
00067
00068 void coloredText(std::string strText, std::string strColorValue, bool bBold = false, bool bImportant = false);
00069 virtual void success(std::string strMessage, bool bImportant = false);
00070 virtual void info(std::string strMessage, bool bImportant = false);
00071 virtual void warn(std::string strMessage, bool bImportant = false);
00072 virtual void fail(std::string strMessage, bool bImportant = false);
00073
00074 void setOnlyDisplayImportant(bool bOnly);
00075 bool onlyDisplayImportant();
00076
00077 bool fileExists(std::string strFileName);
00078
00079 std::string stripPostfix(std::string strString, std::string strPostfix);
00080
00081 void outputColoredStatusMessage(StatusMessage msgStatus);
00082 void setRedirectOutput(bool bRedirect);
00083
00093 void replaceStringInPlace(string& subject, const std::string& search, const std::string& replace);
00094
00095 int getTimeStamp();
00096 std::string getTimeStampStr();
00097
00098 std::string str(float fValue);
00099 std::string str(double dValue);
00100 std::string str(int nValue);
00101 };
00102 }
00103
00104
00105 #endif