webkit  2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
Public Member Functions | Protected Member Functions | List of all members
Replaceable Class Referenceabstract

#include <rep.h>

Inheritance diagram for Replaceable:
UObject UObject UObject UMemory UMemory UMemory UMemory UMemory UMemory UMemory UMemory UMemory UnicodeString UnicodeString UnicodeString

Public Member Functions

virtual ~Replaceable ()
 
int32_t length () const
 
UChar charAt (int32_t offset) const
 
UChar32 char32At (int32_t offset) const
 
virtual void extractBetween (int32_t start, int32_t limit, UnicodeString &target) const =0
 
virtual void handleReplaceBetween (int32_t start, int32_t limit, const UnicodeString &text)=0
 
virtual void copy (int32_t start, int32_t limit, int32_t dest)=0
 
virtual UBool hasMetaData () const
 
virtual Replaceableclone () const
 
virtual ~Replaceable ()
 
int32_t length () const
 
UChar charAt (int32_t offset) const
 
UChar32 char32At (int32_t offset) const
 
virtual void extractBetween (int32_t start, int32_t limit, UnicodeString &target) const =0
 
virtual void handleReplaceBetween (int32_t start, int32_t limit, const UnicodeString &text)=0
 
virtual void copy (int32_t start, int32_t limit, int32_t dest)=0
 
virtual UBool hasMetaData () const
 
virtual Replaceableclone () const
 
virtual ~Replaceable ()
 
int32_t length () const
 
UChar charAt (int32_t offset) const
 
UChar32 char32At (int32_t offset) const
 
virtual void extractBetween (int32_t start, int32_t limit, UnicodeString &target) const =0
 
virtual void handleReplaceBetween (int32_t start, int32_t limit, const UnicodeString &text)=0
 
virtual void copy (int32_t start, int32_t limit, int32_t dest)=0
 
virtual UBool hasMetaData () const
 
virtual Replaceableclone () const
 
- Public Member Functions inherited from UObject
virtual ~UObject ()
 
virtual UClassID getDynamicClassID () const
 
virtual ~UObject ()
 
virtual UClassID getDynamicClassID () const
 
virtual ~UObject ()
 
virtual UClassID getDynamicClassID () const
 

Protected Member Functions

 Replaceable ()
 
virtual int32_t getLength () const =0
 
virtual UChar getCharAt (int32_t offset) const =0
 
virtual UChar32 getChar32At (int32_t offset) const =0
 
 Replaceable ()
 
virtual int32_t getLength () const =0
 
virtual UChar getCharAt (int32_t offset) const =0
 
virtual UChar32 getChar32At (int32_t offset) const =0
 
 Replaceable ()
 
virtual int32_t getLength () const =0
 
virtual UChar getCharAt (int32_t offset) const =0
 
virtual UChar32 getChar32At (int32_t offset) const =0
 

Detailed Description

Replaceable is an abstract base class representing a string of characters that supports the replacement of a range of itself with a new string of characters. It is used by APIs that change a piece of text while retaining metadata. Metadata is data other than the Unicode characters returned by char32At(). One example of metadata is style attributes; another is an edit history, marking each character with an author and revision number.

An implicit aspect of the Replaceable API is that during a replace operation, new characters take on the metadata of the old characters. For example, if the string "the <b>bold</b> font" has range (4, 8) replaced with "strong", then it becomes "the <b>strong</b> font".

Replaceable specifies ranges using a start offset and a limit offset. The range of characters thus specified includes the characters at offset start..limit-1. That is, the start offset is inclusive, and the limit offset is exclusive.

Replaceable also includes API to access characters in the string: length(), charAt(), char32At(), and extractBetween().

For a subclass to support metadata, typical behavior of replace() is the following:

If this is not the behavior, the subclass should document any differences.

Author
Alan Liu ICU 2.0

Constructor & Destructor Documentation

◆ ~Replaceable() [1/3]

virtual Replaceable::~Replaceable ( )
virtual

Destructor. ICU 2.0

◆ Replaceable() [1/3]

Replaceable::Replaceable ( )
inlineprotected

Default constructor. ICU 2.4

◆ ~Replaceable() [2/3]

virtual Replaceable::~Replaceable ( )
virtual

Destructor. ICU 2.0

◆ Replaceable() [2/3]

Replaceable::Replaceable ( )
inlineprotected

Default constructor. ICU 2.4

◆ ~Replaceable() [3/3]

virtual Replaceable::~Replaceable ( )
virtual

Destructor. ICU 2.0

◆ Replaceable() [3/3]

Replaceable::Replaceable ( )
inlineprotected

Default constructor. ICU 2.4

Member Function Documentation

◆ char32At() [1/3]

UChar32 Replaceable::char32At ( int32_t  offset) const
inline

Returns the 32-bit code point at the given 16-bit offset into the text. This assumes the text is stored as 16-bit code units with surrogate pairs intermixed. If the offset of a leading or trailing code unit of a surrogate pair is given, return the code point of the surrogate pair.

Parameters
offsetan integer between 0 and length()-1 inclusive
Returns
32-bit code point of text at given offset ICU 1.8

◆ char32At() [2/3]

UChar32 Replaceable::char32At ( int32_t  offset) const
inline

Returns the 32-bit code point at the given 16-bit offset into the text. This assumes the text is stored as 16-bit code units with surrogate pairs intermixed. If the offset of a leading or trailing code unit of a surrogate pair is given, return the code point of the surrogate pair.

Parameters
offsetan integer between 0 and length()-1 inclusive
Returns
32-bit code point of text at given offset ICU 1.8

◆ char32At() [3/3]

UChar32 Replaceable::char32At ( int32_t  offset) const
inline

Returns the 32-bit code point at the given 16-bit offset into the text. This assumes the text is stored as 16-bit code units with surrogate pairs intermixed. If the offset of a leading or trailing code unit of a surrogate pair is given, return the code point of the surrogate pair.

Parameters
offsetan integer between 0 and length()-1 inclusive
Returns
32-bit code point of text at given offset ICU 1.8

◆ charAt() [1/3]

UChar Replaceable::charAt ( int32_t  offset) const
inline

Returns the 16-bit code unit at the given offset into the text.

Parameters
offsetan integer between 0 and length()-1 inclusive
Returns
16-bit code unit of text at given offset ICU 1.8

◆ charAt() [2/3]

UChar Replaceable::charAt ( int32_t  offset) const
inline

Returns the 16-bit code unit at the given offset into the text.

Parameters
offsetan integer between 0 and length()-1 inclusive
Returns
16-bit code unit of text at given offset ICU 1.8

◆ charAt() [3/3]

UChar Replaceable::charAt ( int32_t  offset) const
inline

Returns the 16-bit code unit at the given offset into the text.

Parameters
offsetan integer between 0 and length()-1 inclusive
Returns
16-bit code unit of text at given offset ICU 1.8

◆ clone() [1/3]

virtual Replaceable* Replaceable::clone ( ) const
virtual

Clone this object, an instance of a subclass of Replaceable. Clones can be used concurrently in multiple threads. If a subclass does not implement clone(), or if an error occurs, then NULL is returned. The clone functions in all subclasses return a pointer to a Replaceable because some compilers do not support covariant (same-as-this) return types; cast to the appropriate subclass if necessary. The caller must delete the clone.

Returns
a clone of this object
See also
getDynamicClassID ICU 2.6

Reimplemented in UnicodeString, UnicodeString, and UnicodeString.

◆ clone() [2/3]

virtual Replaceable* Replaceable::clone ( ) const
virtual

Clone this object, an instance of a subclass of Replaceable. Clones can be used concurrently in multiple threads. If a subclass does not implement clone(), or if an error occurs, then NULL is returned. The clone functions in all subclasses return a pointer to a Replaceable because some compilers do not support covariant (same-as-this) return types; cast to the appropriate subclass if necessary. The caller must delete the clone.

Returns
a clone of this object
See also
getDynamicClassID ICU 2.6

Reimplemented in UnicodeString, UnicodeString, and UnicodeString.

◆ clone() [3/3]

virtual Replaceable* Replaceable::clone ( ) const
virtual

Clone this object, an instance of a subclass of Replaceable. Clones can be used concurrently in multiple threads. If a subclass does not implement clone(), or if an error occurs, then NULL is returned. The clone functions in all subclasses return a pointer to a Replaceable because some compilers do not support covariant (same-as-this) return types; cast to the appropriate subclass if necessary. The caller must delete the clone.

Returns
a clone of this object
See also
getDynamicClassID ICU 2.6

Reimplemented in UnicodeString, UnicodeString, and UnicodeString.

◆ copy() [1/3]

virtual void Replaceable::copy ( int32_t  start,
int32_t  limit,
int32_t  dest 
)
pure virtual

Copies a substring of this object, retaining metadata. This method is used to duplicate or reorder substrings. The destination index must not overlap the source range.

Parameters
startthe beginning index, inclusive; 0 <= start <= limit.
limitthe ending index, exclusive; start <= limit <= length().
destthe destination index. The characters from start..limit-1 will be copied to dest. Implementations of this method may assume that dest <= start || dest >= limit. ICU 2.0

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ copy() [2/3]

virtual void Replaceable::copy ( int32_t  start,
int32_t  limit,
int32_t  dest 
)
pure virtual

Copies a substring of this object, retaining metadata. This method is used to duplicate or reorder substrings. The destination index must not overlap the source range.

Parameters
startthe beginning index, inclusive; 0 <= start <= limit.
limitthe ending index, exclusive; start <= limit <= length().
destthe destination index. The characters from start..limit-1 will be copied to dest. Implementations of this method may assume that dest <= start || dest >= limit. ICU 2.0

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ copy() [3/3]

virtual void Replaceable::copy ( int32_t  start,
int32_t  limit,
int32_t  dest 
)
pure virtual

Copies a substring of this object, retaining metadata. This method is used to duplicate or reorder substrings. The destination index must not overlap the source range.

Parameters
startthe beginning index, inclusive; 0 <= start <= limit.
limitthe ending index, exclusive; start <= limit <= length().
destthe destination index. The characters from start..limit-1 will be copied to dest. Implementations of this method may assume that dest <= start || dest >= limit. ICU 2.0

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ extractBetween() [1/3]

virtual void Replaceable::extractBetween ( int32_t  start,
int32_t  limit,
UnicodeString target 
) const
pure virtual

Copies characters in the range [start, limit) into the UnicodeString target.

Parameters
startoffset of first character which will be copied
limitoffset immediately following the last character to be copied
targetUnicodeString into which to copy characters.
Returns
A reference to target ICU 2.1

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ extractBetween() [2/3]

virtual void Replaceable::extractBetween ( int32_t  start,
int32_t  limit,
UnicodeString target 
) const
pure virtual

Copies characters in the range [start, limit) into the UnicodeString target.

Parameters
startoffset of first character which will be copied
limitoffset immediately following the last character to be copied
targetUnicodeString into which to copy characters.
Returns
A reference to target ICU 2.1

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ extractBetween() [3/3]

virtual void Replaceable::extractBetween ( int32_t  start,
int32_t  limit,
UnicodeString target 
) const
pure virtual

Copies characters in the range [start, limit) into the UnicodeString target.

Parameters
startoffset of first character which will be copied
limitoffset immediately following the last character to be copied
targetUnicodeString into which to copy characters.
Returns
A reference to target ICU 2.1

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ getChar32At() [1/3]

virtual UChar32 Replaceable::getChar32At ( int32_t  offset) const
protectedpure virtual

Virtual version of char32At(). ICU 2.4

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ getChar32At() [2/3]

virtual UChar32 Replaceable::getChar32At ( int32_t  offset) const
protectedpure virtual

Virtual version of char32At(). ICU 2.4

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ getChar32At() [3/3]

virtual UChar32 Replaceable::getChar32At ( int32_t  offset) const
protectedpure virtual

Virtual version of char32At(). ICU 2.4

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ getCharAt() [1/3]

virtual UChar Replaceable::getCharAt ( int32_t  offset) const
protectedpure virtual

Virtual version of charAt(). ICU 2.4

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ getCharAt() [2/3]

virtual UChar Replaceable::getCharAt ( int32_t  offset) const
protectedpure virtual

Virtual version of charAt(). ICU 2.4

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ getCharAt() [3/3]

virtual UChar Replaceable::getCharAt ( int32_t  offset) const
protectedpure virtual

Virtual version of charAt(). ICU 2.4

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ getLength() [1/3]

virtual int32_t Replaceable::getLength ( ) const
protectedpure virtual

Virtual version of length(). ICU 2.4

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ getLength() [2/3]

virtual int32_t Replaceable::getLength ( ) const
protectedpure virtual

Virtual version of length(). ICU 2.4

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ getLength() [3/3]

virtual int32_t Replaceable::getLength ( ) const
protectedpure virtual

Virtual version of length(). ICU 2.4

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ handleReplaceBetween() [1/3]

virtual void Replaceable::handleReplaceBetween ( int32_t  start,
int32_t  limit,
const UnicodeString text 
)
pure virtual

Replaces a substring of this object with the given text. If the characters being replaced have metadata, the new characters that replace them should be given the same metadata.

Subclasses must ensure that if the text between start and limit is equal to the replacement text, that replace has no effect. That is, any metadata should be unaffected. In addition, subclasses are encouraged to check for initial and trailing identical characters, and make a smaller replacement if possible. This will preserve as much metadata as possible.

Parameters
startthe beginning index, inclusive; 0 <= start <= limit.
limitthe ending index, exclusive; start <= limit <= length().
textthe text to replace characters start to limit - 1 ICU 2.0

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ handleReplaceBetween() [2/3]

virtual void Replaceable::handleReplaceBetween ( int32_t  start,
int32_t  limit,
const UnicodeString text 
)
pure virtual

Replaces a substring of this object with the given text. If the characters being replaced have metadata, the new characters that replace them should be given the same metadata.

Subclasses must ensure that if the text between start and limit is equal to the replacement text, that replace has no effect. That is, any metadata should be unaffected. In addition, subclasses are encouraged to check for initial and trailing identical characters, and make a smaller replacement if possible. This will preserve as much metadata as possible.

Parameters
startthe beginning index, inclusive; 0 <= start <= limit.
limitthe ending index, exclusive; start <= limit <= length().
textthe text to replace characters start to limit - 1 ICU 2.0

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ handleReplaceBetween() [3/3]

virtual void Replaceable::handleReplaceBetween ( int32_t  start,
int32_t  limit,
const UnicodeString text 
)
pure virtual

Replaces a substring of this object with the given text. If the characters being replaced have metadata, the new characters that replace them should be given the same metadata.

Subclasses must ensure that if the text between start and limit is equal to the replacement text, that replace has no effect. That is, any metadata should be unaffected. In addition, subclasses are encouraged to check for initial and trailing identical characters, and make a smaller replacement if possible. This will preserve as much metadata as possible.

Parameters
startthe beginning index, inclusive; 0 <= start <= limit.
limitthe ending index, exclusive; start <= limit <= length().
textthe text to replace characters start to limit - 1 ICU 2.0

Implemented in UnicodeString, UnicodeString, and UnicodeString.

◆ hasMetaData() [1/3]

virtual UBool Replaceable::hasMetaData ( ) const
virtual

Returns true if this object contains metadata. If a Replaceable object has metadata, calls to the Replaceable API must be made so as to preserve metadata. If it does not, calls to the Replaceable API may be optimized to improve performance. The default implementation returns true.

Returns
true if this object contains metadata ICU 2.2

Reimplemented in UnicodeString, UnicodeString, and UnicodeString.

◆ hasMetaData() [2/3]

virtual UBool Replaceable::hasMetaData ( ) const
virtual

Returns true if this object contains metadata. If a Replaceable object has metadata, calls to the Replaceable API must be made so as to preserve metadata. If it does not, calls to the Replaceable API may be optimized to improve performance. The default implementation returns true.

Returns
true if this object contains metadata ICU 2.2

Reimplemented in UnicodeString, UnicodeString, and UnicodeString.

◆ hasMetaData() [3/3]

virtual UBool Replaceable::hasMetaData ( ) const
virtual

Returns true if this object contains metadata. If a Replaceable object has metadata, calls to the Replaceable API must be made so as to preserve metadata. If it does not, calls to the Replaceable API may be optimized to improve performance. The default implementation returns true.

Returns
true if this object contains metadata ICU 2.2

Reimplemented in UnicodeString, UnicodeString, and UnicodeString.

◆ length() [1/3]

int32_t Replaceable::length ( void  ) const
inline

Returns the number of 16-bit code units in the text.

Returns
number of 16-bit code units in text ICU 1.8

◆ length() [2/3]

int32_t Replaceable::length ( ) const
inline

Returns the number of 16-bit code units in the text.

Returns
number of 16-bit code units in text ICU 1.8

◆ length() [3/3]

int32_t Replaceable::length ( ) const
inline

Returns the number of 16-bit code units in the text.

Returns
number of 16-bit code units in text ICU 1.8

The documentation for this class was generated from the following file: