X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fapplication.cpp;h=290f20b05239702c40746f9048aba993aa877b21;hp=0ef9507a14275af33fadbd1a73f190528e8f1601;hb=9c8bb278a26c0c4356d6ee5e66d3f34c70521fb8;hpb=ce0b610396aa8f760462fa4d7a6bb207a43994d2 diff --git a/source/core/application.cpp b/source/core/application.cpp index 0ef9507..290f20b 100644 --- a/source/core/application.cpp +++ b/source/core/application.cpp @@ -1,9 +1,13 @@ +#include #include #include #include #include +#include +#include #include #include +#include #include "application.h" #include "getopt.h" @@ -70,7 +74,15 @@ int Application::run(int argc, char **argv, void *data, void (*created_callback) { IO::print(IO::cerr, "An uncaught exception occurred.\n"); IO::print(IO::cerr, " type: %s\n", Debug::demangle(typeid(e).name())); - IO::print(IO::cerr, " what(): %s\n", e.what()); + vector lines = split(e.what(), '\n'); + if(lines.size()<2) + IO::print(IO::cerr, " what(): %s\n", e.what()); + else + { + IO::print(IO::cerr, " what(): %s\n", lines.front()); + for(vector::const_iterator i=lines.begin(); ++i!=lines.end(); ) + IO::print(IO::cerr, " %s\n", *i); + } } delete app_; @@ -85,7 +97,24 @@ void Application::set_startup_info(const char *argv0, void *data) if(argv0_) throw logic_error("startup info already set"); - argv0_ = argv0; + static FS::Path exe; + + if(!argv0 || !*argv0) + { +#ifdef _WIN32 + argv0 = "application.exe"; +#else + argv0 = "./application"; +#endif + } + + bool has_slash = strchr(argv0, FS::DIRSEP); + if(!has_slash) + exe = FS::path_lookup(argv0); + if(exe.empty()) + exe = FS::realpath(argv0); + + argv0_ = exe.c_str(); data_ = data; }