2020-08-30 15:43:45 +02:00
|
|
|
|
|
|
|
|
// Copyright Catch2 Authors
|
|
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
2022-10-28 11:22:53 +02:00
|
|
|
// (See accompanying file LICENSE.txt or copy at
|
2020-08-30 15:43:45 +02:00
|
|
|
// https://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
|
|
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
2020-05-10 10:09:01 +02:00
|
|
|
#include <catch2/internal/catch_stringref.hpp>
|
2017-06-29 11:18:14 +01:00
|
|
|
|
2019-10-21 17:44:11 +02:00
|
|
|
#include <algorithm>
|
2017-06-29 11:18:14 +01:00
|
|
|
#include <ostream>
|
2017-11-21 09:26:56 +00:00
|
|
|
#include <cstring>
|
2018-02-05 10:04:18 +01:00
|
|
|
|
2017-06-29 11:18:14 +01:00
|
|
|
namespace Catch {
|
2017-11-21 11:08:08 +00:00
|
|
|
StringRef::StringRef( char const* rawChars ) noexcept
|
2022-04-28 14:06:01 +02:00
|
|
|
: StringRef( rawChars, std::strlen(rawChars) )
|
2017-11-21 11:08:08 +00:00
|
|
|
{}
|
2017-11-13 12:03:45 +01:00
|
|
|
|
2017-07-27 10:46:18 +02:00
|
|
|
|
2021-11-20 23:41:57 +01:00
|
|
|
bool StringRef::operator<(StringRef rhs) const noexcept {
|
2019-11-07 12:39:07 +01:00
|
|
|
if (m_size < rhs.m_size) {
|
|
|
|
|
return strncmp(m_start, rhs.m_start, m_size) <= 0;
|
|
|
|
|
}
|
|
|
|
|
return strncmp(m_start, rhs.m_start, rhs.m_size) < 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-27 18:30:31 +02:00
|
|
|
int StringRef::compare( StringRef rhs ) const {
|
|
|
|
|
auto cmpResult =
|
|
|
|
|
strncmp( m_start, rhs.m_start, std::min( m_size, rhs.m_size ) );
|
|
|
|
|
|
|
|
|
|
// This means that strncmp found a difference before the strings
|
|
|
|
|
// ended, and we can return it directly
|
|
|
|
|
if ( cmpResult != 0 ) {
|
|
|
|
|
return cmpResult;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If strings are equal up to length, then their comparison results on
|
|
|
|
|
// their size
|
|
|
|
|
if ( m_size < rhs.m_size ) {
|
|
|
|
|
return -1;
|
|
|
|
|
} else if ( m_size > rhs.m_size ) {
|
|
|
|
|
return 1;
|
|
|
|
|
} else {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-20 23:41:57 +01:00
|
|
|
auto operator << ( std::ostream& os, StringRef str ) -> std::ostream& {
|
|
|
|
|
return os.write(str.data(), static_cast<std::streamsize>(str.size()));
|
2017-06-29 11:18:14 +01:00
|
|
|
}
|
2017-11-13 12:03:45 +01:00
|
|
|
|
2020-05-31 22:30:41 +02:00
|
|
|
std::string operator+(StringRef lhs, StringRef rhs) {
|
|
|
|
|
std::string ret;
|
|
|
|
|
ret.reserve(lhs.size() + rhs.size());
|
|
|
|
|
ret += lhs;
|
|
|
|
|
ret += rhs;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-20 23:41:57 +01:00
|
|
|
auto operator+=( std::string& lhs, StringRef rhs ) -> std::string& {
|
2019-10-21 17:44:11 +02:00
|
|
|
lhs.append(rhs.data(), rhs.size());
|
2018-02-28 16:02:25 +01:00
|
|
|
return lhs;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-29 11:18:14 +01:00
|
|
|
} // namespace Catch
|