Setting up Ptolemy II and Eclipse

These instructions assume you are using Eclipse 3.1 under Windows. Other ways of setting up and building Ptolemy II are described on the Ptolemy II install page. Contents of this page:

  • Install Eclipse
  • Set up Eclipse for Ptolemy II
  • Using Eclipse
  • Optional Extensions
  • Troubleshooting
  • Install Eclipse

    1. Download the latest version of Eclipse from http://www.eclipse.org.
    2. Unzip the download file into an appropriate place (such as C:\Program Files).
    3. Finish the installation by running eclipse/eclipse.exe.
      The first time this is run it will complete the installation process.
      After the first run, normal start-up will occur whenever it is started.

    Eclipse Preferences for Ptolemy II

    The default configuration of Eclipse has some difficulties with Ptolemy II, so a few changes are necessary.

    1. We will need to change the default memory size for Eclipse because Ptolemy II is a big project. In Windows, create a shortcut to eclipse.exe on your desktop. Then right mouse click on the shortcut and select Properties and change the target to increase the memory allocated by default. E.g., if you installed Eclipse in C:\Program Files\eclipse, then the Target should read:
         "C:\Program Files\eclipse\eclipse.exe" -vmargs -Xmx256M
      
      The maximum memory size will now be 256 megabytes when you restart Eclipse.

    2. Ptolemy II uses some features of Java 1.4. Set Eclipse to use Java 1.4 source code compliance.
      1. Window->Preferences->Java->Compiler->Compliance and Classfiles
      2. Uncheck "Use default compliance settings".
      3. Set both "Generated .class files compatibility" and "Source compatibility" to 1.4.
      4. Click OK.

    3. By default, Eclipse rebuilds a project when any change is made to a file. This will result in thousands of errors when Ptolemy II is first checked out, and during normal usage, can be annoying because of the pauses it creates. We suggest disabling this feature as follows:
      1. Select Window -> Preferences.
      2. General -&;gt; Workspace
      3. Deselect "Build automatically."

    4. Ptolemy II source files are worked on by many people with different editors. Unfortunately, different text editors interpret tab characters differently, so it is best to use spaces rather than tabs.
      Sadly, the Eclipse developers have chosen to use tabs as spaces, so you must adjust the Eclipse Java Formatter if you plan on contributing code to the Ptolemy II tree.
      Also, it is best if files end with new line characters, so that we can run line oriented scripts on them.
      In addition, we currently do not want the Eclipse Formatter to format comments. We hope to change this policy in the future.
      We handle these changes together:
      1. Select Window->Preferences in the menu.
      2. Expand the Java tree, select "Code Style" -> "Formatter"
      3. Under "Select a profile" select "Java Conventions" and then Click on "Show". We use Java Conventions over the "Eclipse" setting because the Eclipse style uses tabs
      4. Under the "Indentation" tab, verify that the Tab policy to "Spaces only"
      5. Under the "New Lines" tab, select "at end of file"
      6. Under the "Comments" tab, unselect "Enable comment formatting"
      7. Click OK.
      8. You will be prompted to save the style with a new name, we suggest "Ptolemy II", but you can select any name.
    5. Eclipse has very good compiler error/warning. One of the warnings complains if a Serializable class does not have serialVersionUID declared. Since this warning is only useful if you are tightly managing serialization, we turn it off:
      1. Select Window->Preferences in the menu.
      2. Expand the Java tree, select "Compiler" -> "Errors/Warning"
      3. Under "Potential programming problems", change "Serializable class without serialVersionUID" to "Ignore"
      4. Click OK
    6. By default, Eclipse checks in makefiles, *.c, *.h files and *.tcl files with -kb. This causes no end of problems when the tree is checked out on a platform that has a different line ending.
      The solution: set your file associations properly:
      1. Select Window->Preferences in the menu.
      2. Expand Team->File Content
      3. Click on "Add Extension" and enter "*.tcl" in the "Enter File Extension" window, then click "OK" in the "Enter File Extension"
      4. Select "*.tcl" in the "File Content" window and then hit the "Change" button to change the Content to "ASCII Text"
      5. Do the same steps for the "*.c" and "*.h" files.
      6. Click on "Add Name" and add "makefile", select "makefile" and click on the "Change" button to change the Content to "ASCII Text"

    Setting up Eclipse to manage your Ptolemy II development environment

    Eclipse will manage your ptII code tree as a project called the ptII project. There are three ways to set up the ptII project,
    1. Eclipse is unaware of the CVS aspects of the project. (No Eclipse CVS, use shell CVS)
    2. Eclipse is aware of the CVS aspects of the project, but you can't use the shell version of CVS. (Eclipse only CVS)
    3. Eclipse is aware of the CVS aspects of the project and you can use the shell version of CVS. (Use both Eclipse and shell CVS)
    Without CVS, you'll need to manage the CVS aspects in the usual way, i.e. with CVS commands being submitted to a bash shell. With CVS, Eclipse will do all sorts of things to "help" you. Most of these things are good, but there is a learning curve. Setting up for using both Eclipse and the shell CVS commands is a little tricky, but worth it.

    Once the ptII project has been set up there seems to be no easy way to switch between using CVS and not using CVS. I.E., the only way to switch is to re-create the ptII project. (Actually, this isn't too hard after you've done it a couple of times :-)). Therefore, you'll need to decide if you want Eclipse to be aware of, and manage the CVS aspects of the ptII project.

    If you don't want to use CVS with Eclipse

    You must already have a ptII development tree. All you want to do is
    1. Configure the .classpath and .project files. See .classpath.default. below.
    2. Create the ptII project

    Check Out Ptolemy II from the CVS Repository using pserver

    Below we describe how to set up Eclipse so Eclipse manages the CVS interaction. This is easier than setting up both Eclipse and Shell CVS below.

    Eclipse will manage your ptII code tree as a project called the ptII project. Assuming Eclipse is running:

    1. Set up the pserver CVS connection:
      1. Expose the CVS repositories view by selecting Window->Show View->Other in the menus. Then select CVS->CVS Repositories.
      2. In the CVS Repositories Panel, right mouse click and select New->Repository Location:
           Host: source.eecs.berkeley.edu
           Repository path: /home/cvs/cvsanon
           The user name is: anon with no password (leave the password field blank)
        Or, if you have an individual read/write CVS account on source, you can use your source user name and password.
      3. Select pserver.

        Note: Most users will select pserver because they will be accessing the tree with read-only CVS access.

        If you have an individual read/write CVS account on source, then select extssh. See the Ptexternal page for details.

      4. Click Finish.

    2. If you are connecting via a DSL connection, you may want to use compression to transfer files: In Window -> Preferences -> Team -> CVS -> Connection change Compression Level to 9.

    3. In the CVS Repositories View window, click + sign to the left of the repository and then on the + sign to the left of HEAD until you see the ptII Head.

    4. Right mouse click on the ptII Head, then Select the "Check Out As..." option. Follow the wizard, creating selections as follows:

    5. Wait for the checkout to finish. Go get coffee.
      Note:If you did not disable build automatically, as suggested above, then Eclipse will build the project and produce thousands of errors. This is not really a problem. You will fix the errors below with the .classpath.default file.

    6. You will want to view the project in the Java perspective. If you aren't already in the Java perspective, select Window->Open Perspective->Java in the menu. By default, Eclipse offers a "package explorer" as the main navigation mechanism for the source files. I much prefer to use the "navigator." To get the navigator, select Window->Show View->Navigator in the menu. You can now browse the source files.

    7. Find the file in the ptII home directory called .classpath.default and copy it into a new file called .classpath.
    8. In Eclipse, perform a Refresh on the ptII project by Window->Open Perspective->Java,
         Go to the Package Explorer or the Navigator.
         Right mouse click on the ptII icon and select Refresh.
      Note:If you do not do copy .classpath.default and select "Refresh", then Eclipse will produce thousands of errors. This is not really a problem. It reflects that you probably don't have installed many optional packages that are needed to build subsets of Ptolemy II. You can ignore the errors (not advised, since they will mask errors you make), or you can copy the .classpath.default file and rebuild. Alternatively, you can install the optional packages and run configure.

    9. Build Ptolemy II by selecting Project -> Build All. You will get many warnings that you can ignore, but hopefully no errors.

    Using Eclipse

    Running Ptolemy II

    1. In the Run menu, select "Run...".

    2. In the resulting dialog, select "Java Application" and click "New".

    3. In the dialog, fill in the boxes as follows:

    4. Press the Run button.
    The Ptolemy II welcome window should appear.

    You may now wish to read the Using Vergil tutorial.

    Setting up both Eclipse and Shell CVS

    The description below is based on information from Kevin Rutland about how to set up you tree to use both Eclipse and shell CVS.

    This method expects that you have a ssh account on source.eecs.

    See the Eclipse documentation: Running the CVS command-line client outside of Eclipse

    1. Expose the CVS repositories view by selecting Window->Show View->Other in the menus. Then select CVS->CVS Repositories.
    2. In the CVS Repositories Panel, right mouse click and select New->Repository Location:
         Host: source.eecs.berkeley.edu
         Repository path: /home/cvs
         The user name is: Your source.eecs account name
         The password is: Your source.eecs account password
    3. Select ext.
    4. Click Finish.
    5. Follow the DSL and CVS Repository selection instructions above.
    Note that on the command line you need to do
    export CVS_RSH=ssh
    
    All the Repository entries are set to ":ext:" in the project so all the normal cvs commands (like -n update and diff) work just as expected.

    Optional Extensions

    Ptolemy II includes a number of packages that rely on software that you may or may not have installed, such as MATLAB, the Java comm package (for serial port connections), joystick support, Java Advanced Imaging (JAI), the Java Media Framework (JMF), and Java 3D. If you wish to use or extend these features, you will need to perform a few extra steps. These steps require execution of a script called "configure" in the Ptolemy II home directory, which in turn requires (on Windows) installation of Cygwin, a package that offers Unix-like facilities within Windows. You can find instructions for installing Cygwin at http://ptolemy.eecs.berkeley.edu/ptolemyII/ptIIlatest/cygwin.htm.

    The procedure below will modify the .classpath file that is provided in the CVS repository to customize it for the software that you have installed. The procedure is as follows:

    1. Start up Cygwin bash shell.
    2. Set the PTII variable and export it
      PTII=c:/ptII
      export PTII
      
    3. cd to the PTII directory
      cd $PTII
      
    4. Run configure:
      ./configure
      
      This will create $PTII/.classpath
    5. If you plan on running the Ptolemy II startup scripts in $PTII/bin on the command line, you will probably want to run the following commands within Cygwin bash:
      cd $PTII/bin
      make
      
    6. In Eclipse, perform a Refresh on the ptII project by Window->Open Perspective->Java,
         Go to the Package Explorer or the Navigator.
         Right mouse click on the ptII icon and select Refresh.
      This will cause Eclipse to see the new ptII/.classpath and to build the project (or you may have to manually rebuild if you turned off automatic rebuild).

    Using CVS

    Resources:

    Debugging CVS

    http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/platform-vcm-home/docs/online/cvs_features2.0/cvs-faq.html#misc_0 has instructions about how to enable debugging for cvs.
    1. In your eclipse directory, create a .options file:
      org.eclipse.team.cvs.core/debug=true
      org.eclipse.team.cvs.core/cvsprotocol=true
      
    2. Start up eclipse
      ./eclipse  -vm c:/j2sdk1.4.2_03/jre/bin/java.exe -debug -consolelog
      
      Note that it is important that you run the jre version of java and not javaw.

    Synchronizing with the repository

    1. In the Navigator view scroll/open until you see the resource (directory or file) to be synchronized.
    2. Right click that resource and select Team->Synchronize With Repository...
    3. The Synchronize view should then be visible.
    4. Select the Incoming, Outgoing, or Incoming/Outgoing menu bar icon as appropriate

    Restoring a file from the repository

    1. In the Navigator view scroll/open until you see the resource (directory or file) to be restored.
    2. Right click that resource and select Replace With->Latest From Head.

    Debugging Tcl Tests

    1. Go to Windows -> Open Perspective -> Java.
    2. In Package Explorer, locate ptjacl.jar -> tcl.lang -> Shell.class -> Shell and highlight it.
    3. Go to Run -> Debug...
    4. Select Arguments tag.
    5. In Program arguments, put alljtests.tcl or any individual test tcl file.
      (E.g. SimpleDelay.tcl)
    6. In VM arguments, put -Dptolemy.ptII.dir=your PtII directory
      (E.g. -Dptolemy.ptII.dir=c:\hyzheng\ptII)
    7. Select Local directory, browse to the directory containing the tcl tests.
      (E.g. C:\hyzheng\ptII\ptolemy\domains\de\lib\test)
    8. Select Debug.
    The nice thing of using Eclipse is that you can very easily locate where the exception is thrown by clicking the classes listed in the stack trace. You may further register a breakpoint to do more diagnosis.

    Troubleshooting

    Preferences

    If you have already used Eclipse and you would like to start over with new projects and preferences, remove the workspace directory in the Eclipse directory. The workspace directory will only appear if you have already run Eclipse. Note that removing the workspace directory will cause Eclipse to 'forget' about any projects that you may have set up

    CVS Console

    You might find the cvs console to be of use, to use it do Window -> Show View -> Other -> CVS -> CVS Console.

    Problems with CVS compression

    If, under Eclipse 2.1, you receive a message "Terminated with fatal signal 10", then try using a different compression level, see the The Eclipse CVS FAQ for details.
    https://bugs.eclipse.org/bugs/show_bug.cgi?id=15724 suggests using a compression level of 5.

    After the failure, the cvs log (Window -> Show Views -> CVS -> CVS Console says:

      U ptII/ptolemy/domains/fsm/demo/ABP/img/Receiver.vsd
      U ptII/ptolemy/domains/fsm/demo/ABP/img/Sender.gif
      Terminated with fatal signal 11
    The server reported an error while performing the "cvs checkout" command. (took 15:16.607)
    Error: : Terminated with fatal signal 11
    ***
    

    Rebuilding Briefly flashes a window

    If you have problems where clicking on build briefly flashes up a window, look in $PTII/.classpath for and empty exclusion that looks like ||

    If you have problems with the classpath, look in the workspace/.metadata/log file that is in the directory where eclipse is installed. For more information about the .metadata directory, see below.

    Ignore files

    To ignore files from within CVS: Windows -> Preferences -> Team -> -> Ignored Resources
    Add the following to Ignore Patterns
  • alljsimpletests.tcl
  • alljtests.tcl
  • Eclipse takes a long time to start up

    If Eclipse takes a long time to start up, then the problem could be that

    Basically, when eclipse starts up, it might try to update H:/workspace/.metadata . The solution is covered in http://www.eclipse.org/documentation/html/plugins/org.eclipse.platform.doc.user/doc/tasks/running_eclipse.htm: The way I figured this out was by running Norton Antivirus and doing View -> File System Realtime Scan Statistics and then I noticed that my machine was updating H:/workspace/.metadata

    I think I introduced the problem by clicking on the Eclipse.exe binary and selecting Pin to Start Menu. My solution was to remove the Eclipse bogus entry in the start menu and then create a shortcut, change Start in property and then pin that shortcut to my start menu.

    Running Eclipse under JDK1.4 on an IBM T30

    If you are running on an IBM T30 laptop with JDK1.4, and your machine locks up upon exiting an application, then you may need to invoke java with the -Dsun.java2d.d3d=false argument. The way to do this is to do Run 0> Debug ... -> Arguments and then add -Dsun.java2d.d3d=false to the VM arguments text area.