2014-05-05 17:30:46 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2004-02-19 02:44:03 +00:00
|
|
|
|
|
|
|
#ifndef nsString_h___
|
|
|
|
#define nsString_h___
|
|
|
|
|
2019-03-30 04:26:26 +00:00
|
|
|
#include <ostream>
|
|
|
|
|
2011-12-16 19:42:07 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2004-02-19 02:44:03 +00:00
|
|
|
|
2017-08-14 21:22:50 +00:00
|
|
|
#include "nsStringFwd.h"
|
|
|
|
|
2018-02-06 01:36:32 +00:00
|
|
|
#include "nsAString.h"
|
2004-02-19 02:44:03 +00:00
|
|
|
#include "nsDependentSubstring.h"
|
2020-10-06 17:59:53 +00:00
|
|
|
#include "nsReadableUtils.h"
|
2004-02-19 02:44:03 +00:00
|
|
|
|
|
|
|
#include "nsTString.h"
|
|
|
|
|
2014-01-04 15:02:17 +00:00
|
|
|
static_assert(sizeof(char16_t) == 2, "size of char16_t must be 2");
|
2013-07-18 17:59:53 +00:00
|
|
|
static_assert(sizeof(nsString::char_type) == 2,
|
|
|
|
"size of nsString::char_type must be 2");
|
2013-09-18 03:43:12 +00:00
|
|
|
static_assert(nsString::char_type(-1) > nsString::char_type(0),
|
|
|
|
"nsString::char_type must be unsigned");
|
2013-07-18 17:59:53 +00:00
|
|
|
static_assert(sizeof(nsCString::char_type) == 1,
|
|
|
|
"size of nsCString::char_type must be 1");
|
2004-02-19 02:44:03 +00:00
|
|
|
|
2017-08-14 21:22:50 +00:00
|
|
|
static_assert(sizeof(nsTLiteralString<char>) == sizeof(nsTString<char>),
|
|
|
|
"nsLiteralCString can masquerade as nsCString, "
|
|
|
|
"so they must have identical layout");
|
|
|
|
|
|
|
|
static_assert(sizeof(nsTLiteralString<char16_t>) == sizeof(nsTString<char16_t>),
|
|
|
|
"nsTLiteralString can masquerade as nsString, "
|
|
|
|
"so they must have identical layout");
|
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
/**
|
|
|
|
* A helper class that converts a UTF-16 string to ASCII in a lossy manner
|
|
|
|
*/
|
2012-09-02 02:35:17 +00:00
|
|
|
class NS_LossyConvertUTF16toASCII : public nsAutoCString {
|
2014-05-05 17:30:46 +00:00
|
|
|
public:
|
2015-10-10 01:19:23 +00:00
|
|
|
explicit NS_LossyConvertUTF16toASCII(const char16ptr_t aString) {
|
2018-07-06 07:44:43 +00:00
|
|
|
LossyAppendUTF16toASCII(mozilla::MakeStringSpan(aString), *this);
|
2014-05-05 17:30:46 +00:00
|
|
|
}
|
|
|
|
|
2021-12-13 21:47:56 +00:00
|
|
|
NS_LossyConvertUTF16toASCII(const char16ptr_t aString, size_t aLength) {
|
2017-08-14 21:22:50 +00:00
|
|
|
LossyAppendUTF16toASCII(
|
|
|
|
Substring(static_cast<const char16_t*>(aString), aLength), *this);
|
2014-05-05 17:30:46 +00:00
|
|
|
}
|
2004-02-19 02:44:03 +00:00
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
explicit NS_LossyConvertUTF16toASCII(const nsAString& aString) {
|
2014-05-05 17:30:46 +00:00
|
|
|
LossyAppendUTF16toASCII(aString, *this);
|
|
|
|
}
|
2004-02-19 02:44:03 +00:00
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
2015-01-06 23:35:02 +00:00
|
|
|
NS_LossyConvertUTF16toASCII(char) = delete;
|
2014-05-05 17:30:46 +00:00
|
|
|
};
|
2004-02-19 02:44:03 +00:00
|
|
|
|
|
|
|
class NS_ConvertASCIItoUTF16 : public nsAutoString {
|
2014-05-05 17:30:46 +00:00
|
|
|
public:
|
2014-05-27 07:15:35 +00:00
|
|
|
explicit NS_ConvertASCIItoUTF16(const char* aCString) {
|
2018-07-06 07:44:43 +00:00
|
|
|
AppendASCIItoUTF16(mozilla::MakeStringSpan(aCString), *this);
|
2014-05-05 17:30:46 +00:00
|
|
|
}
|
|
|
|
|
2021-12-13 21:47:56 +00:00
|
|
|
NS_ConvertASCIItoUTF16(const char* aCString, size_t aLength) {
|
2014-05-05 17:30:46 +00:00
|
|
|
AppendASCIItoUTF16(Substring(aCString, aLength), *this);
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
explicit NS_ConvertASCIItoUTF16(const nsACString& aCString) {
|
2014-05-05 17:30:46 +00:00
|
|
|
AppendASCIItoUTF16(aCString, *this);
|
|
|
|
}
|
|
|
|
|
2019-10-17 22:09:46 +00:00
|
|
|
explicit NS_ConvertASCIItoUTF16(mozilla::Span<const char> aCString) {
|
|
|
|
AppendASCIItoUTF16(aCString, *this);
|
|
|
|
}
|
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
2015-01-06 23:35:02 +00:00
|
|
|
NS_ConvertASCIItoUTF16(char16_t) = delete;
|
2014-05-05 17:30:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A helper class that converts a UTF-16 string to UTF-8
|
|
|
|
*/
|
2012-09-02 02:35:17 +00:00
|
|
|
class NS_ConvertUTF16toUTF8 : public nsAutoCString {
|
2014-05-05 17:30:46 +00:00
|
|
|
public:
|
2015-10-10 01:19:23 +00:00
|
|
|
explicit NS_ConvertUTF16toUTF8(const char16ptr_t aString) {
|
2018-07-06 07:44:43 +00:00
|
|
|
AppendUTF16toUTF8(mozilla::MakeStringSpan(aString), *this);
|
2014-05-05 17:30:46 +00:00
|
|
|
}
|
|
|
|
|
2021-12-13 21:47:56 +00:00
|
|
|
NS_ConvertUTF16toUTF8(const char16ptr_t aString, size_t aLength) {
|
2017-08-14 21:22:50 +00:00
|
|
|
AppendUTF16toUTF8(Substring(static_cast<const char16_t*>(aString), aLength),
|
|
|
|
*this);
|
2014-05-05 17:30:46 +00:00
|
|
|
}
|
2004-02-19 02:44:03 +00:00
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
explicit NS_ConvertUTF16toUTF8(const nsAString& aString) {
|
2014-05-05 17:30:46 +00:00
|
|
|
AppendUTF16toUTF8(aString, *this);
|
|
|
|
}
|
2004-02-19 02:44:03 +00:00
|
|
|
|
2021-09-10 11:43:47 +00:00
|
|
|
explicit NS_ConvertUTF16toUTF8(mozilla::Span<const char16_t> aString) {
|
|
|
|
AppendUTF16toUTF8(aString, *this);
|
|
|
|
}
|
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
2015-01-06 23:35:02 +00:00
|
|
|
NS_ConvertUTF16toUTF8(char) = delete;
|
2014-05-05 17:30:46 +00:00
|
|
|
};
|
2004-02-19 02:44:03 +00:00
|
|
|
|
|
|
|
class NS_ConvertUTF8toUTF16 : public nsAutoString {
|
2014-05-05 17:30:46 +00:00
|
|
|
public:
|
2014-05-27 07:15:35 +00:00
|
|
|
explicit NS_ConvertUTF8toUTF16(const char* aCString) {
|
2018-07-06 07:44:43 +00:00
|
|
|
AppendUTF8toUTF16(mozilla::MakeStringSpan(aCString), *this);
|
2014-05-05 17:30:46 +00:00
|
|
|
}
|
|
|
|
|
2021-12-13 21:47:56 +00:00
|
|
|
NS_ConvertUTF8toUTF16(const char* aCString, size_t aLength) {
|
2014-05-05 17:30:46 +00:00
|
|
|
AppendUTF8toUTF16(Substring(aCString, aLength), *this);
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
explicit NS_ConvertUTF8toUTF16(const nsACString& aCString) {
|
2014-05-05 17:30:46 +00:00
|
|
|
AppendUTF8toUTF16(aCString, *this);
|
|
|
|
}
|
|
|
|
|
2021-09-10 11:43:47 +00:00
|
|
|
explicit NS_ConvertUTF8toUTF16(mozilla::Span<const char> aCString) {
|
|
|
|
AppendUTF8toUTF16(aCString, *this);
|
|
|
|
}
|
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
2015-01-06 23:35:02 +00:00
|
|
|
NS_ConvertUTF8toUTF16(char16_t) = delete;
|
2014-05-05 17:30:46 +00:00
|
|
|
};
|
2004-02-19 02:44:03 +00:00
|
|
|
|
2020-10-07 08:00:13 +00:00
|
|
|
/**
|
|
|
|
* Converts an integer (signed/unsigned, 32/64bit) to its decimal string
|
|
|
|
* representation and returns it as an nsAutoCString/nsAutoString.
|
|
|
|
*/
|
|
|
|
template <typename T, typename U>
|
|
|
|
nsTAutoString<T> IntToTString(const U aInt, const int aRadix = 10) {
|
|
|
|
nsTAutoString<T> string;
|
|
|
|
string.AppendInt(aInt, aRadix);
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
nsAutoCString IntToCString(const U aInt, const int aRadix = 10) {
|
|
|
|
return IntToTString<char>(aInt, aRadix);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
nsAutoString IntToString(const U aInt, const int aRadix = 10) {
|
|
|
|
return IntToTString<char16_t>(aInt, aRadix);
|
|
|
|
}
|
|
|
|
|
2019-03-30 04:26:26 +00:00
|
|
|
// MOZ_DBG support
|
|
|
|
|
|
|
|
inline std::ostream& operator<<(std::ostream& aOut, const nsACString& aString) {
|
|
|
|
aOut.write(aString.Data(), aString.Length());
|
2019-04-11 23:44:57 +00:00
|
|
|
return aOut;
|
2019-03-30 04:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline std::ostream& operator<<(std::ostream& aOut, const nsAString& aString) {
|
|
|
|
return aOut << NS_ConvertUTF16toUTF8(aString);
|
|
|
|
}
|
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
// the following are included/declared for backwards compatibility
|
|
|
|
#include "nsDependentString.h"
|
|
|
|
#include "nsLiteralString.h"
|
|
|
|
#include "nsPromiseFlatString.h"
|
|
|
|
|
|
|
|
#endif // !defined(nsString_h___)
|