catch2/include/internal/catch_generators_impl.hpp

87 lines
2.5 KiB
C++
Raw Normal View History

/*
* 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
2012-08-07 09:18:48 +02:00
#include "catch_interfaces_generators.h"
#include "catch_common.h"
#include <vector>
#include <string>
#include <map>
2012-05-16 09:02:20 +02:00
namespace Catch {
2012-08-07 09:18:48 +02:00
struct GeneratorInfo : IGeneratorInfo {
2012-05-16 09:02:20 +02:00
GeneratorInfo( std::size_t size )
: m_size( size ),
m_currentIndex( 0 )
2012-05-16 09:02:20 +02:00
{}
bool moveNext() {
2012-05-16 09:02:20 +02:00
if( ++m_currentIndex == m_size ) {
m_currentIndex = 0;
return false;
}
return true;
}
2012-05-16 09:02:20 +02:00
std::size_t getCurrentIndex() const {
return m_currentIndex;
}
std::size_t m_size;
std::size_t m_currentIndex;
};
2011-01-28 19:56:26 +01:00
///////////////////////////////////////////////////////////////////////////
2012-08-07 09:18:48 +02:00
class GeneratorsForTest : public IGeneratorsForTest {
public:
2012-05-16 09:02:20 +02:00
~GeneratorsForTest() {
deleteAll( m_generatorsInOrder );
}
IGeneratorInfo& getGeneratorInfo( std::string const& fileInfo, std::size_t size ) {
2012-08-07 09:18:48 +02:00
std::map<std::string, IGeneratorInfo*>::const_iterator it = m_generatorsByName.find( fileInfo );
2012-05-16 09:02:20 +02:00
if( it == m_generatorsByName.end() ) {
2012-08-07 09:18:48 +02:00
IGeneratorInfo* 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() {
2012-08-07 09:18:48 +02:00
std::vector<IGeneratorInfo*>::const_iterator it = m_generatorsInOrder.begin();
std::vector<IGeneratorInfo*>::const_iterator itEnd = m_generatorsInOrder.end();
2012-05-16 09:02:20 +02:00
for(; it != itEnd; ++it ) {
if( (*it)->moveNext() )
return true;
}
return false;
}
private:
2012-08-07 09:18:48 +02:00
std::map<std::string, IGeneratorInfo*> m_generatorsByName;
std::vector<IGeneratorInfo*> m_generatorsInOrder;
};
2012-08-07 09:18:48 +02:00
IGeneratorsForTest* createGeneratorsForTest()
{
return new GeneratorsForTest();
}
2012-08-07 09:18:48 +02:00
} // end namespace Catch
#endif // TWOBLUECUBES_CATCH_GENERATORS_IMPL_HPP_INCLUDED