Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c33193ad2a68f6ebd62d058c21207dc770b8a57f (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
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
322
323
324
325
326
327
328
329
330
331
/*******************************************************************************
 * Copyright (c) 2005, 2010, 2013 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *     Sergey Prigogin, Google
 *     Anton Leherbauer (Wind River Systems)
 *     Red Hat Inc. - modified for use in SystemTap
 *******************************************************************************/
package org.eclipse.linuxtools.internal.systemtap.ui.ide.editors.stp;

import org.eclipse.core.resources.IProject;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.ITypedRegion;
import org.eclipse.jface.text.TextUtilities;
import org.eclipse.jface.text.source.ILineRange;


/**
 * Utility that indents a number of lines in a document.
 */
public final class IndentUtil {

    private static final String SLASHES= "//"; //$NON-NLS-1$

    /**
     * The result of an indentation operation. The result may be passed to
     * subsequent calls to
     * {@link IndentUtil#indentLines(IDocument, ILineRange, IProject, IndentUtil.IndentResult) indentLines}
     * to obtain consistent results with respect to the indentation of
     * line-comments.
     */
    public static final class IndentResult {
        private IndentResult(boolean[] commentLines) {
            commentLinesAtColumnZero= commentLines;
        }
        private boolean[] commentLinesAtColumnZero;
    }

    private IndentUtil() {
        // do not instantiate
    }

    /**
     * Indents the line range specified by <code>lines</code> in
     * <code>document</code>. The passed C project may be
     * <code>null</code>, it is used solely to obtain formatter preferences.
     *
     * @param document the document to be changed
     * @param lines the line range to be indented
     * @param project the C project to get the formatter preferences from, or
     *        <code>null</code> if global preferences should be used
     * @param result the result from a previous call to <code>indentLines</code>,
     *        in order to maintain comment line properties, or <code>null</code>.
     *        Note that the passed result may be changed by the call.
     * @return an indent result that may be queried for changes and can be
     *         reused in subsequent indentation operations
     * @throws BadLocationException if <code>lines</code> is not a valid line
     *         range on <code>document</code>
     */
    public static IndentResult indentLines(IDocument document, ILineRange lines, IProject project, IndentResult result) throws BadLocationException {
        int numberOfLines= lines.getNumberOfLines();

        if (numberOfLines < 1)
            return new IndentResult(null);

        result= reuseOrCreateToken(result, numberOfLines);

        STPHeuristicScanner scanner= new STPHeuristicScanner(document);
        STPIndenter indenter= new STPIndenter(document, scanner, project);
        boolean indentInsideLineComments= true;
        for (int line= lines.getStartLine(), last= line + numberOfLines, i= 0; line < last; line++) {
            indentLine(document, line, indenter, scanner, result.commentLinesAtColumnZero, i++, indentInsideLineComments);
        }

        return result;
    }

    /**
     * Returns the indentation of the line <code>line</code> in <code>document</code>.
     * The returned string may contain pairs of leading slashes that are considered
     * part of the indentation.
     *
     * @param document the document
     * @param line the line
     * @param indentInsideLineComments  option whether to indent inside line comments starting at column 0
     * @return the indentation of <code>line</code> in <code>document</code>
     * @throws BadLocationException if the document is changed concurrently
     */
    public static String getCurrentIndent(IDocument document, int line, boolean indentInsideLineComments) throws BadLocationException {
        IRegion region= document.getLineInformation(line);
        int from= region.getOffset();
        int endOffset= region.getOffset() + region.getLength();

        int to= from;
        if (indentInsideLineComments) {
            // go behind line comments
            while (to < endOffset - 2 && document.get(to, 2).equals(SLASHES))
                to += 2;
        }

        while (to < endOffset) {
            char ch= document.getChar(to);
            if (!Character.isWhitespace(ch))
                break;
            to++;
        }

        return document.get(from, to - from);
    }

    private static IndentResult reuseOrCreateToken(IndentResult token, int numberOfLines) {
        if (token == null)
            token= new IndentResult(new boolean[numberOfLines]);
        else if (token.commentLinesAtColumnZero == null)
            token.commentLinesAtColumnZero= new boolean[numberOfLines];
        else if (token.commentLinesAtColumnZero.length != numberOfLines) {
            boolean[] commentBooleans= new boolean[numberOfLines];
            System.arraycopy(token.commentLinesAtColumnZero, 0, commentBooleans, 0, Math.min(numberOfLines, token.commentLinesAtColumnZero.length));
            token.commentLinesAtColumnZero= commentBooleans;
        }
        return token;
    }

    /**
     * Indents a single line using the heuristic scanner. Multiline comments are
     * indented as specified by the <code>CCommentAutoIndentStrategy</code>.
     *
     * @param document the document
     * @param line the line to be indented
     * @param indenter the C indenter
     * @param scanner the heuristic scanner
     * @param commentLines the indent token comment booleans
     * @param lineIndex the zero-based line index
     * @param indentInsideLineComments option whether to indent inside line comments
     *             starting at column 0
     * @throws BadLocationException if the document got changed concurrently
     */
    private static void indentLine(IDocument document, int line, STPIndenter indenter,
            STPHeuristicScanner scanner, boolean[] commentLines, int lineIndex,
            boolean indentInsideLineComments) throws BadLocationException {
        IRegion currentLine= document.getLineInformation(line);
        final int offset= currentLine.getOffset();
        int wsStart= offset; // where we start searching for non-WS; after the "//" in single line comments

        String indent= null;
        if (offset < document.getLength()) {
            ITypedRegion partition= TextUtilities.getPartition(document, STPPartitionScanner.STP_PARTITIONING, offset, true);
            ITypedRegion startingPartition= TextUtilities.getPartition(document, STPPartitionScanner.STP_PARTITIONING, offset, false);
            String type= partition.getType();
            if (type.equals(STPPartitionScanner.STP_MULTILINE_COMMENT)) {
                indent= computeCommentIndent(document, line, scanner, startingPartition);
            } else if (startingPartition.getType().equals(STPPartitionScanner.STP_CONDITIONAL)) {
                indent= computePreprocessorIndent(document, line, startingPartition);
            } else if (!commentLines[lineIndex] && startingPartition.getOffset() == offset && startingPartition.getType().equals(STPPartitionScanner.STP_COMMENT)) {
                return;
            }
        }

        // standard C code indentation
        if (indent == null) {
            StringBuilder computed= indenter.computeIndentation(offset);
            if (computed != null)
                indent= computed.toString();
            else
                indent= ""; //$NON-NLS-1$
        }

        // change document:
        // get current white space
        int lineLength= currentLine.getLength();
        int end= scanner.findNonWhitespaceForwardInAnyPartition(wsStart, offset + lineLength);
        if (end == STPHeuristicScanner.NOT_FOUND)
            end= offset + lineLength;
        int length= end - offset;
        String currentIndent= document.get(offset, length);

        // memorize the fact that a line is a single line comment (but not at column 0) and should be treated like code
        // as opposed to commented out code, which should keep its slashes at column 0
        // if 'indentInsideLineComments' is false, all comment lines are indented with the code
        if (length > 0 || !indentInsideLineComments) {
            ITypedRegion partition= TextUtilities.getPartition(document, STPPartitionScanner.STP_PARTITIONING, end, false);
            if (partition.getOffset() == end && STPPartitionScanner.STP_COMMENT.equals(partition.getType())) {
                commentLines[lineIndex]= true;
            }
        }

        // only change the document if it is a real change
        if (!indent.equals(currentIndent)) {
            document.replace(offset, length, indent);
        }
    }

    /**
     * Computes and returns the indentation for a source line.
     *
     * @param document the document
     * @param line the line in document
     * @param indenter the C indenter
     * @param scanner the scanner
     * @return the indent, never <code>null</code>
     * @throws BadLocationException
     */
    public static String computeIndent(IDocument document, int line, STPIndenter indenter, STPHeuristicScanner scanner) throws BadLocationException {
        IRegion currentLine= document.getLineInformation(line);
        final int offset= currentLine.getOffset();

        String indent= null;
        if (offset < document.getLength()) {
            ITypedRegion partition= TextUtilities.getPartition(document, STPPartitionScanner.STP_PARTITIONING, offset, true);
            ITypedRegion startingPartition= TextUtilities.getPartition(document, STPPartitionScanner.STP_PARTITIONING, offset, false);
            String type= partition.getType();
            if (type.equals(STPPartitionScanner.STP_COMMENT)) {
                indent= computeCommentIndent(document, line, scanner, startingPartition);
            } else if (startingPartition.getType().equals(STPPartitionScanner.STP_CONDITIONAL)) {
                indent= computePreprocessorIndent(document, line, startingPartition);
            }
        }

        // standard C code indentation
        if (indent == null) {
            StringBuilder computed= indenter.computeIndentation(offset);
            if (computed != null) {
                indent= computed.toString();
            } else {
                indent= ""; //$NON-NLS-1$
            }
        }
        return indent;
    }

    /**
     * Computes and returns the indentation for a block comment line.
     *
     * @param document the document
     * @param line the line in document
     * @param scanner the scanner
     * @param partition the comment partition
     * @return the indent, or <code>null</code> if not computable
     * @throws BadLocationException
     */
    public static String computeCommentIndent(IDocument document, int line, STPHeuristicScanner scanner, ITypedRegion partition) throws BadLocationException {
        if (line == 0) { // impossible - the first line is never inside a comment
            return null;
        }

        // don't make any assumptions if the line does not start with \s*\* - it might be
        // commented out code, for which we don't want to change the indent
        final IRegion lineInfo= document.getLineInformation(line);
        final int lineStart= lineInfo.getOffset();
        final int lineLength= lineInfo.getLength();
        final int lineEnd= lineStart + lineLength;
        int nonWS= scanner.findNonWhitespaceForwardInAnyPartition(lineStart, lineEnd);
        if (nonWS == STPHeuristicScanner.NOT_FOUND || document.getChar(nonWS) != '*') {
            if (nonWS == STPHeuristicScanner.NOT_FOUND) {
                return document.get(lineStart, lineLength);
            }
            return document.get(lineStart, nonWS - lineStart);
        }

        // take the indent from the previous line and reuse
        IRegion previousLine= document.getLineInformation(line - 1);
        int previousLineStart= previousLine.getOffset();
        int previousLineLength= previousLine.getLength();
        int previousLineEnd= previousLineStart + previousLineLength;

        StringBuilder buf= new StringBuilder();
        int previousLineNonWS= scanner.findNonWhitespaceForwardInAnyPartition(previousLineStart, previousLineEnd);
        if (previousLineNonWS == STPHeuristicScanner.NOT_FOUND || document.getChar(previousLineNonWS) != '*') {
            // align with the comment start if the previous line is not an asterix line
            previousLine= document.getLineInformationOfOffset(partition.getOffset());
            previousLineStart= previousLine.getOffset();
            previousLineLength= previousLine.getLength();
            previousLineEnd= previousLineStart + previousLineLength;
            previousLineNonWS= scanner.findNonWhitespaceForwardInAnyPartition(previousLineStart, previousLineEnd);
            if (previousLineNonWS == STPHeuristicScanner.NOT_FOUND) {
                previousLineNonWS= previousLineEnd;
            }

            // add the initial space
            // TODO this may be controlled by a formatter preference in the future
            buf.append(' ');
        }

        String indentation= document.get(previousLineStart, previousLineNonWS - previousLineStart);
        buf.insert(0, indentation);
        return buf.toString();
    }

    /**
     * Computes and returns the indentation for a preprocessor line.
     *
     * @param document the document
     * @param line the line in document
     * @param partition the comment partition
     * @return the indent, or <code>null</code> if not computable
     * @throws BadLocationException
     */
    public static String computePreprocessorIndent(IDocument document, int line, ITypedRegion partition)
            throws BadLocationException {
        int ppFirstLine= document.getLineOfOffset(partition.getOffset());
        if (line == ppFirstLine) {
            return ""; //$NON-NLS-1$
        }
        STPHeuristicScanner ppScanner= new STPHeuristicScanner(document, STPPartitionScanner.STP_CONDITIONAL, partition.getType());
        STPIndenter ppIndenter= new STPIndenter(document, ppScanner);
        if (line == ppFirstLine + 1) {
            return ppIndenter.createReusingIndent(new StringBuilder(), ppIndenter.getContinuationLineIndent(), 0).toString();
        }
        StringBuilder computed= ppIndenter.computeIndentation(document.getLineOffset(line), false);
        if (computed != null) {
            return computed.toString();
        }
        // take the indent from the previous line and reuse
        IRegion previousLine= document.getLineInformation(line - 1);
        int previousLineStart= previousLine.getOffset();
        int previousLineLength= previousLine.getLength();
        int previousLineEnd= previousLineStart + previousLineLength;

        int previousLineNonWS= ppScanner.findNonWhitespaceForwardInAnyPartition(previousLineStart, previousLineEnd);
        String previousIndent= document.get(previousLineStart, previousLineNonWS - previousLineStart);
        computed= new StringBuilder(previousIndent);
        return computed.toString();
    }
}

Back to the top