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
|
|
|
|
2012-08-13 08:46:10 +02:00
|
|
|
virtual ~ReporterRegistry() {
|
2011-01-27 00:23:33 +01:00
|
|
|
deleteAllValues( m_factories );
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-05-28 19:39:32 +02:00
|
|
|
virtual IStreamingReporter* create( std::string const& name, Ptr<IConfig> const& config ) const {
|
2010-11-10 00:24:00 +01:00
|
|
|
FactoryMap::const_iterator it = m_factories.find( name );
|
|
|
|
if( it == m_factories.end() )
|
|
|
|
return 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
|
|
|
|
2013-04-23 19:58:56 +02:00
|
|
|
void registerReporter( std::string const& name, IReporterFactory* 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
|
|
|
}
|
2010-11-10 09:43:48 +01:00
|
|
|
|
2013-04-23 19:58:56 +02:00
|
|
|
FactoryMap const& getFactories() const {
|
2010-11-10 09:43:48 +01:00
|
|
|
return m_factories;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2010-11-10 00:24:00 +01:00
|
|
|
FactoryMap m_factories;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-02-16 20:02:09 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_REPORTER_REGISTRY_HPP_INCLUDED
|