2011-01-18 04:20:06 -05: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
|
|
|
|
|
2013-12-03 13:52:41 -05:00
|
|
|
#include "catch_stream.h"
|
2012-09-28 14:21:14 -04:00
|
|
|
#include "catch_streambuf.h"
|
2013-12-03 13:52:41 -05:00
|
|
|
#include "catch_debugger.h"
|
2012-09-28 14:21:14 -04:00
|
|
|
|
2011-01-18 04:20:06 -05:00
|
|
|
#include <stdexcept>
|
2011-02-02 14:45:59 -05:00
|
|
|
#include <cstdio>
|
2011-01-18 04:20:06 -05:00
|
|
|
|
2012-05-15 03:02:36 -04:00
|
|
|
namespace Catch {
|
|
|
|
|
2011-01-18 04:20:06 -05:00
|
|
|
template<typename WriterF, size_t bufferSize=256>
|
2012-05-15 03:02:36 -04:00
|
|
|
class StreamBufImpl : public StreamBufBase {
|
2011-01-18 04:20:06 -05:00
|
|
|
char data[bufferSize];
|
|
|
|
WriterF m_writer;
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2011-01-18 04:20:06 -05:00
|
|
|
public:
|
2012-05-15 03:02:36 -04:00
|
|
|
StreamBufImpl() {
|
2011-01-18 04:20:06 -05:00
|
|
|
setp( data, data + sizeof(data) );
|
|
|
|
}
|
2011-02-03 15:00:46 -05:00
|
|
|
|
2013-07-02 03:49:29 -04:00
|
|
|
~StreamBufImpl() throw() {
|
2011-01-18 04:20:06 -05:00
|
|
|
sync();
|
|
|
|
}
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2011-01-18 04:20:06 -05:00
|
|
|
private:
|
2013-03-08 04:26:20 -05:00
|
|
|
int overflow( int c ) {
|
2011-01-18 04:20:06 -05:00
|
|
|
sync();
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2012-05-15 03:02:36 -04:00
|
|
|
if( c != EOF ) {
|
2011-01-18 04:20:06 -05:00
|
|
|
if( pbase() == epptr() )
|
2011-01-31 05:10:20 -05:00
|
|
|
m_writer( std::string( 1, static_cast<char>( c ) ) );
|
2011-01-18 04:20:06 -05:00
|
|
|
else
|
2011-02-16 14:02:09 -05:00
|
|
|
sputc( static_cast<char>( c ) );
|
2013-07-03 14:14:59 -04:00
|
|
|
}
|
2011-01-18 04:20:06 -05:00
|
|
|
return 0;
|
|
|
|
}
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2013-03-08 04:26:20 -05:00
|
|
|
int sync() {
|
2012-05-15 03:02:36 -04:00
|
|
|
if( pbase() != pptr() ) {
|
2012-05-09 03:17:51 -04:00
|
|
|
m_writer( std::string( pbase(), static_cast<std::string::size_type>( pptr() - pbase() ) ) );
|
2011-01-18 04:20:06 -05:00
|
|
|
setp( pbase(), epptr() );
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-05-15 03:02:36 -04:00
|
|
|
struct OutputDebugWriter {
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2013-04-23 13:58:56 -04:00
|
|
|
void operator()( std::string const&str ) {
|
2011-01-18 04:20:06 -05:00
|
|
|
writeToDebugConsole( str );
|
|
|
|
}
|
|
|
|
};
|
2012-09-26 13:36:58 -04:00
|
|
|
|
2013-12-03 13:52:41 -05:00
|
|
|
Stream::Stream()
|
|
|
|
: streamBuf( NULL ), isOwned( false )
|
|
|
|
{}
|
2012-09-26 13:36:58 -04:00
|
|
|
|
2013-12-03 13:52:41 -05:00
|
|
|
Stream::Stream( std::streambuf* _streamBuf, bool _isOwned )
|
|
|
|
: streamBuf( _streamBuf ), isOwned( _isOwned )
|
|
|
|
{}
|
2012-09-26 13:36:58 -04:00
|
|
|
|
2013-12-03 13:52:41 -05:00
|
|
|
void Stream::release() {
|
|
|
|
if( isOwned ) {
|
|
|
|
delete streamBuf;
|
|
|
|
streamBuf = NULL;
|
|
|
|
isOwned = false;
|
|
|
|
}
|
|
|
|
}
|
2011-01-18 04:20:06 -05:00
|
|
|
}
|
|
|
|
|
2011-02-16 14:02:09 -05:00
|
|
|
#endif // TWOBLUECUBES_CATCH_STREAM_HPP_INCLUDED
|