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
9 IBM Corporation - Initial implementation
11 **********************************************************************/
12 package net.sourceforge.phpeclipse.phpeditor;
14 import java.io.FileReader;
15 import java.util.ArrayList;
16 import java.util.HashMap;
17 import java.util.List;
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;
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;
34 * Implementation for an <code>ITextHover</code> which hovers over PHP code.
36 public class PHPTextHover implements ITextHover {
37 public static HashMap functionDescriptions = null;
39 private static PHPWordExtractor phpWordDetector = new PHPWordExtractor();
42 * The current project; maybe <code>null</code> for preference pages
44 private IProject fProject;
46 public PHPTextHover(IProject project) {
51 * (non-Javadoc) Method declared on ITextHover
53 public String getHoverInfo(ITextViewer textViewer, IRegion hoverRegion) {
54 if (hoverRegion != null) {
56 if (hoverRegion.getLength() > -1) {
57 String word = textViewer.getDocument().get(hoverRegion.getOffset(), hoverRegion.getLength());
58 if (functionDescriptions == null) {
59 functionDescriptions = new HashMap();
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());
70 // while ((syntaxbuffer != null)
71 // && (!syntaxbuffer.isEmpty() && ((elbuffer = (PHPElement)
72 // syntaxbuffer.remove(0)) != null))) {
73 // functionDescriptions.put(elbuffer.getName(),
74 // elbuffer.getHoverText());
77 String hoverInfo = (String) functionDescriptions.get(word);
78 if (hoverInfo == null & word.length() > 0) {
79 hoverInfo = (String) functionDescriptions.get(word.toLowerCase());
81 if (hoverInfo == null && fProject != null) {
82 // get the possible PHPDoc information from the index file
83 IdentifierIndexManager indexManager = PHPeclipsePlugin.getDefault().getIndexManager(fProject);
84 List list = indexManager.getLocations(word);
85 if (list.size() > 0) {
87 PHPIdentifierLocation location;
89 FileReader phpdocFileReader;
90 StringBuffer hoverInfoBuffer = new StringBuffer();
91 String workspaceLocation;
92 if (fProject != null) {
93 workspaceLocation = fProject.getLocation().toString() + '/';
95 // should never happen?
96 workspaceLocation = PHPeclipsePlugin.getWorkspace().getRoot().getLocation().toString();
98 // boolean foundPHPdoc = false;
99 for (int i = 0; i < list.size(); i++) {
100 location = (PHPIdentifierLocation) list.get(i);
101 filename = workspaceLocation + location.getFilename();
102 PHPDocUtil.appendPHPDoc(hoverInfoBuffer, filename, location);
104 hoverInfo = hoverInfoBuffer.toString();
105 } catch (Throwable e) {
107 // e.printStackTrace();
113 // } catch (BadLocationException x) {
114 } catch (Exception x) {
118 // don't show this annoying text
119 // return "empty selection";
123 * (non-Javadoc) Method declared on ITextHover
125 public IRegion getHoverRegion(ITextViewer textViewer, int offset) {
126 Point selection = PHPWordExtractor.findWord(textViewer.getDocument(), offset);
127 // show the extracted word as a tooltip
128 if (selection != null && selection.x <= offset && offset < selection.x + selection.y)
129 return new Region(selection.x, selection.y);
130 return new Region(offset, 0);