Skip to main content
summaryrefslogtreecommitdiffstats
blob: a9bd09f2ca5ee6cd3ca17cabe4795c286166608e (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
/**
 *  Copyright (c) 2017 Angelo ZERR.
 *
 *  This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License 2.0
 *  which accompanies this distribution, and is available at
 *  https://www.eclipse.org/legal/epl-2.0/
 *
 *  SPDX-License-Identifier: EPL-2.0
 *
 *  Contributors:
 *  Angelo Zerr <angelo.zerr@gmail.com> - [CodeMining] Provide inline annotations support - Bug 527675
 */
package org.eclipse.jface.text.source.inlined;

import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.Position;

/**
 * Utilities class to retrieve position.
 *
 * @since 3.13
 */
public class Positions {

	/**
	 * Returns the line position by taking care or not of of leading spaces.
	 *
	 * @param lineIndex the line index
	 * @param document the document
	 * @param leadingSpaces true if line spacing must take care of and not otherwise.
	 * @return the line position by taking care of leading spaces.
	 * @throws BadLocationException if the line number is invalid in this document
	 */
	public static Position of(int lineIndex, IDocument document, boolean leadingSpaces) throws BadLocationException {
		int offset= document.getLineOffset(lineIndex);
		int lineLength= document.getLineLength(lineIndex);
		String line= document.get(offset, lineLength);
		if (leadingSpaces) {
			offset+= getLeadingSpaces(line);
		}
		return new Position(offset, 1);
	}

	/**
	 * Returns the leading spaces of the given line text.
	 *
	 * @param line the line text.
	 * @return the leading spaces of the given line text.
	 */
	private static int getLeadingSpaces(String line) {
		int counter= 0;
		char[] chars= line.toCharArray();
		for (char c : chars) {
			if (c == '\t')
				counter++;
			else if (c == ' ')
				counter++;
			else
				break;
		}
		return counter;
	}
}

Back to the top