2010-11-10 00:24:00 +01:00
|
|
|
/*
|
2011-01-05 22:16:54 +01:00
|
|
|
* catch_reporter_registry.hpp
|
2010-11-10 00:24:00 +01:00
|
|
|
* Catch
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
|
|
|
namespace Catch
|
|
|
|
{
|
2010-12-31 23:07:47 +01:00
|
|
|
class ReporterRegistry : public IReporterRegistry
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2010-12-31 23:46:51 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
~ReporterRegistry
|
|
|
|
()
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
2011-01-27 00:23:33 +01:00
|
|
|
deleteAllValues( m_factories );
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
|
2010-12-31 23:46:51 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
virtual IReporter* create
|
|
|
|
(
|
|
|
|
const std::string& name,
|
|
|
|
const IReporterConfig& 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;
|
|
|
|
return it->second->create( config );
|
|
|
|
}
|
|
|
|
|
2010-12-31 23:46:51 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
void registerReporter
|
|
|
|
(
|
|
|
|
const std::string& name,
|
|
|
|
IReporterFactory* factory
|
|
|
|
)
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
2010-12-31 23:07:47 +01:00
|
|
|
m_factories.insert( std::make_pair( name, factory ) );
|
2010-12-31 23:21:36 +01:00
|
|
|
}
|
2010-11-10 09:43:48 +01:00
|
|
|
|
2010-12-31 23:46:51 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
const FactoryMap& 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;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_REPORTER_REGISTRY_HPP_INCLUDED
|