Files
Catch2/include/internal/catch_context_impl.hpp
T

105 lines
3.3 KiB
C++
Raw Normal View History

/*
* Created by Phil on 31/12/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_CONTEXT_IMPL_HPP_INCLUDED
#define TWOBLUECUBES_CATCH_CONTEXT_IMPL_HPP_INCLUDED
2015-08-05 19:02:17 +01:00
#include "catch_run_context.hpp"
2012-05-10 08:17:06 +01:00
#include "catch_context.h"
#include "catch_stream.hpp"
2012-05-16 08:02:20 +01:00
namespace Catch {
class Context : public IMutableContext {
2015-07-01 07:33:27 +01:00
Context() : m_config( CATCH_NULL ), m_runner( CATCH_NULL ), m_resultCapture( CATCH_NULL ) {}
2013-04-23 18:58:56 +01:00
Context( Context const& );
void operator=( Context const& );
public: // IContext
2014-05-20 18:49:28 +01:00
virtual IResultCapture* getResultCapture() {
return m_resultCapture;
}
2014-05-20 18:49:28 +01:00
virtual IRunner* getRunner() {
return m_runner;
}
2013-04-23 18:58:56 +01:00
virtual size_t getGeneratorIndex( std::string const& fileInfo, size_t totalSize ) {
return getGeneratorsForCurrentTest()
.getGeneratorInfo( fileInfo, totalSize )
.getCurrentIndex();
}
virtual bool advanceGeneratorsForCurrentTest() {
IGeneratorsForTest* generators = findGeneratorsForCurrentTest();
return generators && generators->moveNext();
}
2013-05-28 18:51:53 +01:00
virtual Ptr<IConfig const> getConfig() const {
return m_config;
}
public: // IMutableContext
virtual void setResultCapture( IResultCapture* resultCapture ) {
m_resultCapture = resultCapture;
}
virtual void setRunner( IRunner* runner ) {
m_runner = runner;
}
2013-05-28 18:51:53 +01:00
virtual void setConfig( Ptr<IConfig const> const& config ) {
m_config = config;
}
2013-07-03 19:14:59 +01:00
friend IMutableContext& getCurrentMutableContext();
private:
IGeneratorsForTest* findGeneratorsForCurrentTest() {
2014-05-20 18:49:28 +01:00
std::string testName = getResultCapture()->getCurrentTestName();
std::map<std::string, IGeneratorsForTest*>::const_iterator it =
m_generatorsByTestName.find( testName );
return it != m_generatorsByTestName.end()
? it->second
2015-07-01 07:33:27 +01:00
: CATCH_NULL;
}
IGeneratorsForTest& getGeneratorsForCurrentTest() {
IGeneratorsForTest* generators = findGeneratorsForCurrentTest();
if( !generators ) {
2014-05-20 18:49:28 +01:00
std::string testName = getResultCapture()->getCurrentTestName();
generators = createGeneratorsForTest();
m_generatorsByTestName.insert( std::make_pair( testName, generators ) );
}
return *generators;
}
private:
Ptr<IConfig const> m_config;
IRunner* m_runner;
IResultCapture* m_resultCapture;
std::map<std::string, IGeneratorsForTest*> m_generatorsByTestName;
};
2013-07-03 19:14:59 +01:00
2012-05-22 08:55:19 +01:00
namespace {
2015-07-01 07:33:27 +01:00
Context* currentContext = CATCH_NULL;
2012-05-22 08:55:19 +01:00
}
IMutableContext& getCurrentMutableContext() {
2012-06-05 10:13:52 +01:00
if( !currentContext )
currentContext = new Context();
return *currentContext;
2012-05-22 08:55:19 +01:00
}
IContext& getCurrentContext() {
return getCurrentMutableContext();
}
2011-01-11 09:13:31 +00:00
void cleanUpContext() {
delete currentContext;
2015-07-01 07:33:27 +01:00
currentContext = CATCH_NULL;
2011-01-26 23:23:33 +00:00
}
}
#endif // TWOBLUECUBES_CATCH_CONTEXT_IMPL_HPP_INCLUDED