mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 00:51:52 +01:00 
			
		
		
		
	All C++11 toggles are now removed. What is left is either platform specific (POSIX_SIGNALS, WINDOWS_SEH), or possibly still needed (USE_COUNTER). If current CLion is compatible with `__COUNTER__`, then we should also force `__COUNTER__` usage. Changed * CATCH_AUTO_PTR -> std::unique_ptr * CATCH_OVERRIDE -> override * CATCH_NULL -> nullptr * CATCH_NOEXCEPT -> noexcept * CATCH_NOEXCEPT_IS -> noexcept Removed * CATCH_CONFIG_CPP11_UNIQUE_PTR * CATCH_CONFIG_CPP11_SHUFFLE * CATCH_CONFIG_CPP11_TYPE_TRAITS * CATCH_CONFIG_CPP11_OVERRIDE * CATCH_CONFIG_CPP11_LONG_LONG * CATCH_CONFIG_CPP11_TUPLE * CATCH_CONFIG_CPP11_IS_ENUM * CATCH_CONFIG_CPP11_GENERATED_METHODS * CATCH_CONFIG_CPP11_NOEXCEPT * CATCH_CONFIG_CPP11_NULLPTR * CATCH_CONFIG_VARIADIC_MACROS
		
			
				
	
	
		
			96 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 *  Created by Phil on 5/8/2012.
 | 
						|
 *  Copyright 2012 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_REGISTRY_HUB_HPP_INCLUDED
 | 
						|
#define TWOBLUECUBES_CATCH_REGISTRY_HUB_HPP_INCLUDED
 | 
						|
 | 
						|
#include "catch_interfaces_registry_hub.h"
 | 
						|
 | 
						|
#include "catch_test_case_registry_impl.hpp"
 | 
						|
#include "catch_reporter_registry.hpp"
 | 
						|
#include "catch_exception_translator_registry.hpp"
 | 
						|
#include "catch_tag_alias_registry.h"
 | 
						|
 | 
						|
namespace Catch {
 | 
						|
 | 
						|
    namespace {
 | 
						|
 | 
						|
        class RegistryHub : public IRegistryHub, public IMutableRegistryHub {
 | 
						|
 | 
						|
            RegistryHub( RegistryHub const& );
 | 
						|
            void operator=( RegistryHub const& );
 | 
						|
 | 
						|
        public: // IRegistryHub
 | 
						|
            RegistryHub() {
 | 
						|
            }
 | 
						|
            virtual IReporterRegistry const& getReporterRegistry() const override {
 | 
						|
                return m_reporterRegistry;
 | 
						|
            }
 | 
						|
            virtual ITestCaseRegistry const& getTestCaseRegistry() const override {
 | 
						|
                return m_testCaseRegistry;
 | 
						|
            }
 | 
						|
            virtual IExceptionTranslatorRegistry& getExceptionTranslatorRegistry() override {
 | 
						|
                return m_exceptionTranslatorRegistry;
 | 
						|
            }
 | 
						|
            virtual ITagAliasRegistry const& getTagAliasRegistry() const override {
 | 
						|
                return m_tagAliasRegistry;
 | 
						|
            }
 | 
						|
 | 
						|
 | 
						|
        public: // IMutableRegistryHub
 | 
						|
            virtual void registerReporter( std::string const& name, Ptr<IReporterFactory> const& factory ) override {
 | 
						|
                m_reporterRegistry.registerReporter( name, factory );
 | 
						|
            }
 | 
						|
            virtual void registerListener( Ptr<IReporterFactory> const& factory ) override {
 | 
						|
                m_reporterRegistry.registerListener( factory );
 | 
						|
            }
 | 
						|
            virtual void registerTest( TestCase const& testInfo ) override {
 | 
						|
                m_testCaseRegistry.registerTest( testInfo );
 | 
						|
            }
 | 
						|
            virtual void registerTranslator( const IExceptionTranslator* translator ) override {
 | 
						|
                m_exceptionTranslatorRegistry.registerTranslator( translator );
 | 
						|
            }
 | 
						|
            virtual void registerTagAlias( std::string const& alias, std::string const& tag, SourceLineInfo const& lineInfo ) override {
 | 
						|
                m_tagAliasRegistry.add( alias, tag, lineInfo );
 | 
						|
            }
 | 
						|
 | 
						|
        private:
 | 
						|
            TestRegistry m_testCaseRegistry;
 | 
						|
            ReporterRegistry m_reporterRegistry;
 | 
						|
            ExceptionTranslatorRegistry m_exceptionTranslatorRegistry;
 | 
						|
            TagAliasRegistry m_tagAliasRegistry;
 | 
						|
        };
 | 
						|
 | 
						|
        // Single, global, instance
 | 
						|
        inline RegistryHub*& getTheRegistryHub() {
 | 
						|
            static RegistryHub* theRegistryHub = nullptr;
 | 
						|
            if( !theRegistryHub )
 | 
						|
                theRegistryHub = new RegistryHub();
 | 
						|
            return theRegistryHub;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    IRegistryHub& getRegistryHub() {
 | 
						|
        return *getTheRegistryHub();
 | 
						|
    }
 | 
						|
    IMutableRegistryHub& getMutableRegistryHub() {
 | 
						|
        return *getTheRegistryHub();
 | 
						|
    }
 | 
						|
    void cleanUp() {
 | 
						|
        delete getTheRegistryHub();
 | 
						|
        getTheRegistryHub() = nullptr;
 | 
						|
        cleanUpContext();
 | 
						|
    }
 | 
						|
    std::string translateActiveException() {
 | 
						|
        return getRegistryHub().getExceptionTranslatorRegistry().translateActiveException();
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
} // end namespace Catch
 | 
						|
 | 
						|
#endif // TWOBLUECUBES_CATCH_REGISTRY_HUB_HPP_INCLUDED
 |