Checkout, Compile, and Test Cytoscape 3 Core on Eclipse 3.5 Galileo

Status

Introduction

This tutorial is for Java developers who wants to learn how to checkout code, compile, and test Cytoscape 3 within Eclipse PDE.


Tutorial

Step 1. Setup Your Environment

To develop Cytoscape 3 on Eclipse, you need to install several software packages.

1. Java Development Kit (JDK)

You need to install JDK version 6. If you use Mac, please use Intel Mac with Snow Leopard (or Mac with 64bit support + Leopard). Should work on both 32 bit and 64 bit versions. I tested this tutorial with the following JDK and Mac OS X 10.6.1:

gamay:~ kono$ java -version
java version "1.6.0_15"
Java(TM) SE Runtime Environment (build 1.6.0_15-b03-219)
Java HotSpot(TM) 64-Bit Server VM (build 14.1-b02-90, mixed mode)

2. Eclipse PDE

This tutorial is based on the latest version of Eclipse 3.5, called Galileo. Several distributions are available on Eclipse web site. In this tutorial, we use Eclipse for RCP/Plug-in Developers version 3.5. This distribution includes PDE (Plugin development environment). I recommend to install latest version of Eclipse PDE to a new directory on your machine. Otherwise, the screenshots may be different due to Eclipse plugins you have already installed on your machine.

You can install Eclipse by just extracting archive file (zip/gzip) to a directoly of your choice. By default, the eclipse directory should look like the following:

To keep your Eclipse up-to-date, you can update plugins by software updater (help-->software updates...)

For Windows Users: Set JDK's JVM for Eclipse

Usually, Eclipse for Windows use JRE virtual machine instead of JDK's VM. To use JDK's VM, create a shortcut and edit the shortcut's property:

eclipse.exe -vm "c:¥path to jdk¥bin¥javaw.exe"

3. Cytoscape IDE

You can install all required Elcipse plugins for Cytoscape 3 development at once by installing Cytoscape IDE Plugin for Eclipse.

  1. Select Help-->Install New Software...

    • cytoscape_ide_new_software.png

  2. Click Add

    • cytoscape_ide_add_site.png

  3. Type Cytoscape Update Site for Name text box and type http://chianti.ucsd.edu/~kono/data/cyide in the Location text box. Press OK.

    • cytoscape_ide_select.png

  4. Eclipse automatically scans the location and displays available plugins. You have to choose only one plugin, Cytoscape IDE for Eclipse 3.5

  5. Click Next button and follow the instructions. This process takes several minutes because it installes lots of plugins at once. When installation is complete, you will be asked to restart Eclipse. Press Yes and restart Eclipse.

  6. Select Window-->Open Perspective-->Other. Then you can find Cytoscape IDE as a new perspective. Select it and press OK

  7. If your workspace layout looks like the following, Eclipse is ready to develop Cytoscape 3.
    • cytoscape_ide5.png

Note: My Testing Environment

I've tested the following tutorial on this environment:


Step 2. Checkout and Create Cytoscape 3 Eclipse Project

In this section, you will learn how to create an Eclipse project from the fresh Cytoscape 3 checkout.

Checkout Cytoscape 3 Trunk

  1. Start Eclipse. I recommend to use an empty, new workspace only for Cytoscape 3 project since it creates tons of new bundle projects in your workspace. Make sure Cytoscape IDE perspective is selected.
  2. <!> Turn off automatic build. (uncheck Project > Build Automatically)

  3. Select SVN Repository tab. Cytoscape subversion repository will appear automatically.

  4. If you are a core developer, use svn+ssh://grenache.ucsd.edu/cellar/common/svn. You need id and pssword. Otherwise, use http://chianti.ucsd.edu/svn. You can checkout the project from this URL, but cannot checkin.

  5. The Cytoscape 3 repository is cytoscape3/trunk.

    • eclipse_repository1.png

  6. From SVN Repository window, right-click cytoscape3 > trunk and select Check out as Maven project...

  7. Select Source Code Management (SCM) system type to svn and make sure the URL is set to http://chianti.ucsd.edu/svn/cytoscape3/trunk (for core developers, svn+ssh://grenache.ucsd.edu/cellar/common/svn/cytoscape3/trunk).

  8. Make sure Check out All projects checkbox is unchecked. Then click Finish

    • eclipse_core11.png

    This process takes 5-10 minutes depends on your network connection.
  9. You will be asked to select maven projects you want to import. Select top-level pom and application ONLY.

    • select_pom.png

  10. Select Package Explorer tab. Your Eclipse workspace looks like the following:

    • eclipse_ws_default.png

Step 3. Build and Run Cytoscape 3 on OSGi Frameworks

First, let's build and run Cytoscape 3 from Eclipse workspace.

  1. Select core project on the workspace. Right click and select Run As > Maven install. When you select this command, Eclipse builds and installs Cytoscape 3 bundles to your local maven repository ($HOME/.m2). It takes several minutes to complete (depends on your machine power).

    • maven_install.png

  2. You will see the message in the console if it is successful.
    • maven_install_success.png

  3. Select Run → Run Configurations

  4. Create new Maven Build and name it

  5. Set the Base directory to core bundle

  6. Set the goal to pax:run

    • eclipse_core20.png

  7. Apply and Run. You can use Felix Shell commands on the console.
    • eclipse_core21.png

  8. Quit Cytoscape

For Windows Users

[FelixStartLevel] DEBUG org.springframework.osgi.extender.internal.activator.ContextLoaderListener - Setting globally defined wait-for-dependencies timeout value=300000 ms, for bundle [org.cytoscape.work-swing-impl (org.cytoscape.work-swing-impl)]
[FelixDispatchQueue] DEBUG cytoscape.application - BundleEvent RESOLVED
[FelixDispatchQueue] DEBUG org.cytoscape.presentation-api - BundleEvent RESOLVED
[FelixDispatchQueue] DEBUG org.cytoscape.splash - BundleEvent RESOLVED
[FelixDispatchQueue] DEBUG org.swinglabs.swing-layout - BundleEvent RESOLVED
[FelixDispatchQueue] DEBUG org.cytoscape.cy-commons-cli - BundleEvent RESOLVED
[FelixDispatchQueue] DEBUG org.cytoscape.viewmodel - BundleEvent RESOLVED
[FelixDispatchQueue] DEBUG org.cytoscape.work-spring-hack - BundleEvent RESOLVED
[FelixDispatchQueue] DEBUG org.cytoscape.io-api - BundleEvent RESOLVED
[FelixDispatchQueue] DEBUG org.cytoscape.work-swing-impl - BundleEvent STARTED
[FelixDispatchQueue] DEBUG org.cytoscape.view.vizmap - BundleEvent RESOLVED
[FelixDispatchQueue] DEBUG org.cytoscape.session-api - BundleEvent RESOLVED

Somehow, you need to press enter several times after the message above if you use Windows. Otherwise, you cannot proceed.

Generate Manifest File for Eclipse PDE

At this point, application project is configured as Maven project. This means you can use m2eclipse plugin's features for the project, such as POM file editor, dependency graph visualization, etc. Since Cytoscape 3 is an OSGi application, actual distribution file (jar file) always include a manifest file MANIFEST.MF, which is a meta data for the OSGi bundle. As you know, all Eclipse plugins are also OSGi bundles, you can use PDE's Manifest editor features for Cytoscape projects. You can configure Cytoscape 3 application project as an PDE project by following the procedure below:

  1. Select Run > Run Configurations...

  2. Create new Maven Build

  3. Name it Generate Manifest for Eclipse

  4. Click Browse Workspace and select application project.

  5. Set install pax:eclipse for goals

  6. Apply and Run.

    • osgi_nature1.png

  7. Once it is done, refresh the workspace (press F5) and/or refresh maven project configuration by selecting Maven ---> Update Maven Configuration. You can see META-INF directory and under the folder, you can find MANIFEST.MF file. This is the metadata for OSGi bundle.

  8. Right-Click application and select PDE Tools ---> Open Manifest. You can see the summary of the metadata.

    • osgi_nature4.png

      osgi_nature2.png

Editing this metadata file by writing BND statements is beyond the scope of this tutorial and will be discussed later in Plugin Development section. However by using this feature, you can see what packages are available for the selected project (bundle), and what packages will be exported as public API.

Important Note: Maven and PDE

Eclipse PDE has a feature to build OSGi bundle manually. In this case, you need to edit MANIFEST.MF file by hand using PDE's Manifest editor. However, in Cytoscape project, we use BND from Maven to generate MANIFEST-MF automatically. This means, even if you edit MANIFEST.MF file in your Eclipse project, it will not be used when you create bundle! Therefore, you can use PDE's manifest editor as viewer of current manifest file generated by maven plugin, but cannot use it as an editor. You can control the manifest file generation process by editing pom.xml and osgi.bnd. This will be discussed in plugin development documents.

Step 4. Debug Cytoscape 3 on Eclipse with PAX Cursor

In this section, you learn how to debug Cytoscape 3 on Eclipse.

  1. First, set a break point in CytoscapeDesktop class, which is the class to startup Cytoscape Desktop GUI. It is in application/src/main/java/cytoscape/internam/view/CytoscapeDesktop.java. You can set breakpoint anywhere in the code.

    • debug0.png

  2. From Eclipse main window, select Run → Debug Configurations

  3. Right click on OSGi Framework and select New

  4. Name the configuration Debug Cytoscape 3

  5. Check log

    • pax1.png

  6. Select pom file under runner directory. To get the deploy-pom.xml file to be displayed, you have to change the File of type ComboBox to have Any File.

  7. Change Update option to yes

  8. Click the Bundles tab

    • pax2.png

  9. None of the files should be selected in the bundle list

  10. Switch Framework to Felix 1.8.1 (or newer)

  11. Apply and Debug

  12. Now you can see Cytoscape running on Felix and debugger shows current status of variables
    • pax4.png

    Just like other applications, Eclipse debugger stops execution at the break-point you specified in the source code. To start again, you need to press green triangle (Resume button).

Basically, the debugging process is same as regular Java projects. Once you edit something in the source code, you can rebuild and deploy it to local repository by Maven install command. Then you can repeat the procedure above to check internal states of Cytoscape 3 by Eclipse debugger.


Working with Felix OSGi Console

Cytoscape 3 is an OSGi application and you can check the status of bundles from OSGi console. After you start Cytoscape 3 from Eclipse, you can see a prompt on the Console window (if not, hit enter in the console to show the prompt). The following is some useful command to check internal states of the OSGi system. For more information, please visit [Felix web site].

Note: The behaviour of Cytoscpae 3 running on Felix will be different from time to time. This is because budle loading timing is not properly controlled now. This will be solved by organizing bundle/service dependency. I'm working on this issue now and hopefully it will be solved soon.

Notes

Now you are ready to hack Cytoscape 3 on Eclipse. As you can see on your workspace, Cytoscape 3 is a collection of OSGi bundles. Each bundle is built as a Maven project and has a pom.xml file.

Currently, the desktop version of Cytoscape 3 is called application bundle. Under src/main/java you can see the source tree. You can edit these source files just like 2.x series, and create the bundle by running maven commands. To run them, you need to select (right click) the project name and then select maven command from Run As menu:

To run your modified code, you just need to do maven install and run debugger.

Troubleshooting

  1. Somehow Cytoscape 3 Eclipse project is broken and I cannot compile it anymore

    • From terminal, run mvn pax:clean pax:eclipse. This cleans up everything and gives you a fresh workspace.

  2. pax:provision fails. What should I do?

    • Cleaning up the working space (maven clean) and rebuilding it (maven install) solves this problem in most cases.

  3. Cannot compile application bundle. Eclipse display some warning messages and cannot complete install goal

    • Comment out following lines in pom.xml in core directory:

      • <showWarnings>true</showWarnings>
        <showDeprecation>true</showDeprecation>
      We are working on this problem.
  4. Eclipse and Cytoscape are frozen after splashscreen is displayed. What happened?

    • On Windows, somehow Felix shell waits user's key entry after Cytoscape displays splashscreen. To proceed, you need to hit enter key in the console window (see below):
      • ts1.png

Appendix

Install Required Eclipse Plugins One by One

If you have troubles to install Cytoscape IDE, or you want to install newer versions of individual plugins, you can install them manually.

Subversion Client (Subclipse)

Cytoscape 3 source code is managed by Subversion. To access the repository, you need to install subversion client for Eclipse. In this tutorial, I'll use Subclipse. You can install the plugin from the eclipse's update manager. Do not forget to install SVNKit. Otherwise, you will get an error message when you try to check out repository ("Unable to load default SVN Client")

You can install the Subclipse plugin from Help > Software Updates... Click Available Software tab and add this URL by pressing Add Site button: http://subclipse.tigris.org/update_1.6.x

PAX Cursor

PAX Cursor is an Eclipse plugin developed by OPS4J developers. Basically, it is an Eclipse integration for PAX-Runner. By this plugin, you can run set of bundles on multiple platforms including Felix, Equinox, and Knopflerfish.

To install this Eclipse plugin, just follow the standard plugin installation procedure discussed above.

Maven Integration for Eclipse (m2eclipse)

Cytoscape build system has been moved to Maven. To use maven from Eclipse, you need to follow this instruction. Even if you run all maven commands from Eclipse, you still need to install command-line version of Maven since Eclipse embedded version of maven have issues to execute some maven goals.

Spring IDE

Cytoscape desktop application is wired by Spring. Eclipse has a plugin called Spring IDE which helps you to edit XML files to configure the application. You can install it from:

http://dist.springframework.org/release/IDE


This document is written by KeiichiroOno

If you have any questions, please e-mail me (kono at ucsd dot edu. English or Japanese)

Outdated_Cytoscape_3.0/Eclipse/CoreDevelopment (last edited 2011-02-24 15:54:45 by PietMolenaar)

Funding for Cytoscape is provided by a federal grant from the U.S. National Institute of General Medical Sciences (NIGMS) of the Na tional Institutes of Health (NIH) under award number GM070743-01. Corporate funding is provided through a contract from Unilever PLC.

MoinMoin Appliance - Powered by TurnKey Linux