Phantasmal MUD Lib for DGD
|
Phantasmal Site > DGD > The Kernel Library > Debugging with the Kernel Debugging and the Kernel MUDLibTracking Down Weird IssuesAbsolutely the first thing you'll find yourself doing once you start hacking together your MUDLib is seeing errors and wondering where they're coming from. This little guide will help you on your first faltering steps at tracking these things down. It's far from complete or comprehensive, but every little bit helps. There's a saying about documentation being like sex which I'll omit for the moral betterment of the under-14 crowd. You'll want a stack crawl before you get anything else. Often that'll be enough. Once you've got the stack crawl and found the line it's on, the line may be simple or complex, but there are the usual problems and the usual attempts to fix them.
You know the drill. So what if your stack crawl does work so well? You may have the problem down to a single operation — say a compile_object — and it's failing. Why? There are a number of resources you can try. If it's a driver or auto operation, you can look it up here for possible helpful hints. If not, you can grep through the Kernel MUDLib sources or even the DGD sources for hints. You can also ask the mailing list, naturally, though we recommend you try all other likely choices first. What if you get a stack crawl but it leads to an ugly dead end? One common one is that you get to a DGD built-in operation like ::compile_object() in the driver or AUTO object. In that case, grep through .../dgd/src/comp/*.c for the error message. It works for me quite often. It's not always quite clear what the problem is though... Or what if you hit a try/catch statement? There are several in the AUTO and driver objects. I recommend editing them to remove the try/catch, at least for debugging purposes. This works especially well if you have a source control system like BitKeeper in place. You can edit the AUTO or driver object, play with it, debug some more, and revert the changes when you feel like it. The BitKeeper plug is just gratuitous — I really like their software, but I don't work for them. Anyway. To conclude, I'm going to give a list of some especially irritating or cryptic messages I've encountered and what they actually mean. As time progresses, I expect that more and more pretty innocuous ones will sneak in along with the irritating ones, slowly growing more comprehensive. Feel free to submit your own, to the mailing list or to me personally! Error Messages I Have Known And Loved (ERMIHKAL)
|