Ptolemy Tutorial

Monday, February 12, 2007 - Berkeley, California
Ptolemy Picture

Preliminaries

Agenda

  • 8:00 Registration, Continental Breakfast, Laptop setup
  • 8:30 Overview of the day
  • 8:45 Building Ptolemy II (Christopher Brooks)
  • CVS access
  • configure
  • Coding Style
  • 9:45 Break
  • 10:15 Developing Actors (Yang Zhao, Eleftherios D. Matsikoudis)
  • Adding an actor to the tree
  • Testing
  • 12:00 Lunch (Provided)
  • 12:45 Developing Codegen Actors (Gang Zhou, Man-Kit Leung)
  • 1:30 Domain Overview (Edward Lee)
  • 1:50 Nesting Domains (Christopher Brooks)
  • 2:10 Break
  • 2:30 Developing Domains (Edward Lee)
  • 3:15 Extending the User Interface (Edward Lee)
  • What to do

    This will be a hands on experience using Eclipse and CVS. So, you will need a network connection and CVS access (either read/only or read/write). So, if you have a moment, get started.

    Network Connections

    1. Get an airbears username and password from one of the UC Berkeley Staff.
    2. Browse for wireless connections and select airbears
    3. Point your web browser at any website, a login page should come up.
    4. Enter the airbears name and password into the login page.

    Installing Software

    If you have Ptolemy II 6.0, Eclipse and Cygwin installed, then you are all set.

    If you don't have Ptolemy II 6.0, Eclipse and Cygwin installed and you have a CD drive, then get the CD from the back of volume 1 of the design doc.

    If you don't have a CD drive, ask either Mary or Christopher for a USB drive.

    Once you have either a CD drive or a USB drive, install these packages:

    1. Ptolemy II 6.0.2
    2. JDK 1.5.0_11
    3. Eclipse
    4. Cygwin devel version - we will use Cygwin as part of the code generation section. (You do not need to install the Cygwin sources)

    Setting up Ptolemy II and Eclipse

    From $PTII/doc/coding/eclipse.htm

    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
  • Profiling using TPTP
  • 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. Eclipse requires some customization to build Ptolemy II and to keep the Ptolemy II coding style. In the steps below, we outline changes to be made in the Eclipse Preferences window, which is invoked via Window -> Preferences. For each of the changes, hit "Apply". When all the changes are done, hit "OK", which will close the Eclipse Preferences Window.
    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. While still in the preferences window (Window -> Preferences).
      2. General -> Workspace
      3. Deselect "Build automatically."
      4. Click Apply.

    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. While still in the preferences window (Window -> Preferences).
      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, in Eclipse 3.2 and later, change the Tab policy to "Spaces only". In Eclipse 3.1.2 and earlier, verify that the Tab policy is "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.
      9. Click Apply
    5. Ptolemy II uses some features of Java 5.0. In particular, ptolemy/actor/ptalon uses generics, which require Java 5.0 Set Eclipse to use Java 5.0 source code compliance.
      1. While still in the preferences window (Window -> Preferences).
      2. Expand the Java tree, select "Compiler" -> "JDK Compliance:"
      3. Set "Compiler compliance level" to "5.0".
      4. Click Apply.
    6. 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. While still in the preferences window (Window -> Preferences).
      2. Expand the Java tree, select "Compiler" -> "Errors/Warning"
      3. Under "Potential programming problems", change "Serializable class without serialVersionUID" to "Ignore"
      4. Click Apply. If you are prompted for a full rebuild, click OK.
    7. 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. While still in the preferences window (Window -> Preferences).
      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"
      7. Click Apply
    8. Click OK to apply all of the above changes.

    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
      • File->New->Project. Select 'Java project'. Name it ptII. Deselect 'Use default' and browse to the PTII directory. Finish.
      • When asked if you want to shift to the Java perspective, click on Yes.

    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. and use
           Repository path: /home/cvs
      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 tab, 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:
      • Check out as a project configured using the New Project Wizard
      • Java project
      • Name of the project: ptII
      • We recommend that you select "Create project at external location:" and specify a directory you will find easily, such as C:\ptII, rather than the default, which is within the Eclipse workspace directory.
      • Click Finish.

    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.
      Note that you can use the Eclipse Navigator browse to the .classpath.default file, open the file, copy the contents, open .classpath, paste the contents and save.
      Or, you can use Windows Explorer or the shell.
    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. (If Build All is greyed out, then perhaps "Build Automatically" was not disabled and Ptolemy has been built. See above for more about Build Automatically.) 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:
      • Name: Vergil
      • Project: ptII
      • Main class: ptolemy.vergil.VergilApplication

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

    You may now wish to read the Using Vergil tutorial.

    Simple Debugging Session

    1. Locate ptolemy/vergil/VergilApplication in the Explorer and double click. Place a breakpoint on the first line of main() by using Run- > Add/Remove Breakpoint
    2. Tell Eclipse which class to run with Run -> Run. On the Main tab, select the Ptolemy II package and enter ptolemy.vergil.VergilApplication as Main class.
    3. Press the Run button
    4. To debug, quit Vergil, and place a breakpoint in, say, the fire() method of ptolemy.domains.ct.kernel.CTBaseIntegrator. Then Run->Debug, and as above. Open the Lorenz CT demo from the Quick Tour and run it.

    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.