Project

General

Profile

Actions

AMI Eclipse Quick Start Guide » History » Revision 48

« Previous | Revision 48/57 (diff) | Next »
Amber Herold, 10/20/2010 08:46 AM


AMI Eclipse Quick Start Guide

1 Get the Eclipse executable

First, you can try the executable that already has the plugins installed. Get eclipse.tar.gz from the Files tab here in Redmine. Just copy it to your machine, uncompress it and the executable is available within the eclipse directoy. No further installation steps are required.

If you want to install things yourself, this is what you need:

  1. Download eclipse from here.
  2. Get the plugins:
    1. Subversion
    2. PHP
    3. Subversion connector
    4. pydev
  3. Copy it to somewhere on your local machine.
  4. Double click the eclipse executable to open. If using a machine that was setup with the AMI kickstart program, you will need to update java to use the 64 bit version. (Ask Christopher)

2 Create a Workspace and get the MyAMI code from Subversion

  1. Double click the eclipse executable found in the eclipse directory.
  2. When it opens, it will prompt you to choose a workspace. This workspace will hold a local copy of the myami code for you to work on. A good workspace location is a amiworkspace in your home directory. That is /home/username/amiworkspace.
  3. From the menu, select Window -> Open Perspective -> SVN Repository Exploring. This will open a view labeled SVN Repositories.
  4. Go to File -> New -> Repository Location.
  5. In the URL field type: http://emg.nysbc.org/svn/myami to get the Appion and Leginon code.
  6. Press the Finish button at the bottom of the dialog. A new repository will appear in the SVN Repositories view.
  7. Click on the arrow next to the repository icon to view the trunk, branches and tags associated with the repository.
  8. Click on the trunk to highlight it. Right click and select Checkout. This will get the code from the repo and put it in your workspace. When the operation completes, you will find a myami directory under amiworkspace in your home directory.

3 Configure your Development Environment

There are 2 types of development that you will most often do with the MyAMI code, Python for core processing and PHP for the web interface.

1 Setup the Python environment

Go to Window -> Preferences -> PyDev -> Editor -> Interpreter – python. Press the Auto Config button then press OK.

2 Setup the PHP environment

There are two ways to view the web applications that you are developing in your home directory. If you are developing on a machine that does not have a local Apache server, you can use the Cronus3 web server. The advantage of this is that all the image processing plugins are already installed on Cronus3 so you don't have to worry about them and you don't have to worry about making Apache work. If you do run Apache locally, you can take advantage of integrated debugging tools in Eclipse and learn more about how all the pieces of the project fit together since will will have to set more things up.

Also note that the directions below will not get project_tools running. It is currently undergoing many changes and directions will be added when that process is complete.

Use Cronus3 or Fly to view your web app

(Fly is a good choice since it is not a production server. You can create your own databases on Fly as well.)

  1. Open a terminal and go to your home directory: $ cd ~
  2. Create a directory called "ami_html" if it does not exist: $ mkdir ami_html/
  3. Change directories to ami_html: $ cd ami_html
  4. Create a symbolic link to the web app directory in your workspace: $ ln -s /home/[username]/amiworkspace/myami/myamiweb
  5. Try to browse to the project in a web browser ( http://cronus3/~username/myamiweb ). You should see an error because config.php failed to open. Keep reading "Create your config file" to fix this.

Create your config file

NOTE: There is a wizard to create the config file at myamiweb/setup. The config file format below is out of date.

IMPORTANT: Never check your local copy of the config files into Subversion. We don't want to share our database user information with the world.

  1. Change directories to the myamiweb project: $ cd ~/amiworkspace/myami/myamiweb
  2. Copy config.php.template to config.php: $ cp config.php.template config.php
  3. Open config.php for editting: $ vi config.php
  4. Make the following changes to config.php:
// --- define dbem web tools base --- //
$BASE_PATH = "myamiweb";
define('BASE_URL', "/".$BASE_PATH."/");

// --- Set your leginon MySQL database server parameters

$DB_HOST        = "cronus4";
$DB_USER        = "ami_object";
$DB_PASS        = "notsosuper";
$DB             = "dbemdata";

// --- XML test dataset
$XML_DATA = "test/viewerdata.xml";

// --- Project database URL

$PROJECT_URL = "http://cronus3.scripps.edu/~[username]/project_tools";
$PROJECT_DB_HOST = "cronus4";
$PROJECT_DB_USER = "usr_object";
$PROJECT_DB_PASS = "";
$PROJECT_DB = "project";

Also modify config_processing.php:

// --- Processing database --- //
$PROCESSING_DB_HOST = "cronus4";
$PROCESSING_DB_USER = "usr_object";
$PROCESSING_DB_PASS = "";
$PROCESSING_DB = ""; //--- leave empty,  set by projectdb

// --- Add as many processing hosts as you like --- //
$PROCESSING_HOSTS[]="guppy";
$PROCESSING_HOSTS[]="";

Use your local Apache server to view your web app (optional)

  1. Make sure you are logged in as root. ($ su)
  2. Make sure Apache is installed. There should be /etc/init.d/httpd on your machine. Start apache with $ /etc/init.d/httpd start.
  3. Point a web browser to http://localhost/ and make sure you see the apache test page.
  4. Make sure Apache is configured for php
  5. the Apache config file is at /etc/httpd/conf
  6. web files should be at /var/www/html
    1. create symbolic link to your workspace in /var/www/html
    2. Try to view at http://localhost/myamiweb
    3. Not working because need the files on phpami
      1. go to phpami in your myamiweb workspace and create symbolic links to each file that remove the .php file extension
      2. put a symbolic link to this folder from user/share ( $ ln -s /home/amber/amiworkspace/myami/phpami php )
  7. To debug PHP issues check http://localhost/myamiweb/info.php
  8. For everything to work, you need to install plugins like the MRC module

4 Get a local copy of the databases (optional)

If you want to work on the databases and you would prefer to have a local copy to play with, read How to set up a local copy of AMI databases.

You also have an option of creating a copy of the database that you wish to work with on the fly server. You will name your DB with your name prepended to the name of the DB that is copied. You will need to update your Config file accordingly. You can work with your DB without affecting formal testing on fly or the production databases.

5 Run a Python Script

  1. Change perspective to PyDev. (Window->Open Perspective)
  2. Right click on the myami project and choose Properties
  3. Select PyDev - PYTHONPATH
  4. Under Source Folders select Add source folder
  5. Make sure myami is selected and press OK
  6. Build numextension
    1. Right click on numextension/setup.py and select Properties
    2. Select Run/Debug settings
    3. Select Edit
    4. Select the Arguments tab
    5. Under program arguments type build
    6. Select OK
    7. Right click on setup.py and select Run As->Python Run
  7. Run Leginon
    1. Make sure the config files are set correctly (leginon.cfg, sinedon.cfg)
    2. Run leginon/syscheck.py by right clicking and selecting Run As->Python Run
    3. Right click on leginon/start.py and select Run As->Python Run

6 Merge a revision to another branch

  1. Commit your change and note the revision number.
  2. Go to the branch that you want to merge the code into and select Team->Merge.
  3. Under URL click Browse and select the trunk or branch that you already committed your changes to.
  4. In the revisions area, select the radio button next to Revisions: and click the Browse button.
  5. Select the revision that you wish to merge AND the revision immediately preceding yours.
  6. Select OK to close out the revision browser.
  7. Select the Preview Button to see what files will be merged.
  8. If it looks like the correct files, select the Ok button the close the preview and select OK again to execute the Merge.
  9. When it completes, Eclipse will open a synchronizing window where you can see the differences between your local, merged version of the files and the version held by SVN.
  10. If all the changes look correct, you may Commit the changes. Please include a comment in the commit message similar to the following:

Merge from trunk r14376 and r14383 to 2.0 branch, Fix for Post-processing does not work with FREALIGN jobs , refs #657

7 How to commit a change to svn

  1. In the Pydev Explorer or PHP explorer view, right click on the file, folder or project that you want to commit and select Team->Synchronize with repository. This will show you what files have been changed in your local sandbox.
  2. You may click on the changed files to view the specific differences that you will be checking in to ensure they are what you intended.
  3. Then right click and select Commit. Add a comment that references the redmine issue number (ex. refs #123). This will automatically link the revision number to the issue in redmine.

Updated by Amber Herold over 13 years ago · 48 revisions