2 * @file main/GUI/main.cpp
3 * @brief The main eVaf GUI application class
6 * Copyright (c) 2011 Enar Vaikene
8 * This file is part of the eVaf C++ cross-platform application development framework.
10 * This file can be used under the terms of the GNU General Public License
11 * version 3.0 as published by the Free Software Foundation and appearing in
12 * the file LICENSE included in the packaging of this file. Please review the
13 * the following information to ensure the GNU General Public License version
14 * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
21 #include "exithandler.h"
23 //#include "version_p.h"
27 #include "winconsole.h"
30 #include <Common/Globals>
31 #include <Common/iLogger>
32 #include <Common/iApp>
34 #include <Plugins/PluginManager>
39 # include <sys/types.h>
44 //-------------------------------------------------------------------
51 * Flag indicating that the application should be more verbose when dealing with fatal errors.
53 * If this flag is set, then shows fatal errors on the screen as dialog boxes and
54 * the user has to close them before terminating the application.
56 * If this flag is not set, then no messages are shown and the application terminates
57 * silently. Error messages are written only into the log file.
59 static bool BeVerbose
= true;
63 * Flag indicating that the application needs a console window.
65 * If this flag is set, opens an extra console window for message output.
67 static bool NeedsConsole
= false;
71 * Console severity level.
73 * This variable is used to set the console severity level. The severity level is changed
74 * with command-line arguments.
76 static eVaf::Common::iLogger::Severity ConsoleSeverityLevel
= eVaf::Common::iLogger::Fatal
;
79 * Qt message handler replacement.
80 * @param type Type of the message
81 * @param msg The message
83 * This function outputs messages to the console and to the log file.
85 static void messageOutput(QtMsgType type
, char const * const msg
)
87 static bool inHandler
= false;
89 // Avoid recursions in case outputting a message causes another message to be output
94 // Qt message type conversion to eVaf logger severity levels
95 eVaf::Common::iLogger::Severity v
;
98 v
= eVaf::Common::iLogger::Warning
;
101 v
= eVaf::Common::iLogger::Error
;
104 v
= eVaf::Common::iLogger::Fatal
;
107 v
= eVaf::Common::iLogger::Debug
;
110 // Output to the log file and console
111 eVaf::Common::iLogger::instance()->write(v
, msg
);
117 * Fatal error message handler
118 * @param msg The error message
119 * @param source Source of the message
120 * @param where Where the error occurred
122 * This function shows a critical error message box on the screen if needed and then terminates
125 * If the critical error message is shown, then the user has an option to ignore the error. In this
126 * case the application is not terminated.
128 static void fatalMsgHandler(QString
const & msg
, QString
const & source
, QString
const & where
)
130 // Show the message on the screen
132 if (FatalErr::message(QObject::tr("Fatal Error"),
133 QObject::tr("%1\n\nOccurred in '%2'")
136 0) == FatalErr::Ignore
)
146 } // namespace eVaf::GUI::Internal
147 } // namespace eVaf::GUI
151 //-------------------------------------------------------------------
153 using namespace eVaf
;
154 using namespace eVaf::GUI
;
156 Application::Application(int & argc
, char ** argv
)
157 : QApplication(argc
, argv
)
159 setObjectName(QString("%1-%2").arg(VER_MODULE_NAME_STR
).arg(__FUNCTION__
));
161 EVAF_INFO("%s version %s created", qPrintable(objectName()), VER_FILE_VERSION_STR
);
164 Application::~Application()
166 EVAF_INFO("%s destroyed", qPrintable(objectName()));
169 bool Application::processCommandLine(int argc
, char ** argv
)
172 for (int i
= 1; i
< argc
; ++i
)
175 for (int i
= 0; i
< args
.size(); ++i
) {
176 // Get the argument and optional value
177 QStringList arg
= args
.at(i
).simplified().split(QChar('='));
179 if (QRegExp("(-[-]?version)|([-//]V)").exactMatch(arg
.at(0))) {
183 else if (QRegExp("(-[-]?help)|([-//][h/?])").exactMatch(arg
.at(0))) {
187 else if (QRegExp("-[-]?help-qt").exactMatch(arg
.at(0))) {
191 else if (QRegExp("-[-]?verbose").exactMatch(arg
.at(0)) && arg
.size() > 1) {
193 Internal::NeedsConsole
= true;
195 QString v
= arg
.at(1).toLower();
197 Internal::ConsoleSeverityLevel
= Common::iLogger::Debug
;
198 else if (v
== "info")
199 Internal::ConsoleSeverityLevel
= Common::iLogger::Info
;
200 else if (v
== "warning")
201 Internal::ConsoleSeverityLevel
= Common::iLogger::Warning
;
202 else if (v
== "error")
203 Internal::ConsoleSeverityLevel
= Common::iLogger::Error
;
204 else if (v
== "fatal")
205 Internal::ConsoleSeverityLevel
= Common::iLogger::Fatal
;
206 else if (v
== "none") {
207 Internal::ConsoleSeverityLevel
= Common::iLogger::None
;
208 Internal::BeVerbose
= false;
210 Internal::NeedsConsole
= false;
218 else if (QRegExp("-[v]+").exactMatch(arg
.at(0)) && arg
.size() == 1) {
219 // The number of 'v's increases the verbosity
220 for (int j
= 1; j
< arg
.at(0).size(); ++j
) {
221 switch (Internal::ConsoleSeverityLevel
) {
222 case Common::iLogger::None
:
223 Internal::ConsoleSeverityLevel
= Common::iLogger::Fatal
;
225 case Common::iLogger::Fatal
:
226 Internal::ConsoleSeverityLevel
= Common::iLogger::Error
;
228 case Common::iLogger::Error
:
229 Internal::ConsoleSeverityLevel
= Common::iLogger::Warning
;
231 case Common::iLogger::Warning
:
232 Internal::ConsoleSeverityLevel
= Common::iLogger::Info
;
234 case Common::iLogger::Info
:
235 Internal::ConsoleSeverityLevel
= Common::iLogger::Debug
;
237 case Common::iLogger::Debug
:
247 void Application::printHelp()
249 char const * const txt
= QT_TR_NOOP(
250 "Usage: eVafGUI [options]\n"
253 " -help Shows this help and quits.\n"
254 " -help-qt Shows Qt command line options and quits.\n"
255 " -version Shows version information and quits.\n"
256 " -verbose=LEVEL Specifies the verbose level. LEVEL can be one of the\n"
257 " following: NONE, FATAL, ERROR, WARNING, INFO, DEBUG.\n"
258 " -v Makes the application more verbose. Can be repeated for\n"
260 // Handled by the iApp interface implementation
261 " -appl[ication]=NAME Specifies the name of the application.\n"
262 " -lang[uage]=xx[_CC] Specifies the language, where xx is the ISO 639\n"
263 " language code followed by an optional ISO 3166 country\n"
265 " -root[dir]=DIR Specifies the application's root directory.\n"
266 " -dataroot[dir]=DIR Specifies the data root directory.\n"
267 " -etc[dir]=DIR Specifies the configuration files directory.\n"
268 " -log[dir]=DIR Specifies the log files directory.\n"
269 " -doc[dir]=DIR Specifies the documentation directory.\n"
270 " -qtplugins[dir]=DIR Specifies the Qt plugins directory.\n"
272 ::fputs(tr(txt
).toLocal8Bit().constData(), stdout
);
275 void Application::printQtHelp()
277 // Cannot translate this text as QT_TR_NOOP() is not able to process #ifdef parts.
278 char const * const txt
=
280 "Qt debugging options:\n"
281 " -nograb tells Qt that it must never grab the mouse or the keyboard.\n"
283 " -dograb running under a debugger can cause an implicit -nograb,\n"
284 " use -dograb to override.\n"
285 " -sync switches to synchronous mode for debugging.\n\n"
288 "Qt common options:\n"
289 " -style=STYLE sets the application GUI style. Possible values are motif,\n"
290 " windows, and platinum.\n"
291 " -style STYLE is the same as listed above.\n"
292 " -stylesheet=STYLESHEET sets the application style sheet.\n"
293 " -stylesheet STYLESHEET is the same as listed above.\n"
294 " -session=SESSION restores the application from an earlier session.\n"
295 " -session SESSION is the same as listed above.\n"
296 " -widgetcount prints debug message at the end about number of widgets\n"
297 " left undestroyed and maximum number of widgets existed at\n"
299 " -reverse sets the application's layout direction to Qt::RightToLeft\n\n"
301 "Qt options on Windows:\n"
302 " -direct3d will make the Direct3D paint engine the default widget\n"
303 " paint engine in Qt.\n\n"
306 "Qt options on X11:\n"
307 " -display DISPLAY sets the X display.\n"
308 " -geometry GEOMETRY sets the client geometry of the first window that is\n"
310 " -fn or -font FONT defines the application font.\n"
311 " -bg or -background COLOR sets the default background color and an\n"
312 " application palette.\n"
313 " -fg or -foreground COLOR sets the default foreground color.\n"
314 " -btn or -button COLOR sets the default button color.\n"
315 " -name NAME sets the application name.\n"
316 " -title TITLE sets the application title.\n"
317 " -visual TrueColor forces the application to use a TrueColor visual on an\n"
319 " -ncols COUNT limits the number of colors allocated in the color cube on\n"
320 " an 8-bit display, if the application is using the\n"
321 " QApplication::ManyColor color specification. If COUNT is\n"
322 " 216 then a 6x6x6 color cube is used (i.e. 6 levels of red,\n"
323 " 6 of green, and 6 of blue); for other values, a cube\n"
324 " approximately proportional to a 2x3x1 cube is used.\n"
325 " -cmap causes the application to install a private color map on an\n"
327 " -im sets the input method server (equivalent to setting the\n"
328 " XMODIFIERS environment variable).\n"
329 " -noxim disables the input method framework (\"no X input method\").\n"
330 " -inputstyle defines how the input is inserted into the given widget.\n"
331 " E.g., onTheSpot makes the input appear directly in the\n"
332 " widget, while overTheSpot makes the input appear in a box\n"
333 " floating over the widget and is not inserted until the\n"
334 " editing is done.\n"
337 ::fputs(txt
, stdout
);
340 void Application::printVersion()
342 ::printf("%s version %s release date %s, %s version %s\n",
343 VER_PRODUCT_NAME_STR
,
344 VER_PRODUCT_VERSION_STR
,
345 VER_PRODUCT_DATE_STR
,
352 //-------------------------------------------------------------------
354 int main(int argc
, char ** argv
)
356 Common::iLogger::instance()->setSeverity(Common::iLogger::Warning
);
358 // Install our own message handlers
359 Common::iLogger::instance()->installFatalMsgHandler(Internal::fatalMsgHandler
);
360 qInstallMsgHandler(Internal::messageOutput
);
362 // Process command-line arguments
363 if (!Application::processCommandLine(argc
, argv
))
366 // Set the console severity
367 Common::iLogger::instance()->setConsoleSeverity(Internal::ConsoleSeverityLevel
);
370 // Enable the extra message console on Windows
371 if (Internal::NeedsConsole
)
372 Internal::enableWinConsole();
375 EVAF_INFO("%s version %s release date %s, %s version %s",
376 VER_PRODUCT_NAME_STR
,
377 VER_PRODUCT_VERSION_STR
,
378 VER_PRODUCT_DATE_STR
,
380 VER_FILE_VERSION_STR
);
383 EVAF_INFO("%s application pid = %d", VER_MODULE_NAME_STR
, getpid());
386 Application
app(argc
, argv
);
388 // Install the exit handler
389 if (!Internal::installExitHandler())
393 Plugins::PluginManager pluginManager
;
400 EVAF_INFO("%s is starting up", VER_MODULE_NAME_STR
);
402 // Initialize the common library
406 // Initialize the plugin manager and load plugins
407 if (!pluginManager
.init())
410 // Run the application
411 EVAF_INFO("Running %s", VER_MODULE_NAME_STR
);
414 quit
= rval
!= Common::iApp::RC_Restart
;
416 EVAF_INFO("%s is %s", VER_MODULE_NAME_STR
, quit
? "exiting" : "restarting");
418 // Unload plugins and finalize the plugin manager
419 pluginManager
.done();
422 EVAF_INFO("%s exit with code %d", VER_MODULE_NAME_STR
, rval
);