1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpdt.internal.ui.text.java;
13 import net.sourceforge.phpdt.ui.PreferenceConstants;
14 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
16 import org.eclipse.jface.preference.IPreferenceStore;
17 import org.eclipse.jface.text.BadLocationException;
18 import org.eclipse.jface.text.DefaultIndentLineAutoEditStrategy;
19 import org.eclipse.jface.text.DocumentCommand;
20 import org.eclipse.jface.text.IDocument;
21 import org.eclipse.jface.text.IRegion;
22 import org.eclipse.jface.text.ITypedRegion;
23 import org.eclipse.jface.text.TextUtilities;
24 import org.eclipse.ui.IEditorPart;
25 import org.eclipse.ui.IWorkbenchPage;
26 import org.eclipse.ui.texteditor.ITextEditorExtension3;
29 * Auto indent strategy for single quoted PHP strings
31 public class JavaStringAutoIndentStrategySQ extends
32 DefaultIndentLineAutoEditStrategy {
34 private String fPartitioning;
37 * The input string doesn't contain any line delimiter.
40 * the given input string
41 * @return the displayable string.
43 private String displayString (String inputString, String indentation, String delimiter) {
44 int length = inputString.length();
45 StringBuffer buffer = new StringBuffer(length);
46 java.util.StringTokenizer tokenizer =
47 new java.util.StringTokenizer (inputString, "\n\r", true); //$NON-NLS-1$
49 while (tokenizer.hasMoreTokens ()) {
50 String token = tokenizer.nextToken ();
52 if (token.equals("\r")) { //$NON-NLS-1$
53 buffer.append("\\r"); //$NON-NLS-1$
54 if (tokenizer.hasMoreTokens()) {
55 token = tokenizer.nextToken();
56 if (token.equals("\n")) { //$NON-NLS-1$
57 buffer.append("\\n"); //$NON-NLS-1$
58 buffer.append("\" . " + delimiter); //$NON-NLS-1$
59 buffer.append(indentation);
60 buffer.append("\'"); //$NON-NLS-1$
63 buffer.append("\' . " + delimiter); //$NON-NLS-1$
64 buffer.append(indentation);
65 buffer.append("\'"); //$NON-NLS-1$
70 } else if (token.equals("\n")) { //$NON-NLS-1$
71 buffer.append("\\n"); //$NON-NLS-1$
72 buffer.append("\' . " + delimiter); //$NON-NLS-1$
73 buffer.append(indentation);
74 buffer.append("\'"); //$NON-NLS-1$
78 StringBuffer tokenBuffer = new StringBuffer();
80 for (int i = 0; i < token.length(); i++) {
81 char c = token.charAt(i);
84 tokenBuffer.append("\\r"); //$NON-NLS-1$
87 tokenBuffer.append("\\n"); //$NON-NLS-1$
90 tokenBuffer.append("\\b"); //$NON-NLS-1$
94 tokenBuffer.append("\t"); //$NON-NLS-1$
97 tokenBuffer.append("\\f"); //$NON-NLS-1$
100 tokenBuffer.append("\\\""); //$NON-NLS-1$
103 tokenBuffer.append("\\'"); //$NON-NLS-1$
106 tokenBuffer.append("\\\\"); //$NON-NLS-1$
109 tokenBuffer.append(c);
112 buffer.append(tokenBuffer);
115 return buffer.toString();
119 * Creates a new Java string auto indent strategy for the given document
122 * @param partitioning
123 * the document partitioning
125 public JavaStringAutoIndentStrategySQ (String partitioning) {
127 fPartitioning = partitioning;
131 * Check whether the 'text' is one of the allowed line delimiters (e.g. \n \r)
133 * @param document The document object for which we do the check
134 * @param text The text with the possible delimiter
136 * - true if 'text' is a valid delimiter
137 * - false if 'text' is not a valid delimiter
139 private boolean isLineDelimiter(IDocument document, String text) {
140 String[] delimiters = document.getLegalLineDelimiters();
142 if (delimiters != null) {
143 return TextUtilities.equals(delimiters, text) > -1;
150 * Get back the indentation of the line to which the offset belongs.
152 * It searches the first occurrence of a white space (non space/non tab)
157 * @throws BadLocationException
159 private String getLineIndentation(IDocument document, int offset)
160 throws BadLocationException {
161 String indentation = "";
166 // find start of line
167 int adjustedOffset = (offset == document.getLength() ? offset - 1 : offset);// Check whether the offset is not at the end of file
168 IRegion line = document.getLineInformationOfOffset (adjustedOffset); // Get the start and the length of the line
170 start = line.getOffset (); // Get the start of the line
171 end = findStringStart (document, start, offset);
173 IPreferenceStore preferenceStore = PHPeclipsePlugin.getDefault().getPreferenceStore();
174 length = end - start;
176 if (preferenceStore.getBoolean (PreferenceConstants.EDITOR_SPACES_FOR_TABS)) { // Indentation with spaces only
178 indentation = String.format ("%" + length + "s", "");
181 else { // Indentation with tabs
185 int tabWidth = preferenceStore.getInt (PreferenceConstants.EDITOR_TAB_WIDTH);
187 tabs = length / tabWidth;
188 spaces = length % tabWidth;
190 indentation = new String (new char[tabs]).replace('\0', '\t');
191 indentation += String.format ("%" + spaces + "s", "");
199 * Return the position of the string start (first occurrence of a quote or double quote)
206 private int findStringStart(IDocument document, int offset, int end) throws BadLocationException {
207 while (offset < end) {
208 char c = document.getChar (offset);
210 if ((c == '\'') || (c == '\"')) {
226 * @throws BadLocationException
228 private String getModifiedText (String string, String indentation, String delimiter)
229 throws BadLocationException {
230 return displayString(string, indentation, delimiter);
237 * @throws BadLocationException
239 private void javaStringIndentAfterNewLine (IDocument document, DocumentCommand command) throws BadLocationException {
240 ITypedRegion partition = TextUtilities.getPartition (document, fPartitioning, command.offset, false);
241 int offset = partition.getOffset();
242 int length = partition.getLength();
244 if (command.offset == offset) {
245 // we are really just before the string partition -> feet the event
246 // through the java indenter
248 // JavaAutoIndentStrategy(fPartitioning).customizeDocumentCommand(document,
253 if ((command.offset == offset + length) &&
254 (document.getChar (offset + length - 1) == '\'')) {
258 String indentation = getLineIndentation(document, command.offset);
259 String delimiter = TextUtilities.getDefaultLineDelimiter(document);
261 IRegion line = document.getLineInformationOfOffset(offset);
262 String string = document.get (line.getOffset(),
263 offset - line.getOffset()); // Get the current line as string
265 if (string.trim().length() != 0) {
266 indentation += String.valueOf("\t\t"); //$NON-NLS-1$
269 IPreferenceStore preferenceStore = PHPeclipsePlugin.getDefault ().getPreferenceStore();
271 if (isLineDelimiter (document, command.text)) {
272 command.text = "\' ." + command.text + indentation + "\'"; //$NON-NLS-1$//$NON-NLS-2$
274 else if ((command.text.length() > 1) &&
275 preferenceStore.getBoolean (PreferenceConstants.EDITOR_ESCAPE_STRINGS_SQ)) {
276 command.text = getModifiedText(command.text, indentation, delimiter);
284 private boolean isSmartMode() {
285 IWorkbenchPage page = PHPeclipsePlugin.getActivePage();
288 IEditorPart part = page.getActiveEditor();
290 if (part instanceof ITextEditorExtension3) {
291 ITextEditorExtension3 extension = (ITextEditorExtension3) part;
292 return extension.getInsertMode() == ITextEditorExtension3.SMART_INSERT;
300 * @see org.eclipse.jface.text.IAutoIndentStrategy#customizeDocumentCommand(IDocument,
303 public void customizeDocumentCommand(IDocument document, DocumentCommand command) {
305 if ((command.length != 0) ||
306 (command.text == null)) {
310 IPreferenceStore preferenceStore = PHPeclipsePlugin.getDefault().getPreferenceStore();
312 if (preferenceStore.getBoolean (PreferenceConstants.EDITOR_WRAP_STRINGS_SQ) && isSmartMode()) {
313 javaStringIndentAfterNewLine(document, command);
316 } catch (BadLocationException e) {