1 // Copyright (c) 2005 by Leif Frenzel. All rights reserved.
2 // See http://leiffrenzel.de
3 // modified for phpeclipse.de project by axelcl
4 package net.sourceforge.phpdt.ltk.ui.actions;
6 import net.sourceforge.phpdt.core.ICompilationUnit;
7 import net.sourceforge.phpdt.core.IJavaElement;
8 import net.sourceforge.phpdt.core.JavaModelException;
9 import net.sourceforge.phpdt.internal.core.SourceMethod;
10 import net.sourceforge.phpdt.internal.ui.util.PHPFileUtil;
11 import net.sourceforge.phpdt.ltk.core.RenameIdentifierInfo;
12 import net.sourceforge.phpdt.ltk.core.RenameIdentifierRefactoring;
13 import net.sourceforge.phpdt.ltk.core.RenameLocalVariableDelegate;
14 import net.sourceforge.phpdt.ltk.core.RenamePHPProcessor;
15 import net.sourceforge.phpdt.ltk.ui.UITexts;
16 import net.sourceforge.phpdt.ltk.ui.wizards.RenameLocalVariableWizard;
17 import net.sourceforge.phpdt.ui.IWorkingCopyManager;
18 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
19 import net.sourceforge.phpeclipse.phpeditor.PHPEditor;
20 import net.sourceforge.phpeclipse.phpeditor.php.PHPWordExtractor;
22 import org.eclipse.core.resources.IFile;
23 import org.eclipse.core.resources.IResource;
24 import org.eclipse.core.resources.IWorkspaceRoot;
25 import org.eclipse.core.resources.ResourcesPlugin;
26 import org.eclipse.jface.action.IAction;
27 import org.eclipse.jface.dialogs.MessageDialog;
28 import org.eclipse.jface.text.BadLocationException;
29 import org.eclipse.jface.text.IDocument;
30 import org.eclipse.jface.text.ITextSelection;
31 import org.eclipse.jface.viewers.ISelection;
32 import org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor;
33 import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation;
34 import org.eclipse.swt.graphics.Point;
35 import org.eclipse.swt.widgets.Shell;
36 import org.eclipse.ui.IEditorActionDelegate;
37 import org.eclipse.ui.IEditorInput;
38 import org.eclipse.ui.IEditorPart;
39 import org.eclipse.ui.IFileEditorInput;
40 import org.eclipse.ui.PlatformUI;
41 import org.eclipse.ui.ide.IDE;
42 import org.eclipse.ui.texteditor.ITextEditor;
44 public class RenameLocalVariable implements IEditorActionDelegate {
46 private ISelection selection;
48 private IEditorPart targetEditor;
50 private boolean onPHPFile;
52 private RenameIdentifierInfo info = new RenameIdentifierInfo();
54 public void setActiveEditor(final IAction action,
55 final IEditorPart targetEditor) {
56 this.targetEditor = targetEditor;
58 IFile file = getFile();
60 if (file != null && PHPFileUtil.isPHPFile(file)) {
65 public void run(final IAction action) {
69 if (selection != null && selection instanceof ITextSelection) {
72 if (targetEditor != null && (targetEditor instanceof PHPEditor)) {
73 PHPEditor editor = (PHPEditor) targetEditor;
75 ITextSelection textSelection = (ITextSelection) editor
76 .getSelectionProvider().getSelection();
77 IDocument doc = editor.getDocumentProvider()
78 .getDocument(editor.getEditorInput());
79 int pos = textSelection.getOffset();
80 point = PHPWordExtractor.findWord(doc, pos);
83 word = doc.get(point.x, point.y);
84 IWorkingCopyManager manager = PHPeclipsePlugin
85 .getDefault().getWorkingCopyManager();
86 ICompilationUnit unit = manager
87 .getWorkingCopy(editor.getEditorInput());
88 SourceMethod method = (SourceMethod) findEnclosingElement(
89 point.x, unit, IJavaElement.METHOD);
90 if (word == null || word.charAt(0) != '$'
92 || !(method instanceof SourceMethod)) {
93 refuseLocalVariable();
95 applySelection((ITextSelection) selection,
101 } catch (BadLocationException e) {
111 * Returns the enclosing element of a particular element type,
112 * <code>null</code> if no enclosing element of that type exists.
114 public IJavaElement findEnclosingElement(int start, ICompilationUnit cu,
120 IJavaElement element = cu.getElementAt(start);
121 if (element == null) {
125 return element.getAncestor(elementType);
127 } catch (JavaModelException e) {
132 public void selectionChanged(final IAction action,
133 final ISelection selection) {
134 this.selection = selection;
140 private void applySelection(final ITextSelection textSelection,
141 String word, Point point, SourceMethod method) {
143 info.setOldName(word);
144 info.setNewName(word);
145 info.setOffset(point.x);
147 info.setOldName(textSelection.getText());
148 info.setNewName(textSelection.getText());
149 info.setOffset(textSelection.getOffset());
151 info.setMethod(method);
152 info.setSourceFile(getFile());
155 private void refuseLocalVariable() {
156 String title = UITexts.renameLocalVariable_refuseDlg_title;
157 String message = UITexts.renameLocalVariable_refuseDlg_message;
158 MessageDialog.openInformation(getShell(), title, message);
161 private void refuse() {
162 String title = UITexts.renameProperty_refuseDlg_title;
163 String message = UITexts.renameProperty_refuseDlg_message;
164 MessageDialog.openInformation(getShell(), title, message);
167 private static boolean saveAll() {
168 IWorkspaceRoot workspaceRoot = ResourcesPlugin.getWorkspace().getRoot();
169 return IDE.saveAllEditors(new IResource[] { workspaceRoot }, false);
172 private void openWizard() {
173 RenameLocalVariableDelegate delegate = new RenameLocalVariableDelegate(
175 RefactoringProcessor processor = new RenamePHPProcessor(info, delegate);
176 RenameIdentifierRefactoring ref = new RenameIdentifierRefactoring(
178 RenameLocalVariableWizard wizard = new RenameLocalVariableWizard(ref,
180 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(
183 String titleForFailedChecks = ""; //$NON-NLS-1$
184 op.run(getShell(), titleForFailedChecks);
185 } catch (final InterruptedException irex) {
186 // operation was cancelled
190 private Shell getShell() {
192 if (targetEditor != null) {
193 result = targetEditor.getSite().getShell();
195 result = PlatformUI.getWorkbench().getActiveWorkbenchWindow()
201 private final IFile getFile() {
203 if (targetEditor instanceof ITextEditor) {
204 ITextEditor editor = (ITextEditor) targetEditor;
205 IEditorInput input = editor.getEditorInput();
206 if (input instanceof IFileEditorInput) {
207 result = ((IFileEditorInput) input).getFile();