| Version 65 (modified by bowtie, 18 months ago) (diff) |
|---|
Debug2
- Padre trunk 0.93 r17559
- you require Debug::Client 0.16
- Breakpoints up and working
- Debug output up and working
- Debugger up and working
- tool-tips used extensively throughout so read them.
- Assumption you are aware of this: http://perldoc.perl.org/perldebug.html
- see Pro Perl Debugging http://www.apress.com/9781590594544 is a nice text,
- try working your way through Ch-04 in Padre for example
critiques welcome
Tips
Warning if your script requires user input you should have "use external window for execution" checked
- Turn on $OUTPUT_AUTOFLUSH
- Try break-pointing 1; at end of each file if you want to poke about with "p" before return or end
- Be patient;
- let Padre finish background tasks before launching debug
- let each action complete, before launching next
- remember it's using socket communications, hence ip time out :(
Menu
- The three Shows relate to the Panels below.
- Launch (L), Breakpoints (b) and Quit (q) as per tool-bar
- Visit Debug Wiki, is here.
Tool-Bar
- we only need 3 buttons on the tool bar, ( 3 on right )
- launch debugger ( launches Breakpoints & Debugger, enables tool-bar quit and then runs debug against current file )
- breakpoint toggle adds blue dotdotdot margin marker. (works with or without Breakpoints panel visible, so you can add BP's as you go)
- quit debugger ( initially greyed out )
NB If you do not see the new icons, you will need to do, Tools->Preferences->Advanced->main_tool-bar_items Reset, for the three new tool-bar icons
Breakpoints
Top icons
- gray cross ( Delete MARKER_NOT_BREAKABLE Current File Only )
- refresh Ctrl-List
- Breakpoints ( Toggle ) also updates Ctrl-List and Margin Markers ( the blue dotdotdot co exist with diff markers )
Middle
- Current File (BLUE)
- MARKER_NOT_BREAKABLE (GRAY) ( dotdotdot margin markers are also gray )
- Project files (GREEN)
Bottom
- check Project show all files in current project with breakpoints
- if check projects, show delete all breakpoints in this project only
NB Breakpoints are stored as absolute paths (debug will open files based on absolutes paths)
If you want to Peek inside the DB use Cookbook Recipe 04
Debugger
When you "run debug" :)
- quit(q) is always visible, ( toolbar quit should now be enabled )
- the debugger will load breakpoints against the current file and it's project files, when it is load by the perl debug program, if you get it wrong, just quit adjust breakpoints as you go with b|B or quit and adjust then re-run.
- new icons will only be visible when debug is running
- step-in(s), step-out(n), step-over(r), run-till(c), glasses(p)
- glasses, as per previous version, shown in black text ( if you select $_ remember DWISNWIM ) this is a persistent p :)
- step-in(s), step-out(n), step-over(r), run-till(c), glasses(p)
- when perl debug is running the Debugger Output panel will be opened, initially with the perl debug help screen.
- note the green SMALLRECT in margin, showing debug position, as previously
- Tip if you want to delay closing of debugger output, breakpoint the 1; at end of your file :)
why blue, I here you ask?, well others use yellow and red, but we have a wonderful blue Morpho butterfly :) hence blue
Show
- Show Local Variables(BLUE) is fixed to (y 0) local, as I don't know how to work out what level the debugger is at and how many levels there are, silly me
- Show Global Variables(GRAY) is doing X !(INC|ENV|SIG) against a current file which is also part of a perl project.
- I have been getting perl debug errors, see POD below, so you might notice it is automaticly disabled when I think it is unsafe, then re-enable.
- If you want to see @ISA|@INC|%ENV|%SIG use the p|x button.
Debugger-Output Options
My premises is that we are just wrapping the command line debugger, in a nice way, hence we will use the existing perl debug command language thus subliminally teaching the perl debug CLI instructions.
These options all display in the Debug-Output panel. some my consider these advanced, they do get more intense as you go down and to the right :)
Code Listing
- trace is a toggle against next action
- . => (dot) return to the executed line
- v => view around line
- L => List (default all) actions, breakpoints and watch expressions
Default action only
- b|B => running Breakpoints, use .vL to see for your self, (current file)
- M => display loaded modules
- T => stack back-trace
- E => display thread id's
- o => Display all options
With value
- p|x => evaluate expression
- output shows 'expression = result
- tip turn Trace off
- works with $ @ % also 2 + 3
- if empty returns $_ if exists or error )
- output shows 'expression = result
- S => RegEx
- w|W => watches
- add a watch (w exp)
- delete an existing watch (W exp)
- * delete all watches (W *)
- blank display watches (L w)
- Raw => pass expression directly to debug prompt (with out passing GO!) the side effects are not fully tested, we await your critiques
- any thing you like:
- x Object->new
- m Object
- if you use "o frame=nn" (nn<=30) this will cause y-0 to display garbage, you have been warned, so reset to "o frame=0" asap
- actions
- ...
- any thing you like:
Musings
- -,l ignored as we are in an IDE
- H just ignored
Debugger Output
The output window is only shown when debug is running
- See below ( only displays current output )
- red text, I wonder what the inspiration was for this!
Screen Shot
Debug2
There is a lot going on in these slides, please notice the Debug-Output panel. In all cases the debugger has stopped after c continue.
slide 1
- The use of p|x = %HoH
slide 2
- The use of w|W = $_
- NB look at the wasted screen real-estate in the bottom right hand corner, I suggest that we should extend the right hand panel down into this space?
POD from Main.pm
=pod
=head1 STATUS
waiting until this Plug-in is working before migrating into Padre ( => 0.93 )
don't want to muck trunk.
To view Padre::DB::DebugBreakpoints use P-P-Cookbook::Recipie04 in trunk
We can now add and delete breakpoints via icon in debug simulation and Breakpoint panel.
Load breakpoints for current file, on load of Breakpoint panel.
Get breakpoint panel to only show current file and current project bp's only,
inspired by vcs options
the debugger loads breakpoints from DB when started, for all files in current project.
when debugger loads a new file ( current ) the current files BP's are add to the debugger,
use L to see this.
changed breakpoint margin marker to ... so as to co-exist with diff margin markers,
and avoid information contamination due to colour washout of previous SMALLRECT.
Add Gray for not active with switched by debugger, also added new home made icons for step_....
add functionality from trunk so all icons mimic current debug implementation
look at displaying variables yes, but in a nice table (y 0) working
debug-output only visable when debugger running, on start of new debug first displays debugger help
Added butons with color leters to corespond to debugers actions.
=head1 FeedBack
what options should be in Debugger Panel / Debug-Output Options
room for 3 more using coloured letters
=head1 BUGS AND LIMITATIONS
normal editor modifications do not update the DB,
( due to DB storing absolute values and editor is relative )
will need to look in future at features and background task to do this.
Current thinking would be to compare bp time-stamp to History time-stamp if it had one
=head2 debug options X & V sometimes produce the following
You can't FIRSTKEY with the %~ hash at /home/kevin/perl5/perlbrew/perls/perl-5.14.1/lib/5.14.1/dumpvar.pl line 380
...propagated at /home/kevin/perl5/perlbrew/perls/perl-5.14.1/lib/5.14.1/perl5db.pl line 2438.
at /home/kevin/perl5/perlbrew/perls/perl-5.14.1/lib/5.14.1/perl5db.pl line 2438
DB::DB called at sandbox 06 line 29
Debugged program terminated. Use q to quit or R to restart,
use o inhibit_exit to avoid stopping after program termination,
h q, h R or h o to get additional info.
=head2 entities in file names
Printing in line 636 of /home/kevin/perl5/perlbrew/perls/perl-5.14.1/lib/site_perl/5.14.1/Debug/Client.pm:
"/usr/src/Padre/Pad�e-Plugin-Debug/scripts/ExSewi.pm"
Printing in line 146 of /usr/src/Padre/Padre-Plugin-Debug/lib/Padre/Plugin/Debug/Debugger.pm:
"/usr/src/Padre/Pad�e-Plugin-Debug/scripts/ExSewi.pm"
No such file or directory when trying to open '/usr/src/Padre/Pad�e-Plugin-Debug/scripts/ExSewi.pm' at /usr/src/Padre/Padre/lib/Padre/Wx/Main.pm line 4043.
=head1 TODO
get panels to integrate with Padre, play nice=yes, still not finished
re-look at panel layout
Add methods to Debug::Client in trunk as and where needed
Change focus to Debugger-Output in bottom panel
=head2 Tests & Notes
feedback required please
=head1 Method
=cut
Description
Run your code under a debugger with real-time display of results
TBD
- Debugger supports Stepping, Breakpoints, Watches, Variable evaluation, Stack module #11
Planning for a new version of the debugger:
- The debugger can be launched by any of the following: Run / Step In / Step Over / Step Out / Run till breakpoint
- Run would stop at the first statement and it will be greyed out once the debugger is running
- Once the debugger is running the saved breakpoints of all the files belonging to this thing will be sent over.
- The question what does 'this thing' mean? Which files belong to the current run?
- Files that are currently open in the editor? File that belong to the current session? File in the current project?
- Movement: Step In / Step Over / Step Out / Run till breakpoint
- They do the corresponding action of the built in debugger
- Jump to current execution line ???
- Set a breakpoint (this should save the breakpoint in a config file and if the debugger is currently running then set the breakpoint in the debugger as well)
- How should a breakpoint remembered? Filename and line number? Filename and sub name?
- Remove breakpoint
- List all breakpoints ???
- Show trace - shows the current trace - it should open a window (maybe in the right-side window of the debugger) and constantly update the trace until the user turns it off.
- Display value - the selected variable, or the one that is under the cursor will be added to the right side where its value will be show every time the debugger pauses the execution
- Show Value now - show the value of the currently selected variable
- Evaluate Expression... opens a window where you can type in arbitrary perl expression for example:
- print 2 + 3
- $z = 42
- print $z
- Quit debugger ???
- Set watch - The user should be able to type in an arbitrary expression (if there was something selected then this will be the default) When that expression changes value the debugger will stop The expression should be saved belonging to the main script that is being executed. When the debugger is launched again these watch-points need to be set again (later we could display them to the user and ask the user if she wants to set them or not)
- Remove watch - remove an expression from the watch list (and from the saved watches)
Remember in database:
filename - breakpoint - line number - condition main-file - expression to display (e.g. a variable name or a more complex expression) main-file - show stack trace on/off
main-file - a history of expressions evaluated? main-file - a set of watches (conditional, non-location breakpoints)
Tickets
Debugger for Perl 5
Debug::Client
| Ticket | Resolution | Status | Type | Priority | Summary | Owner | Reporter |
|---|---|---|---|---|---|---|---|
| #1494 | new | defect | major | Debug-Client-0.24 tests hang | bowtie, szabgab | Schwern | |
| #1469 | fixed | closed | defect | major | Debug::Client 0.21_12 hangs on Windows | bowtie, szabgab | chorny |
| #1427 | fixed | closed | enhancement | minor | Debug::Client 0.20 test failures against win32 or not! | bowtie | bowtie |
| #1370 | fixed | closed | defect | minor | Debug::Client, @list context request fails against perl-5.15.6 (3 of n) | bowtie | bowtie |
| #1368 | fixed | closed | defect | major | Debug::Client tests fail against perl-5.15.6 (2 of n) | bowtie | bowtie |
| #1367 | fixed | closed | defect | minor | Debug::Client tests fail against perl-5.15.6 (1 of n) | bowtie | bowtie |
| #832 | not relevant | closed | defect | major | GetOptions( spawns unsavedX tab and crash Padre in StepOver Debugging | szabgab | vrobin |
| #831 | fixed | closed | defect | minor | CPAN Install, test failing caused by Term::Readline | szabgab | vrobin |
Test
TODO
- Colours from themes, thanks subT
- Conditional Breakpoints next overhaul
Watches- Actions use Raw
- E dumping to Output instead of Debug-Output
__END__
Attachments
-
PPD-shot1.png
(178.1 KB) -
added by bowtie 18 months ago.
ppd-shot1
-
debug-sim.png
(18.5 KB) -
added by bowtie 18 months ago.
debug simulator
-
debug2.png
(151.4 KB) -
added by bowtie 18 months ago.
debug2
-
debugger.png
(25.4 KB) -
added by bowtie 18 months ago.
debugger
-
debugger2.png
(26.7 KB) -
added by bowtie 18 months ago.
debugger2
-
breakpoints.png
(17.5 KB) -
added by bowtie 18 months ago.
breakpoints
-
tool-bar_icons.png
(2.0 KB) -
added by bowtie 18 months ago.
tool-bar_icons
-
debug_menu.png
(8.9 KB) -
added by bowtie 18 months ago.
debug menu
-
debugger3.png
(29.3 KB) -
added by bowtie 18 months ago.
debugger3
-
debugger1.png
(27.6 KB) -
added by bowtie 18 months ago.
debugger1
-
debug4.png
(141.9 KB) -
added by bowtie 18 months ago.
debug4
-
debug3.png
(159.4 KB) -
added by bowtie 18 months ago.
debug3
-
test.pl
(690 bytes) -
added by bowtie 18 months ago.
test.pl
-
sewi.pl
(342 bytes) -
added by bowtie 18 months ago.
sewi.pl
-
ExSewi.pm
(427 bytes) -
added by bowtie 18 months ago.
ExSewi?.pm
-
debugbreakpoints.png
(62.0 KB) -
added by bowtie 18 months ago.
debug breakpoints







