2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsString_h___
|
|
|
|
#define nsString_h___
|
|
|
|
|
2011-12-16 11:42:07 -08:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsSubstring_h___
|
|
|
|
#include "nsSubstring.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef nsDependentSubstring_h___
|
|
|
|
#include "nsDependentSubstring.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef nsReadableUtils_h___
|
|
|
|
#include "nsReadableUtils.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-11 17:16:41 -07:00
|
|
|
#include <new>
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// enable support for the obsolete string API if not explicitly disabled
|
|
|
|
#ifndef MOZ_STRING_WITH_OBSOLETE_API
|
|
|
|
#define MOZ_STRING_WITH_OBSOLETE_API 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if MOZ_STRING_WITH_OBSOLETE_API
|
|
|
|
// radix values for ToInteger/AppendInt
|
|
|
|
#define kRadix10 (10)
|
|
|
|
#define kRadix16 (16)
|
|
|
|
#define kAutoDetect (100)
|
|
|
|
#define kRadixUnknown (kAutoDetect+1)
|
2011-10-17 07:59:28 -07:00
|
|
|
#define IGNORE_CASE (true)
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// declare nsString, et. al.
|
|
|
|
#include "string-template-def-unichar.h"
|
|
|
|
#include "nsTString.h"
|
|
|
|
#include "string-template-undef.h"
|
|
|
|
|
|
|
|
// declare nsCString, et. al.
|
|
|
|
#include "string-template-def-char.h"
|
|
|
|
#include "nsTString.h"
|
|
|
|
#include "string-template-undef.h"
|
|
|
|
|
2014-01-04 07:02:17 -08:00
|
|
|
static_assert(sizeof(char16_t) == 2, "size of char16_t must be 2");
|
2013-07-18 10:59:53 -07:00
|
|
|
static_assert(sizeof(nsString::char_type) == 2,
|
|
|
|
"size of nsString::char_type must be 2");
|
2013-09-17 20:43:12 -07:00
|
|
|
static_assert(nsString::char_type(-1) > nsString::char_type(0),
|
|
|
|
"nsString::char_type must be unsigned");
|
2013-07-18 10:59:53 -07:00
|
|
|
static_assert(sizeof(nsCString::char_type) == 1,
|
|
|
|
"size of nsCString::char_type must be 1");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-09-17 20:43:12 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* A helper class that converts a UTF-16 string to ASCII in a lossy manner
|
|
|
|
*/
|
2012-09-01 19:35:17 -07:00
|
|
|
class NS_LossyConvertUTF16toASCII : public nsAutoCString
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit
|
2014-01-04 07:02:17 -08:00
|
|
|
NS_LossyConvertUTF16toASCII( const char16_t* aString )
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
LossyAppendUTF16toASCII(aString, *this);
|
|
|
|
}
|
|
|
|
|
2014-01-04 07:02:17 -08:00
|
|
|
NS_LossyConvertUTF16toASCII( const char16_t* aString, uint32_t aLength )
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-12-09 00:35:41 -08:00
|
|
|
LossyAppendUTF16toASCII(Substring(aString, aLength), *this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-11-27 05:40:54 -08:00
|
|
|
#ifdef MOZ_USE_CHAR16_WRAPPER
|
|
|
|
explicit
|
|
|
|
NS_LossyConvertUTF16toASCII( char16ptr_t aString )
|
|
|
|
: NS_LossyConvertUTF16toASCII(static_cast<const char16_t*>(aString)) {}
|
|
|
|
|
|
|
|
NS_LossyConvertUTF16toASCII( char16ptr_t aString, uint32_t aLength )
|
|
|
|
: NS_LossyConvertUTF16toASCII(static_cast<const char16_t*>(aString), aLength) {}
|
|
|
|
#endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
explicit
|
|
|
|
NS_LossyConvertUTF16toASCII( const nsAString& aString )
|
|
|
|
{
|
|
|
|
LossyAppendUTF16toASCII(aString, *this);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
|
|
|
NS_LossyConvertUTF16toASCII( char );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class NS_ConvertASCIItoUTF16 : public nsAutoString
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit
|
|
|
|
NS_ConvertASCIItoUTF16( const char* aCString )
|
|
|
|
{
|
|
|
|
AppendASCIItoUTF16(aCString, *this);
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_ConvertASCIItoUTF16( const char* aCString, uint32_t aLength )
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-12-09 00:35:41 -08:00
|
|
|
AppendASCIItoUTF16(Substring(aCString, aLength), *this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
explicit
|
|
|
|
NS_ConvertASCIItoUTF16( const nsACString& aCString )
|
|
|
|
{
|
|
|
|
AppendASCIItoUTF16(aCString, *this);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
2014-01-04 07:02:17 -08:00
|
|
|
NS_ConvertASCIItoUTF16( char16_t );
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A helper class that converts a UTF-16 string to UTF-8
|
|
|
|
*/
|
2012-09-01 19:35:17 -07:00
|
|
|
class NS_ConvertUTF16toUTF8 : public nsAutoCString
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit
|
2014-01-04 07:02:17 -08:00
|
|
|
NS_ConvertUTF16toUTF8( const char16_t* aString )
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
AppendUTF16toUTF8(aString, *this);
|
|
|
|
}
|
|
|
|
|
2014-01-04 07:02:17 -08:00
|
|
|
NS_ConvertUTF16toUTF8( const char16_t* aString, uint32_t aLength )
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-12-09 00:35:41 -08:00
|
|
|
AppendUTF16toUTF8(Substring(aString, aLength), *this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-11-27 05:40:54 -08:00
|
|
|
#ifdef MOZ_USE_CHAR16_WRAPPER
|
2014-01-04 07:02:17 -08:00
|
|
|
NS_ConvertUTF16toUTF8( char16ptr_t aString ) : NS_ConvertUTF16toUTF8(static_cast<const char16_t*>(aString)) {}
|
2013-11-27 05:40:54 -08:00
|
|
|
|
|
|
|
NS_ConvertUTF16toUTF8( char16ptr_t aString, uint32_t aLength )
|
2014-01-04 07:02:17 -08:00
|
|
|
: NS_ConvertUTF16toUTF8(static_cast<const char16_t*>(aString), aLength) {}
|
2013-11-27 05:40:54 -08:00
|
|
|
#endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
explicit
|
|
|
|
NS_ConvertUTF16toUTF8( const nsAString& aString )
|
|
|
|
{
|
|
|
|
AppendUTF16toUTF8(aString, *this);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
|
|
|
NS_ConvertUTF16toUTF8( char );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class NS_ConvertUTF8toUTF16 : public nsAutoString
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit
|
|
|
|
NS_ConvertUTF8toUTF16( const char* aCString )
|
|
|
|
{
|
|
|
|
AppendUTF8toUTF16(aCString, *this);
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_ConvertUTF8toUTF16( const char* aCString, uint32_t aLength )
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-12-09 00:35:41 -08:00
|
|
|
AppendUTF8toUTF16(Substring(aCString, aLength), *this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
explicit
|
|
|
|
NS_ConvertUTF8toUTF16( const nsACString& aCString )
|
|
|
|
{
|
|
|
|
AppendUTF8toUTF16(aCString, *this);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
2014-01-04 07:02:17 -08:00
|
|
|
NS_ConvertUTF8toUTF16( char16_t );
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// the following are included/declared for backwards compatibility
|
|
|
|
typedef nsAutoString nsVoidableString;
|
|
|
|
|
|
|
|
#ifndef nsDependentString_h___
|
|
|
|
#include "nsDependentString.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef nsLiteralString_h___
|
|
|
|
#include "nsLiteralString.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef nsPromiseFlatString_h___
|
|
|
|
#include "nsPromiseFlatString.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// need to include these for backwards compatibility
|
|
|
|
#include "nsMemory.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "plhash.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deprecated: don't use |Recycle|, just call |nsMemory::Free| directly
|
|
|
|
*
|
|
|
|
* Return the given buffer to the heap manager. Calls allocator::Free()
|
|
|
|
*/
|
|
|
|
inline void Recycle( char* aBuffer) { nsMemory::Free(aBuffer); }
|
2014-01-04 07:02:17 -08:00
|
|
|
inline void Recycle( char16_t* aBuffer) { nsMemory::Free(aBuffer); }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#endif // !defined(nsString_h___)
|