- Notifications
You must be signed in to change notification settings - Fork 5.8k
/
Copy pathSegment.java
321 lines (291 loc) · 9.01 KB
/
Segment.java
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/*
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
packagejavax.swing.text;
importjava.text.CharacterIterator;
/**
* A segment of a character array representing a fragment
* of text. It should be treated as immutable even though
* the array is directly accessible. This gives fast access
* to fragments of text without the overhead of copying
* around characters. This is effectively an unprotected
* String.
* <p>
* The Segment implements the java.text.CharacterIterator
* interface to support use with the i18n support without
* copying text into a string.
*
* @author Timothy Prinzing
*/
publicclassSegmentimplementsCloneable, CharacterIterator, CharSequence {
/**
* This is the array containing the text of
* interest. This array should never be modified;
* it is available only for efficiency.
*/
publicchar[] array;
/**
* This is the offset into the array that
* the desired text begins.
*/
publicintoffset;
/**
* This is the number of array elements that
* make up the text of interest.
*/
publicintcount;
/**
* Whether the array is a copy of data or not.
*/
booleancopy;
privatebooleanpartialReturn;
/**
* Creates a new segment.
*/
publicSegment() {
this(null, 0, 0);
}
/**
* Creates a new segment referring to an existing array.
*
* @param array the array to refer to
* @param offset the offset into the array
* @param count the number of characters
*/
publicSegment(char[] array, intoffset, intcount) {
this.array = array;
this.offset = offset;
this.count = count;
partialReturn = false;
}
/**
* Flag to indicate that partial returns are valid. If the flag is true,
* an implementation of the interface method Document.getText(position,length,Segment)
* should return as much text as possible without making a copy. The default
* state of the flag is false which will cause Document.getText(position,length,Segment)
* to provide the same return behavior it always had, which may or may not
* make a copy of the text depending upon the request.
*
* @param p whether or not partial returns are valid.
* @since 1.4
*/
publicvoidsetPartialReturn(booleanp) {
partialReturn = p;
}
/**
* Flag to indicate that partial returns are valid.
*
* @return whether or not partial returns are valid.
* @since 1.4
*/
publicbooleanisPartialReturn() {
returnpartialReturn;
}
/**
* Converts a segment into a String.
*
* @return the string
*/
publicStringtoString() {
if (array != null) {
returnnewString(array, offset, count);
}
return"";
}
// --- CharacterIterator methods -------------------------------------
/**
* Sets the position to getBeginIndex() and returns the character at that
* position.
* @return the first character in the text, or DONE if the text is empty
* @see #getBeginIndex
* @since 1.3
*/
publiccharfirst() {
pos = offset;
if (count != 0) {
returnarray[pos];
}
returnDONE;
}
/**
* Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty)
* and returns the character at that position.
* @return the last character in the text, or DONE if the text is empty
* @see #getEndIndex
* @since 1.3
*/
publiccharlast() {
pos = offset + count;
if (count != 0) {
pos -= 1;
returnarray[pos];
}
returnDONE;
}
/**
* Gets the character at the current position (as returned by getIndex()).
* @return the character at the current position or DONE if the current
* position is off the end of the text.
* @see #getIndex
* @since 1.3
*/
publiccharcurrent() {
if (count != 0 && pos < offset + count) {
returnarray[pos];
}
returnDONE;
}
/**
* Increments the iterator's index by one and returns the character
* at the new index. If the resulting index is greater or equal
* to getEndIndex(), the current index is reset to getEndIndex() and
* a value of DONE is returned.
* @return the character at the new position or DONE if the new
* position is off the end of the text range.
* @since 1.3
*/
publiccharnext() {
pos += 1;
intend = offset + count;
if (pos >= end) {
pos = end;
returnDONE;
}
returncurrent();
}
/**
* Decrements the iterator's index by one and returns the character
* at the new index. If the current index is getBeginIndex(), the index
* remains at getBeginIndex() and a value of DONE is returned.
* @return the character at the new position or DONE if the current
* position is equal to getBeginIndex().
* @since 1.3
*/
publiccharprevious() {
if (pos == offset) {
returnDONE;
}
pos -= 1;
returncurrent();
}
/**
* Sets the position to the specified position in the text and returns that
* character.
* @param position the position within the text. Valid values range from
* getBeginIndex() to getEndIndex(). An IllegalArgumentException is thrown
* if an invalid value is supplied.
* @return the character at the specified position or DONE if the specified position is equal to getEndIndex()
* @since 1.3
*/
publiccharsetIndex(intposition) {
intend = offset + count;
if ((position < offset) || (position > end)) {
thrownewIllegalArgumentException("bad position: " + position);
}
pos = position;
if ((pos != end) && (count != 0)) {
returnarray[pos];
}
returnDONE;
}
/**
* Returns the start index of the text.
* @return the index at which the text begins.
* @since 1.3
*/
publicintgetBeginIndex() {
returnoffset;
}
/**
* Returns the end index of the text. This index is the index of the first
* character following the end of the text.
* @return the index after the last character in the text
* @since 1.3
*/
publicintgetEndIndex() {
returnoffset + count;
}
/**
* Returns the current index.
* @return the current index.
* @since 1.3
*/
publicintgetIndex() {
returnpos;
}
// --- CharSequence methods -------------------------------------
/**
* {@inheritDoc}
* @since 1.6
*/
publiccharcharAt(intindex) {
if (index < 0
|| index >= count) {
thrownewStringIndexOutOfBoundsException(index);
}
returnarray[offset + index];
}
/**
* {@inheritDoc}
* @since 1.6
*/
publicintlength() {
returncount;
}
/**
* {@inheritDoc}
* @since 1.6
*/
publicCharSequencesubSequence(intstart, intend) {
if (start < 0) {
thrownewStringIndexOutOfBoundsException(start);
}
if (end > count) {
thrownewStringIndexOutOfBoundsException(end);
}
if (start > end) {
thrownewStringIndexOutOfBoundsException(end - start);
}
Segmentsegment = newSegment();
segment.array = this.array;
segment.offset = this.offset + start;
segment.count = end - start;
returnsegment;
}
/**
* Creates a shallow copy.
*
* @return the copy
*/
publicObjectclone() {
Objecto;
try {
o = super.clone();
} catch (CloneNotSupportedExceptioncnse) {
o = null;
}
returno;
}
privateintpos;
}