cmake/Source/cmMessenger.cxx

191 lines
5.3 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmMessenger.h"
#include "cmDocumentationFormatter.h"
2021-09-14 00:13:48 +02:00
#include "cmMessageMetadata.h"
2020-02-01 23:06:01 +01:00
#include "cmStringAlgorithms.h"
2016-10-30 18:24:19 +01:00
#include "cmSystemTools.h"
2020-02-01 23:06:01 +01:00
#if !defined(CMAKE_BOOTSTRAP)
2018-08-09 18:06:22 +02:00
# include "cmsys/SystemInformation.hxx"
2016-10-30 18:24:19 +01:00
#endif
#include <sstream>
2021-09-14 00:13:48 +02:00
#include "cmsys/Terminal.h"
2019-11-11 23:01:05 +01:00
MessageType cmMessenger::ConvertMessageType(MessageType t) const
2016-10-30 18:24:19 +01:00
{
bool warningsAsErrors;
2019-11-11 23:01:05 +01:00
if (t == MessageType::AUTHOR_WARNING || t == MessageType::AUTHOR_ERROR) {
2016-10-30 18:24:19 +01:00
warningsAsErrors = this->GetDevWarningsAsErrors();
2019-11-11 23:01:05 +01:00
if (warningsAsErrors && t == MessageType::AUTHOR_WARNING) {
t = MessageType::AUTHOR_ERROR;
} else if (!warningsAsErrors && t == MessageType::AUTHOR_ERROR) {
t = MessageType::AUTHOR_WARNING;
2016-10-30 18:24:19 +01:00
}
2019-11-11 23:01:05 +01:00
} else if (t == MessageType::DEPRECATION_WARNING ||
t == MessageType::DEPRECATION_ERROR) {
2016-10-30 18:24:19 +01:00
warningsAsErrors = this->GetDeprecatedWarningsAsErrors();
2019-11-11 23:01:05 +01:00
if (warningsAsErrors && t == MessageType::DEPRECATION_WARNING) {
t = MessageType::DEPRECATION_ERROR;
} else if (!warningsAsErrors && t == MessageType::DEPRECATION_ERROR) {
t = MessageType::DEPRECATION_WARNING;
2016-10-30 18:24:19 +01:00
}
}
return t;
}
2019-11-11 23:01:05 +01:00
bool cmMessenger::IsMessageTypeVisible(MessageType t) const
2016-10-30 18:24:19 +01:00
{
bool isVisible = true;
2019-11-11 23:01:05 +01:00
if (t == MessageType::DEPRECATION_ERROR) {
2016-10-30 18:24:19 +01:00
if (!this->GetDeprecatedWarningsAsErrors()) {
isVisible = false;
}
2019-11-11 23:01:05 +01:00
} else if (t == MessageType::DEPRECATION_WARNING) {
2016-10-30 18:24:19 +01:00
if (this->GetSuppressDeprecatedWarnings()) {
isVisible = false;
}
2019-11-11 23:01:05 +01:00
} else if (t == MessageType::AUTHOR_ERROR) {
2016-10-30 18:24:19 +01:00
if (!this->GetDevWarningsAsErrors()) {
isVisible = false;
}
2019-11-11 23:01:05 +01:00
} else if (t == MessageType::AUTHOR_WARNING) {
2016-10-30 18:24:19 +01:00
if (this->GetSuppressDevWarnings()) {
isVisible = false;
}
}
return isVisible;
}
2019-11-11 23:01:05 +01:00
static bool printMessagePreamble(MessageType t, std::ostream& msg)
2016-10-30 18:24:19 +01:00
{
// Construct the message header.
2019-11-11 23:01:05 +01:00
if (t == MessageType::FATAL_ERROR) {
2016-10-30 18:24:19 +01:00
msg << "CMake Error";
2019-11-11 23:01:05 +01:00
} else if (t == MessageType::INTERNAL_ERROR) {
2016-10-30 18:24:19 +01:00
msg << "CMake Internal Error (please report a bug)";
2019-11-11 23:01:05 +01:00
} else if (t == MessageType::LOG) {
2016-10-30 18:24:19 +01:00
msg << "CMake Debug Log";
2019-11-11 23:01:05 +01:00
} else if (t == MessageType::DEPRECATION_ERROR) {
2016-10-30 18:24:19 +01:00
msg << "CMake Deprecation Error";
2019-11-11 23:01:05 +01:00
} else if (t == MessageType::DEPRECATION_WARNING) {
2016-10-30 18:24:19 +01:00
msg << "CMake Deprecation Warning";
2019-11-11 23:01:05 +01:00
} else if (t == MessageType::AUTHOR_WARNING) {
2016-10-30 18:24:19 +01:00
msg << "CMake Warning (dev)";
2019-11-11 23:01:05 +01:00
} else if (t == MessageType::AUTHOR_ERROR) {
2016-10-30 18:24:19 +01:00
msg << "CMake Error (dev)";
} else {
msg << "CMake Warning";
}
return true;
}
2021-09-14 00:13:48 +02:00
static int getMessageColor(MessageType t)
{
switch (t) {
case MessageType::INTERNAL_ERROR:
case MessageType::FATAL_ERROR:
case MessageType::AUTHOR_ERROR:
return cmsysTerminal_Color_ForegroundRed;
case MessageType::AUTHOR_WARNING:
case MessageType::WARNING:
return cmsysTerminal_Color_ForegroundYellow;
default:
return cmsysTerminal_Color_Normal;
}
}
2016-10-30 18:24:19 +01:00
void printMessageText(std::ostream& msg, std::string const& text)
{
msg << ":\n";
cmDocumentationFormatter formatter;
formatter.SetIndent(" ");
formatter.PrintFormatted(msg, text.c_str());
}
2019-11-11 23:01:05 +01:00
void displayMessage(MessageType t, std::ostringstream& msg)
2016-10-30 18:24:19 +01:00
{
// Add a note about warning suppression.
2019-11-11 23:01:05 +01:00
if (t == MessageType::AUTHOR_WARNING) {
2016-10-30 18:24:19 +01:00
msg << "This warning is for project developers. Use -Wno-dev to suppress "
"it.";
2019-11-11 23:01:05 +01:00
} else if (t == MessageType::AUTHOR_ERROR) {
2016-10-30 18:24:19 +01:00
msg << "This error is for project developers. Use -Wno-error=dev to "
2020-02-01 23:06:01 +01:00
"suppress it.";
2016-10-30 18:24:19 +01:00
}
// Add a terminating blank line.
msg << "\n";
2020-02-01 23:06:01 +01:00
#if !defined(CMAKE_BOOTSTRAP)
2016-10-30 18:24:19 +01:00
// Add a C++ stack trace to internal errors.
2019-11-11 23:01:05 +01:00
if (t == MessageType::INTERNAL_ERROR) {
2016-10-30 18:24:19 +01:00
std::string stack = cmsys::SystemInformation::GetProgramStack(0, 0);
if (!stack.empty()) {
if (cmHasLiteralPrefix(stack, "WARNING:")) {
stack = "Note:" + stack.substr(8);
}
msg << stack << "\n";
}
}
#endif
// Output the message.
2021-09-14 00:13:48 +02:00
cmMessageMetadata md;
md.desiredColor = getMessageColor(t);
2019-11-11 23:01:05 +01:00
if (t == MessageType::FATAL_ERROR || t == MessageType::INTERNAL_ERROR ||
t == MessageType::DEPRECATION_ERROR || t == MessageType::AUTHOR_ERROR) {
2016-10-30 18:24:19 +01:00
cmSystemTools::SetErrorOccured();
2021-09-14 00:13:48 +02:00
md.title = "Error";
cmSystemTools::Message(msg.str(), md);
2016-10-30 18:24:19 +01:00
} else {
2021-09-14 00:13:48 +02:00
md.title = "Warning";
cmSystemTools::Message(msg.str(), md);
2016-10-30 18:24:19 +01:00
}
}
2019-11-11 23:01:05 +01:00
void cmMessenger::IssueMessage(MessageType t, const std::string& text,
2016-10-30 18:24:19 +01:00
const cmListFileBacktrace& backtrace) const
{
bool force = false;
if (!force) {
// override the message type, if needed, for warnings and errors
2019-11-11 23:01:05 +01:00
MessageType override = this->ConvertMessageType(t);
2016-10-30 18:24:19 +01:00
if (override != t) {
t = override;
force = true;
}
}
if (!force && !this->IsMessageTypeVisible(t)) {
return;
}
this->DisplayMessage(t, text, backtrace);
}
2019-11-11 23:01:05 +01:00
void cmMessenger::DisplayMessage(MessageType t, const std::string& text,
2016-10-30 18:24:19 +01:00
const cmListFileBacktrace& backtrace) const
{
std::ostringstream msg;
if (!printMessagePreamble(t, msg)) {
return;
}
// Add the immediate context.
backtrace.PrintTitle(msg);
printMessageText(msg, text);
// Add the rest of the context.
backtrace.PrintCallStack(msg);
displayMessage(t, msg);
}