Next Prev Up Top Contents Index

9.5 An example debugging session

To better understand how you can make use of the debugger, try working through the following example session. In this example, you define the factorial function, save the definition to a file on disk, compile that file and then call the function erroneously.

  1. Choose File > New .
  2. A new file is created and displayed in the editor. If you have not already invoked the editor, it is started for you automatically.

  3. In the new file, define the function fac to calculate factorial numbers.
  4. (defun fac (n)
      (if (= n 1) 1
        (* n (fac (- n 1)))))
  5. Choose File > Save and type a filename when prompted in the echo area of the editor.
  6. Choose File > Compile and Load to compile the file and load it into the environment.
  7. The editor switches to the output view while compilation takes place. When prompted, press Space to return to the text view. The fac function is now available to you for use in the environment.

  8. In the listener, call fac erroneously with a string argument.
  9. (fac "turtle")

    The environment notices the error: The arguments of = should be numbers, and one of them is not.

  10. Choose Debug > Start GUI Debugger to invoke the debugger tool.
  11. Take a moment to examine the backtrace that is printed in the Backtrace area.

  12. Starting from the selected frame, select the next three frames in the Backtrace area in turn to examine the state of the variables which were passed to the functions in each call frame. Pay particular attention to the fac function.
  13. The error displayed in the Condition box informs you that the = function is called with two arguments: the integer 1 and the string "turtle". Clearly, one of the arguments was not the correct type for = , and this has caused entry into the debugger. However, the arguments were passed to = by fac , and so the real problem lies in the fac function.

    In this case, the solution is to ensure that fac generates an appropriate error if it is given an argument which is not an integer.

  14. Double-click on the line FAC in the Backtrace area of the debugger tool.
  15. The editor appears, with the cursor placed at the beginning of the definition for fac . Double-clicking on a line in the Backtrace area is a shortcut for choosing Frame > Find Source .

  16. Edit the definition of the fac function so that an extra if statement is placed around the main clause of the function. The definition of fac now reads as follows:
  17. (defun fac (n)
      (if (integerp n)
          (if (= n 1) 1
            (* n (fac (- n 1))))
        (print "Error: argument must be an integer")))

    The function now checks that the argument it has been passed is an integer, before proceeding to evaluate the factorial. If an integer has not been passed, an appropriate error message is generated.

  18. Choose File > Save and File > Compile and Load again, to save, recompile and load the new definition into the environment.
  19. Click on the Abort button in the debugger tool, to destroy the tool and return the listener to the top level loop.
  20. In the listener, type another call to fac , once again specifying a string as an argument. Note that the correct error message is generated.
  21. You can spot immediately what has gone wrong here, so the simplest strategy is to return a value to use.

  22. Choose Restarts > Return some values from the call to LEGNTH .
  23. You are prompted for a form to be evaluated in the listener.

  24. Type 6 , which is the value that would have been returned from the correct call to (length "turtle") .

Having returned the correct value from (length "turtle") , fac is called with the correct argument and returns the value 720.


Common LispWorks User Guide - 14 Dec 2001

Next Prev Up Top Contents Index