wiki:DeveloperGuidelines/Eclipse

Version 63 (modified by Fran Boon, 12 years ago) ( diff )

--

Developer Guidelines - Eclipse

Eclipse is a full IDE supporting Debugging & Code Completion.

PyDev is an Eclipse module which supports Python.

Installation

Debian:

apt-get install eclipse-platform

Windows:

  1. Install Java JDK
  2. Install Eclipse (setup for 3.6 is documented below):
  3. If using JDK 6u21: modify eclipse.ini

OS X:

  1. Download and install the Latest Release from this page. Click on the version number and it will take you to the download page. Look for the version titled Mac OS X (Mac / Cocoa / x86_64).

Install PyDev through Eclipse:

  1. Help menu > Install New Software
  2. Work with: http://pydev.org/updates
  3. Add, OK
  4. tick PyDev (can exclude the optional PyDev Mylyn Integration), Next, Next, Accept, Finish
  5. tick to trust certificate, Restart now

Note: If you have having trouble installing pydev on ubuntu you might need a newer version of eclipse than is in Ubuntu's software center - see this article on how to install

Recommend installing Psyco to speed-up Python in Eclipse:

Configuration

  1. Set up the Python Interpreter:
    1. Window > Preferences > PyDev > Interpreter - Python. Click New
      1. On Windows: Browse to python26/python.exe (or python27/python.exe if using 2.7), OK, OK
      2. On Linux/OS X: "python" is the name of the interpreter, the location is "/usr/bin/python", OK, OK
  2. Add a new PyDev Project:
    1. File > New > Project...
    2. Open the PyDev folder, and choose PyDev Project
    3. Give the project a name "web2py"
    4. Un-tick "Use Default"
    5. Grammar Version (should be 2.6 in the Linux VM)
    6. Browse to the web2py directory (on the Linux VM, this is in /home/web2py)
    7. Un-tick "Create default 'src' folder and add it to the pythonpath"
    8. Click Finish
    9. Click "No" when asked to open the perspective
  3. Debug Configuration:
    1. From the Run menu, choose Debug Configurations...
    2. Double-click Python Run
    3. On the Main tab: Name: Enter (e.g.) web2py
    4. Project: Select web2py (should be the only option)
    5. Main module:
      1. Windows: Browse to web2py.py
      2. Linux: If browsing to web2py.py gives an error, type the full path, e.g.: /home/web2py/web2py.py
    6. On the Arguments tab: Type in the program arguments: "-a password" (Choose a password for web2py and substitute it for "password".)
    7. Click Apply. Click Debug which launches the debugger.
    8. On Windows: If asked, unblock in Windows Firewall (not necessary on the Linux VM).
  1. Miscellaneous suggestions for comfort and convenience:
    1. Right-click on Java perspective in top-right & select Close
    2. Window > Open Perspective > Other > Debug
    3. Window > Show View > Other > Debug > Expressions
    4. Window > Show View > Other > PyDev > PyDev Package Explorer
      (This is where you will need to select web2py before trying Run or Debug to avoid the empty $project_loc error.)
    5. Drag the Expressions, Console, Tasks tabs to the upper right, where the Variables tab is. Drag PyDev Package Explorer to the upper left where Debug is. (This leaves more space for the editor view.)
    6. Window > Customize Perspective > Tool bar visibility > untick PyDev Debug. Click OK
    7. Set your default HTML editor
      1. Window > Preferences > General > Editors > File Associations
      2. Click .htm
      3. In the Associated editors section below, click "Add..."
      4. Choose "Text Editor"
      5. Click OK
      6. Text Editor will be added to the editors list. If not selected, click it.
      7. Click Default.
      8. Repeat the process with .html
      9. Click OK
    8. Window > Preferences > PyDev > Editor > Code Analysis
      • untick 'Do code analysis' (to avoid getting lots of red underlines for variables which Eclipse can't see)
    9. Window > Preferences > General > Editors > Text Editors
      • tick 'insert spaces for Tabs'
      • tick Show line numbers
      • tick Show Print Margin and set the margin to 80 (to assist in our attempt to keep within that width)
    10. Window > Preferences > General > Workspace
      • tick 'Refresh on access'
      • untick 'Build automatically'
    11. You may want to change the layout of the window by dragging sections to convenient regions of the window and resizing them. Combine less-used sections as tabs in the same region.

Debugging with Eclipse

  • Set and remove breakpoints by double clicking in the margin of the code file.
  • To start running with the debugger: In the toolbar below the main Eclipse menu bar, find the bug icon and click the down-arrow next to it. Click the option that has a "P" superscript. After this, you can just click the bug. (If you get an error that indicates Eclipse tried to run unittests instead, go through the down-arrow menu again.)
  • F5 Step into functions
  • F6 Step over lines
  • F7 Step out of functions
  • Use expressions (drag and drop from code) or right-click > watch
  • Examine values of variables in the Variables tab.

Accessing private data

Some data is marked as private to let other developers know they shouldn't access this directly

  • e.g. in s3xrc.py we have S3Resource.__set & S3Resource.__query

This then means that Eclipse can't see these attributes as self.__set, etc.

Instead need to use:

xxx._ClassName__AttributeName

e.g.:

resource._S3Resource__query
resource._S3Resource__set

Bzr integration (optional)

Other Configuration Guides (should not be required):


DeveloperGuidelines

Note: See TracWiki for help on using the wiki.