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__
|
|
|
|
#define ATTRIBUTE_NORETURN __attribute__ ((noreturn))
|
|
|
|
#else
|
|
|
|
#define ATTRIBUTE_NORETURN
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <stdexcept>
|
2011-03-15 19:43:13 +01:00
|
|
|
#include <algorithm>
|
2011-02-23 10:06:05 +01:00
|
|
|
|
2010-11-12 20:32:13 +01: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() {}
|
2011-09-23 10:03:52 +02:00
|
|
|
virtual ~NonCopyable() {}
|
2010-11-12 20:32:13 +01:00
|
|
|
};
|
2010-11-16 20:30:41 +01:00
|
|
|
|
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-02-15 09:20:06 +01:00
|
|
|
struct SourceLineInfo
|
|
|
|
{
|
2012-05-08 20:16:18 +02:00
|
|
|
SourceLineInfo() : line( 0 ){}
|
|
|
|
SourceLineInfo( const std::string& file, std::size_t line )
|
2012-02-15 09:20:06 +01:00
|
|
|
: 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
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-02-23 10:06:05 +01:00
|
|
|
ATTRIBUTE_NORETURN
|
2012-05-09 09:17:51 +02:00
|
|
|
inline void throwLogicError( const std::string& message, const std::string& file, std::size_t line ) {
|
2011-02-23 10:06:05 +01:00
|
|
|
std::ostringstream oss;
|
2012-02-15 09:20:06 +01:00
|
|
|
oss << "Internal Catch error: '" << message << "' at: " << SourceLineInfo( file, line );
|
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
|
|
|
|
|
|
|
#define CATCH_INTERNAL_ERROR( msg ) throwLogicError( msg, __FILE__, __LINE__ );
|
2012-05-08 20:16:18 +02:00
|
|
|
#define CATCH_INTERNAL_LINEINFO ::Catch::SourceLineInfo( __FILE__, __LINE__ )
|
2010-11-12 20:32:13 +01:00
|
|
|
|
2011-02-16 20:02:09 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_COMMON_H_INCLUDED
|
|
|
|
|