2011-01-18 10:20:06 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 17/01/2011.
|
|
|
|
* Copyright 2011 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_STREAM_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_STREAM_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include <stdexcept>
|
2011-02-02 20:45:59 +01:00
|
|
|
#include <cstdio>
|
2011-01-18 10:20:06 +01:00
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
2011-01-18 10:20:06 +01:00
|
|
|
template<typename WriterF, size_t bufferSize=256>
|
2012-05-15 09:02:36 +02:00
|
|
|
class StreamBufImpl : public StreamBufBase {
|
2011-01-18 10:20:06 +01:00
|
|
|
char data[bufferSize];
|
|
|
|
WriterF m_writer;
|
|
|
|
|
|
|
|
public:
|
2012-05-15 09:02:36 +02:00
|
|
|
StreamBufImpl() {
|
2011-01-18 10:20:06 +01:00
|
|
|
setp( data, data + sizeof(data) );
|
|
|
|
}
|
2011-02-03 21:00:46 +01:00
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
~StreamBufImpl() {
|
2011-01-18 10:20:06 +01:00
|
|
|
sync();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2012-05-15 09:02:36 +02:00
|
|
|
int overflow( int c ) {
|
2011-01-18 10:20:06 +01:00
|
|
|
sync();
|
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
if( c != EOF ) {
|
2011-01-18 10:20:06 +01:00
|
|
|
if( pbase() == epptr() )
|
2011-01-31 11:10:20 +01:00
|
|
|
m_writer( std::string( 1, static_cast<char>( c ) ) );
|
2011-01-18 10:20:06 +01:00
|
|
|
else
|
2011-02-16 20:02:09 +01:00
|
|
|
sputc( static_cast<char>( c ) );
|
2011-01-18 10:20:06 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
int sync() {
|
|
|
|
if( pbase() != pptr() ) {
|
2012-05-09 09:17:51 +02:00
|
|
|
m_writer( std::string( pbase(), static_cast<std::string::size_type>( pptr() - pbase() ) ) );
|
2011-01-18 10:20:06 +01:00
|
|
|
setp( pbase(), epptr() );
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-02-03 21:00:46 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
struct OutputDebugWriter {
|
|
|
|
|
|
|
|
void operator()( const std::string &str ) {
|
2011-01-18 10:20:06 +01:00
|
|
|
writeToDebugConsole( str );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-02-16 20:02:09 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_STREAM_HPP_INCLUDED
|