X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fapplication.cpp;h=f64f350e83e362b1d0cde831a7f0f542e52388b2;hb=5b0c36c9c6c9c30f1eb42186fed7acc7e99faf3e;hp=5acae82242b0a6d4106c7d647460934fd6acae12;hpb=516755dde30a4820495580d1b52a5b992f800461;p=libs%2Fcore.git diff --git a/source/core/application.cpp b/source/core/application.cpp index 5acae82..f64f350 100644 --- a/source/core/application.cpp +++ b/source/core/application.cpp @@ -4,8 +4,10 @@ This file is part of libmspcore Copyright © 2006 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ + #include #include +#include #include "../debug/backtrace.h" #include "../debug/demangle.h" #include "../time/units.h" @@ -17,6 +19,11 @@ using namespace std; namespace Msp { +Application::Application(): + exit_code(0), + loop_mode_(TICK_SLEEP) +{ } + /** Constructs an instance of the registered application class and runs it. If the application throws a UsageError, the static usage() function is called. @@ -60,6 +67,12 @@ int Application::run(int argc, char **argv, void *data) } catch(const exception &e) { + delete app_; + +#ifdef WIN32 + string msg=Debug::demangle(typeid(e).name())+":\n"+e.what(); + MessageBoxA(0, msg.c_str(), "Uncaught exception", MB_OK|MB_ICONERROR); +#else cerr<<"An uncaught exception occurred.\n"; cerr<<" type: "<get_backtrace().get_frames().empty()) { cerr<<" backtrace:\n"; - const Debug::Backtrace::FrameSeq &frames=exc->get_backtrace().get_frames(); - for(Debug::Backtrace::FrameSeq::const_iterator i=frames.begin(); i!=frames.end(); ++i) - { - cerr<<" "<address; - if(!i->symbol.empty()) - cerr<<" in "<symbol; - cerr<<" from "<file<<'\n'; - } + const list &frames=exc->get_backtrace().get_frames(); + for(list::const_iterator i=frames.begin(); i!=frames.end(); ++i) + cerr<<" "<<*i<<'\n'; } +#endif - delete app_; return 124; } } @@ -98,11 +106,6 @@ void Application::usage(const char *reason, const char *, bool) cerr<<"The programmer was lazy and didn't write a usage() function for this application.\n"; } -Application::Application(): - exit_code(0), - loop_mode_(TICK_SLEEP) -{ } - /** Default main loop. Behavior depends on loop_mode_. A custom main loop should monitor the done member variable and return exit_code. @@ -190,6 +193,7 @@ void Application::sighandler_(int s) app_->sighandler(s); } + Application::RegBase::RegBase() { if(reg_app_)