2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 29/10/2010.
|
|
|
|
* Copyright 2010 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_COMMON_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_COMMON_H_INCLUDED
|
|
|
|
|
2010-11-10 08:42:15 +01:00
|
|
|
#define INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line ) name##line
|
|
|
|
#define INTERNAL_CATCH_UNIQUE_NAME_LINE( name, line ) INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line )
|
|
|
|
#define INTERNAL_CATCH_UNIQUE_NAME( name ) INTERNAL_CATCH_UNIQUE_NAME_LINE( name, __LINE__ )
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2011-03-18 15:39:58 +01:00
|
|
|
#define INTERNAL_CATCH_STRINGIFY2( expr ) #expr
|
|
|
|
#define INTERNAL_CATCH_STRINGIFY( expr ) INTERNAL_CATCH_STRINGIFY2( expr )
|
|
|
|
|
2011-02-23 10:06:05 +01:00
|
|
|
#ifdef __GNUC__
|
2012-08-13 08:46:10 +02:00
|
|
|
#define CATCH_ATTRIBUTE_NORETURN __attribute__ ((noreturn))
|
2011-02-23 10:06:05 +01:00
|
|
|
#else
|
2012-08-13 08:46:10 +02:00
|
|
|
#define CATCH_ATTRIBUTE_NORETURN
|
2011-02-23 10:06:05 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <stdexcept>
|
2011-03-15 19:43:13 +01:00
|
|
|
#include <algorithm>
|
2011-02-23 10:06:05 +01:00
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
2012-05-08 20:16:18 +02:00
|
|
|
class NonCopyable {
|
2010-11-12 20:32:13 +01:00
|
|
|
NonCopyable( const NonCopyable& );
|
|
|
|
void operator = ( const NonCopyable& );
|
|
|
|
protected:
|
2012-05-08 20:16:18 +02:00
|
|
|
NonCopyable() {}
|
2012-08-13 08:46:10 +02:00
|
|
|
virtual ~NonCopyable();
|
2010-11-12 20:32:13 +01:00
|
|
|
};
|
2010-11-16 20:30:41 +01:00
|
|
|
|
2012-05-31 20:40:26 +02:00
|
|
|
class SafeBool {
|
|
|
|
public:
|
|
|
|
typedef void (SafeBool::*type)() const;
|
|
|
|
|
|
|
|
static type makeSafe( bool value ) {
|
|
|
|
return value ? &SafeBool::trueValue : 0;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
void trueValue() const {}
|
|
|
|
};
|
|
|
|
|
2011-01-27 00:23:33 +01:00
|
|
|
template<typename ContainerT>
|
2012-05-08 20:16:18 +02:00
|
|
|
inline void deleteAll( ContainerT& container ) {
|
2011-01-27 00:23:33 +01:00
|
|
|
typename ContainerT::const_iterator it = container.begin();
|
|
|
|
typename ContainerT::const_iterator itEnd = container.end();
|
|
|
|
for(; it != itEnd; ++it )
|
|
|
|
{
|
|
|
|
delete *it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
template<typename AssociativeContainerT>
|
2012-05-08 20:16:18 +02:00
|
|
|
inline void deleteAllValues( AssociativeContainerT& container ) {
|
2011-01-27 00:23:33 +01:00
|
|
|
typename AssociativeContainerT::const_iterator it = container.begin();
|
|
|
|
typename AssociativeContainerT::const_iterator itEnd = container.end();
|
|
|
|
for(; it != itEnd; ++it )
|
|
|
|
{
|
|
|
|
delete it->second;
|
|
|
|
}
|
|
|
|
}
|
2011-02-23 10:06:05 +01:00
|
|
|
|
2011-03-11 20:44:59 +01:00
|
|
|
template<typename ContainerT, typename Function>
|
2012-05-08 20:16:18 +02:00
|
|
|
inline void forEach( ContainerT& container, Function function ) {
|
2011-03-11 20:44:59 +01:00
|
|
|
std::for_each( container.begin(), container.end(), function );
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename ContainerT, typename Function>
|
2012-05-08 20:16:18 +02:00
|
|
|
inline void forEach( const ContainerT& container, Function function ) {
|
2011-03-11 20:44:59 +01:00
|
|
|
std::for_each( container.begin(), container.end(), function );
|
|
|
|
}
|
2012-08-23 21:08:50 +02:00
|
|
|
|
|
|
|
inline bool startsWith( const std::string& s, const std::string& prefix ) {
|
|
|
|
return s.size() >= prefix.size() && s.substr( 0, prefix.size() ) == prefix;
|
|
|
|
}
|
2011-03-11 20:44:59 +01:00
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
struct SourceLineInfo {
|
|
|
|
|
2012-05-08 20:16:18 +02:00
|
|
|
SourceLineInfo() : line( 0 ){}
|
2012-05-11 20:05:53 +02:00
|
|
|
SourceLineInfo( const std::string& _file, std::size_t _line )
|
|
|
|
: file( _file ),
|
|
|
|
line( _line )
|
2012-02-15 09:20:06 +01:00
|
|
|
{}
|
2012-07-05 19:37:58 +02:00
|
|
|
SourceLineInfo( const std::string& _function, const std::string& _file, std::size_t _line )
|
|
|
|
: function( _function ),
|
|
|
|
file( _file ),
|
|
|
|
line( _line )
|
|
|
|
{}
|
2012-05-08 20:16:18 +02:00
|
|
|
SourceLineInfo( const SourceLineInfo& other )
|
|
|
|
: file( other.file ),
|
|
|
|
line( other.line )
|
|
|
|
{}
|
|
|
|
void swap( SourceLineInfo& other ){
|
|
|
|
file.swap( other.file );
|
|
|
|
std::swap( line, other.line );
|
|
|
|
}
|
2012-02-15 09:20:06 +01:00
|
|
|
|
2012-07-05 19:37:58 +02:00
|
|
|
std::string function;
|
2012-02-15 09:20:06 +01:00
|
|
|
std::string file;
|
|
|
|
std::size_t line;
|
|
|
|
};
|
|
|
|
|
2012-05-08 20:16:18 +02:00
|
|
|
inline std::ostream& operator << ( std::ostream& os, const SourceLineInfo& info ) {
|
2012-02-15 09:20:06 +01:00
|
|
|
#ifndef __GNUG__
|
|
|
|
os << info.file << "(" << info.line << "): ";
|
|
|
|
#else
|
|
|
|
os << info.file << ":" << info.line << ": ";
|
|
|
|
#endif
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2012-08-13 08:46:10 +02:00
|
|
|
CATCH_ATTRIBUTE_NORETURN
|
|
|
|
inline void throwLogicError( const std::string& message, const SourceLineInfo& locationInfo ) {
|
2011-02-23 10:06:05 +01:00
|
|
|
std::ostringstream oss;
|
2012-08-13 08:46:10 +02:00
|
|
|
oss << "Internal Catch error: '" << message << "' at: " << locationInfo;
|
2011-02-23 10:06:05 +01:00
|
|
|
throw std::logic_error( oss.str() );
|
|
|
|
}
|
2010-11-12 20:32:13 +01:00
|
|
|
}
|
2011-02-23 10:06:05 +01:00
|
|
|
|
2012-08-13 08:46:10 +02:00
|
|
|
#define CATCH_INTERNAL_LINEINFO ::Catch::SourceLineInfo( __FILE__, static_cast<std::size_t>( __LINE__ ) )
|
|
|
|
#define CATCH_INTERNAL_ERROR( msg ) ::Catch::throwLogicError( msg, CATCH_INTERNAL_LINEINFO );
|
2010-11-12 20:32:13 +01:00
|
|
|
|
2011-02-16 20:02:09 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_COMMON_H_INCLUDED
|
|
|
|
|