2010-11-09 23:24:00 +00: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 22:46:51 +00:00
|
|
|
#include "catch_interfaces_reporter.h"
|
2010-11-09 23:24:00 +00:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2012-05-16 08:02:20 +01:00
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
class ReporterRegistry : public IReporterRegistry {
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2010-11-09 23:24:00 +00:00
|
|
|
public:
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2017-07-20 15:57:17 +01:00
|
|
|
~ReporterRegistry() override {}
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2017-07-20 15:57:17 +01:00
|
|
|
IStreamingReporterPtr create( std::string const& name, IConfigPtr const& config ) const override {
|
2010-11-09 23:24:00 +00:00
|
|
|
FactoryMap::const_iterator it = m_factories.find( name );
|
|
|
|
if( it == m_factories.end() )
|
2017-04-25 12:41:30 +02:00
|
|
|
return nullptr;
|
2013-05-28 18:39:32 +01:00
|
|
|
return it->second->create( ReporterConfig( config ) );
|
2010-11-09 23:24:00 +00:00
|
|
|
}
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2017-04-25 20:28:53 +01:00
|
|
|
void registerReporter( std::string const& name, IReporterFactoryPtr const& factory ) {
|
2017-04-25 20:35:38 +01:00
|
|
|
m_factories.insert( { name, factory } );
|
2013-07-03 19:14:59 +01:00
|
|
|
}
|
2017-04-25 20:28:53 +01:00
|
|
|
void registerListener( IReporterFactoryPtr const& factory ) {
|
2015-08-07 08:20:56 +01:00
|
|
|
m_listeners.push_back( factory );
|
|
|
|
}
|
2010-11-10 08:43:48 +00:00
|
|
|
|
2017-07-20 15:57:17 +01:00
|
|
|
FactoryMap const& getFactories() const override {
|
2010-11-10 08:43:48 +00:00
|
|
|
return m_factories;
|
|
|
|
}
|
2017-07-20 15:57:17 +01:00
|
|
|
Listeners const& getListeners() const override {
|
2015-08-07 08:20:56 +01:00
|
|
|
return m_listeners;
|
|
|
|
}
|
2010-11-10 08:43:48 +00:00
|
|
|
|
|
|
|
private:
|
2010-11-09 23:24:00 +00:00
|
|
|
FactoryMap m_factories;
|
2015-08-07 08:20:56 +01:00
|
|
|
Listeners m_listeners;
|
2010-11-09 23:24:00 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-02-16 19:02:09 +00:00
|
|
|
#endif // TWOBLUECUBES_CATCH_REPORTER_REGISTRY_HPP_INCLUDED
|