X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fapplication.cpp;h=36621e92ae99af9b74a2726263fd3b8176cbd020;hp=139f94f2d88054d745ad9119b562dd7ec174d596;hb=609c9a508cfdc7b42c46c4f21d17639204165a00;hpb=b56eb5ec1da675da0c66abc53c1e4f6c4e4cccbd diff --git a/source/core/application.cpp b/source/core/application.cpp index 139f94f..36621e9 100644 --- a/source/core/application.cpp +++ b/source/core/application.cpp @@ -1,19 +1,7 @@ -/* $Id$ - -This file is part of libmspcore -Copyright © 2006-2008, 2011 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #include -#include -#include -#include "../debug/backtrace.h" -#include "../debug/demangle.h" -#include "../time/units.h" -#include "../time/utils.h" +#include #include "application.h" -#include "except.h" +#include "getopt.h" using namespace std; @@ -29,7 +17,8 @@ Application::Application(): /** Constructs an instance of the registered application class and runs it. If the -application throws a UsageError, the static usage() function is called. +application throws a usage_error, a help message is printed. The GetOpt class +will throw such exceptions automatically in error conditions. This function can only be called once. The global main() function provided by the library normally does it automatically at program startup. @@ -39,14 +28,14 @@ int Application::run(int argc, char **argv, void *data) static bool called = false; if(called) { - cerr<<"Trying to call Application::run_app twice!\n"; + IO::cerr.write("Trying to call Application::run_app twice!\n"); return 125; } called = true; if(!starter_) { - cerr<<"Trying to run with no RegisteredApplication class!\n"; + IO::cerr.write("Trying to run with no RegisteredApplication class!\n"); return 126; } @@ -58,9 +47,9 @@ int Application::run(int argc, char **argv, void *data) { app_ = starter_->create_app(argc, argv); } - catch(const UsageError &e) + catch(const usage_error &e) { - starter_->usage(e.what(), argv[0], e.get_brief()); + IO::print(IO::cerr, "%s\n%s\n", e.what(), e.help()); return 1; } @@ -74,43 +63,12 @@ int Application::run(int argc, char **argv, void *data) { 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: "<(&e); - if(exc && !exc->get_backtrace().get_frames().empty()) - { - cerr<<" backtrace:\n"; - const list &frames = exc->get_backtrace().get_frames(); - for(list::const_iterator i=frames.begin(); i!=frames.end(); ++i) - cerr<<" "<<*i<<'\n'; - } -#endif + display_exception(e); return 124; } } -/** -Prints a message describing the usage of the application. The default version -will blame the programmer for being lazy. - -@param reason Why the function was called -@param argv0 The value of argv[0], to be used in the message -@param brief Whether to print a brief or long usage message -*/ -void Application::usage(const char *reason, const char *, bool) -{ - if(reason) - cerr<<"UsageError: "<