2022-01-26 19:02:20 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-06-21 16:41:22 +02:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2022-01-26 19:02:20 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-07-08 21:21:35 +02:00
|
|
|
#include "color.h"
|
2022-01-27 19:03:20 +01:00
|
|
|
|
2021-07-08 21:21:35 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
#include <unistd.h>
|
2022-01-27 19:03:20 +01:00
|
|
|
#include <cstddef>
|
2022-02-01 17:19:19 +01:00
|
|
|
#include <sstream> // IWYU pragma: keep
|
2023-04-08 22:19:52 +02:00
|
|
|
#include <iostream>
|
|
|
|
#endif
|
2021-07-08 21:21:35 +02:00
|
|
|
|
2023-04-08 18:06:38 +02:00
|
|
|
bool gDisableColors = false;
|
|
|
|
|
2023-04-08 22:19:52 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
static bool isStreamATty(const std::ostream & os)
|
2021-07-16 21:55:12 +02:00
|
|
|
{
|
2023-04-08 22:19:52 +02:00
|
|
|
static const bool stdout_tty = isatty(STDOUT_FILENO);
|
|
|
|
static const bool stderr_tty = isatty(STDERR_FILENO);
|
|
|
|
if (&os == &std::cout)
|
|
|
|
return stdout_tty;
|
|
|
|
if (&os == &std::cerr)
|
|
|
|
return stderr_tty;
|
|
|
|
return (stdout_tty && stderr_tty);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-09-11 20:40:39 +02:00
|
|
|
std::ostream& operator<<(std::ostream & os, Color c)
|
2021-07-08 21:21:35 +02:00
|
|
|
{
|
2023-04-08 22:19:52 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
if (!gDisableColors && isStreamATty(os))
|
2021-07-08 21:21:35 +02:00
|
|
|
return os << "\033[" << static_cast<std::size_t>(c) << "m";
|
2023-04-08 22:19:52 +02:00
|
|
|
#else
|
|
|
|
(void)c;
|
2021-07-08 21:21:35 +02:00
|
|
|
#endif
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2023-09-11 20:40:39 +02:00
|
|
|
std::string toString(Color c)
|
2021-07-08 21:21:35 +02:00
|
|
|
{
|
2023-04-08 22:19:52 +02:00
|
|
|
#ifndef _WIN32
|
2021-07-08 21:21:35 +02:00
|
|
|
std::stringstream ss;
|
|
|
|
ss << c;
|
|
|
|
return ss.str();
|
2023-04-08 22:19:52 +02:00
|
|
|
#else
|
|
|
|
(void)c;
|
|
|
|
return "";
|
|
|
|
#endif
|
2021-07-08 21:21:35 +02:00
|
|
|
}
|
|
|
|
|