2011-01-28 11:18:23 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 28/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_GENERATORS_IMPL_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_GENERATORS_IMPL_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "catch_common.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
|
2012-05-16 09:02:20 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
struct GeneratorInfo {
|
|
|
|
|
|
|
|
GeneratorInfo( std::size_t size )
|
2011-01-28 11:18:23 +01:00
|
|
|
: m_size( size ),
|
|
|
|
m_currentIndex( 0 )
|
2012-05-16 09:02:20 +02:00
|
|
|
{}
|
2011-01-28 11:18:23 +01:00
|
|
|
|
2012-05-16 09:02:20 +02:00
|
|
|
bool moveNext() {
|
|
|
|
if( ++m_currentIndex == m_size ) {
|
2011-01-28 11:18:23 +01:00
|
|
|
m_currentIndex = 0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-16 09:02:20 +02:00
|
|
|
std::size_t getCurrentIndex() const {
|
2011-01-28 11:18:23 +01:00
|
|
|
return m_currentIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::size_t m_size;
|
|
|
|
std::size_t m_currentIndex;
|
|
|
|
};
|
|
|
|
|
2011-01-28 19:56:26 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-05-16 09:02:20 +02:00
|
|
|
class GeneratorsForTest {
|
2011-01-28 11:18:23 +01:00
|
|
|
|
|
|
|
public:
|
2012-05-16 09:02:20 +02:00
|
|
|
~GeneratorsForTest() {
|
2011-01-28 11:18:23 +01:00
|
|
|
deleteAll( m_generatorsInOrder );
|
|
|
|
}
|
|
|
|
|
2012-05-16 09:02:20 +02:00
|
|
|
GeneratorInfo& getGeneratorInfo( const std::string& fileInfo, std::size_t size ) {
|
2011-01-28 11:18:23 +01:00
|
|
|
std::map<std::string, GeneratorInfo*>::const_iterator it = m_generatorsByName.find( fileInfo );
|
2012-05-16 09:02:20 +02:00
|
|
|
if( it == m_generatorsByName.end() ) {
|
2011-01-28 11:18:23 +01:00
|
|
|
GeneratorInfo* info = new GeneratorInfo( size );
|
|
|
|
m_generatorsByName.insert( std::make_pair( fileInfo, info ) );
|
|
|
|
m_generatorsInOrder.push_back( info );
|
|
|
|
return *info;
|
|
|
|
}
|
|
|
|
return *it->second;
|
|
|
|
}
|
|
|
|
|
2012-05-16 09:02:20 +02:00
|
|
|
bool moveNext() {
|
2011-01-28 11:18:23 +01:00
|
|
|
std::vector<GeneratorInfo*>::const_iterator it = m_generatorsInOrder.begin();
|
|
|
|
std::vector<GeneratorInfo*>::const_iterator itEnd = m_generatorsInOrder.end();
|
2012-05-16 09:02:20 +02:00
|
|
|
for(; it != itEnd; ++it ) {
|
2011-01-28 11:18:23 +01:00
|
|
|
if( (*it)->moveNext() )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::map<std::string, GeneratorInfo*> m_generatorsByName;
|
|
|
|
std::vector<GeneratorInfo*> m_generatorsInOrder;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
|
|
|
|
#define INTERNAL_CATCH_LINESTR2( line ) #line
|
|
|
|
#define INTERNAL_CATCH_LINESTR( line ) INTERNAL_CATCH_LINESTR2( line )
|
|
|
|
|
|
|
|
#define INTERNAL_CATCH_GENERATE( expr ) expr.setFileInfo( __FILE__ "(" INTERNAL_CATCH_LINESTR( __LINE__ ) ")" )
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_GENERATORS_HPP_INCLUDED
|