2004-02-19 02:44:03 +00: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 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
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nsTDependentString_CharT
|
|
|
|
*
|
|
|
|
* Stores a null-terminated, immutable sequence of characters.
|
|
|
|
*
|
|
|
|
* Subclass of nsTString that restricts string value to an immutable
|
|
|
|
* character sequence. This class does not own its data, so the creator
|
|
|
|
* of objects of this type must take care to ensure that a
|
|
|
|
* nsTDependentString continues to reference valid memory for the
|
|
|
|
* duration of its use.
|
|
|
|
*/
|
|
|
|
class nsTDependentString_CharT : public nsTString_CharT
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
typedef nsTDependentString_CharT self_type;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* constructors
|
|
|
|
*/
|
|
|
|
|
|
|
|
nsTDependentString_CharT( const char_type* start, const char_type* end )
|
2012-08-22 15:56:38 +00:00
|
|
|
: string_type(const_cast<char_type*>(start), uint32_t(end - start), F_TERMINATED)
|
2004-02-19 02:44:03 +00:00
|
|
|
{
|
2013-09-04 20:43:12 +00:00
|
|
|
AssertValidDepedentString();
|
2004-02-19 02:44:03 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nsTDependentString_CharT( const char_type* data, uint32_t length )
|
2007-07-08 07:08:04 +00:00
|
|
|
: string_type(const_cast<char_type*>(data), length, F_TERMINATED)
|
2004-02-19 02:44:03 +00:00
|
|
|
{
|
2013-09-04 20:43:12 +00:00
|
|
|
AssertValidDepedentString();
|
2004-02-19 02:44:03 +00:00
|
|
|
}
|
|
|
|
|
2013-11-27 13:40:54 +00:00
|
|
|
#if defined(CharT_is_PRUnichar) && defined(MOZ_USE_CHAR16_WRAPPER)
|
|
|
|
nsTDependentString_CharT( char16ptr_t data, uint32_t length )
|
|
|
|
: nsTDependentString_CharT(static_cast<const char16_t*>(data), length) {}
|
|
|
|
#endif
|
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
explicit
|
|
|
|
nsTDependentString_CharT( const char_type* data )
|
2012-08-22 15:56:38 +00:00
|
|
|
: string_type(const_cast<char_type*>(data), uint32_t(char_traits::length(data)), F_TERMINATED)
|
2004-02-19 02:44:03 +00:00
|
|
|
{
|
2013-09-04 20:43:12 +00:00
|
|
|
AssertValidDepedentString();
|
2004-02-19 02:44:03 +00:00
|
|
|
}
|
|
|
|
|
2013-11-27 13:40:54 +00:00
|
|
|
#if defined(CharT_is_PRUnichar) && defined(MOZ_USE_CHAR16_WRAPPER)
|
|
|
|
explicit
|
|
|
|
nsTDependentString_CharT( char16ptr_t data )
|
|
|
|
: nsTDependentString_CharT( static_cast<const char16_t*>(data)) {}
|
|
|
|
#endif
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nsTDependentString_CharT( const string_type& str, uint32_t startPos )
|
2011-09-15 07:40:17 +00:00
|
|
|
: string_type()
|
2004-02-19 02:44:03 +00:00
|
|
|
{
|
2011-09-15 07:40:17 +00:00
|
|
|
Rebind(str, startPos);
|
2004-02-19 02:44:03 +00:00
|
|
|
}
|
|
|
|
|
2004-11-25 07:03:20 +00:00
|
|
|
// Create a nsTDependentSubstring to be bound later
|
|
|
|
nsTDependentString_CharT()
|
|
|
|
: string_type() {}
|
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
// XXX are you sure??
|
|
|
|
// auto-generated copy-constructor OK
|
|
|
|
// auto-generated copy-assignment operator OK
|
|
|
|
// auto-generated destructor OK
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* allow this class to be bound to a different string...
|
|
|
|
*/
|
|
|
|
|
2013-09-04 20:43:12 +00:00
|
|
|
using nsTString_CharT::Rebind;
|
2004-02-19 02:44:03 +00:00
|
|
|
void Rebind( const char_type* data )
|
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
Rebind(data, uint32_t(char_traits::length(data)));
|
2004-02-19 02:44:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Rebind( const char_type* start, const char_type* end )
|
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
Rebind(start, uint32_t(end - start));
|
2004-02-19 02:44:03 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
void Rebind( const string_type&, uint32_t startPos );
|
2011-09-15 07:40:17 +00:00
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
// NOT USED
|
|
|
|
nsTDependentString_CharT( const substring_tuple_type& );
|
|
|
|
};
|