77173a75f95ceda779af89b8acda5c8ebb955304
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / actions / PHPOpenIncludeEditorAction.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2002 IBM Corp. and others. All rights reserved. This
3  * program and the accompanying materials are made available under the terms of
4  * the Common Public License v1.0 which accompanies this distribution, and is
5  * available at http://www.eclipse.org/legal/cpl-v10.html
6  * 
7  * Contributors: Klaus Hartlage - www.eclipseproject.de
8  ******************************************************************************/
9 package net.sourceforge.phpeclipse.actions;
10
11 import java.util.List;
12
13 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
14 import net.sourceforge.phpeclipse.builder.IdentifierIndexManager;
15 import net.sourceforge.phpeclipse.phpeditor.PHPEditor;
16
17 import org.eclipse.core.resources.IContainer;
18 import org.eclipse.core.resources.IFile;
19 import org.eclipse.core.resources.IProject;
20 import org.eclipse.core.runtime.CoreException;
21 import org.eclipse.core.runtime.Path;
22 import org.eclipse.jface.action.IAction;
23 import org.eclipse.jface.text.BadLocationException;
24 import org.eclipse.jface.text.IDocument;
25 import org.eclipse.jface.text.ITextSelection;
26 import org.eclipse.jface.text.TextSelection;
27 import org.eclipse.jface.viewers.ISelection;
28 import org.eclipse.jface.viewers.LabelProvider;
29 import org.eclipse.jface.window.Window;
30 import org.eclipse.swt.graphics.Point;
31 import org.eclipse.ui.IEditorActionDelegate;
32 import org.eclipse.ui.IEditorPart;
33 import org.eclipse.ui.IFileEditorInput;
34 import org.eclipse.ui.IWorkbenchPage;
35 import org.eclipse.ui.IWorkbenchWindow;
36 import org.eclipse.ui.actions.ActionDelegate;
37 import org.eclipse.ui.dialogs.ListSelectionDialog;
38 import org.eclipse.ui.internal.dialogs.ListContentProvider;
39
40 public class PHPOpenIncludeEditorAction extends ActionDelegate implements IEditorActionDelegate {
41
42   private IWorkbenchWindow fWindow;
43   private PHPEditor fEditor;
44   private IProject fProject;
45
46   public void dispose() {
47   }
48
49   public void init(IWorkbenchWindow window) {
50     this.fWindow = window;
51   }
52
53   public void selectionChanged(IAction action, ISelection selection) {
54     if (!selection.isEmpty()) {
55       if (selection instanceof TextSelection) {
56         action.setEnabled(true);
57       } else if (fWindow.getActivePage() != null && fWindow.getActivePage().getActivePart() != null) {
58         //
59       }
60     }
61   }
62   private IWorkbenchPage getActivePage() {
63     IWorkbenchWindow workbenchWindow = fEditor.getEditorSite().getWorkbenchWindow();
64     IWorkbenchPage page = workbenchWindow.getActivePage();
65     return page;
66   }
67   public IContainer getWorkingLocation(IFileEditorInput editorInput) {
68     if (editorInput == null || editorInput.getFile() == null) {
69       return null;
70     }
71     return editorInput.getFile().getParent();
72   }
73   private IFile getIncludeFile(IProject project, IFileEditorInput editorInput, String relativeFilename) {
74     IContainer container = getWorkingLocation(editorInput);
75     String fullPath = project.getLocation().toString();
76     IFile file = null;
77     if (relativeFilename.startsWith("../")) {
78       Path path = new Path(relativeFilename);
79           file = container.getFile(path);
80           return file;
81     }
82     int index = relativeFilename.lastIndexOf('/');
83     
84     if (index >= 0) {
85       Path path = new Path(relativeFilename);
86       file = project.getFile(path);
87       if (file.exists()) {
88             return file;
89           }
90     } 
91     
92         Path path = new Path(relativeFilename);
93         file = container.getFile(path);
94     
95     return file;
96   }
97
98   public void run(IAction action) {
99     if (fEditor == null) {
100       IEditorPart targetEditor = fWindow.getActivePage().getActiveEditor();
101       if (targetEditor != null && (targetEditor instanceof PHPEditor)) {
102         fEditor = (PHPEditor) targetEditor;
103       }
104     }
105     if (fEditor != null) {
106       // determine the current Project from a (file-based) Editor
107       IFile f = ((IFileEditorInput) fEditor.getEditorInput()).getFile();
108       fProject = f.getProject();
109       //      System.out.println(fProject.toString());
110
111       ITextSelection selection = (ITextSelection) fEditor.getSelectionProvider().getSelection();
112       IDocument doc = fEditor.getDocumentProvider().getDocument(fEditor.getEditorInput());
113       int pos = selection.getOffset();
114       //  System.out.println(selection.getText());
115       String filename = getPHPIncludeText(doc, pos);
116       //      System.out.println(word);
117       if (filename != null && !filename.equals("")) {
118         try {
119           IFile file = getIncludeFile(fProject, (IFileEditorInput) fEditor.getEditorInput(), filename);
120           if (file != null && file.exists()) {
121             PHPeclipsePlugin.getDefault().openFileInTextEditor(file.getLocation().toString());
122             return;
123           }
124         } catch (Exception e) {
125           // ignore
126         }
127
128         try {
129
130           IdentifierIndexManager indexManager = PHPeclipsePlugin.getDefault().getIndexManager(fProject);
131           //            filename = StringUtil.replaceRegExChars(filename);
132           List list = indexManager.getFileList(filename);
133           if (list != null && list.size() > 0) {
134             String workspaceLocation = PHPeclipsePlugin.getWorkspace().getRoot().getLocation().toString();
135
136             ListSelectionDialog listSelectionDialog = new ListSelectionDialog(PHPeclipsePlugin.getDefault().getWorkbench()
137                 .getActiveWorkbenchWindow().getShell(), list, new ListContentProvider(), new LabelProvider(),
138                 "Select the includes to open.");
139             listSelectionDialog.setTitle("Multiple includes found");
140             if (listSelectionDialog.open() == Window.OK) {
141               Object[] locations = listSelectionDialog.getResult();
142               if (locations != null) {
143                 try {
144                   for (int i = 0; i < locations.length; i++) {
145                     //                    PHPIdentifierLocation location = (PHPIdentifierLocation)
146                     // locations[i];
147                     String openFilename = workspaceLocation + ((String) locations[i]);
148                     PHPeclipsePlugin.getDefault().openFileInTextEditor(openFilename);
149                   }
150                 } catch (CoreException e) {
151                   // TODO Auto-generated catch block
152                   e.printStackTrace();
153                 }
154               }
155             }
156
157           }
158         } catch (Exception e) {
159         }
160
161       }
162     }
163   }
164
165   public void setActiveEditor(IAction action, IEditorPart targetEditor) {
166     if (targetEditor != null && (targetEditor instanceof PHPEditor)) {
167       fEditor = (PHPEditor) targetEditor;
168     }
169   }
170
171   private String getPHPIncludeText(IDocument doc, int pos) {
172     Point word = null;
173     int start = -1;
174     int end = -1;
175
176     try {
177
178       int position = pos;
179       char character;
180
181       while (position >= 0) {
182         character = doc.getChar(position);
183         if ((character == '\"') || (character == '\'') || (character == '\r') || (character == '\n'))
184           break;
185         --position;
186       }
187
188       start = position;
189
190       position = pos;
191       int length = doc.getLength();
192
193       while (position < length) {
194         character = doc.getChar(position);
195         if ((character == '\"') || (character == '\'') || (character == '\r') || (character == '\n'))
196           break;
197         ++position;
198       }
199
200       start++;
201       end = position;
202
203       if (end > start)
204         word = new Point(start, end - start);
205
206     } catch (BadLocationException x) {
207     }
208
209     if (word != null) {
210       try {
211         return doc.get(word.x, word.y);
212       } catch (BadLocationException e) {
213       }
214     }
215     return "";
216   }
217 }