Changes:
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / PHPTextHover.java
1 /**********************************************************************
2 Copyright (c) 2000, 2002 IBM Corp. 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
7
8 Contributors:
9     IBM Corporation - Initial implementation
10     Klaus Hartlage - www.eclipseproject.de
11 **********************************************************************/
12 package net.sourceforge.phpeclipse.phpeditor;
13
14 import java.io.FileReader;
15 import java.util.ArrayList;
16 import java.util.HashMap;
17 import java.util.List;
18
19 import net.sourceforge.phpdt.internal.corext.phpdoc.PHPDocUtil;
20 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
21 import net.sourceforge.phpeclipse.builder.IdentifierIndexManager;
22 import net.sourceforge.phpeclipse.builder.PHPIdentifierLocation;
23 import net.sourceforge.phpeclipse.phpeditor.php.PHPElement;
24 import net.sourceforge.phpeclipse.phpeditor.php.PHPWordExtractor;
25
26 import org.eclipse.core.resources.IProject;
27 import org.eclipse.jface.text.IRegion;
28 import org.eclipse.jface.text.ITextHover;
29 import org.eclipse.jface.text.ITextViewer;
30 import org.eclipse.jface.text.Region;
31 import org.eclipse.swt.graphics.Point;
32
33 /**
34  * Implementation for an <code>ITextHover</code> 
35  * which hovers over PHP code.
36  */
37 public class PHPTextHover implements ITextHover {
38   public static HashMap functionDescriptions = null;
39
40   private static PHPWordExtractor phpWordDetector = new PHPWordExtractor();
41   /**
42    * The current project; maybe <code>null</code> for preference pages
43    */
44   private IProject fProject;
45
46   public PHPTextHover(IProject project) {
47     fProject = project;
48   }
49   /* (non-Javadoc)
50    * Method declared on ITextHover
51    */
52   public String getHoverInfo(ITextViewer textViewer, IRegion hoverRegion) {
53     if (hoverRegion != null) {
54       try {
55         if (hoverRegion.getLength() > -1) {
56           String word = textViewer.getDocument().get(hoverRegion.getOffset(), hoverRegion.getLength());
57           if (functionDescriptions == null) {
58             functionDescriptions = new HashMap();
59
60                                                 ArrayList syntaxbuffer = PHPSyntaxRdr.getSyntaxData();
61             String strbuffer = null;
62             PHPElement elbuffer = null;
63             if (syntaxbuffer!=null) {
64                 for (int i=0;i<syntaxbuffer.size();i++) {
65                                                           elbuffer = (PHPElement) syntaxbuffer.get(i);
66                                                                 functionDescriptions.put(elbuffer.getName(), elbuffer.getHoverText());
67                 }
68             }
69 //            
70 //            while ((syntaxbuffer != null)
71 //              && (!syntaxbuffer.isEmpty() && ((elbuffer = (PHPElement) syntaxbuffer.remove(0)) != null))) {
72 //              functionDescriptions.put(elbuffer.getName(), elbuffer.getHoverText());
73 //            }
74
75           }
76           String hoverInfo = (String) functionDescriptions.get(word);
77           if (hoverInfo == null && fProject != null) {
78             // get the possible PHPDoc information from the index file
79             IdentifierIndexManager indexManager = PHPeclipsePlugin.getDefault().getIndexManager(fProject);
80             List list = indexManager.getLocations(word);
81             if (list.size() > 0) {
82               try {
83                 PHPIdentifierLocation location;
84                 String filename;
85                 FileReader phpdocFileReader;
86                 StringBuffer hoverInfoBuffer = new StringBuffer();
87                 String workspaceLocation = PHPeclipsePlugin.getWorkspace().getRoot().getLocation().toString();
88                 //                boolean foundPHPdoc = false;
89                 for (int i = 0; i < list.size(); i++) {
90                   location = (PHPIdentifierLocation) list.get(i);
91                                                                         filename = workspaceLocation + location.getFilename();
92                   PHPDocUtil.appendPHPDoc(hoverInfoBuffer, filename, location);
93                 }
94                 hoverInfo = hoverInfoBuffer.toString();
95               } catch (Throwable e) {
96                 // ignore exceptions
97                 // e.printStackTrace();
98               }
99             }
100           }
101           return hoverInfo;
102         }
103         //      } catch (BadLocationException x) {
104       } catch (Exception x) {
105       }
106     }
107     return "empty selection";
108   }
109
110   /* (non-Javadoc)
111    * Method declared on ITextHover
112    */
113   public IRegion getHoverRegion(ITextViewer textViewer, int offset) {
114     Point selection = PHPWordExtractor.findWord(textViewer.getDocument(), offset);
115     //  show the extracted word as a tooltip
116     if (selection != null && selection.x <= offset && offset < selection.x + selection.y)
117       return new Region(selection.x, selection.y);
118     return new Region(offset, 0);
119   }
120 }