X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fapplication.cpp;h=1fbe15452fd8a13d39c3c0939d2c09419e5b6733;hb=5763dd6e8089c97699cbcbd221afb7fe1841bcdd;hp=ebd928b7b7ce049cd2d33ebcedba2ab8f8d4f190;hpb=b2333b53a0434eb6a131000c0b9bf06e4f603bd6;p=libs%2Fcore.git diff --git a/source/core/application.cpp b/source/core/application.cpp index ebd928b..1fbe154 100644 --- a/source/core/application.cpp +++ b/source/core/application.cpp @@ -1,5 +1,13 @@ +#include +#include #include +#include +#include +#include +#include +#include #include +#include #include "application.h" #include "getopt.h" @@ -7,37 +15,38 @@ using namespace std; namespace Msp { -Application *Application::app_ = 0; -Application::Starter *Application::starter_ = 0; -void *Application::data_ = 0; +Application *Application::_app = 0; +Application::Starter *Application::_starter = 0; +const char *Application::_argv0 = 0; +string Application::_name; +void *Application::_data = 0; -Application::Application(): - exit_code(0) -{ } - -int Application::run(int argc, char **argv, void *data) +Application::Application(const string &n) { - 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); +} - if(!starter_) +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 { try { - app_ = starter_->create_app(argc, argv); + _app = _starter->create_app(argc, argv); } catch(const usage_error &e) { @@ -45,22 +54,69 @@ int Application::run(int argc, char **argv, void *data) return 1; } - int result = app_->main(); - Application *a = app_; - app_ = 0; + if(created_callback) + created_callback(data); + + int result = _app->main(); + Application *a = _app; + _app = 0; delete a; return result; } catch(const exception &e) { - delete app_; + bool handled = false; + if(const Debug::ErrorReporter *er = Debug::ErrorReporter::get_current()) + handled = er->report_uncaught_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())); + 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(auto i=lines.begin(); ++i!=lines.end(); ) + IO::print(IO::cerr, " %s\n", *i); + } + } - display_exception(e); + 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"); + + 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; +} + int Application::main() { done = false; @@ -72,7 +128,7 @@ int Application::main() void Application::catch_signal(int s) { - signal(s, &sighandler_); + signal(s, &_sighandler); } void Application::exit(int c) @@ -81,18 +137,18 @@ void Application::exit(int c) exit_code = c; } -void Application::sighandler_(int s) +void Application::_sighandler(int s) { - app_->sighandler(s); + _app->sighandler(s); } Application::Starter::Starter() { - if(starter_) + if(_starter) throw logic_error("Can't create more than one Starter instance"); - starter_ = this; + _starter = this; } } // namespace Msp