Book Image

Mastering QGIS

Book Image

Mastering QGIS

Overview of this book

Table of Contents (18 chapters)
Mastering QGIS
Credits
Foreword
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Debugging session example


Here, we will show how to debug the TestPlugin remotely. We'll also learn how to insert a code breakpoint, to stop executions, and to show variable values during executions.

The steps to follow are as follows:

  1. Create a PyDev project that points to the source code of the TestPlugin.

  2. Add a breakpoint to the TestPlugin run() function in the Aptana Debug Perspective.

  3. Start the PyDev Debug server.

  4. Connect to the PyDev server from QGIS.

  5. Run the plugin.

  6. Explore the variable values.

  7. Continue the execution of the plugin.

Creating a PyDev project for TestPlugin

To be able to add code breakpoints it's necessary to load test_plugin.py. This can be simply opened as a file, but it's better to learn how to have a view of the entire plugin as a PyDev project. This allows us to use Aptana as a debug and develop environment.

This is done in two steps:

  1. Creating a PyDev project in Aptana Studio 3.

  2. Linking the source code to the project.

Creating a PyDev project called TestPlugin is done by navigating...