vote up 3 vote down star

Is there a way to interface the Perl debugger API which perl is using to control its debugging programmatically?

flag

38% accept rate
5  
Your accept rate sure could use some improvement. – Sinan Ünür Sep 24 at 7:31
1  
I really hate comments like this. Boo hoo, you lose 15 points, the best answer still floats to the top, and that loss is offset by two votes. – Robert P Sep 30 at 16:11

4 Answers

vote up 4 vote down check

It's all in the perldebug, perldebguts, and DB documentation.

In addition, I've written a Creating a Perl Debugger which should get you started. I have a section on custom Perl debuggers in Mastering Perl too.

link|flag
vote up 5 vote down

The default Perl debugger was not designed with a clean API to interact with, so the easiest way is probably not to use it, but to use Devel::ebug, which offers an API to an alternative debugger. You can also trigger the debugger from inside your code, calling an interactive debugger session, with Enbugger.

link|flag
who does open perl ide does it ? its free ide in sf.net – unknown (google) Sep 24 at 8:05
1  
IMHO, it is better to use Eclipse or Padre instead of Open Perl IDE. – Alexandr Ciornii Sep 24 at 10:46
vote up 1 vote down

You can read about the perl debugger at perldoc perldebug and perldoc perldebtut. You can invoke the debugger with the -d option, i.e. perl -d myscript.pl.

link|flag
vote up -1 vote down

See "Programming Perl" 20.5.1 -> "Writing your own debugger", also see perldoc perlvar $PERLDB.

What you want to do is to implement the DB::DB() sub.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.