There are printfs, asserts, edit and continue, logging frameworks? Whats your favorite poison?
|
4
|
|||||||||||||||||||
|
|
|
Multi-level logging systems. I find use for at least 5 levels:
Multi-level logging lets you build plenty of logging info into the program without having to see it all the time. You turn up the log level only when you have to debug something, then put it back to its normal level. When doing "printf" type debugging -- temporary messages -- I put them in at normal level, so I don't have to crank up the log level to see them, and have them be obscured by the noisy internal or verbose level messages. |
||||
|
|
|
ASSERTs ASSERTs ASSERTs. I have 300000 loc (not counting comments) of highly factored and reused code in my personal libraries of which about 15%(a guess) is templates and 50000 loc is test code. If an idiom is duplicated then it is made a function/method. Personally I view the ease of cut and paste as the invention of the DEVIL purposely put there to bloat code and propagate defects. About 4% of the library is ASSERTS and debug code (very few printfs and almost all of the output is queued output to a cout stream custom low priority task because screen IO is just so expensive and thus timing changing). Maybe 50% of the asserts are there to guarantee class invariants and post conditions on method execution. I refactor mecilessly when I revisit a piece of code that I may have rushed or maybe just made a mistake in the interface/object coupling design, say the subject object of a method really belongs as an object object and the method belonged in one of the originally object objects (parameter objects). Being liberal with asserts seems to protect me from some dumb mistakes if I makea substantial refactoring. This doesnt happen much but there are times. I have a DEBUGGING macro that acts much like ASSERT so I can have code surrounded by DEBUGGING(... code....); and it is not compiled in non debug builds. I do not use the vendor supplied assert. My asserts DO NOT abort & core dump they merely throw up a message box and call the debugger. If it is new code and the method is a const method, being able to return to the method and then re-execute it(the method) with the same set of parameters is pretty useful. Sometimes even the fact that some data is changed is irrelevant to the problem and one can re-invoke with knowledge gain. I absolutely HATE command line debuggers. It is like going back 25 years in time - might as well be using a teletype and a 2400 baud line. I need and want a full blown IDE where one can right click on a data structure and open it up, close it, chase pointers execute methods etc etc etc. I step through every line of my new code and examine every (one of my) variables for expected behaviour. The use of an IDE that highlights changes is invaluable here. To do that with GDB one must be a concert pianist with the memory of Carnac the Magnificent ;-). For new development I also try to capture stream data/message data when an abnormal condition is encountered. This is especially useful for udp servers and frequently gives a head start on reproducibility. I also like to have simulators that can "surround the application and drive it and consume from it and do verification. (cojoined/coupled source/sink simulators) Almost all of my code is headless or at least the human interaction is irrelavant to functionality so "surrounding" the app is frequently possible. I find it very important to have good support and management that understands that creation of the test data is very important and the the test data collection is what builds up into a suite of tests that can evolve into a comprehensive regression/smoke test. I also used to like to set the OS scheduling quantum way down With multithreaded apps such short quanta can more easily bring out threading bugs. I especially like to drive thread safe object methods with many threads - tens if not hundreds. In general a threadsafe object cannot be tested in situ if the application is human driven - just impposible to drive it. So there is real need for custom test drivers that are at a much lower (component oriented) level. And it is in these test that the asserts can let you know if something broke. Obviously doesn't prove the code is right but does give some confidence. It is also true that these preferences probably reflect the more class library/reusability oriented views and roles that I have had. When you write library code there are usually few "production" problems as the library is by definition heavily used and heavily tested. Logging and that sort of history seems to be more app oriented than library oriented. |
||||
|
|
|
In general, printf's. They allow for easy program slicing and don't require any tools other than an editor and compiler. |
||||||||
|
|
|
I like gdb -- I normally use it in commandline mode, but, if you can't stand that, there are GUI frontends to it like Insight, Ddd, etc. Logs always help, too, and so do core dump files on which you can perform "postmortem debugging" with these same tools. |
||
|
|
|
|
Reactive measures:
Preventative measures:
|
||
|
|
|
|
I vote for gdb. Especially when all you have to work with is a core file. printf's are nice when you have a general idea where the bug is. But when the test team comes back to you w/ a core file and a weird description of the problem, to be able to analyze the core dump will give you a tremendous head start in your debugging effort. |
||
|
|
|
|
Doing multi-threading stuff, I couldn't live without logging. For logging in C++, I use the templog library. It allows several severities (how bad is it?) times multiple log targets (who might be interested in it?) combine with as many filtering log sinks (where to write it to?) as you want, so you don't get drowned in noise. It goes a long way towards efficiency, employing template-meta stuff to help the compiler eliminating superfluous code while not falling into the Also, it's small enough (I think it's below 1kLoC spread over half a dozen headers) and comes with the permissive boost license so that you don't depend on the creators to not to let the ball drop. If they do -- you can just maintain it yourself. I only wish the guys would finally turn that branch the current code resides on into the new trunk. |
||
|
|
|
|
For this one, I'm going to have to go with deliberately structuring the project to minimize incremental build/iteration times. As a side effect, these are the same steps it takes to keep edit-and-continue working properly. |
||
|
|
|
|
Assertions. When I'm writing code, if I spot any edge cases which I think might indicate trouble, I can drop in a line which will let me know in debug builds if such a thing is happening. For bonus points they have no performance effect on release builds so you can check semi-expensive things like eg. Obviously they're not a replacement for checking real error conditions which you have to catch, but they're great for those fringe cases where you think "maybe I should check that" while you're writing the code. |
||
|
|
|
Next to logging, a nice technique that has helped us is dumping all useful variables in a readable way on request. This way, you can narrow down possible causes. |
||
|
|
|
|
IMO one of the most powerful ways of debugging server code is Differential Debugging, that is comparing two log files. It is especially useful with legacy code when the current developers don't know all areas of the code. It helps narrow the search area and the code that has to be analysed. It does require good logging/tracing to be present already. This works when you have a use case that succeeds and one that fails. For example feature X used to work in version 3 of your product but now is broken in version 4, and no one knows why. Compare the logs, use awk or sed to strip out the redundant differences (these scripts can be reused):
When you see the logs diverge, this usually indicates a wrong decisions was made just before. I used this technique to replace a proprietary middleware solution in a legacy system with CORBA and ensure that I did not change the behaviour of the application logic. But it is very useful in lots of situations. |
||
|
|
|
|
I use the gdb command
I've recently fallen in love with this technique as it lets me create |
||
|
|
|
|
Tracing through, modifying variables in memory to hit some obscure branch of code. Rarely edit and continue, for some reason I can't quite trust it to keep sane state, so full runs after a change. When impossible to trace (gdb on windows is way too slow for example, hitting a breakpoint takes 30 seconds each time) then printf. Junk code and throws off timing in case of multithreading bugs, but sometimes it is the only way. Disassembler debuggers when having to debug release builds without debug information (Olydbg is nice when it works). Proper logging is nice when it is available, takes effort to setup and use, but very valuable when needed. Sending stacktraces of crashes home is even nicer. Asserts spreaded around where needed. Minidumps for crashes on users machines. (Reproducible crashes are the best. If bugs can't be relied to show up on time then what can?) |
||
|
|
|
|
Writing carefully so I minimize bug creation in the first place. When I do have bugs, I prefer IDEs and stepping through code. Printfs are an extremely powerful tool, but still the weapon of last resort. |
||
|
|
|
|
If you're using the Visual Studio Debugger (which I suspect you are since you mentioned 'edit and continue'),you can make good use of the "Immediate Window". You can bring it up quickly with the keyboard shortcut Ctrl+Alt+I The 'Immediate Window' comes quite close to being a "Read-Eval-Print" loop, which is common in dynamic languages, but all but absent in C++ and similar languages. The immediate window will allow you to evaluate simple expressions, which you could also do in the watch window, but also lets you run simple statements, which the watch window isn't as good for. If there's some hypothesis you want to explore while debugging, performing experiments in the immediate window can often get you to the answers quickly. You don't have to know ahead of time what you need to print, you'll have all the state information you need available to you while you're in the debugger. And you can change the state of your program by executing simple statements in order to test your hypothesis, something you couldn't do with simple print statements. Debugging this way mimics the incremental style of programming popular in languages that offer a REPL out of the box (like say Python or Ruby). It can be quite helpful in your debugging. |
||
|
|
|
|
If my program is too big I logically separate problem part and debug it independently. It gives an opportunity for code to be more modular also |
||
|
|
|
|
Emacs gud-gdb mode is an army swiss knife! I no longer stand gdb consol mode, well I know who does, but in my case using a GUI debugger whenever it's possible is just worth it. IDA PRO is another thing, I might use it too from time to time when it comes to (RE) |
||
|
|
|
|
Let's not forget valgrind ... it's saved my bacon on more than one occasion by helping find that obscure once-in-100-runs memory corruption or uninitialized-value error. |
||
|
|
|
|
all kinds of tracing |
||
|
|
|
|
When writing code, consider how you're going to be putting breakpoints in there later. This particularly means not overdoing nested function calls - |
||
|
|
