Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 56024d7bd5e1590ea80d0c7e7b942c18d3a2a41f (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2007, 2011 David Green and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     David Green - initial API and implementation
 *******************************************************************************/
package org.eclipse.mylyn.wikitext.util;

import java.io.IOException;
import java.io.Reader;

/**
 * A reader class that tracks the character offset based on the number of characters read. Also provides a means for
 * reading lines of text, tracking the offset of the last line read.
 *
 * @author David Green
 * @since 3.0
 */
public class LocationTrackingReader extends Reader {
	private final Reader delegate;

	private int offset = -1;

	private int lineOffset = -1;

	private int lineNumber = -1;

	private char[] buf;

	private int bufOffset = 0;

	private int bufLength = 0;

	public LocationTrackingReader(Reader delegate) {
		this(delegate, 2048);
	}

	public LocationTrackingReader(Reader delegate, int bufferSize) {
		this.delegate = delegate;
		buf = new char[bufferSize];
	}

	@Override
	public void close() throws IOException {
		delegate.close();
	}

	@Override
	public int read(char[] cbuf, int off, int len) throws IOException {
		if (bufLength > 0) {
			int length = Math.min(len, bufLength);
			System.arraycopy(buf, bufOffset, cbuf, off, length);
			bufLength -= length;
			bufOffset += length;
			if (bufLength == 0) {
				bufOffset = 0;
			}
			offset += length;
			return length;
		} else {
			int read = delegate.read(cbuf, off, len);
			if (read != -1) {
				offset += read;
			}
			return read;
		}
	}

	@Override
	public int read() throws IOException {
		if (bufLength > 0) {
			int c = buf[bufOffset];
			bufLength -= 1;
			bufOffset += 1;
			if (bufLength == 0) {
				bufOffset = 0;
			}
			offset += 1;
			return c;
		} else {
			int read = delegate.read();
			if (read != -1) {
				++offset;
			}
			return read;
		}
	}

	/**
	 * Read a line of text, omitting the line delimiters.
	 *
	 * @return the text or null if the end of input has been reached
	 * @see #getLineOffset()
	 */
	public String readLine() throws IOException {
		lineOffset = offset + 1;

		int lineBufOffset = bufOffset;
		int c = -1;
		for (int x = lineBufOffset;; ++x) {
			if (x >= (bufOffset + bufLength)) {
				if (bufOffset > 0 && bufLength > 0) {
					System.arraycopy(buf, bufOffset, buf, 0, bufLength);
					x -= bufOffset;
					bufOffset = 0;
					lineBufOffset = 0;
				}
				if (bufOffset + bufLength >= buf.length) {
					// expand the buffer
					char[] newBuf = new char[buf.length * 2];
					if (bufLength > 0) {
						System.arraycopy(buf, bufOffset, newBuf, 0, bufLength);
					}
					x -= bufOffset;
					bufOffset = 0;
					lineBufOffset = 0;
					buf = newBuf;
				}
				int emptyOffset = bufOffset + bufLength;
				int read = delegate.read(buf, emptyOffset, buf.length - emptyOffset);
				if (read > 0) {
					bufLength += read;
				} else {
					// end of input
					break;
				}
			}
			if (x >= (bufOffset + bufLength)) {
				// end of input
				break;
			}
			int nc = buf[x];
			if (nc == '\n') {
				// eol
				int length = x - lineBufOffset + 1;
				bufOffset += length;
				bufLength -= length;
				offset += length;

				int stringLength = c == '\r' ? length - 2 : length - 1;
				++lineNumber;
				return new String(buf, lineBufOffset, stringLength);
			} else if (c == '\r') {
				int length = x - lineBufOffset;
				bufOffset += length;
				bufLength -= length;
				offset += length;
				int stringLength = length - 1;
				++lineNumber;
				return new String(buf, lineBufOffset, stringLength);
			}
			c = nc;
		}
		if (bufLength > 0) {
			String line = new String(buf, bufOffset, c == '\r' ? bufLength - 1 : bufLength);
			bufOffset = 0;
			offset += bufLength;
			bufLength = 0;
			++lineNumber;
			return line;
		} else {
			++lineNumber;
			return null;
		}
	}

	/**
	 * Get the character offset of the last character read.
	 */
	public int getOffset() {
		return offset;
	}

	/**
	 * Get the character offset of the first character of the last line read. The result of calling this method is only
	 * meaningful immediately after having called {@link #readLine()}.
	 *
	 * @see #readLine()
	 */
	public int getLineOffset() {
		return lineOffset;
	}

	/**
	 * get the 0-based line number of the last line read. The result of calling this method is only meaningful
	 * immediately after having called {@link #readLine()}.
	 *
	 * @see #readLine()
	 */
	public int getLineNumber() {
		return lineNumber;
	}

}

Back to the top