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)
|
|
|
|
*/
|
|
|
|
|
2019-10-21 17:44:11 +02:00
|
|
|
#include "catch_enforce.h"
|
2017-06-29 12:18:14 +02:00
|
|
|
#include "catch_stringref.h"
|
|
|
|
|
2019-10-21 17:44:11 +02:00
|
|
|
#include <algorithm>
|
2017-06-29 12:18:14 +02:00
|
|
|
#include <ostream>
|
2017-11-21 10:26:56 +01:00
|
|
|
#include <cstring>
|
2018-02-05 10:04:18 +01:00
|
|
|
#include <cstdint>
|
|
|
|
|
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-06-29 12:18:14 +02:00
|
|
|
auto StringRef::c_str() const -> char const* {
|
2019-10-21 17:44:11 +02:00
|
|
|
CATCH_ENFORCE(isNullTerminated(), "Called StringRef::c_str() on a non-null-terminated instance");
|
2017-06-29 12:18:14 +02:00
|
|
|
return m_start;
|
|
|
|
}
|
2019-10-21 17:44:11 +02:00
|
|
|
auto StringRef::data() const noexcept -> char const* {
|
|
|
|
return m_start;
|
2017-06-29 12:18:14 +02:00
|
|
|
}
|
2017-11-13 12:03:45 +01:00
|
|
|
|
2017-06-29 12:18:14 +02:00
|
|
|
auto StringRef::substr( size_type start, size_type size ) const noexcept -> StringRef {
|
2019-10-21 17:44:11 +02:00
|
|
|
if (start < m_size) {
|
|
|
|
return StringRef(m_start + start, (std::min)(m_size - start, size));
|
|
|
|
} else {
|
2017-06-29 12:18:14 +02:00
|
|
|
return StringRef();
|
2019-10-21 17:44:11 +02:00
|
|
|
}
|
2017-06-29 12:18:14 +02:00
|
|
|
}
|
|
|
|
auto StringRef::operator == ( StringRef const& other ) const noexcept -> bool {
|
2019-10-21 17:44:11 +02:00
|
|
|
return m_size == other.m_size
|
|
|
|
&& (std::memcmp( m_start, other.m_start, m_size ) == 0);
|
2017-06-29 12:18:14 +02:00
|
|
|
}
|
2017-07-27 10:46:18 +02:00
|
|
|
|
2017-08-14 09:50:44 +02:00
|
|
|
auto operator << ( std::ostream& os, StringRef const& str ) -> std::ostream& {
|
2019-10-21 17:44:11 +02:00
|
|
|
return os.write(str.data(), 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& {
|
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 12:18:14 +02:00
|
|
|
} // namespace Catch
|