2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 29/10/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_REPORTER_REGISTRY_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_REPORTER_REGISTRY_HPP_INCLUDED
|
|
|
|
|
2010-12-31 23:46:51 +01:00
|
|
|
#include "catch_interfaces_reporter.h"
|
2010-11-10 00:24:00 +01:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2012-05-16 09:02:20 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
class ReporterRegistry : public IReporterRegistry {
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
public:
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2015-08-10 08:32:21 +02:00
|
|
|
virtual ~ReporterRegistry() CATCH_OVERRIDE {}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2015-09-28 10:09:06 +02:00
|
|
|
virtual IStreamingReporter* create( std::string const& name, Ptr<IConfig const> const& config ) const CATCH_OVERRIDE {
|
2010-11-10 00:24:00 +01:00
|
|
|
FactoryMap::const_iterator it = m_factories.find( name );
|
|
|
|
if( it == m_factories.end() )
|
2015-07-01 08:33:27 +02:00
|
|
|
return CATCH_NULL;
|
2013-05-28 19:39:32 +02:00
|
|
|
return it->second->create( ReporterConfig( config ) );
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2015-08-07 09:20:56 +02:00
|
|
|
void registerReporter( std::string const& name, Ptr<IReporterFactory> const& factory ) {
|
2010-12-31 23:07:47 +01:00
|
|
|
m_factories.insert( std::make_pair( name, factory ) );
|
2013-07-03 20:14:59 +02:00
|
|
|
}
|
2015-08-07 09:20:56 +02:00
|
|
|
void registerListener( Ptr<IReporterFactory> const& factory ) {
|
|
|
|
m_listeners.push_back( factory );
|
|
|
|
}
|
2010-11-10 09:43:48 +01:00
|
|
|
|
2015-08-10 08:32:21 +02:00
|
|
|
virtual FactoryMap const& getFactories() const CATCH_OVERRIDE {
|
2010-11-10 09:43:48 +01:00
|
|
|
return m_factories;
|
|
|
|
}
|
2015-08-10 08:32:21 +02:00
|
|
|
virtual Listeners const& getListeners() const CATCH_OVERRIDE {
|
2015-08-07 09:20:56 +02:00
|
|
|
return m_listeners;
|
|
|
|
}
|
2010-11-10 09:43:48 +01:00
|
|
|
|
|
|
|
private:
|
2010-11-10 00:24:00 +01:00
|
|
|
FactoryMap m_factories;
|
2015-08-07 09:20:56 +02:00
|
|
|
Listeners m_listeners;
|
2010-11-10 00:24:00 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-02-16 20:02:09 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_REPORTER_REGISTRY_HPP_INCLUDED
|