2017-06-29 12:18:14 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2016 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)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "catch_stringref.h"
|
|
|
|
|
|
|
|
#include <ostream>
|
2017-07-12 23:39:31 +02:00
|
|
|
#include <cassert>
|
2017-08-16 00:47:52 +02:00
|
|
|
#include <cstring>
|
2017-08-14 13:12:28 +02:00
|
|
|
|
2017-06-29 12:18:14 +02:00
|
|
|
namespace Catch {
|
2017-07-12 23:39:31 +02:00
|
|
|
|
|
|
|
auto getEmptyStringRef() -> StringRef {
|
|
|
|
static StringRef s_emptyStringRef("");
|
|
|
|
return s_emptyStringRef;
|
|
|
|
}
|
2017-06-29 12:18:14 +02:00
|
|
|
|
2017-06-29 12:47:09 +02:00
|
|
|
StringRef::StringRef() noexcept
|
2017-07-12 23:39:31 +02:00
|
|
|
: StringRef( getEmptyStringRef() )
|
2017-06-29 12:18:14 +02:00
|
|
|
{}
|
|
|
|
|
2017-06-29 12:47:09 +02:00
|
|
|
StringRef::StringRef( StringRef const& other ) noexcept
|
2017-06-29 12:18:14 +02:00
|
|
|
: m_start( other.m_start ),
|
2017-08-14 10:14:49 +02:00
|
|
|
m_size( other.m_size )
|
|
|
|
{}
|
2017-06-29 12:18:14 +02:00
|
|
|
|
|
|
|
StringRef::StringRef( StringRef&& other ) noexcept
|
|
|
|
: m_start( other.m_start ),
|
|
|
|
m_size( other.m_size ),
|
|
|
|
m_data( other.m_data )
|
|
|
|
{
|
|
|
|
other.m_data = nullptr;
|
|
|
|
}
|
|
|
|
|
2017-06-29 12:47:09 +02:00
|
|
|
StringRef::StringRef( char const* rawChars ) noexcept
|
2017-06-29 12:18:14 +02:00
|
|
|
: m_start( rawChars ),
|
2017-06-29 17:31:05 +02:00
|
|
|
m_size( static_cast<size_type>( std::strlen( rawChars ) ) )
|
2017-07-12 23:39:31 +02:00
|
|
|
{
|
|
|
|
assert( rawChars != nullptr );
|
|
|
|
}
|
2017-06-29 12:18:14 +02:00
|
|
|
|
2017-06-29 12:47:09 +02:00
|
|
|
StringRef::StringRef( char const* rawChars, size_type size ) noexcept
|
2017-06-29 12:18:14 +02:00
|
|
|
: m_start( rawChars ),
|
|
|
|
m_size( size )
|
|
|
|
{
|
2017-06-29 17:31:05 +02:00
|
|
|
size_type rawSize = rawChars == nullptr ? 0 : static_cast<size_type>( std::strlen( rawChars ) );
|
2017-06-29 12:18:14 +02:00
|
|
|
if( rawSize < size )
|
2017-07-25 17:16:28 +02:00
|
|
|
m_size = rawSize;
|
2017-06-29 12:18:14 +02:00
|
|
|
}
|
|
|
|
|
2017-08-14 09:39:14 +02:00
|
|
|
StringRef::StringRef( std::string const& stdString ) noexcept
|
|
|
|
: m_start( stdString.c_str() ),
|
|
|
|
m_size( stdString.size() )
|
|
|
|
{}
|
|
|
|
|
2017-06-29 12:18:14 +02:00
|
|
|
StringRef::~StringRef() noexcept {
|
2017-08-14 10:14:49 +02:00
|
|
|
delete[] m_data;
|
2017-06-29 12:18:14 +02:00
|
|
|
}
|
|
|
|
|
2017-06-29 12:47:09 +02:00
|
|
|
auto StringRef::operator = ( StringRef other ) noexcept -> StringRef& {
|
2017-06-29 12:18:14 +02:00
|
|
|
swap( other );
|
|
|
|
return *this;
|
|
|
|
}
|
2017-08-14 09:39:14 +02:00
|
|
|
StringRef::operator std::string() const {
|
|
|
|
return std::string( m_start, m_size );
|
|
|
|
}
|
2017-06-29 12:18:14 +02:00
|
|
|
|
|
|
|
void StringRef::swap( StringRef& other ) noexcept {
|
|
|
|
std::swap( m_start, other.m_start );
|
|
|
|
std::swap( m_size, other.m_size );
|
|
|
|
std::swap( m_data, other.m_data );
|
|
|
|
}
|
|
|
|
|
|
|
|
auto StringRef::c_str() const -> char const* {
|
|
|
|
if( isSubstring() )
|
|
|
|
const_cast<StringRef*>( this )->takeOwnership();
|
|
|
|
return m_start;
|
|
|
|
}
|
|
|
|
auto StringRef::data() const noexcept -> char const* {
|
|
|
|
return m_start;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto StringRef::isOwned() const noexcept -> bool {
|
|
|
|
return m_data != nullptr;
|
|
|
|
}
|
|
|
|
auto StringRef::isSubstring() const noexcept -> bool {
|
|
|
|
return m_start[m_size] != '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
void StringRef::takeOwnership() {
|
|
|
|
if( !isOwned() ) {
|
2017-08-14 10:14:49 +02:00
|
|
|
m_data = new char[m_size+1];
|
2017-08-16 00:47:52 +02:00
|
|
|
memcpy( m_data, m_start, m_size );
|
2017-08-14 10:14:49 +02:00
|
|
|
m_data[m_size] = '\0';
|
|
|
|
m_start = m_data;
|
2017-08-14 10:04:14 +02:00
|
|
|
}
|
2017-06-29 12:18:14 +02:00
|
|
|
}
|
|
|
|
auto StringRef::substr( size_type start, size_type size ) const noexcept -> StringRef {
|
|
|
|
if( start < m_size )
|
|
|
|
return StringRef( m_start+start, size );
|
|
|
|
else
|
|
|
|
return StringRef();
|
|
|
|
}
|
|
|
|
auto StringRef::operator == ( StringRef const& other ) const noexcept -> bool {
|
|
|
|
return
|
|
|
|
size() == other.size() &&
|
|
|
|
(std::strncmp( m_start, other.m_start, size() ) == 0);
|
|
|
|
}
|
|
|
|
auto StringRef::operator != ( StringRef const& other ) const noexcept -> bool {
|
|
|
|
return !operator==( other );
|
|
|
|
}
|
2017-07-27 10:46:18 +02:00
|
|
|
|
|
|
|
auto StringRef::operator[](size_type index) const noexcept -> char {
|
|
|
|
return m_start[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
auto StringRef::empty() const noexcept -> bool {
|
|
|
|
return m_size == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto StringRef::size() const noexcept -> size_type {
|
|
|
|
return m_size;
|
|
|
|
}
|
2017-08-05 22:41:56 +02:00
|
|
|
auto StringRef::numberOfCharacters() const noexcept -> size_type {
|
|
|
|
size_type noChars = m_size;
|
|
|
|
// Make adjustments for uft encodings
|
|
|
|
for( size_type i=0; i < m_size; ++i ) {
|
|
|
|
char c = m_start[i];
|
|
|
|
if( ( c & 0b11000000 ) == 0b11000000 ) {
|
|
|
|
if( ( c & 0b11100000 ) == 0b11000000 )
|
|
|
|
noChars--;
|
|
|
|
else if( ( c & 0b11110000 ) == 0b11100000 )
|
|
|
|
noChars-=2;
|
|
|
|
else if( ( c & 0b11111000 ) == 0b11110000 )
|
|
|
|
noChars-=3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return noChars;
|
|
|
|
}
|
|
|
|
|
2017-08-14 10:04:14 +02:00
|
|
|
auto operator + ( StringRef const& lhs, StringRef const& rhs ) -> std::string {
|
|
|
|
std::string str;
|
|
|
|
str.reserve( lhs.size() + rhs.size() );
|
|
|
|
str += lhs;
|
|
|
|
str += rhs;
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
auto operator + ( StringRef const& lhs, const char* rhs ) -> std::string {
|
|
|
|
return std::string( lhs ) + std::string( rhs );
|
|
|
|
}
|
|
|
|
auto operator + ( char const* lhs, StringRef const& rhs ) -> std::string {
|
|
|
|
return std::string( lhs ) + std::string( rhs );
|
2017-06-29 12:18:14 +02:00
|
|
|
}
|
|
|
|
|
2017-08-14 09:50:44 +02:00
|
|
|
auto operator << ( std::ostream& os, StringRef const& str ) -> std::ostream& {
|
2017-06-29 12:18:14 +02:00
|
|
|
return os << str.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Catch
|