X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fapplication.cpp;h=53fb1c3bc6ac6a49582d8aad1ad692414a8e963f;hb=6a38983c19fe78753962288e206c5817ad595448;hp=139f94f2d88054d745ad9119b562dd7ec174d596;hpb=d5dd704b2576f878809e87dbb8ff8591b9bdbce4;p=libs%2Fcore.git diff --git a/source/core/application.cpp b/source/core/application.cpp index 139f94f..53fb1c3 100644 --- a/source/core/application.cpp +++ b/source/core/application.cpp @@ -5,15 +5,15 @@ Copyright © 2006-2008, 2011 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ +#ifdef WIN32 +#include +#endif #include #include #include -#include "../debug/backtrace.h" #include "../debug/demangle.h" -#include "../time/units.h" -#include "../time/utils.h" #include "application.h" -#include "except.h" +#include "getopt.h" using namespace std; @@ -29,7 +29,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. @@ -58,9 +59,10 @@ 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()); + cerr<(&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 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: "<