X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fapplication.cpp;h=8447eed669d2b8f58c9b078b547b1543b0bab27f;hp=51f013e72c3cb5876429035d2604c95eb1a1f578;hb=HEAD;hpb=d16185720fa344263367dbd50c61bfc8183d99a4 diff --git a/source/core/application.cpp b/source/core/application.cpp index 51f013e..c214a06 100644 --- a/source/core/application.cpp +++ b/source/core/application.cpp @@ -1,56 +1,53 @@ -#ifdef WIN32 -#include -#endif -#include +#include #include +#include #include +#include +#include +#include +#include #include +#include #include "application.h" +#include "except.h" #include "getopt.h" using namespace std; namespace Msp { -Application *Application::app_ = 0; -Application::Starter *Application::starter_ = 0; -void *Application::data_ = 0; +Application *Application::_app = nullptr; +Application::Starter *Application::_starter = nullptr; +const char *Application::_argv0 = nullptr; +string Application::_name; +void *Application::_data = nullptr; -Application::Application(): - exit_code(0) -{ } +Application::Application(const string &n) +{ + if(_app) + throw already_called("Application::Application"); -/** -Constructs an instance of the registered application class and runs it. If the -application throws a usage_error, a help message is printed. The GetOpt class -will throw such exceptions automatically in error conditions. + if(!n.empty()) + _name = n; + else + _name = FS::basename(_argv0); +} -This function can only be called once. The global main() function provided by -the library normally does it automatically at program startup. -*/ -int Application::run(int argc, char **argv, void *data) +int Application::run(int argc, char **argv, void *data, void (*created_callback)(void *)) { - static bool called = false; - if(called) + if(!_starter) { - IO::cerr.write("Trying to call Application::run_app twice!\n"); - return 125; - } - called = true; - - 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) { @@ -58,33 +55,84 @@ 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 = nullptr; 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); -#ifdef WIN32 - string msg = Debug::demangle(typeid(e).name())+":\n"+e.what(); - MessageBoxA(0, msg.c_str(), "Uncaught exception", MB_OK|MB_ICONERROR); -#else - 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()); -#endif + 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); + } + } + + delete _app; + _app = nullptr; return 124; } } -/** -Default main loop. Calls tick() repeatedly until exit() is called. A custom -main loop should monitor the done member variable and return exit_code. -*/ +void Application::set_startup_info(const char *argv0, void *data) +{ + if(_argv0) + throw already_called("Application::set_startup_info"); + + 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; +} + +void *Application::get_data() +{ + return _data; +} + +const char *Application::get_argv0() +{ + return _argv0; +} + +const std::string &Application::get_name() +{ + return _name; +} + int Application::main() { done = false; @@ -94,38 +142,29 @@ int Application::main() return exit_code; } -/** -Sets the specified signal to be delivered to the sighandler member function. -*/ void Application::catch_signal(int s) { - signal(s, &sighandler_); + signal(s, &_sighandler); } -/** -Causes the application to exit gracefully with the given exit code. -*/ void Application::exit(int c) { done = true; exit_code = c; } -/** -Static wrapper function to call a member function of the Application instance. -*/ -void Application::sighandler_(int s) +void Application::_sighandler(int s) { - app_->sighandler(s); + _app->sighandler(s); } Application::Starter::Starter() { - if(starter_) - throw logic_error("Can't create more than one Starter instance"); + if(_starter) + throw already_called("Application::Starter::Starter"); - starter_ = this; + _starter = this; } } // namespace Msp