Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "PDT/Dev2Dev/Semantic"

< PDT
(API)
 
Line 78: Line 78:
 
|-
 
|-
 
| '''Rule<br>'''  
 
| '''Rule<br>'''  
| '''Style<br>'''  
+
| '''Default Style<br>'''  
 
| '''Enabled by default'''<br>
 
| '''Enabled by default'''<br>
 
|-
 
|-
 
| Constants<br>  
 
| Constants<br>  
| <br>  
+
| Bold<br>  
| <br>
+
| True<br>
 
|-
 
|-
 
| Field<br>  
 
| Field<br>  
 
| <br>  
 
| <br>  
| <br>
+
| False<br>
 
|-
 
|-
 
| Function<br>  
 
| Function<br>  
 
| <br>  
 
| <br>  
| <br>
+
| False<br>
 
|-
 
|-
 
| Internal Function<br>  
 
| Internal Function<br>  
| <br>  
+
| Blue<br>  
| <br>
+
| True<br>
 
|-
 
|-
 
| Global Variable<br>  
 
| Global Variable<br>  
| <br>  
+
| Blue<br>  
| <br>
+
| True<br>
 
|-
 
|-
 
| Local variable<br>  
 
| Local variable<br>  
 
| <br>  
 
| <br>  
| <br>
+
| False<br>
 
|-
 
|-
 
| Method<br>  
 
| Method<br>  
 
| <br>  
 
| <br>  
| <br>
+
| False<br>
 
|-
 
|-
 
| Static Field<br>  
 
| Static Field<br>  
| <br>  
+
| Italic<br>  
| <br>
+
| True<br>
 
|-
 
|-
 
| Static Method<br>  
 
| Static Method<br>  
 
| <br>  
 
| <br>  
| <br>
+
| False<br>
 
|-
 
|-
 
| Classes<br>  
 
| Classes<br>  
| <br>  
+
| Blue<br>  
| <br>
+
| True<br>
 
|-
 
|-
 
| Internal Classes<br>  
 
| Internal Classes<br>  
| <br>  
+
| Blue<br>  
| <br>
+
| True<br>
 
|-
 
|-
 
| Internal Interfaces<br>  
 
| Internal Interfaces<br>  
| <br>  
+
| Blue<br>  
| <br>
+
| True<br>
 
|-
 
|-
 
| Interfaces<br>  
 
| Interfaces<br>  
 
| <br>  
 
| <br>  
| <br>
+
| False<br>
 
|-
 
|-
 
| Parameter Variables<br>  
 
| Parameter Variables<br>  
| <br>  
+
| Underline<br>  
| <br>
+
| True<br>
 
|-
 
|-
 
| Super Globales<br>  
 
| Super Globales<br>  
| <br>  
+
| Light blue<br>  
| <br>
+
| True<br>
 
|}
 
|}
  
<br>  
+
<br>
  
 
=== UI  ===
 
=== UI  ===

Latest revision as of 05:50, 26 August 2009

Semantic Highlighting

Overview

Following the improvements done by the Web tools project (232752) on semantic highlighting, the PHP Source Editor can now set semantic rules for better coloring techniques that will improve its performance and functionality. For example, currently, all variables are highlighted in the same color. Although members / static / constants variables should be colored in separate colors just like the Java editor does.

The following screenshot demonstrate the power of the semantic coloring:

Pdt semantic editor.png

The latest version of the patch is available at 271430.

API

The PHP semantic highlighting API is used to define semantic rules for PHP coloring. It's also useful for plugin developpers who would like to extends PHP highlighting with specific semantic rules.

The first step is to use the org.eclipse.wst.sse.ui.semanticHighlighting extension point with the org.eclipse.php.core.phpsource target. By using the PHP source target, PHP UI plugin is automatically registering this contributor as a semantic highlighter.
<extension point="org.eclipse.wst.sse.ui.semanticHighlighting">
  <highlighting
    class="org.eclipse.php.internal.ui.editor.highlighting.ParameterVariableHighlighting"
    target="org.eclipse.php.core.phpsource">
  </highlighting>
</extension>
The given class must extend org.eclipse.php.internal.ui.editor.highlighter.AbstractSemanticHighlighting.
public class ParameterVariableHighlighting extends AbstractSemanticHighlighting {
 
  @Override
  public AbstractSemanticApply getSemanticApply() {
    return new ParameterVariableApply();
  }
 
  @Override
  public void initDefaultPreferences() {
    getStyle().setUnderlineByDefault(true)
              .setDefaultTextColor(new RGB(102, 0, 0));
  }
 
  public String getDisplayName() {
    return "Local variables";
  }
}
Since some rules might be conflicting between each other, you can define the priority rules. For instance, the InternalClassHighlighting rule has to override the ClassHighlighting rule. You can use the @HighlightingPriority annotation to define the application order of the semantic rules.
@HighlightingPriority(Priority.HIGH)
public class InternalClassHighlighting extends AbstractSemanticHighlighting {
The AbstractSemanticApply is simple visitor of PHP AST model. Once a node to be colored is matched, it can be added to the semantic coloring using the highlight method.
protected class InterfaceApply extends AbstractSemanticApply {
 
  @Override
  public boolean visit(ClassDeclaration classDecl) {
    for (Identifier type: classDecl.interfaces()) {
      highlight(type);
    }
    return true;
  }
 
  @Override
  public boolean visit(InterfaceDeclaration interfaceDecl) {
    highlight(interfaceDecl.getName());
    for (Identifier type: classDecl.interfaces()) {
      highlight(type);
    }
    return true;
  }
}


The following table describes the semantic rules that have been implemented so far and their default style.


Rule
Default Style
Enabled by default
Constants
Bold
True
Field

False
Function

False
Internal Function
Blue
True
Global Variable
Blue
True
Local variable

False
Method

False
Static Field
Italic
True
Static Method

False
Classes
Blue
True
Internal Classes
Blue
True
Internal Interfaces
Blue
True
Interfaces

False
Parameter Variables
Underline
True
Super Globales
Light blue
True


UI

The rules are automatically added to the Syntax Coloring preference page:

Pdt semantic preferences.png

Performances

Work in progress...

Back to the top