2012-02-25 21:36:22 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 25/2/2012.
|
|
|
|
* Copyright 2012 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_CONSOLE_COLOUR_IMPL_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_CONSOLE_COLOUR_IMPL_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "catch_console_colour.hpp"
|
|
|
|
|
2013-03-11 19:38:29 +01:00
|
|
|
#if defined ( CATCH_PLATFORM_WINDOWS ) /////////////////////////////////////////
|
2013-03-04 12:19:15 +01:00
|
|
|
|
2013-03-11 19:38:29 +01:00
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
using namespace Catch;
|
|
|
|
|
|
|
|
WORD mapConsoleColour( IConsoleColourCodes::Colours colour ) {
|
2013-03-29 22:39:43 +01:00
|
|
|
enum Win32Colours {
|
|
|
|
Grey = FOREGROUND_INTENSITY,
|
|
|
|
BrightRed = FOREGROUND_RED | FOREGROUND_INTENSITY,
|
|
|
|
BrightGreen = FOREGROUND_GREEN | FOREGROUND_INTENSITY,
|
|
|
|
DarkGreen = FOREGROUND_GREEN,
|
|
|
|
Turquoise = FOREGROUND_BLUE | FOREGROUND_GREEN,
|
|
|
|
Yellow = FOREGROUND_RED | FOREGROUND_GREEN
|
|
|
|
};
|
2013-03-11 19:38:29 +01:00
|
|
|
switch( colour ) {
|
2013-03-29 22:39:43 +01:00
|
|
|
case IConsoleColourCodes::FileName: return Grey;
|
|
|
|
case IConsoleColourCodes::ResultError: return BrightRed;
|
|
|
|
case IConsoleColourCodes::ResultSuccess: return BrightGreen;
|
|
|
|
case IConsoleColourCodes::Error: return BrightRed;
|
|
|
|
case IConsoleColourCodes::Success: return DarkGreen;
|
|
|
|
case IConsoleColourCodes::OriginalExpression: return Turquoise;
|
|
|
|
case IConsoleColourCodes::ReconstructedExpression: return Yellow;
|
|
|
|
case IConsoleColourCodes::SecondaryText: return Grey;
|
2013-03-11 19:38:29 +01:00
|
|
|
default: return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct WindowsConsoleColourCodes : IConsoleColourCodes {
|
|
|
|
|
|
|
|
WindowsConsoleColourCodes()
|
|
|
|
: hStdout( GetStdHandle(STD_OUTPUT_HANDLE) ),
|
|
|
|
wOldColorAttrs( 0 )
|
|
|
|
{
|
|
|
|
GetConsoleScreenBufferInfo( hStdout, &csbiInfo );
|
|
|
|
wOldColorAttrs = csbiInfo.wAttributes;
|
|
|
|
}
|
|
|
|
|
|
|
|
~WindowsConsoleColourCodes() {
|
|
|
|
SetConsoleTextAttribute( hStdout, wOldColorAttrs );
|
|
|
|
}
|
|
|
|
|
|
|
|
void set( Colours colour ) {
|
|
|
|
WORD consoleColour = mapConsoleColour( colour );
|
|
|
|
if( consoleColour > 0 )
|
|
|
|
SetConsoleTextAttribute( hStdout, consoleColour );
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE hStdout;
|
|
|
|
CONSOLE_SCREEN_BUFFER_INFO csbiInfo;
|
|
|
|
WORD wOldColorAttrs;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline bool shouldUseColourForPlatform() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef WindowsConsoleColourCodes PlatformConsoleColourCodes;
|
|
|
|
|
|
|
|
} // end anon namespace
|
|
|
|
|
|
|
|
#else // Not Windows - assumed to be POSIX compatible //////////////////////////
|
2012-10-31 19:04:22 +01:00
|
|
|
|
|
|
|
#include <unistd.h>
|
2012-02-25 21:36:22 +01:00
|
|
|
|
2013-03-11 19:38:29 +01:00
|
|
|
namespace {
|
|
|
|
using namespace Catch;
|
2012-02-25 21:36:22 +01:00
|
|
|
|
2012-10-31 19:04:22 +01:00
|
|
|
// use POSIX/ ANSI console terminal codes
|
2012-10-29 21:46:45 +01:00
|
|
|
// Implementation contributed by Adam Strzelecki (http://github.com/nanoant)
|
|
|
|
// https://github.com/philsquared/Catch/pull/131
|
2013-03-29 22:39:43 +01:00
|
|
|
|
|
|
|
const char* WhiteOrNormal = "[0m";
|
|
|
|
const char* BoldRed = "[1;31m";
|
|
|
|
const char* BoldGreen = "[1;32m";
|
|
|
|
const char* Green = "[0;32m";
|
|
|
|
const char* Cyan = "[0;36m";
|
|
|
|
const char* Yellow = "[0;33m";
|
|
|
|
const char* LightGrey = "[0;37m";
|
2013-03-29 22:55:19 +01:00
|
|
|
// const char* DarkGrey = "[1;30m";
|
2013-03-29 22:39:43 +01:00
|
|
|
|
2013-03-11 19:38:29 +01:00
|
|
|
struct AnsiConsoleColourCodes : IConsoleColourCodes {
|
2012-10-29 21:46:45 +01:00
|
|
|
|
2013-03-11 19:38:29 +01:00
|
|
|
~AnsiConsoleColourCodes() {
|
|
|
|
set( None );
|
|
|
|
}
|
2012-10-31 19:04:22 +01:00
|
|
|
|
2013-03-29 22:39:43 +01:00
|
|
|
const char* escapeCodeForColour( Colours colour ) {
|
2012-10-29 21:46:45 +01:00
|
|
|
switch( colour ) {
|
2013-03-29 22:39:43 +01:00
|
|
|
case FileName: return WhiteOrNormal;
|
|
|
|
case ResultError: return BoldRed;
|
|
|
|
case ResultSuccess: return BoldGreen;
|
|
|
|
case Error: return BoldRed;
|
|
|
|
case Success: return Green;
|
|
|
|
case OriginalExpression: return Cyan;
|
|
|
|
case ReconstructedExpression: return Yellow;
|
|
|
|
case SecondaryText: return LightGrey;
|
|
|
|
case None: return WhiteOrNormal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void set( Colours colour ) {
|
|
|
|
std::cout << '\033' << escapeCodeForColour( colour );
|
2012-10-29 21:46:45 +01:00
|
|
|
}
|
2013-03-11 19:38:29 +01:00
|
|
|
};
|
2012-10-31 19:04:22 +01:00
|
|
|
|
2013-03-11 19:38:29 +01:00
|
|
|
inline bool shouldUseColourForPlatform() {
|
|
|
|
return isatty( fileno(stdout) );
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef AnsiConsoleColourCodes PlatformConsoleColourCodes;
|
|
|
|
|
2012-10-31 19:04:22 +01:00
|
|
|
} // namespace Catch
|
|
|
|
|
2013-03-11 19:38:29 +01:00
|
|
|
#endif // not Windows
|
2012-10-29 21:46:45 +01:00
|
|
|
|
2013-03-11 19:38:29 +01:00
|
|
|
namespace {
|
|
|
|
struct NoConsoleColourCodes : IConsoleColourCodes {
|
|
|
|
void set( Colours ) {}
|
|
|
|
};
|
|
|
|
}
|
2012-05-16 09:02:20 +02:00
|
|
|
|
2012-10-31 19:04:22 +01:00
|
|
|
namespace Catch {
|
|
|
|
|
2013-03-11 19:38:29 +01:00
|
|
|
TextColour::TextColour( Colours colour ) : m_impl( NULL ) {
|
|
|
|
static bool s_shouldUseColour = shouldUseColourForPlatform() &&
|
|
|
|
!isDebuggerActive();
|
|
|
|
if( s_shouldUseColour )
|
|
|
|
m_impl = new PlatformConsoleColourCodes();
|
|
|
|
else
|
|
|
|
m_impl = new NoConsoleColourCodes();
|
|
|
|
|
2012-02-25 21:36:22 +01:00
|
|
|
if( colour )
|
2013-03-11 19:38:29 +01:00
|
|
|
set( colour );
|
2012-02-25 21:36:22 +01:00
|
|
|
}
|
2012-05-16 09:02:20 +02:00
|
|
|
|
|
|
|
TextColour::~TextColour() {
|
2012-02-25 21:36:22 +01:00
|
|
|
delete m_impl;
|
|
|
|
}
|
2012-05-16 09:02:20 +02:00
|
|
|
|
|
|
|
void TextColour::set( Colours colour ) {
|
2012-02-25 21:36:22 +01:00
|
|
|
m_impl->set( colour );
|
|
|
|
}
|
|
|
|
|
2012-10-31 19:04:22 +01:00
|
|
|
} // end namespace Catch
|
|
|
|
|
2012-02-25 21:36:22 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_CONSOLE_COLOUR_IMPL_HPP_INCLUDED
|