e9376f502a839df8982f66c97d077fb3ca76f24b
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / PHPParserAction.java
1 package net.sourceforge.phpeclipse.phpeditor;
2
3 /**********************************************************************
4 Copyright (c) 2000, 2002 IBM Corp. and others.
5 All rights reserved. This program and the accompanying materials
6 are made available under the terms of the Common Public License v1.0
7 which accompanies this distribution, and is available at
8 http://www.eclipse.org/legal/cpl-v10.html
9
10 Contributors:
11     IBM Corporation - Initial implementation
12     Klaus Hartlage - www.eclipseproject.de
13 **********************************************************************/
14
15 import java.io.IOException;
16 import java.io.InputStream;
17 import java.util.ArrayList;
18 import java.util.List;
19
20 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
21 import net.sourceforge.phpeclipse.phpeditor.phpparser.PHPParser;
22
23 import org.eclipse.core.resources.IFile;
24 import org.eclipse.core.resources.IMarker;
25 import org.eclipse.core.runtime.CoreException;
26 import org.eclipse.jface.preference.IPreferenceStore;
27 import org.eclipse.ui.IEditorInput;
28 import org.eclipse.ui.IFileEditorInput;
29 import org.eclipse.ui.texteditor.ITextEditor;
30 import org.eclipse.ui.texteditor.TextEditorAction;
31
32 /**
33  * Class that defines the action for parsing the current PHP file
34  */
35 public class PHPParserAction extends TextEditorAction {
36
37   private static PHPParserAction instance = new PHPParserAction();
38   private static String[] EXTENSIONS = { ".php", ".php3", ".php4", ".inc", ".phtml" };
39
40   protected IFile fileToParse;
41   protected List fVariables = new ArrayList(100);
42
43   /**
44    * Constructs and updates the action.
45    */
46   private PHPParserAction() {
47     super(PHPEditorMessages.getResourceBundle(), "ParserAction.", null); //$NON-NLS-1$
48     update();
49   }
50
51   public static PHPParserAction getInstance() {
52     return instance;
53   }
54
55   /**
56    * Code called when the action is fired.
57    */
58   public void run() {
59     boolean phpFlag = false;
60     try {
61       fileToParse = getPHPFile();
62       if (fileToParse == null) {
63         // should never happen
64         System.err.println("Error : no file in the editor");
65         // should throw an exception
66         return;
67       }
68       String name = fileToParse.getName();
69       for (int i = 0; i<EXTENSIONS.length; i++) {
70         if (name.endsWith(EXTENSIONS[i])) {
71           phpFlag = true;  // php file extension
72           break;
73         }
74       }
75       if (phpFlag) {
76         IPreferenceStore store = PHPeclipsePlugin.getDefault().getPreferenceStore();
77         if (store.getString(PHPeclipsePlugin.PHP_PARSER_DEFAULT).equals(PHPeclipsePlugin.PHP_INTERNAL_PARSER)) {
78           // first delete all the previous markers
79           fileToParse.deleteMarkers(IMarker.PROBLEM, false, 0);
80
81           try {
82             InputStream iStream = fileToParse.getContents();
83             //        int c = iStream.read();
84             parse(iStream);
85             iStream.close();
86           } catch (IOException e) {
87           }
88         } else {
89           PHPParser.phpExternalParse(fileToParse);
90         }
91       }
92     } catch (CoreException e) {
93     }
94
95   }
96
97   /**
98    * Finds the file that's currently opened in the PHP Text Editor
99    */
100   protected IFile getPHPFile() {
101     ITextEditor editor = getTextEditor();
102
103     IEditorInput editorInput = null;
104     if (editor != null) {
105       editorInput = editor.getEditorInput();
106     }
107
108     if (editorInput instanceof IFileEditorInput)
109       return ((IFileEditorInput) editorInput).getFile();
110
111     // if nothing was found, which should never happen
112     return null;
113   }
114
115   /**
116    * Create marker for the parse error
117    */
118   //  protected void setMarker(String message, int lineNumber) throws CoreException {
119   //
120   //    Hashtable attributes = new Hashtable();
121   //    MarkerUtilities.setMessage(attributes, message);
122   //    if (message.startsWith(ERROR))
123   //      attributes.put(IMarker.SEVERITY, new Integer(IMarker.SEVERITY_ERROR));
124   //    else if (message.startsWith(WARNING))
125   //      attributes.put(IMarker.SEVERITY, new Integer(IMarker.SEVERITY_WARNING));
126   //    else
127   //      attributes.put(IMarker.SEVERITY, new Integer(IMarker.SEVERITY_INFO));
128   //    MarkerUtilities.setLineNumber(attributes, lineNumber);
129   //    MarkerUtilities.createMarker(fileToParse, attributes, IMarker.PROBLEM);
130   //  }
131
132   //  private String getIdentifier(InputStream iStream, int c) {
133   //    //    int i = 0;
134   //    // char c;
135   //    //  int textLength = text.length();
136   //    StringBuffer identifier = new StringBuffer();
137   //    identifier.append((char) c);
138   //    try {
139   //      while ((c = iStream.read()) != (-1)) {
140   //        if (Character.isJavaIdentifierPart((char) c)) {
141   //          identifier.append((char) c);
142   //          //        } else if ((i == 0) && (c == '$')) {
143   //          //          identifier.append((char)c);
144   //        } else {
145   //          return identifier.toString();
146   //        }
147   //        //        i++;
148   //      }
149   //    } catch (IOException e) {
150   //    }
151   //    return identifier.toString();
152   //  }
153
154   protected void parse(InputStream iStream) {
155
156     StringBuffer buf = new StringBuffer();
157     int c0;
158     try {
159       while ((c0 = iStream.read()) != (-1)) {
160         buf.append((char) c0);
161       }
162     } catch (IOException e) {
163       return;
164     }
165     String input = buf.toString();
166
167     PHPParser parser = new PHPParser(fileToParse);
168     try {
169       parser.parse(input);
170     } catch (CoreException e) {
171     }
172   }
173 }