2000-08-05 00:51:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2004-04-18 14:21:17 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
2000-08-05 00:51:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 14:21:17 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2000
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2000-08-05 00:51:37 +00:00
|
|
|
*
|
|
|
|
* Contributor(s):
|
2000-09-09 07:30:55 +00:00
|
|
|
* Scott Collins <scc@mozilla.org> (original author)
|
|
|
|
* Johnny Stenbeck <jst@netscape.com>
|
|
|
|
*
|
2004-04-18 14:21:17 +00:00
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2000-08-05 00:51:37 +00:00
|
|
|
|
|
|
|
#ifndef nsReadableUtils_h___
|
|
|
|
#define nsReadableUtils_h___
|
|
|
|
|
2000-09-09 07:30:55 +00:00
|
|
|
/**
|
|
|
|
* I guess all the routines in this file are all mis-named.
|
|
|
|
* According to our conventions, they should be |NS_xxx|.
|
|
|
|
*/
|
|
|
|
|
2001-04-02 19:40:52 +00:00
|
|
|
#ifndef nsAString_h___
|
|
|
|
#include "nsAString.h"
|
2000-09-09 07:30:55 +00:00
|
|
|
#endif
|
2000-08-05 00:51:37 +00:00
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
inline size_t Distance( const nsReadingIterator<PRUnichar>& start, const nsReadingIterator<PRUnichar>& end )
|
|
|
|
{
|
|
|
|
return end.get() - start.get();
|
|
|
|
}
|
|
|
|
inline size_t Distance( const nsReadingIterator<char>& start, const nsReadingIterator<char>& end )
|
|
|
|
{
|
|
|
|
return end.get() - start.get();
|
|
|
|
}
|
2000-10-05 01:07:02 +00:00
|
|
|
|
2003-06-27 07:44:13 +00:00
|
|
|
NS_COM void LossyCopyUTF16toASCII( const nsAString& aSource, nsACString& aDest );
|
2003-06-23 04:30:57 +00:00
|
|
|
NS_COM void CopyASCIItoUTF16( const nsACString& aSource, nsAString& aDest );
|
2003-06-19 05:17:55 +00:00
|
|
|
|
2003-12-23 09:24:11 +00:00
|
|
|
NS_COM void LossyCopyUTF16toASCII( const PRUnichar* aSource, nsACString& aDest );
|
|
|
|
NS_COM void CopyASCIItoUTF16( const char* aSource, nsAString& aDest );
|
|
|
|
|
2003-06-05 11:44:06 +00:00
|
|
|
NS_COM void CopyUTF16toUTF8( const nsAString& aSource, nsACString& aDest );
|
|
|
|
NS_COM void CopyUTF8toUTF16( const nsACString& aSource, nsAString& aDest );
|
2003-05-31 06:03:18 +00:00
|
|
|
|
2003-06-19 05:17:55 +00:00
|
|
|
NS_COM void CopyUTF16toUTF8( const PRUnichar* aSource, nsACString& aDest );
|
|
|
|
NS_COM void CopyUTF8toUTF16( const char* aSource, nsAString& aDest );
|
2003-11-01 09:35:48 +00:00
|
|
|
|
|
|
|
NS_COM void LossyAppendUTF16toASCII( const nsAString& aSource, nsACString& aDest );
|
|
|
|
NS_COM void AppendASCIItoUTF16( const nsACString& aSource, nsAString& aDest );
|
|
|
|
|
|
|
|
NS_COM void LossyAppendUTF16toASCII( const PRUnichar* aSource, nsACString& aDest );
|
|
|
|
NS_COM void AppendASCIItoUTF16( const char* aSource, nsAString& aDest );
|
2003-06-19 05:17:55 +00:00
|
|
|
|
2003-06-05 11:44:06 +00:00
|
|
|
NS_COM void AppendUTF16toUTF8( const nsAString& aSource, nsACString& aDest );
|
|
|
|
NS_COM void AppendUTF8toUTF16( const nsACString& aSource, nsAString& aDest );
|
2000-08-05 00:51:37 +00:00
|
|
|
|
2003-06-19 05:17:55 +00:00
|
|
|
NS_COM void AppendUTF16toUTF8( const PRUnichar* aSource, nsACString& aDest );
|
|
|
|
NS_COM void AppendUTF8toUTF16( const char* aSource, nsAString& aDest );
|
|
|
|
|
2003-06-23 04:30:57 +00:00
|
|
|
// Backward compatibility
|
|
|
|
inline
|
|
|
|
NS_COM void CopyUCS2toASCII( const nsAString& aSource, nsACString& aDest )
|
2003-06-27 07:44:13 +00:00
|
|
|
{ LossyCopyUTF16toASCII(aSource, aDest); }
|
2003-06-23 04:30:57 +00:00
|
|
|
inline
|
|
|
|
NS_COM void CopyASCIItoUCS2( const nsACString& aSource, nsAString& aDest )
|
|
|
|
{ CopyASCIItoUTF16(aSource, aDest); }
|
|
|
|
|
2000-08-05 04:25:49 +00:00
|
|
|
/**
|
|
|
|
* Returns a new |char| buffer containing a zero-terminated copy of |aSource|.
|
|
|
|
*
|
|
|
|
* Allocates and returns a new |char| buffer which you must free with |nsMemory::Free|.
|
|
|
|
* Performs a lossy encoding conversion by chopping 16-bit wide characters down to 8-bits wide while copying |aSource| to your new buffer.
|
|
|
|
* This conversion is not well defined; but it reproduces legacy string behavior.
|
|
|
|
* The new buffer is zero-terminated, but that may not help you if |aSource| contains embedded nulls.
|
|
|
|
*
|
|
|
|
* @param aSource a 16-bit wide string
|
|
|
|
* @return a new |char| buffer you must free with |nsMemory::Free|.
|
|
|
|
*/
|
2001-04-02 19:40:52 +00:00
|
|
|
NS_COM char* ToNewCString( const nsAString& aSource );
|
2000-08-05 00:51:37 +00:00
|
|
|
|
2000-08-05 04:25:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a new |char| buffer containing a zero-terminated copy of |aSource|.
|
|
|
|
*
|
|
|
|
* Allocates and returns a new |char| buffer which you must free with |nsMemory::Free|.
|
|
|
|
* The new buffer is zero-terminated, but that may not help you if |aSource| contains embedded nulls.
|
|
|
|
*
|
|
|
|
* @param aSource an 8-bit wide string
|
|
|
|
* @return a new |char| buffer you must free with |nsMemory::Free|.
|
|
|
|
*/
|
2001-04-02 19:40:52 +00:00
|
|
|
NS_COM char* ToNewCString( const nsACString& aSource );
|
2000-08-05 04:25:49 +00:00
|
|
|
|
2000-08-23 17:27:06 +00:00
|
|
|
/**
|
|
|
|
* Returns a new |char| buffer containing a zero-terminated copy of |aSource|.
|
|
|
|
*
|
2003-06-23 04:30:57 +00:00
|
|
|
* Allocates and returns a new |char| buffer which you must free with
|
|
|
|
* |nsMemory::Free|.
|
|
|
|
* Performs an encoding conversion from a UTF-16 string to a UTF-8 string
|
|
|
|
* copying |aSource| to your new buffer.
|
|
|
|
* The new buffer is zero-terminated, but that may not help you if |aSource|
|
|
|
|
* contains embedded nulls.
|
2000-08-23 17:27:06 +00:00
|
|
|
*
|
2003-06-23 04:30:57 +00:00
|
|
|
* @param aSource a UTF-16 string (made of PRUnichar's)
|
2000-08-23 17:27:06 +00:00
|
|
|
* @return a new |char| buffer you must free with |nsMemory::Free|.
|
|
|
|
*/
|
|
|
|
|
2001-04-02 19:40:52 +00:00
|
|
|
NS_COM char* ToNewUTF8String( const nsAString& aSource );
|
2000-08-23 17:27:06 +00:00
|
|
|
|
2000-08-05 04:25:49 +00:00
|
|
|
|
|
|
|
/**
|
2003-06-23 04:30:57 +00:00
|
|
|
* Returns a new |PRUnichar| buffer containing a zero-terminated copy of
|
|
|
|
* |aSource|.
|
2000-08-05 04:25:49 +00:00
|
|
|
*
|
2003-06-23 04:30:57 +00:00
|
|
|
* Allocates and returns a new |PRUnichar| buffer which you must free with
|
|
|
|
* |nsMemory::Free|.
|
|
|
|
* The new buffer is zero-terminated, but that may not help you if |aSource|
|
|
|
|
* contains embedded nulls.
|
2000-08-05 04:25:49 +00:00
|
|
|
*
|
2003-06-23 04:30:57 +00:00
|
|
|
* @param aSource a UTF-16 string
|
2000-08-05 04:25:49 +00:00
|
|
|
* @return a new |PRUnichar| buffer you must free with |nsMemory::Free|.
|
|
|
|
*/
|
2001-04-02 19:40:52 +00:00
|
|
|
NS_COM PRUnichar* ToNewUnicode( const nsAString& aSource );
|
2000-08-05 04:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a new |PRUnichar| buffer containing a zero-terminated copy of |aSource|.
|
|
|
|
*
|
2002-11-08 11:43:58 +00:00
|
|
|
* Allocates and returns a new |PRUnichar| buffer which you must free with |nsMemory::Free|.
|
2000-08-05 04:25:49 +00:00
|
|
|
* Performs an encoding conversion by 0-padding 8-bit wide characters up to 16-bits wide while copying |aSource| to your new buffer.
|
|
|
|
* This conversion is not well defined; but it reproduces legacy string behavior.
|
|
|
|
* The new buffer is zero-terminated, but that may not help you if |aSource| contains embedded nulls.
|
|
|
|
*
|
2003-05-21 22:20:27 +00:00
|
|
|
* @param aSource an 8-bit wide string (a C-string, NOT UTF-8)
|
2000-08-05 04:25:49 +00:00
|
|
|
* @return a new |PRUnichar| buffer you must free with |nsMemory::Free|.
|
|
|
|
*/
|
2001-04-02 19:40:52 +00:00
|
|
|
NS_COM PRUnichar* ToNewUnicode( const nsACString& aSource );
|
2000-08-05 04:25:49 +00:00
|
|
|
|
2003-05-21 22:20:27 +00:00
|
|
|
/**
|
|
|
|
* Returns a new |PRUnichar| buffer containing a zero-terminated copy
|
|
|
|
* of |aSource|.
|
|
|
|
*
|
|
|
|
* Allocates and returns a new |char| buffer which you must free with
|
2003-06-23 04:30:57 +00:00
|
|
|
* |nsMemory::Free|. Performs an encoding conversion from UTF-8 to UTF-16
|
|
|
|
* while copying |aSource| to your new buffer. This conversion is well defined
|
|
|
|
* for a valid UTF-8 string. The new buffer is zero-terminated, but that
|
|
|
|
* may not help you if |aSource| contains embedded nulls.
|
2003-05-21 22:20:27 +00:00
|
|
|
*
|
|
|
|
* @param aSource an 8-bit wide string, UTF-8 encoded
|
|
|
|
* @return a new |PRUnichar| buffer you must free with |nsMemory::Free|.
|
2003-06-23 04:30:57 +00:00
|
|
|
* (UTF-16 encoded)
|
2003-05-21 22:20:27 +00:00
|
|
|
*/
|
|
|
|
NS_COM PRUnichar* UTF8ToNewUnicode( const nsACString& aSource );
|
|
|
|
|
2000-08-23 17:27:06 +00:00
|
|
|
/**
|
2003-06-23 04:30:57 +00:00
|
|
|
* Copies |aLength| 16-bit code units from the start of |aSource| to the
|
2000-08-23 17:27:06 +00:00
|
|
|
* |PRUnichar| buffer |aDest|.
|
|
|
|
*
|
|
|
|
* After this operation |aDest| is not null terminated.
|
|
|
|
*
|
2003-06-23 04:30:57 +00:00
|
|
|
* @param aSource a UTF-16 string
|
2000-12-12 21:58:14 +00:00
|
|
|
* @param aSrcOffset start offset in the source string
|
2000-08-23 17:27:06 +00:00
|
|
|
* @param aDest a |PRUnichar| buffer
|
2003-06-23 04:30:57 +00:00
|
|
|
* @param aLength the number of 16-bit code units to copy
|
2000-08-23 17:27:06 +00:00
|
|
|
* @return pointer to destination buffer - identical to |aDest|
|
|
|
|
*/
|
2001-04-02 19:40:52 +00:00
|
|
|
NS_COM PRUnichar* CopyUnicodeTo( const nsAString& aSource,
|
2000-12-12 21:58:14 +00:00
|
|
|
PRUint32 aSrcOffset,
|
2000-08-23 17:27:06 +00:00
|
|
|
PRUnichar* aDest,
|
|
|
|
PRUint32 aLength );
|
|
|
|
|
2000-08-05 04:25:49 +00:00
|
|
|
|
2000-12-12 21:58:14 +00:00
|
|
|
/**
|
|
|
|
* Copies 16-bit characters between iterators |aSrcStart| and
|
|
|
|
* |aSrcEnd| to the writable string |aDest|. Similar to the
|
|
|
|
* |nsString::Mid| method.
|
|
|
|
*
|
|
|
|
* After this operation |aDest| is not null terminated.
|
|
|
|
*
|
|
|
|
* @param aSrcStart start source iterator
|
|
|
|
* @param aSrcEnd end source iterator
|
|
|
|
* @param aDest destination for the copy
|
|
|
|
*/
|
2001-09-25 09:35:50 +00:00
|
|
|
NS_COM void CopyUnicodeTo( const nsAString::const_iterator& aSrcStart,
|
|
|
|
const nsAString::const_iterator& aSrcEnd,
|
2001-04-02 19:40:52 +00:00
|
|
|
nsAString& aDest );
|
2000-12-12 21:58:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Appends 16-bit characters between iterators |aSrcStart| and
|
|
|
|
* |aSrcEnd| to the writable string |aDest|.
|
|
|
|
*
|
|
|
|
* After this operation |aDest| is not null terminated.
|
|
|
|
*
|
|
|
|
* @param aSrcStart start source iterator
|
|
|
|
* @param aSrcEnd end source iterator
|
|
|
|
* @param aDest destination for the copy
|
|
|
|
*/
|
2001-09-25 09:35:50 +00:00
|
|
|
NS_COM void AppendUnicodeTo( const nsAString::const_iterator& aSrcStart,
|
|
|
|
const nsAString::const_iterator& aSrcEnd,
|
2001-04-02 19:40:52 +00:00
|
|
|
nsAString& aDest );
|
2000-12-12 21:58:14 +00:00
|
|
|
|
2000-08-05 04:25:49 +00:00
|
|
|
/**
|
|
|
|
* Returns |PR_TRUE| if |aString| contains only ASCII characters, that is, characters in the range (0x00, 0x7F).
|
|
|
|
*
|
|
|
|
* @param aString a 16-bit wide string to scan
|
|
|
|
*/
|
2001-04-02 19:40:52 +00:00
|
|
|
NS_COM PRBool IsASCII( const nsAString& aString );
|
2000-08-05 00:51:37 +00:00
|
|
|
|
2002-03-06 07:48:55 +00:00
|
|
|
/**
|
|
|
|
* Returns |PR_TRUE| if |aString| contains only ASCII characters, that is, characters in the range (0x00, 0x7F).
|
|
|
|
*
|
|
|
|
* @param aString a 8-bit wide string to scan
|
|
|
|
*/
|
|
|
|
NS_COM PRBool IsASCII( const nsACString& aString );
|
|
|
|
|
2000-08-23 17:27:06 +00:00
|
|
|
|
2003-03-25 08:11:13 +00:00
|
|
|
/**
|
|
|
|
* Returns |PR_TRUE| if |aString| is a valid UTF-8 string.
|
|
|
|
* XXX This is not bullet-proof and nor an all-purpose UTF-8 validator.
|
|
|
|
* It is mainly written to replace and roughly equivalent to
|
|
|
|
*
|
2003-06-23 04:30:57 +00:00
|
|
|
* str.Equals(NS_ConvertUTF16toUTF8(NS_ConvertUTF8toUTF16(str)))
|
2003-03-25 08:11:13 +00:00
|
|
|
*
|
|
|
|
* (see bug 191541)
|
|
|
|
* As such, it does not check for non-UTF-8 7bit encodings such as
|
|
|
|
* ISO-2022-JP and HZ. However, it filters out UTF-8 representation
|
|
|
|
* of surrogate codepoints and non-characters ( 0xFFFE and 0xFFFF
|
|
|
|
* in planes 0 through 16.) as well as overlong UTF-8 sequences.
|
|
|
|
* Also note that it regards UTF-8 sequences corresponding to
|
|
|
|
* codepoints above 0x10FFFF as invalid in accordance with
|
|
|
|
* http://www.ietf.org/internet-drafts/draft-yergeau-rfc2279bis-04.txt
|
|
|
|
*
|
|
|
|
* @param aString an 8-bit wide string to scan
|
|
|
|
*/
|
|
|
|
NS_COM PRBool IsUTF8( const nsACString& aString );
|
|
|
|
|
2000-08-23 17:27:06 +00:00
|
|
|
|
2000-09-09 07:30:55 +00:00
|
|
|
/**
|
|
|
|
* Converts case in place in the argument string.
|
|
|
|
*/
|
2001-04-02 19:40:52 +00:00
|
|
|
NS_COM void ToUpperCase( nsACString& );
|
2000-09-09 07:30:55 +00:00
|
|
|
|
2001-04-02 19:40:52 +00:00
|
|
|
NS_COM void ToLowerCase( nsACString& );
|
2000-08-23 17:27:06 +00:00
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
NS_COM void ToUpperCase( nsCSubstring& );
|
2001-12-23 02:56:41 +00:00
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
NS_COM void ToLowerCase( nsCSubstring& );
|
2001-12-23 02:56:41 +00:00
|
|
|
|
2001-12-08 07:08:38 +00:00
|
|
|
/**
|
|
|
|
* Converts case from string aSource to aDest.
|
|
|
|
*/
|
|
|
|
NS_COM void ToUpperCase( const nsACString& aSource, nsACString& aDest );
|
|
|
|
|
|
|
|
NS_COM void ToLowerCase( const nsACString& aSource, nsACString& aDest );
|
|
|
|
|
2000-12-12 21:58:14 +00:00
|
|
|
/**
|
|
|
|
* Finds the leftmost occurance of |aPattern|, if any in the range |aSearchStart|..|aSearchEnd|.
|
|
|
|
*
|
|
|
|
* Returns |PR_TRUE| if a match was found, and adjusts |aSearchStart| and |aSearchEnd| to
|
|
|
|
* point to the match. If no match was found, returns |PR_FALSE| and makes |aSearchStart == aSearchEnd|.
|
|
|
|
*
|
|
|
|
* Currently, this is equivalent to the O(m*n) implementation previously on |ns[C]String|.
|
2001-05-13 05:16:10 +00:00
|
|
|
* If we need something faster, then we can implement that later.
|
2000-12-12 21:58:14 +00:00
|
|
|
*/
|
|
|
|
|
2001-10-30 03:39:18 +00:00
|
|
|
NS_COM PRBool FindInReadable( const nsAString& aPattern, nsAString::const_iterator&, nsAString::const_iterator&, const nsStringComparator& = nsDefaultStringComparator() );
|
|
|
|
NS_COM PRBool FindInReadable( const nsACString& aPattern, nsACString::const_iterator&, nsACString::const_iterator&, const nsCStringComparator& = nsDefaultCStringComparator() );
|
2002-03-19 06:46:56 +00:00
|
|
|
|
|
|
|
/* sometimes we don't care about where the string was, just that we
|
|
|
|
* found it or not */
|
2002-11-06 21:11:24 +00:00
|
|
|
inline PRBool FindInReadable( const nsAString& aPattern, const nsAString& aSource, const nsStringComparator& compare = nsDefaultStringComparator() )
|
2002-03-19 06:46:56 +00:00
|
|
|
{
|
|
|
|
nsAString::const_iterator start, end;
|
|
|
|
aSource.BeginReading(start);
|
|
|
|
aSource.EndReading(end);
|
|
|
|
return FindInReadable(aPattern, start, end, compare);
|
|
|
|
}
|
|
|
|
|
2002-11-06 21:11:24 +00:00
|
|
|
inline PRBool FindInReadable( const nsACString& aPattern, const nsACString& aSource, const nsCStringComparator& compare = nsDefaultCStringComparator() )
|
2002-03-19 06:46:56 +00:00
|
|
|
{
|
|
|
|
nsACString::const_iterator start, end;
|
|
|
|
aSource.BeginReading(start);
|
|
|
|
aSource.EndReading(end);
|
|
|
|
return FindInReadable(aPattern, start, end, compare);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-25 09:35:50 +00:00
|
|
|
NS_COM PRBool CaseInsensitiveFindInReadable( const nsACString& aPattern, nsACString::const_iterator&, nsACString::const_iterator& );
|
2001-05-13 05:16:10 +00:00
|
|
|
|
2000-12-12 21:58:14 +00:00
|
|
|
/**
|
|
|
|
* Finds the rightmost occurance of |aPattern|
|
|
|
|
* Returns |PR_TRUE| if a match was found, and adjusts |aSearchStart| and |aSearchEnd| to
|
|
|
|
* point to the match. If no match was found, returns |PR_FALSE| and makes |aSearchStart == aSearchEnd|.
|
|
|
|
*
|
|
|
|
* Currently, this is equivalent to the O(m*n) implementation previously on |ns[C]String|.
|
2001-05-13 05:16:10 +00:00
|
|
|
* If we need something faster, then we can implement that later.
|
2000-12-12 21:58:14 +00:00
|
|
|
*/
|
2002-03-19 06:46:56 +00:00
|
|
|
NS_COM PRBool RFindInReadable( const nsAString& aPattern, nsAString::const_iterator&, nsAString::const_iterator&, const nsStringComparator& = nsDefaultStringComparator() );
|
|
|
|
NS_COM PRBool RFindInReadable( const nsACString& aPattern, nsACString::const_iterator&, nsACString::const_iterator&, const nsCStringComparator& = nsDefaultCStringComparator() );
|
2000-12-12 21:58:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds the leftmost occurance of |aChar|, if any in the range
|
|
|
|
* |aSearchStart|..|aSearchEnd|.
|
|
|
|
*
|
|
|
|
* Returns |PR_TRUE| if a match was found, and adjusts |aSearchStart| to
|
|
|
|
* point to the match. If no match was found, returns |PR_FALSE| and
|
|
|
|
* makes |aSearchStart == aSearchEnd|.
|
|
|
|
*/
|
2001-09-25 09:35:50 +00:00
|
|
|
NS_COM PRBool FindCharInReadable( PRUnichar aChar, nsAString::const_iterator& aSearchStart, const nsAString::const_iterator& aSearchEnd );
|
|
|
|
NS_COM PRBool FindCharInReadable( char aChar, nsACString::const_iterator& aSearchStart, const nsACString::const_iterator& aSearchEnd );
|
2000-12-12 21:58:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds the number of occurences of |aChar| in the string |aStr|
|
|
|
|
*/
|
2001-04-02 19:40:52 +00:00
|
|
|
NS_COM PRUint32 CountCharInReadable( const nsAString& aStr,
|
2000-12-12 21:58:14 +00:00
|
|
|
PRUnichar aChar );
|
2001-04-02 19:40:52 +00:00
|
|
|
NS_COM PRUint32 CountCharInReadable( const nsACString& aStr,
|
2000-12-12 21:58:14 +00:00
|
|
|
char aChar );
|
|
|
|
|
2003-06-21 02:59:51 +00:00
|
|
|
NS_COM PRBool
|
|
|
|
StringBeginsWith( const nsAString& aSource, const nsAString& aSubstring,
|
|
|
|
const nsStringComparator& aComparator =
|
|
|
|
nsDefaultStringComparator() );
|
|
|
|
NS_COM PRBool
|
|
|
|
StringBeginsWith( const nsACString& aSource, const nsACString& aSubstring,
|
|
|
|
const nsCStringComparator& aComparator =
|
|
|
|
nsDefaultCStringComparator() );
|
|
|
|
NS_COM PRBool
|
|
|
|
StringEndsWith( const nsAString& aSource, const nsAString& aSubstring,
|
|
|
|
const nsStringComparator& aComparator =
|
|
|
|
nsDefaultStringComparator() );
|
|
|
|
NS_COM PRBool
|
|
|
|
StringEndsWith( const nsACString& aSource, const nsACString& aSubstring,
|
|
|
|
const nsCStringComparator& aComparator =
|
|
|
|
nsDefaultCStringComparator() );
|
2003-05-21 22:20:27 +00:00
|
|
|
|
2002-01-17 04:08:14 +00:00
|
|
|
NS_COM PRUint32 HashString( const nsAString& aStr );
|
|
|
|
NS_COM PRUint32 HashString( const nsACString& aStr );
|
|
|
|
|
2004-01-21 21:36:40 +00:00
|
|
|
NS_COM const nsAFlatString& EmptyString();
|
|
|
|
NS_COM const nsAFlatCString& EmptyCString();
|
|
|
|
|
2001-05-23 06:49:51 +00:00
|
|
|
|
2000-08-05 00:51:37 +00:00
|
|
|
#endif // !defined(nsReadableUtils_h___)
|