1 |
772 |
jeremybenn |
/* PlainDocument.java --
|
2 |
|
|
Copyright (C) 2002, 2004, 2006 Free Software Foundation, Inc.
|
3 |
|
|
|
4 |
|
|
This file is part of GNU Classpath.
|
5 |
|
|
|
6 |
|
|
GNU Classpath is free software; you can redistribute it and/or modify
|
7 |
|
|
it under the terms of the GNU General Public License as published by
|
8 |
|
|
the Free Software Foundation; either version 2, or (at your option)
|
9 |
|
|
any later version.
|
10 |
|
|
|
11 |
|
|
GNU Classpath is distributed in the hope that it will be useful, but
|
12 |
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
13 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14 |
|
|
General Public License for more details.
|
15 |
|
|
|
16 |
|
|
You should have received a copy of the GNU General Public License
|
17 |
|
|
along with GNU Classpath; see the file COPYING. If not, write to the
|
18 |
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
19 |
|
|
02110-1301 USA.
|
20 |
|
|
|
21 |
|
|
Linking this library statically or dynamically with other modules is
|
22 |
|
|
making a combined work based on this library. Thus, the terms and
|
23 |
|
|
conditions of the GNU General Public License cover the whole
|
24 |
|
|
combination.
|
25 |
|
|
|
26 |
|
|
As a special exception, the copyright holders of this library give you
|
27 |
|
|
permission to link this library with independent modules to produce an
|
28 |
|
|
executable, regardless of the license terms of these independent
|
29 |
|
|
modules, and to copy and distribute the resulting executable under
|
30 |
|
|
terms of your choice, provided that you also meet, for each linked
|
31 |
|
|
independent module, the terms and conditions of the license of that
|
32 |
|
|
module. An independent module is a module which is not derived from
|
33 |
|
|
or based on this library. If you modify this library, you may extend
|
34 |
|
|
this exception to your version of the library, but you are not
|
35 |
|
|
obligated to do so. If you do not wish to do so, delete this
|
36 |
|
|
exception statement from your version. */
|
37 |
|
|
|
38 |
|
|
|
39 |
|
|
package javax.swing.text;
|
40 |
|
|
|
41 |
|
|
import java.util.ArrayList;
|
42 |
|
|
|
43 |
|
|
/**
|
44 |
|
|
* A simple document class which maps lines to {@link Element}s.
|
45 |
|
|
*
|
46 |
|
|
* @author Anthony Balkissoon (abalkiss@redhat.com)
|
47 |
|
|
* @author Graydon Hoare (graydon@redhat.com)
|
48 |
|
|
* @author Roman Kennke (roman@kennke.org)
|
49 |
|
|
* @author Michael Koch (konqueror@gmx.de)
|
50 |
|
|
* @author Robert Schuster (robertschuster@fsfe.org)
|
51 |
|
|
*/
|
52 |
|
|
public class PlainDocument extends AbstractDocument
|
53 |
|
|
{
|
54 |
|
|
private static final long serialVersionUID = 4758290289196893664L;
|
55 |
|
|
|
56 |
|
|
public static final String lineLimitAttribute = "lineLimit";
|
57 |
|
|
public static final String tabSizeAttribute = "tabSize";
|
58 |
|
|
|
59 |
|
|
/**
|
60 |
|
|
* The default root element of this document. This is made type Element
|
61 |
|
|
* because the RI seems to accept other types of elements as well from
|
62 |
|
|
* createDefaultRoot() (when overridden by a subclass).
|
63 |
|
|
*/
|
64 |
|
|
private Element rootElement;
|
65 |
|
|
|
66 |
|
|
public PlainDocument()
|
67 |
|
|
{
|
68 |
|
|
this(new GapContent());
|
69 |
|
|
}
|
70 |
|
|
|
71 |
|
|
public PlainDocument(AbstractDocument.Content content)
|
72 |
|
|
{
|
73 |
|
|
super(content);
|
74 |
|
|
rootElement = createDefaultRoot();
|
75 |
|
|
|
76 |
|
|
// This property has been determined using a Mauve test.
|
77 |
|
|
putProperty("tabSize", new Integer(8));
|
78 |
|
|
}
|
79 |
|
|
|
80 |
|
|
private void reindex()
|
81 |
|
|
{
|
82 |
|
|
Element[] lines;
|
83 |
|
|
try
|
84 |
|
|
{
|
85 |
|
|
String str = content.getString(0, content.length());
|
86 |
|
|
|
87 |
|
|
ArrayList elts = new ArrayList();
|
88 |
|
|
int j = 0;
|
89 |
|
|
for (int i = str.indexOf('\n', 0); i != -1; i = str.indexOf('\n', i + 1))
|
90 |
|
|
{
|
91 |
|
|
elts.add(createLeafElement(rootElement, SimpleAttributeSet.EMPTY, j, i + 1));
|
92 |
|
|
j = i + 1;
|
93 |
|
|
}
|
94 |
|
|
|
95 |
|
|
if (j < content.length())
|
96 |
|
|
elts.add(createLeafElement(rootElement, SimpleAttributeSet.EMPTY, j, content.length()));
|
97 |
|
|
|
98 |
|
|
lines = new Element[elts.size()];
|
99 |
|
|
for (int i = 0; i < elts.size(); ++i)
|
100 |
|
|
lines[i] = (Element) elts.get(i);
|
101 |
|
|
}
|
102 |
|
|
catch (BadLocationException e)
|
103 |
|
|
{
|
104 |
|
|
lines = new Element[1];
|
105 |
|
|
lines[0] = createLeafElement(rootElement, SimpleAttributeSet.EMPTY, 0, 1);
|
106 |
|
|
}
|
107 |
|
|
|
108 |
|
|
((BranchElement) rootElement).replace(0, rootElement.getElementCount(), lines);
|
109 |
|
|
}
|
110 |
|
|
|
111 |
|
|
protected AbstractDocument.AbstractElement createDefaultRoot()
|
112 |
|
|
{
|
113 |
|
|
BranchElement root =
|
114 |
|
|
(BranchElement) createBranchElement(null, null);
|
115 |
|
|
|
116 |
|
|
Element[] array = new Element[1];
|
117 |
|
|
array[0] = createLeafElement(root, null, 0, 1);
|
118 |
|
|
root.replace(0, 0, array);
|
119 |
|
|
|
120 |
|
|
return root;
|
121 |
|
|
}
|
122 |
|
|
|
123 |
|
|
protected void insertUpdate(DefaultDocumentEvent event,
|
124 |
|
|
AttributeSet attributes)
|
125 |
|
|
{
|
126 |
|
|
|
127 |
|
|
String text = null;
|
128 |
|
|
int offset = event.getOffset();
|
129 |
|
|
int length = event.getLength();
|
130 |
|
|
try
|
131 |
|
|
{
|
132 |
|
|
text = getText(offset, length);
|
133 |
|
|
}
|
134 |
|
|
catch (BadLocationException ex)
|
135 |
|
|
{
|
136 |
|
|
AssertionError err = new AssertionError();
|
137 |
|
|
err.initCause(ex);
|
138 |
|
|
throw err;
|
139 |
|
|
}
|
140 |
|
|
|
141 |
|
|
boolean hasLineBreak = text.indexOf('\n') != -1;
|
142 |
|
|
boolean prevCharIsLineBreak = false;
|
143 |
|
|
try
|
144 |
|
|
{
|
145 |
|
|
prevCharIsLineBreak =
|
146 |
|
|
offset > 0 && getText(offset - 1, 1).charAt(0) == '\n';
|
147 |
|
|
}
|
148 |
|
|
catch (BadLocationException ex)
|
149 |
|
|
{
|
150 |
|
|
AssertionError err = new AssertionError();
|
151 |
|
|
err.initCause(ex);
|
152 |
|
|
throw err;
|
153 |
|
|
}
|
154 |
|
|
boolean lastCharIsLineBreak = text.charAt(text.length() - 1) == '\n';
|
155 |
|
|
int lineIndex = -1;
|
156 |
|
|
int lineStart = -1;
|
157 |
|
|
int lineEnd = -1;
|
158 |
|
|
Element[] removed = null;
|
159 |
|
|
BranchElement root = (BranchElement) rootElement;
|
160 |
|
|
boolean updateStructure = true;
|
161 |
|
|
|
162 |
|
|
if (prevCharIsLineBreak && ! lastCharIsLineBreak)
|
163 |
|
|
{
|
164 |
|
|
// We must fix the structure a little if the previous char
|
165 |
|
|
// is a linebreak and the last char isn't.
|
166 |
|
|
lineIndex = root.getElementIndex(offset - 1);
|
167 |
|
|
Element prevLine = root.getElement(lineIndex);
|
168 |
|
|
Element nextLine = root.getElement(lineIndex + 1);
|
169 |
|
|
lineStart = prevLine.getStartOffset();
|
170 |
|
|
lineEnd = nextLine.getEndOffset();
|
171 |
|
|
removed = new Element[]{ prevLine, nextLine };
|
172 |
|
|
}
|
173 |
|
|
else if (hasLineBreak)
|
174 |
|
|
{
|
175 |
|
|
lineIndex = root.getElementIndex(offset);
|
176 |
|
|
Element line = root.getElement(lineIndex);
|
177 |
|
|
lineStart = line.getStartOffset();
|
178 |
|
|
lineEnd = line.getEndOffset();
|
179 |
|
|
removed = new Element[]{ line };
|
180 |
|
|
}
|
181 |
|
|
else
|
182 |
|
|
{
|
183 |
|
|
updateStructure = false;
|
184 |
|
|
}
|
185 |
|
|
|
186 |
|
|
if (updateStructure)
|
187 |
|
|
{
|
188 |
|
|
// Break the lines between lineStart and lineEnd.
|
189 |
|
|
ArrayList lines = new ArrayList();
|
190 |
|
|
int len = lineEnd - lineStart;
|
191 |
|
|
try
|
192 |
|
|
{
|
193 |
|
|
text = getText(lineStart, len);
|
194 |
|
|
}
|
195 |
|
|
catch (BadLocationException ex)
|
196 |
|
|
{
|
197 |
|
|
AssertionError err = new AssertionError();
|
198 |
|
|
err.initCause(ex);
|
199 |
|
|
throw err;
|
200 |
|
|
}
|
201 |
|
|
int prevLineBreak = 0;
|
202 |
|
|
int lineBreak = text.indexOf('\n');
|
203 |
|
|
do
|
204 |
|
|
{
|
205 |
|
|
lineBreak++;
|
206 |
|
|
lines.add(createLeafElement(root, null, lineStart + prevLineBreak,
|
207 |
|
|
lineStart + lineBreak));
|
208 |
|
|
prevLineBreak = lineBreak;
|
209 |
|
|
lineBreak = text.indexOf('\n', prevLineBreak);
|
210 |
|
|
} while (prevLineBreak < len);
|
211 |
|
|
|
212 |
|
|
// Update the element structure and prepare document event.
|
213 |
|
|
Element[] added = (Element[]) lines.toArray(new Element[lines.size()]);
|
214 |
|
|
event.addEdit(new ElementEdit(root, lineIndex, removed, added));
|
215 |
|
|
root.replace(lineIndex, removed.length, added);
|
216 |
|
|
}
|
217 |
|
|
super.insertUpdate(event, attributes);
|
218 |
|
|
}
|
219 |
|
|
|
220 |
|
|
protected void removeUpdate(DefaultDocumentEvent event)
|
221 |
|
|
{
|
222 |
|
|
super.removeUpdate(event);
|
223 |
|
|
|
224 |
|
|
// added and removed are Element arrays used to add an ElementEdit
|
225 |
|
|
// to the DocumentEvent if there were entire lines added or removed
|
226 |
|
|
// from the Document
|
227 |
|
|
Element[] added = new Element[1];
|
228 |
|
|
Element[] removed;
|
229 |
|
|
int p0 = event.getOffset();
|
230 |
|
|
|
231 |
|
|
// check if we must collapse some elements
|
232 |
|
|
int i1 = rootElement.getElementIndex(p0);
|
233 |
|
|
int i2 = rootElement.getElementIndex(p0 + event.getLength());
|
234 |
|
|
if (i1 != i2)
|
235 |
|
|
{
|
236 |
|
|
// If there were lines removed then we have to add an ElementEdit
|
237 |
|
|
// to the DocumentEvent so we set it up now by filling the Element
|
238 |
|
|
// arrays "removed" and "added" appropriately
|
239 |
|
|
removed = new Element [i2 - i1 + 1];
|
240 |
|
|
for (int i = i1; i <= i2; i++)
|
241 |
|
|
removed[i-i1] = rootElement.getElement(i);
|
242 |
|
|
|
243 |
|
|
int start = rootElement.getElement(i1).getStartOffset();
|
244 |
|
|
int end = rootElement.getElement(i2).getEndOffset();
|
245 |
|
|
added[0] = createLeafElement(rootElement,
|
246 |
|
|
SimpleAttributeSet.EMPTY,
|
247 |
|
|
start, end);
|
248 |
|
|
|
249 |
|
|
// Now create and add the ElementEdit
|
250 |
|
|
ElementEdit e = new ElementEdit(rootElement, i1, removed, added);
|
251 |
|
|
event.addEdit(e);
|
252 |
|
|
|
253 |
|
|
// collapse elements if the removal spans more than 1 line
|
254 |
|
|
((BranchElement) rootElement).replace(i1, i2 - i1 + 1, added);
|
255 |
|
|
}
|
256 |
|
|
}
|
257 |
|
|
|
258 |
|
|
public Element getDefaultRootElement()
|
259 |
|
|
{
|
260 |
|
|
return rootElement;
|
261 |
|
|
}
|
262 |
|
|
|
263 |
|
|
public Element getParagraphElement(int pos)
|
264 |
|
|
{
|
265 |
|
|
Element root = getDefaultRootElement();
|
266 |
|
|
return root.getElement(root.getElementIndex(pos));
|
267 |
|
|
}
|
268 |
|
|
|
269 |
|
|
/**
|
270 |
|
|
* Inserts a string into the document. If the document property
|
271 |
|
|
* '<code>filterNewLines</code>' is set to <code>Boolean.TRUE</code>, then
|
272 |
|
|
* all newlines in the inserted string are replaced by space characters,
|
273 |
|
|
* otherwise the superclasses behaviour is executed.
|
274 |
|
|
*
|
275 |
|
|
* Inserting content causes a write lock to be acquired during this method
|
276 |
|
|
* call.
|
277 |
|
|
*
|
278 |
|
|
* @param offs the offset at which to insert the string
|
279 |
|
|
* @param str the string to be inserted
|
280 |
|
|
* @param atts the text attributes of the string to be inserted
|
281 |
|
|
*
|
282 |
|
|
* @throws BadLocationException
|
283 |
|
|
*/
|
284 |
|
|
public void insertString(int offs, String str, AttributeSet atts)
|
285 |
|
|
throws BadLocationException
|
286 |
|
|
{
|
287 |
|
|
String string = str;
|
288 |
|
|
if (str != null && Boolean.TRUE.equals(getProperty("filterNewlines")))
|
289 |
|
|
string = str.replaceAll("\n", " ");
|
290 |
|
|
super.insertString(offs, string, atts);
|
291 |
|
|
}
|
292 |
|
|
}
|