blob: 416045441d08977b2f017580d5b98c43cee922ef [file] [log] [blame]
//===--- iwyu_verrs.h - debug output for include-what-you-use -------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// This module controls logging and verbosity levels for include-what-you-use.
#ifndef DEVTOOLS_MAINTENANCE_INCLUDE_WHAT_YOU_USE_IWYU_VERRS_H_
#define DEVTOOLS_MAINTENANCE_INCLUDE_WHAT_YOU_USE_IWYU_VERRS_H_
#include "llvm/Support/raw_ostream.h"
namespace clang {
class FileEntry;
}
namespace include_what_you_use {
void SetVerboseLevel(int level);
int GetVerboseLevel();
// Returns true if we should print a message at the given verbosity level.
inline bool ShouldPrint(int verbose_level) {
return verbose_level <= GetVerboseLevel();
}
// Returns true if we should print information about a symbol in the
// given file, at the current verbosity level. For instance, at most
// normal verbosities, we don't print information about symbols in
// system header files.
bool ShouldPrintSymbolFromFile(const clang::FileEntry* file);
// VERRS(n) << blah;
// prints blah to errs() if the verbose level is >= n.
#define VERRS(verbose_level) \
if (!::include_what_you_use::ShouldPrint( \
verbose_level)) ; else ::llvm::errs()
} // namespace include_what_you_use
#endif // DEVTOOLS_MAINTENANCE_INCLUDE_WHAT_YOU_USE_IWYU_VERRS_H_