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)
|
|
|
|
*/
|
|
|
|
|
2017-09-07 16:51:33 +02:00
|
|
|
|
|
|
|
#if defined(__clang__)
|
|
|
|
# pragma clang diagnostic push
|
|
|
|
# pragma clang diagnostic ignored "-Wexit-time-destructors"
|
|
|
|
#endif
|
2017-11-13 12:03:45 +01:00
|
|
|
|
2017-06-29 12:18:14 +02:00
|
|
|
#include "catch_stringref.h"
|
|
|
|
|
|
|
|
#include <ostream>
|
2017-11-21 10:26:56 +01:00
|
|
|
#include <cstring>
|
2018-02-05 10:04:18 +01:00
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
const uint32_t byte_2_lead = 0xC0;
|
|
|
|
const uint32_t byte_3_lead = 0xE0;
|
|
|
|
const uint32_t byte_4_lead = 0xF0;
|
|
|
|
}
|
2017-09-07 16:51:33 +02:00
|
|
|
|
2017-06-29 12:18:14 +02:00
|
|
|
namespace Catch {
|
2017-11-21 12:08:08 +01:00
|
|
|
StringRef::StringRef( char const* rawChars ) noexcept
|
|
|
|
: StringRef( rawChars, static_cast<StringRef::size_type>(std::strlen(rawChars) ) )
|
|
|
|
{}
|
2017-11-13 12:03:45 +01:00
|
|
|
|
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 );
|
|
|
|
}
|
2017-11-13 12:03:45 +01:00
|
|
|
|
2017-06-29 12:18:14 +02:00
|
|
|
auto StringRef::c_str() const -> char const* {
|
|
|
|
if( isSubstring() )
|
|
|
|
const_cast<StringRef*>( this )->takeOwnership();
|
|
|
|
return m_start;
|
|
|
|
}
|
2018-02-28 22:05:01 +01:00
|
|
|
auto StringRef::currentData() const noexcept -> char const* {
|
2017-06-29 12:18:14 +02:00
|
|
|
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';
|
|
|
|
}
|
2017-11-13 12:03:45 +01:00
|
|
|
|
2017-06-29 12:18:14 +02:00
|
|
|
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];
|
|
|
|
}
|
|
|
|
|
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];
|
2018-02-05 10:04:18 +01:00
|
|
|
if( ( c & byte_2_lead ) == byte_2_lead ) {
|
|
|
|
noChars--;
|
|
|
|
if (( c & byte_3_lead ) == byte_3_lead )
|
|
|
|
noChars--;
|
|
|
|
if( ( c & byte_4_lead ) == byte_4_lead )
|
2017-08-05 22:41:56 +02:00
|
|
|
noChars--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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& {
|
2018-02-28 22:05:01 +01:00
|
|
|
return os.write(str.currentData(), str.size());
|
2017-06-29 12:18:14 +02:00
|
|
|
}
|
2017-11-13 12:03:45 +01:00
|
|
|
|
2018-02-28 16:02:25 +01:00
|
|
|
auto operator+=( std::string& lhs, StringRef const& rhs ) -> std::string& {
|
2018-02-28 22:05:01 +01:00
|
|
|
lhs.append(rhs.currentData(), rhs.size());
|
2018-02-28 16:02:25 +01:00
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
2017-06-29 12:18:14 +02:00
|
|
|
} // namespace Catch
|
2017-09-07 16:51:33 +02:00
|
|
|
|
|
|
|
#if defined(__clang__)
|
|
|
|
# pragma clang diagnostic pop
|
|
|
|
#endif
|