mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 09:01:50 +01:00 
			
		
		
		
	ReusableStringStream holds a std::ostringstream internally, but only exposes the ostream interface. It caches a pool of ostringstreams in a vector which is currently global, but will be made thread-local. Altogether this should enable both runtime and compile-time benefits. although more work is needed to realise the compile time opportunities.
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 *  Created by Martin on 19/07/2017.
 | 
						|
 *
 | 
						|
 *  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)
 | 
						|
 */
 | 
						|
 | 
						|
#include "catch_wildcard_pattern.h"
 | 
						|
#include "catch_enforce.h"
 | 
						|
#include "catch_string_manip.h"
 | 
						|
 | 
						|
#include <sstream>
 | 
						|
 | 
						|
namespace Catch {
 | 
						|
 | 
						|
    WildcardPattern::WildcardPattern( std::string const& pattern,
 | 
						|
                                      CaseSensitive::Choice caseSensitivity )
 | 
						|
    :   m_caseSensitivity( caseSensitivity ),
 | 
						|
        m_pattern( adjustCase( pattern ) )
 | 
						|
    {
 | 
						|
        if( startsWith( m_pattern, '*' ) ) {
 | 
						|
            m_pattern = m_pattern.substr( 1 );
 | 
						|
            m_wildcard = WildcardAtStart;
 | 
						|
        }
 | 
						|
        if( endsWith( m_pattern, '*' ) ) {
 | 
						|
            m_pattern = m_pattern.substr( 0, m_pattern.size()-1 );
 | 
						|
            m_wildcard = static_cast<WildcardPosition>( m_wildcard | WildcardAtEnd );
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    bool WildcardPattern::matches( std::string const& str ) const {
 | 
						|
        switch( m_wildcard ) {
 | 
						|
            case NoWildcard:
 | 
						|
                return m_pattern == adjustCase( str );
 | 
						|
            case WildcardAtStart:
 | 
						|
                return endsWith( adjustCase( str ), m_pattern );
 | 
						|
            case WildcardAtEnd:
 | 
						|
                return startsWith( adjustCase( str ), m_pattern );
 | 
						|
            case WildcardAtBothEnds:
 | 
						|
                return contains( adjustCase( str ), m_pattern );
 | 
						|
            default:
 | 
						|
                CATCH_INTERNAL_ERROR( "Unknown enum" );
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    std::string WildcardPattern::adjustCase( std::string const& str ) const {
 | 
						|
        return m_caseSensitivity == CaseSensitive::No ? toLower( str ) : str;
 | 
						|
    }
 | 
						|
}
 |