生成详细输出的好习惯是什么?

时间:2009-08-10 15:28:49

标签: c++ verbosity

生成详细输出的好习惯是什么?目前,我有一个功能

bool verbose;
int setVerbose(bool v)
{
    errormsg = "";
    verbose = v;
    if (verbose == v)
        return 0;
    else
        return -1;
}

每当我想生成输出时,我会做类似

的事情
if (debug)
     std::cout << "deleting interp" << std::endl;
但是,我认为这不是很优雅。所以我想知道实施这种冗长转换的好方法是什么?

5 个答案:

答案 0 :(得分:12)

最简单的方法是按如下方式创建小类(这里是Unicode版本,但您可以轻松地将其更改为单字节版本):

#include <sstream>
#include <boost/format.hpp>
#include <iostream>
using namespace std;

enum log_level_t {
    LOG_NOTHING,
    LOG_CRITICAL,
    LOG_ERROR,
    LOG_WARNING,
    LOG_INFO,
    LOG_DEBUG
};

namespace log_impl {
class formatted_log_t {
public:
    formatted_log_t( log_level_t level, const wchar_t* msg ) : fmt(msg), level(level) {}
    ~formatted_log_t() {
        // GLOBAL_LEVEL is a global variable and could be changed at runtime
        // Any customization could be here
        if ( level <= GLOBAL_LEVEL ) wcout << level << L" " << fmt << endl;
    }        
    template <typename T> 
    formatted_log_t& operator %(T value) {
        fmt % value;
        return *this;
    }    
protected:
    log_level_t     level;
    boost::wformat      fmt;
};
}//namespace log_impl
// Helper function. Class formatted_log_t will not be used directly.
template <log_level_t level>
log_impl::formatted_log_t log(const wchar_t* msg) {
    return log_impl::formatted_log_t( level, msg );
}

帮助函数log是模板,以获得良好的调用语法。然后它可以按以下方式使用:

int main ()
{
    // Log level is clearly separated from the log message
    log<LOG_DEBUG>(L"TEST %3% %2% %1%") % 5 % 10 % L"privet";
    return 0;
}

您可以通过更改全局GLOBAL_LEVEL变量来更改运行时的详细级别。

答案 1 :(得分:9)

int threshold = 3;
class mystreambuf: public std::streambuf
{
};
mystreambuf nostreambuf;
std::ostream nocout(&nostreambuf);
#define log(x) ((x >= threshold)? std::cout : nocout)

int main()
{
    log(1) << "No hello?" << std::endl;     // Not printed on console, too low log level.
    log(5) << "Hello world!" << std::endl;  // Will print.
    return 0;
}

答案 2 :(得分:3)

您可以使用log4cpp

答案 3 :(得分:3)

您可以将您的功能包装在支持&lt;&lt;&lt;&lt;运算符,允许您执行类似

的操作
class Trace {
   public:
      enum { Enable, Disable } state;
   // ...
   operator<<(...)
};

然后你可以做类似

的事情
trace << Trace::Enable;
trace << "deleting interp"

答案 4 :(得分:3)

1。如果您使用的是g ++,可以使用-D标志,这样可以让编译器定义您选择的宏。

定义

例如:

#ifdef DEBUG_FLAG
 printf("My error message");
#endif

2。我同意这也不优雅,所以为了让它更好一点:

void verbose(const char * fmt, ... )
{
va_list args;  /* Used as a pointer to the next variable argument. */
va_start( args, fmt );  /* Initialize the pointer to arguments. */

#ifdef DEBUG_FLAG
printf(fmt, &args);  
#endif
/*This isn't tested, the point is to be able to pass args to 
printf*/
}

你可以使用像printf:

verbose("Error number %d\n",errorno);

3。第三种解决方案更容易,而更多的C ++和Unix就是将一个参数传递给你的程序,该程序将用作早期的宏 - 初始化一个特定的变量(即可能是一个全球常量。)

示例: $ ./myprogram -v

if(optarg('v')) static const verbose = 1;