X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fapplication.cpp;h=aedaa4b6f25c027429f8bff1a5c069078206e7df;hp=43bb023143679e7fdf5e64d893208f859222d973;hb=d2795b92b02253a36cb7406fbaeabdef6d7caa19;hpb=f042fd992170ee8a50a7f596f1c9cdd9600b8583 diff --git a/source/core/application.cpp b/source/core/application.cpp index 43bb023..aedaa4b 100644 --- a/source/core/application.cpp +++ b/source/core/application.cpp @@ -1,7 +1,11 @@ +#include #include #include #include #include +#include +#include +#include #include #include "application.h" #include "getopt.h" @@ -12,29 +16,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 { @@ -48,6 +54,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; @@ -68,11 +77,38 @@ int Application::run(int argc, char **argv, void *data) } 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;