vote up 7 vote down star
1

If I generate an exception by myself, I can include any info into the exception: a number of code line and name of source file. Something like this:

throw std::exception("myFile.cpp:255");

But what's with unhandled exceptions or with exceptions that was generated not by me?

Thanks.

flag
1  
Minor note: That's not standard-conforming code; std::exception does not have a ctor that takes a string. However MSVC does (incorrectly) allow it... – MattyT Dec 8 '08 at 23:09

9 Answers

vote up 2 vote down check

It seems everyone is trying to improve your code to throw exceptions in your code, and no one is attempting the actual question you asked.

Which is because it can't be done. If the code that's throwing the exception is only presented in binary form (e.g. in a LIB or DLL file), then the line number is gone, and there's no way to connect the object to to a line in the source code.

link|flag
vote up 7 vote down

A better solution is to use a custom class and a macro. :-)

#include <iostream>
#include <sstream>
#include <stdexcept>
#include <string>

class my_exception : public std::runtime_error {
    std::string msg;
public:
    my_exception(const std::string &arg, const char *file, int line) :
    std::runtime_error(arg) {
        std::ostringstream o;
        o << file << ":" << line << ": " << arg;
        msg = o.str();
    }
    ~my_exception() throw() {}
    const char *what() const throw() {
        return msg.c_str();
    }
};
#define throw_line(arg) throw my_exception(arg, __FILE__, __LINE__);

void f() {
    throw_line("Oh no!");
}

int main() {
    try {
        f();
    }
    catch (const std::runtime_error &ex) {
        std::cout << ex.what() << std::endl;
    }
}
link|flag
I don't like macros in general but this is good sample of good macro use. FIE, LINE are very handy in finding bugs quickly. +1. – Nazgob Dec 8 '08 at 8:20
Recommended practice is to do anything that might allocate memory (such as the stringstream manipulation) in the what() function instead of the constructor. The reason is that there may be more resources available at the catch point (once the stack has unwound a bit) than at the throw point. – Steve Jessop Dec 8 '08 at 11:48
vote up 4 vote down

There are several possibilities to find out where the exception was thrown:

Using compiler macros

Using __FILE__ and __LINE__ macros at throw location (as already shown by other commenters), either by using them in std exceptions as text, or as separate arguments to a custom exception:

Either use

throw std::runtime_error(msg " at " `__FILE__` ":" `__LINE__`);

or throw

class my_custom_exception {
  my_custom_exception(const char* msg, const char* file, unsigned int line)
...

Note that even when compiling for Unicode (in Visual Studio), FILE expands to a single-byte string. This works in debug and release. Unfortunately, source file names with code throwing exceptions are placed in the output executable.

Stack Walking

Find out exception location by walking the call stack.

  • On Linux with gcc the functions backtrace() and backtrace_symbols() can get infos about the current call stack. See the gcc documentation how to use them. The code must be compiled with -g, so that debug symbols are placed in the executable.

  • On Windows, you can walk the stack using the dbghelp library and its function StackWalk64. See Jochen Kalmbach's article on CodeProject for details. This works in debug and release, and you need to ship .pdb files for all modules you want infos about.

You can even combine the two solutions by collecting call stack info when a custom exception is thrown. The call stack can be stored in the exception, just like in .NET or Java. Note that collecting call stack on Win32 is very slow (my latest test showed about 6 collected call stacks per second). If your code throws many exceptions, this approach slows down your program considerably.

link|flag
vote up 1 vote down

I think that a stack trace should get you to the point.

link|flag
He'll only get a stacktrace if he can break into the debugger or if he has a dump file with accompanying symbols. – Johann Gerell Dec 8 '08 at 7:17
Being able to analyse dump files is very usefull. I think the poster should overcome his reluctancy to work with call stacks and crash dumps, get his hands dirty, and generate minidumps for post mortem analysis. – Suma Dec 8 '08 at 9:34
vote up 1 vote down

The simplest solution is to use a macro:

#define throw_line(msg) \
    throw std::exception(msg " " __FILE__ ":" __LINE__)

void f() {
    throw_line("Oh no!");
}
link|flag
I thought the point of the question was that the exception was raised by code elsewhere, not under the control of the original poster? – Alastair Dec 8 '08 at 7:23
vote up 0 vote down

If you have a debug build and run it in the Visual Studio debugger, then you can break into the debugger when any kind of exception is thrown, before it propagates to the world.

Enable this with the Debug > Exceptions menu alternative and then check-marking the kinds of exceptions that you are interested in.

You can also add the ability to create a dump file, if the application source code is your own. With the dump file and PDB files (symbols) for the specific build, you'll get stacktraces with WinDbg, for example.

link|flag
vote up 0 vote down

Thanks, Frank!

Johann, I forgot to mention that I need a solution for Release version. When my program crashes on user's computer, he (or she) will get standard windows "program stopped working" message with some additional details like memory dump. I do not need the memory dump because I understand nothing in this matter. But if I get a line of code, I will be able to quickly fix the problem.

link|flag
The FILE and LINE macros also work in release code. Frank's solution thus works there is well. – Christian.K Dec 8 '08 at 7:38
Well.. If you compile with MSVC, you can generate a Release version with a PDB. Combine the dump with the PDB and the sources, and you'll have the compiler show you the exact line of code where the program crashed. Now, your problem is that in Release, some code have been optimized, so... – paercebal Dec 9 '08 at 21:24
vote up 0 vote down

Apart from using a custom class with a macro, as suggested by Frank Krueger, for your own exceptions, you might be interested in taking a look at the structured exception handling mechanism (you're programming under windows, right?)
Check Structured Exception Handling on MSDN

link|flag
vote up 0 vote down

I found 2 solutions, but none is fully satisfactory:

1) If you call std::set_terminate, you can from there print the callstack right from the third party exception throw. Unfortunately, there's no way to recover from a terminate handler, hand hence your application will die

2) If you call std::set_unexpected, then you need to declare as many as possible from your functions with throw(MyControlledException), so that when they throw due to third party called functions, your unexpected_handler will be able to give you fine grain idea of where your application threw.

link|flag

Your Answer

Get an OpenID
or

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