NESCDT

From TinyOS Wiki
Revision as of 01:44, 22 June 2008 by Rasped (talk | contribs)
Jump to: navigation, search

This is a short description of how to use and develop the nescdt plugin. It is an editor for working with nesC code within Eclipse (as an alternative to other editors). Fundamentally, you just create a new project in Eclipse and link those folders from your TinyOS installation and your application tree that are needed. The plugin then scans the linked source code and uses this for auto-completion. Built-in keywords (which you can change off course) are used for syntax highlighting.

Using the nescdt TinyOS plugin for Eclipse

A basic nesC editor plugin for TinyOS-2.x using Eclipse with syntax highlighting and .nc file content detection for the follow types:

  • interface Inter.gif,
  • module Mod.gif,
  • generic module Genmod.gif,
  • configuration Conf.gif,
  • generic configuration Genconf.gif
  • safe Safe.gif(experimental).

Downloading

The same symbols are used as in nesdoc. The source is included in the plugin jar file, and it is possible to refine it. To install the plugin:

  • Version 0.0.14Download the nescdt_0.0.14.jar file [here]
  • Save it in the root of Eclipse plugin directory (where the other (jar) plugins also reside), and delete the previous version of this plugin if you have it. The sources are included if you want to compile it yourself...
  • Restart Eclipse (perhaps verify for yourself that it is installed: Help->About Eclipse SDK->Plug-in Details)
  • Associate the *.nc files with this editor: Windows->Preferences->General->Editors->File Associations

Nxtmote-fileassosi.png

  • Create a new empty project Nxtmote-newproject.jpg and name it what you want to (for example nescsampleproject)
  • Create a new folder in the project (right-click on the project) and name it what you want to
  • Import and link to the part of the TinyOS tree or your own code(right-click on the nescsampleproject folder and press import)

Nxtmote-folderlink.jpg

  • Choose the Link to folder in the file system option and proceed (this will not change your TinyOS code at all and it will not copy any files on your computer)
  • When you are done the Eclipse IDE could look something like this (note that the content of the files have been analyzed and that the icons reveal that we have some configurations, generic configurations, modules, and generic modules in the mica2 folder):

Nxtmote-editor.png

  • When you open some .nc file it will be syntax colored (according some some predefined rules in the plugin):

Nxtmote-editorsyntax2.png

  • There is autocompletion for keywords and types. Press CTRL + SPACE to get the suggestions

Nxtmote-keywordcompletion1a.png

Then select (if there is more than one choice) and press ENTER to insert the word

Nxtmote-keywordcompletion2.png

Side notes

    • The nescdt plugin is < 50 kB
    • (Experimental) If it detects safe code (looking for @safe, *COUNT, *SIZE, or *SAFE) a rhombus shape is added to the icon. A safe module could look like this Nxtmote-safedemo.png in the file navigator (note that a little rhombus has been added to the module icon).
    • If the CVS decorators annoy you (if, for example, another CVS client than Eclipse is being used), then turn them off from Window->Preferences->General->Appearance->Label Decorations.
    • You can also consider downloading the CDT plugin for editing header files and perhaps C files in Eclipse. Enter the http://download.eclipse.org/tools/cdt/releases/europa as a new Remote site in the Eclipse update manager and choose the CDT main plugin:

Nxtmote-cdtdownload.png

Developing/Debugging on the NESCDT Plugin

To develop, customize, or debug the nescdt plugin, you can follow the guide below. In a best-case scenario it would be completed in 15 min.


Importing

Here we start with a blank Eclipse. You can get a new workspace (if you want to) by creating a shortcut and starting Eclipse with a command line similar to this:

C:\eclipse\eclipse.exe -data -consolelog C:\Dokumenter\eclipse\workspace-plugin 

The consolelog makes it possible to see System.out.println from the plugin itself (it is cheating, but useful during development).

1-Dev-Blank-Eclipse.png

Assuming that you have downloaded the plugin (see start of this wiki page) it is now the time to import it into Eclipse for development. Press Import:

2-Dev-Import.png

Select Plug-ins and Fragments:

3-Dev-pluginselect.png

Important: Choose Projects with source folders:

4-Dev-withsource.png

Select the nescdt plugin in the version you happen to have:

5-Dev-select.png


Debugging

To show how easy it is to change it, look at the following example. It is code that splits the contents of a .nc file into string tokens:

5a-Dev-coding-example.png

Try to place a breakpoint by double-clicking on the bar to the left of the code that you want to inspect. Then click on the meny to debug an Eclipse Application. It is a second Eclipse instance that will be launched running the imported version of the plugin (not the plugin you downloaded into the ECLIPSEHOME/plugin folder):

5b-Dev-debug-start.png

It will then look like this when you have the two instances of Eclipse running:

5c-Dev-debug-ok.png

To create a new version of the plugin please double click on the plugin.xml file in the project. Then select the Export Wizard:

6-Dev-start-export.png

Check the src folder for export when doing a binary build (so you export the source code with the plugin and makes it possible for others to do what you are doing now):

8-Dev-src-build.png

Exporting

Then export the plugin to the ECLIPSEHOME/plugin directory (it will run next time Eclipse is restarted). It is best to delete the old plugin file (such as nescdt_0.0.12.jar) and change the increment the version nuymber of the new plugin :

7-Dev-export.png

Finally verify that the plugin jar file is in the plugin directory as expected:

9-Dev-plugin-eclipse-dir.png


Contact: rup.inf(at)cbs.dk