X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fapplication.cpp;h=0ef9507a14275af33fadbd1a73f190528e8f1601;hp=ebd928b7b7ce049cd2d33ebcedba2ab8f8d4f190;hb=ce0b610396aa8f760462fa4d7a6bb207a43994d2;hpb=b2333b53a0434eb6a131000c0b9bf06e4f603bd6 diff --git a/source/core/application.cpp b/source/core/application.cpp index ebd928b..0ef9507 100644 --- a/source/core/application.cpp +++ b/source/core/application.cpp @@ -1,4 +1,8 @@ +#include #include +#include +#include +#include #include #include "application.h" #include "getopt.h" @@ -9,29 +13,31 @@ namespace Msp { Application *Application::app_ = 0; Application::Starter *Application::starter_ = 0; +const char *Application::argv0_ = 0; +string Application::name_; void *Application::data_ = 0; -Application::Application(): +Application::Application(const string &n): exit_code(0) -{ } - -int Application::run(int argc, char **argv, void *data) { - static bool called = false; - if(called) - { - IO::cerr.write("Trying to call Application::run_app twice!\n"); - return 125; - } - called = true; + if(app_) + throw logic_error("instance already exists"); + + if(!n.empty()) + name_ = n; + else + name_ = FS::basename(argv0_); +} +int Application::run(int argc, char **argv, void *data, void (*created_callback)(void *)) +{ if(!starter_) { - IO::cerr.write("Trying to run with no RegisteredApplication class!\n"); + IO::cerr.write("Application::run called with no RegisteredApplication class!\n"); return 126; } - data_ = data; + set_startup_info(argv[0], data); try { @@ -45,6 +51,9 @@ int Application::run(int argc, char **argv, void *data) return 1; } + if(created_callback) + created_callback(data); + int result = app_->main(); Application *a = app_; app_ = 0; @@ -53,14 +62,33 @@ int Application::run(int argc, char **argv, void *data) } catch(const exception &e) { - delete app_; + bool handled = false; + if(const Debug::ErrorReporter *er = Debug::ErrorReporter::get_current()) + handled = er->report_uncaught_exception(e); - display_exception(e); + if(!handled) + { + 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()); + } + + delete app_; + app_ = 0; return 124; } } +void Application::set_startup_info(const char *argv0, void *data) +{ + if(argv0_) + throw logic_error("startup info already set"); + + argv0_ = argv0; + data_ = data; +} + int Application::main() { done = false;