tango.text.Text

License:

BSD style: see license.txt

Version:

Initial release: December 2005

Author:

Kris

Text is a class for managing and manipulating Unicode character arrays.

Text maintains a current "selection", controlled via the select() and search() methods. Each of append(), prepend(), replace() and remove() operate with respect to the selection.

The search() methods also operate with respect to the current selection, providing a means of iterating across matched patterns. To set a selection across the entire content, use the select() method with no arguments.

Indexes and lengths of content always count code units, not code points. This is similar to traditional ascii string handling, yet indexing is rarely used in practice due to the selection idiom: substring indexing is generally implied as opposed to manipulated directly. This allows for a more streamlined model with regard to utf-surrogates.

Strings support a range of functionality, from insert and removal to utf encoding and decoding. There is also an immutable subset called TextView, intended to simplify life in a multi-threaded environment. However, TextView must expose the raw content as needed and thus immutability depends to an extent upon so-called "honour" of a callee. D does not enable immutability enforcement at this time, but this class will be modified to support such a feature when it arrives - via the slice() method.

The class is templated for use with char[], wchar[], and dchar[], and should migrate across encodings seamlessly. In particular, all functions in tango.text.Util are compatible with Text content in any of the supported encodings. In future, this class will become a principal gateway to the extensive ICU unicode library.

Note that several common text operations can be constructed through combining tango.text.Text with tango.text.Util e.g. lines of text can be processed thusly:
1
2
3
4
auto source = new Text!(char)("one\ntwo\nthree");

foreach (line; Util.lines(source.slice()))
         // do something with line

Speaking a bit like Yoda might be accomplished as follows:
1
2
3
4
auto dst = new Text!(char);

foreach (element; Util.delims ("all cows eat grass", " "))
         dst.prepend (element);

Below is an overview of the API and class hierarchy:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
class Text(T) : TextView!(T)
{
        // set or reset the content
        Text set (T[] chars, bool mutable=true);
        Text set (const(TextView) other, bool mutable=true);

        // retrieve currently selected text
        T[] selection ();

        // set and retrieve current selection point
        Text point (size_t index);
        size_t point ();

        // mark a selection
        Text select (int start=0, int length=int.max);

        // return an iterator to move the selection around.
        // Also exposes "replace all" functionality
        Search search (T chr);
        Search search (T[] pattern);

        // format arguments behind current selection
        Text format (T[] format, ...);

        // append behind current selection
        Text append (T[] text);
        Text append (const(TextView) other);
        Text append (T chr, int count=1);
        Text append (InputStream source);

        // transcode behind current selection
        Text encode (char[]);
        Text encode (wchar[]);
        Text encode (dchar[]);

        // insert before current selection
        Text prepend (T[] text);
        Text prepend (const(TextView) other);
        Text prepend (T chr, int count=1);

        // replace current selection
        Text replace (T chr);
        Text replace (T[] text);
        Text replace (const(TextView) other);

        // remove current selection
        Text remove ();

        // clear content
        Text clear ();

        // trim leading and trailing whitespace
        Text trim ();

        // trim leading and trailing chr instances
        Text strip (T chr);

        // truncate at point, or current selection
        Text truncate (int point = int.max);

        // reserve some space for inserts/additions
        Text reserve (int extra);

        // write content to stream
        Text write (OutputStream sink);
}

class TextView(T) : UniText
{
        // hash content
        hash_t toHash ();

        // return length of content
        size_t length ();

        // compare content
        bool equals  (T[] text);
        bool equals  (const(TextView) other);
        bool ends    (T[] text);
        bool ends    (const(TextView) other);
        bool starts  (T[] text);
        bool starts  (const(TextView) other);
        int compare  (T[] text);
        int compare  (const(TextView) other);
        int opEquals (Object other);
        int opCmp    (Object other);

        // copy content
        T[] copy (T[] dst);

        // return content
        T[] slice ();

        // return data type
        typeinfo encoding ();

        // replace the comparison algorithm
        Comparator comparator (Comparator other);
}

class UniText
{
        // convert content
        abstract char[]  toString   (char[]  dst = null);
        abstract wchar[] toString16 (wchar[] dst = null);
        abstract dchar[] toString32 (dchar[] dst = null);
}

struct Search
{
        // select prior instance
        bool prev();

        // select next instance
        bool next();

        // return instance count
        size_t count();

        // contains instance?
        bool within();

        // replace all with char
        void replace(T);

        // replace all with text (null == remove all)
        void replace(T[]);
}
class Text(T) : TextView!(T)
The mutable Text class actually implements the full API, whereas the superclasses are purely abstract (could be interfaces instead).
struct Span [public, deprecated]
Selection span

Deprecated:

)
use point() instead
size_t begin
size_t length
length of selection
this(size_t space = 0)
Create an empty Text with the specified available space

Note:

A character like 'a' will be implicitly converted to uint and thus will be accepted for this constructor, making it appear like you can initialize a Text instance with a single character, something which is not supported.
this(T[] content, bool copy)
Create a Text upon the provided content. If said content is immutable (read-only) then you might consider setting the 'copy' parameter to false. Doing so will avoid allocating heap-space for the content until it is modified via Text methods. This can be useful when wrapping an array "temporarily" with a stack-based Text
this(TextViewT other, bool copy = true)
Create a Text via the content of another. If said content is immutable (read-only) then you might consider setting the 'copy' parameter to false. Doing so will avoid allocating heap-space for the content until it is modified via Text methods. This can be useful when wrapping an array temporarily with a stack-based Text
Text set(T[] chars, bool copy) [final]
Set the content to the provided array. Parameter 'copy' specifies whether the given array is likely to change. If not, the array is aliased until such time it is altered via this class. This can be useful when wrapping an array "temporarily" with a stack-based Text.
Also resets the curent selection to null
Text set(TextViewT other, bool copy = true) [final]
Replace the content of this Text. If the new content is immutable (read-only) then you might consider setting the 'copy' parameter to false. Doing so will avoid allocating heap-space for the content until it is modified via one of these methods. This can be useful when wrapping an array "temporarily" with a stack-based Text.
Also resets the curent selection to null
Text select(size_t start = 0, size_t length = int.max) [final]
Explicitly set the current selection to the given start and length. values are pinned to the content extents
const(T)[] selection() [final, const]
Return the currently selected content
Span span() [final, deprecated]
Return the index and length of the current selection

Deprecated:

)
use point() instead
size_t point() [@property, final]
Return the current selection point
Text point(size_t index) [@property, final]
Set the current selection point, and resets selection length
Search!(T) search(const(T)[] match)
Return a search iterator for a given pattern. The iterator sets the current text selection as appropriate. For example:
1
2
3
4
5
auto t = new Text ("hello world");
auto s = t.search ("world");

assert (s.next);
assert (t.selection() == "world");
Replacing patterns operates in a similar fashion:
1
2
3
4
5
6
auto t = new Text ("hello world");
auto s = t.search ("world");

// replace all instances of "world" with "everyone"
assert (s.replace ("everyone"));
assert (s.count is 0);
bool select(T c) [final, deprecated]
Find and select the next occurrence of a BMP code point in a string. Returns true if found, false otherwise

Deprecated:

)
use search() instead
bool select(const(TextViewT) other) [final, deprecated]
Find and select the next substring occurrence. Returns true if found, false otherwise

Deprecated:

)
use search() instead
bool select(const(T)[] chars) [final, deprecated]
Find and select the next substring occurrence. Returns true if found, false otherwise

Deprecated:

)
use search() instead
bool selectPrior(T c) [final, deprecated]
Find and select a prior occurrence of a BMP code point in a string. Returns true if found, false otherwise

Deprecated:

)
use search() instead
bool selectPrior(const(TextViewT) other) [final, deprecated]
Find and select a prior substring occurrence. Returns true if found, false otherwise

Deprecated:

)
use search() instead
bool selectPrior(const(T)[] chars) [final, deprecated]
Find and select a prior substring occurrence. Returns true if found, false otherwise

Deprecated:

)
use search() instead
Text format(const(T)[] format, ...) [final]
Append formatted content to this Text
Text append(const(TextViewT) other) [final]
Append text to this Text
Text append(const(T)[] chars) [final]
Append text to this Text
Text append(T chr, size_t count = 1) [final]
Append a count of characters to this Text
Text append(int v, const(T)[] fmt = null) [final, deprecated]
Append an integer to this Text

Deprecated:

)
use format() instead
Text append(long v, const(T)[] fmt = null) [final, deprecated]
Append a long to this Text

Deprecated:

)
use format() instead
Text append(double v, int decimals = 2, int e = 10) [final, deprecated]
Append a double to this Text

Deprecated:

)
use format() instead
Text append(InputStream source) [final]
Append content from input stream at insertion point. Use tango.io.stream.Utf as a wrapper to perform conversion as necessary
Text prepend(T chr, int count = 1) [final]
Insert characters into this Text
Text prepend(const(T)[] other) [final]
Insert text into this Text
Text prepend(const(TextViewT) other) [final]
Insert another Text into this Text
Text encode(const(char)[] s) [final]
Text encode(const(wchar)[] s) [final]
Text encode(const(dchar)[] s) [final]
Text encode(Object o) [final]
Append encoded text at the current selection point. The text is converted as necessary to the appropritate utf encoding.
Text replace(T chr) [final]
Replace a section of this Text with the specified character
Text replace(const(T)[] chars) [final]
Replace a section of this Text with the specified array
Text replace(const(TextViewT) other) [final]
Replace a section of this Text with another
Text remove() [final]
Remove the selection from this Text and reset the selection to zero length (at the current position)
Text truncate(size_t index = max) [final]
Truncate this string at an optional index. Default behaviour is to truncate at the current append point. Current selection is moved to the truncation point, with length 0
Text clear() [final]
Clear the string content
Text trim() [final]
Remove leading and trailing whitespace from this Text, and reset the selection to the trimmed content
Text strip(T matches) [final]
Remove leading and trailing matches from this Text, and reset the selection to the stripped content
Text reserve(size_t extra) [final]
Reserve some extra room
Text write(OutputStream sink)
Write content to output stream
TypeInfo encoding() [override, final, const]
Get the encoding type
Comparator comparator(Comparator other) [override, final]
Set the comparator delegate. Where other is null, we behave as a getter only
hash_t toHash() [@trusted, nothrow, override]
Hash this Text
size_t length() [@property, override, final, const]
Return the length of the valid content
bool equals(const(TextViewT) other) [override, final, const]
Is this Text equal to another?
bool equals(const(T)[] other) [override, final, const]
Is this Text equal to the provided text?
bool ends(const(TextViewT) other) [override, final, const]
Does this Text end with another?
bool ends(const(T)[] chars) [override, final, const]
Does this Text end with the specified string?
bool starts(const(TextViewT) other) [override, final, const]
Does this Text start with another?
bool starts(const(T)[] chars) [override, final, const]
Does this Text start with the specified string?
int compare(const(TextViewT) other) [override, final, const]
Compare this Text start with another. Returns 0 if the content matches, less than zero if this Text is "less" than the other, or greater than zero where this Text is "bigger".
int compare(const(T)[] chars) [override, final, const]
Compare this Text start with an array. Returns 0 if the content matches, less than zero if this Text is "less" than the other, or greater than zero where this Text is "bigger".
T[] copy(T[] dst) [override, final, const]
Return content from this Text
A slice of dst is returned, representing a copy of the content. The slice is clipped to the minimum of either the length of the provided array, or the length of the content minus the stipulated start point
const(T)[] slice() [override, final, const]
Return an alias to the content of this TextView. Note that you are bound by honour to leave this content wholly unmolested. D surely needs some way to enforce immutability upon array references
string toString() [override, const]
wchar[] toString16(wchar[] dst = null) [override, final, const]
dchar[] toString32(dchar[] dst = null) [override, final, const]
Convert to the UniText types. The optional argument dst will be resized as required to house the conversion. To minimize heap allocation during subsequent conversions, apply the following pattern:
1
2
3
4
5
6
7
Text  string;

wchar[] buffer;
wchar[] result = string.utf16 (buffer);

if (result.length > buffer.length)
    buffer = result;
You can also provide a buffer from the stack, but the output will be moved to the heap if said buffer is not large enough
int opCmp(Object o) [override, const]
Compare this Text to another. We compare against other Strings only. Literals and other objects are not supported
bool opEquals(Object o) [override]
bool opEquals(const(T)[] s) [override, final]
Is this Text equal to the text of something else?
class TextView(T) : UniText
Immutable string
size_t length() [@property, const, abstract]
Return the length of the valid content
bool equals(const(TextView) other) [const, abstract]
Is this Text equal to another?
bool equals(const(T)[] other) [const, abstract]
Is this Text equal to the the provided text?
bool ends(const(TextView) other) [const, abstract]
Does this Text end with another?
bool ends(const(T)[] chars) [const, abstract]
Does this Text end with the specified string?
bool starts(const(TextView) other) [const, abstract]
Does this Text start with another?
bool starts(const(T)[] chars) [const, abstract]
Does this Text start with the specified string?
int compare(const(TextView) other) [const, abstract]
Compare this Text start with another. Returns 0 if the content matches, less than zero if this Text is "less" than the other, or greater than zero where this Text is "bigger".
int compare(const(T)[] chars) [const, abstract]
Compare this Text start with an array. Returns 0 if the content matches, less than zero if this Text is "less" than the other, or greater than zero where this Text is "bigger".
T[] copy(T[] dst) [const, abstract]
Return content from this Text. A slice of dst is returned, representing a copy of the content. The slice is clipped to the minimum of either the length of the provided array, or the length of the content minus the stipulated start point
int opCmp(Object o) [override, const, abstract]
Compare this Text to another
bool opEquals(Object other) [override, abstract]
Is this Text equal to another?
bool opEquals(const(T)[] other) [abstract]
Is this Text equal to another?
TypeInfo encoding() [override, const, abstract]
Get the encoding type
Comparator comparator(Comparator other) [abstract]
Set the comparator delegate
hash_t toHash() [@trusted, nothrow, override, abstract]
Hash this Text
const(T)[] slice() [const, abstract]
Return an alias to the content of this TextView. Note that you are bound by honour to leave this content wholly unmolested. D surely needs some way to enforce immutability upon array references
class UniText
A string abstraction that converts to anything