Are there any other ways for debugging Perl apart from Data::Dumper and perl -d?
|
|
||||
|
|
|
There are several tools available in Perl for debugging and similar tasks. Built-in command line debugger.
Perl/Tk based graphical debugger by Andrew E. Page. This a free tool running both on Linux and Windows written in Lisp. Source code is not available. The Perl Regex debugger and an article about it written by Mark Jason Dominus. |
|||||
|
|
There are lots of things out there to help you:
|
|||||
|
|
|
I like Devel::Trace. Basically it gives you an execution dump, showing you the code paths. On another side, Test Driven Development is all the rage now, so you could also be interested in profiling tools like Devel::NYTProf for highly advanced testing. See this Tim bunce's blog post for an interesting overview. |
|||
|
|
|
The best debugging aids are small routines, short scopes, limited side effects, and lots of tests. Stop bugs before they hatch. |
||||
|
|
|
I use ActiveState Komodo for step-by-step debugging. Eclipse has a step by step debugger for its EPIC plugin. Personally I prefer the ActiveState version. It just seems more solid and stable, but it does cost (and work is paying for me). If it was my money then I would use Eclipse and EPIC as these are free. |
||||
|
|
|
My usual range of tools is:
That's usually enough. There is ddd; I heard it's quite nice, but never played with it. For some tasks (which are not really debugging, but close to it) I use Devel::NYTProf. |
|||||
|
|
Some people use That said, the question is pretty vague. Is there something you are trying to do that Data::Dumper and |
|||
|
Depending on what you're doing, Log::Log4perl provides an easy way to manage the 'print' style of debugging particularly in bigger applications:
|
||||
|
|
|
Test::More for writing basic tests, Hook::LexWrap, Test::MockObject, Test::Deep, Test::MockTime, Test::WWW::Mechanize and many others for advanced tests. Attribute::Signature for checking sub params. Carp::Assert for contract-based programming. Devel::Ebug::Wx or Devel::ptkdb (and soon better support in Padre) can be used for easier debugging. |
||||
|
|
|
Use, Devel::SimpleTrace, for the most elegant seemless stateless-debugging. perl -MDevel::SimpleTrace -we'warn "main"; sub foo{ warn "outer"; sub { warn "inner" } }; foo()->()' |
||||
|
|
|
If you don't like |
|||||
|
|
Personally, I'm a big fan of Smart::Comments. Makes tracing dead simple, no need to strip it out again, either.
If It has heaps of features, and will produce progress bars, warnings, abort conditions as well as plain old debug output. Appropriate tests are all good, and I'm not dismissing a good TDD development methodology, but when trying to get to the bottom of an existing bug, Smart::Comments is the go. |
||||
|
|
|
Emacs, hands down.
|
||||
|
|
|
Generally I use
for debugging. YOu can also use Eclipse Perl Integration (EPIC) plug-in for Eclipse It offers a rich debugging environment available and integrated with the EPIC Perl development environment. You can use it and is generally helpful. |
||||
|
|
|
During development, I like to embed printf statements in strategic places (not too many) which are enabled with a debug flag like this:
where the debug flag is defined at the top of the script:
Now instead of having to remember to comment out all of the printf lines, I just run the script as follows:
After testing when everything is ready for production, the debug lines can be removed:
|
||||
|
|
|
||||
|
|
