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___
|
|
|
|
|
2011-12-16 19:42:07 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2004-02-19 02:44:03 +00:00
|
|
|
|
|
|
|
#include "nsSubstring.h"
|
|
|
|
#include "nsDependentSubstring.h"
|
|
|
|
#include "nsReadableUtils.h"
|
|
|
|
|
2013-07-12 00:16:41 +00:00
|
|
|
#include <new>
|
2004-02-19 02:44:03 +00:00
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
// enable support for the obsolete string API if not explicitly disabled
|
2004-02-19 02:44:03 +00:00
|
|
|
#ifndef MOZ_STRING_WITH_OBSOLETE_API
|
|
|
|
#define MOZ_STRING_WITH_OBSOLETE_API 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if MOZ_STRING_WITH_OBSOLETE_API
|
2014-05-05 17:30:46 +00:00
|
|
|
// radix values for ToInteger/AppendInt
|
2004-02-19 02:44:03 +00:00
|
|
|
#define kRadix10 (10)
|
|
|
|
#define kRadix16 (16)
|
|
|
|
#define kAutoDetect (100)
|
|
|
|
#define kRadixUnknown (kAutoDetect+1)
|
2011-10-17 14:59:28 +00:00
|
|
|
#define IGNORE_CASE (true)
|
2004-02-19 02:44:03 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
// declare nsString, et. al.
|
2004-02-19 02:44:03 +00:00
|
|
|
#include "string-template-def-unichar.h"
|
|
|
|
#include "nsTString.h"
|
|
|
|
#include "string-template-undef.h"
|
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
// declare nsCString, et. al.
|
2004-02-19 02:44:03 +00:00
|
|
|
#include "string-template-def-char.h"
|
|
|
|
#include "nsTString.h"
|
|
|
|
#include "string-template-undef.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
|
|
|
|
2013-09-18 03:43:12 +00:00
|
|
|
|
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:
|
2014-05-27 07:15:35 +00:00
|
|
|
explicit NS_LossyConvertUTF16toASCII(const char16_t* aString)
|
2014-05-05 17:30:46 +00:00
|
|
|
{
|
|
|
|
LossyAppendUTF16toASCII(aString, *this);
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
NS_LossyConvertUTF16toASCII(const char16_t* aString, uint32_t aLength)
|
2004-02-19 02:44:03 +00:00
|
|
|
{
|
2014-05-05 17:30:46 +00:00
|
|
|
LossyAppendUTF16toASCII(Substring(aString, aLength), *this);
|
|
|
|
}
|
2004-02-19 02:44:03 +00:00
|
|
|
|
2013-11-27 13:40:54 +00:00
|
|
|
#ifdef MOZ_USE_CHAR16_WRAPPER
|
2014-05-27 07:15:35 +00:00
|
|
|
explicit NS_LossyConvertUTF16toASCII(char16ptr_t aString)
|
|
|
|
: NS_LossyConvertUTF16toASCII(static_cast<const char16_t*>(aString))
|
|
|
|
{
|
|
|
|
}
|
2013-11-27 13:40:54 +00:00
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
NS_LossyConvertUTF16toASCII(char16ptr_t aString, uint32_t aLength)
|
|
|
|
: NS_LossyConvertUTF16toASCII(static_cast<const char16_t*>(aString), aLength)
|
|
|
|
{
|
|
|
|
}
|
2013-11-27 13:40:54 +00:00
|
|
|
#endif
|
|
|
|
|
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
|
2014-05-27 07:15:35 +00:00
|
|
|
NS_LossyConvertUTF16toASCII(char) MOZ_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)
|
2004-02-19 02:44:03 +00:00
|
|
|
{
|
2014-05-05 17:30:46 +00:00
|
|
|
AppendASCIItoUTF16(aCString, *this);
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
NS_ConvertASCIItoUTF16(const char* aCString, uint32_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);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
2014-05-27 07:15:35 +00:00
|
|
|
NS_ConvertASCIItoUTF16(char16_t) MOZ_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:
|
2014-05-27 07:15:35 +00:00
|
|
|
explicit NS_ConvertUTF16toUTF8(const char16_t* aString)
|
2014-05-05 17:30:46 +00:00
|
|
|
{
|
|
|
|
AppendUTF16toUTF8(aString, *this);
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
NS_ConvertUTF16toUTF8(const char16_t* aString, uint32_t aLength)
|
2004-02-19 02:44:03 +00:00
|
|
|
{
|
2014-05-05 17:30:46 +00:00
|
|
|
AppendUTF16toUTF8(Substring(aString, aLength), *this);
|
|
|
|
}
|
2004-02-19 02:44:03 +00:00
|
|
|
|
2013-11-27 13:40:54 +00:00
|
|
|
#ifdef MOZ_USE_CHAR16_WRAPPER
|
2014-05-27 07:15:35 +00:00
|
|
|
NS_ConvertUTF16toUTF8(char16ptr_t aString)
|
|
|
|
: NS_ConvertUTF16toUTF8(static_cast<const char16_t*>(aString))
|
|
|
|
{
|
|
|
|
}
|
2013-11-27 13:40:54 +00:00
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
NS_ConvertUTF16toUTF8(char16ptr_t aString, uint32_t aLength)
|
|
|
|
: NS_ConvertUTF16toUTF8(static_cast<const char16_t*>(aString), aLength)
|
|
|
|
{
|
|
|
|
}
|
2013-11-27 13:40:54 +00:00
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
2014-05-27 07:15:35 +00:00
|
|
|
NS_ConvertUTF16toUTF8(char) MOZ_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)
|
2004-02-19 02:44:03 +00:00
|
|
|
{
|
2014-05-05 17:30:46 +00:00
|
|
|
AppendUTF8toUTF16(aCString, *this);
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
NS_ConvertUTF8toUTF16(const char* aCString, uint32_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);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
2014-05-27 07:15:35 +00:00
|
|
|
NS_ConvertUTF8toUTF16(char16_t) MOZ_DELETE;
|
2014-05-05 17:30:46 +00:00
|
|
|
};
|
2004-02-19 02:44:03 +00:00
|
|
|
|
|
|
|
|
2014-02-06 16:42:58 +00:00
|
|
|
#ifdef MOZ_USE_CHAR16_WRAPPER
|
|
|
|
|
|
|
|
inline char16_t*
|
2014-05-27 07:15:35 +00:00
|
|
|
wwc(wchar_t* aStr)
|
2014-02-06 16:42:58 +00:00
|
|
|
{
|
2014-05-27 07:15:35 +00:00
|
|
|
return reinterpret_cast<char16_t*>(aStr);
|
2014-02-06 16:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline wchar_t*
|
2014-05-27 07:15:35 +00:00
|
|
|
wwc(char16_t* aStr)
|
2014-02-06 16:42:58 +00:00
|
|
|
{
|
2014-05-27 07:15:35 +00:00
|
|
|
return reinterpret_cast<wchar_t*>(aStr);
|
2014-02-06 16:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
inline char16_t*
|
2014-05-27 07:15:35 +00:00
|
|
|
wwc(char16_t* aStr)
|
2014-02-06 16:42:58 +00:00
|
|
|
{
|
2014-05-27 07:15:35 +00:00
|
|
|
return aStr;
|
2014-02-06 16:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
// the following are included/declared for backwards compatibility
|
|
|
|
typedef nsAutoString nsVoidableString;
|
|
|
|
|
|
|
|
#include "nsDependentString.h"
|
|
|
|
#include "nsLiteralString.h"
|
|
|
|
#include "nsPromiseFlatString.h"
|
|
|
|
|
|
|
|
// need to include these for backwards compatibility
|
|
|
|
#include "nsMemory.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "plhash.h"
|
|
|
|
|
|
|
|
#endif // !defined(nsString_h___)
|