]> vaikene.ee Git - evaf/blob - src/main/GUI/main.cpp
Ported to Qt5
[evaf] / src / main / GUI / main.cpp
1 /**
2 * @file main/GUI/main.cpp
3 * @brief The main eVaf GUI application class
4 * @author Enar Vaikene
5 *
6 * Copyright (c) 2011 Enar Vaikene
7 *
8 * This file is part of the eVaf C++ cross-platform application development framework.
9 *
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.
15 *
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
18 */
19
20 #include "main.h"
21 #include "exithandler.h"
22 #include "fatalerr.h"
23 //#include "version_p.h"
24 #include "version.h"
25
26 #ifdef Q_OS_WIN32
27 #include "winconsole.h"
28 #endif
29
30 #include <Common/Globals>
31 #include <Common/iLogger>
32 #include <Common/iApp>
33
34 #include <Plugins/PluginManager>
35
36 #include <QtGui>
37
38 #ifdef Q_OS_LINUX
39 # include <sys/types.h>
40 # include <unistd.h>
41 #endif
42
43
44 //-------------------------------------------------------------------
45
46 namespace eVaf {
47 namespace GUI {
48 namespace Internal {
49
50 /**
51 * Flag indicating that the application should be more verbose when dealing with fatal errors.
52 *
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.
55 *
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.
58 */
59 static bool BeVerbose = true;
60
61 #ifdef Q_OS_WIN32
62 /**
63 * Flag indicating that the application needs a console window.
64 *
65 * If this flag is set, opens an extra console window for message output.
66 */
67 static bool NeedsConsole = false;
68 #endif
69
70 /**
71 * Console severity level.
72 *
73 * This variable is used to set the console severity level. The severity level is changed
74 * with command-line arguments.
75 */
76 static eVaf::Common::iLogger::Severity ConsoleSeverityLevel = eVaf::Common::iLogger::Fatal;
77
78 /**
79 * Qt message handler replacement.
80 * @param type Type of the message
81 * @param msg The message
82 *
83 * This function outputs messages to the console and to the log file.
84 */
85 static void messageOutput(QtMsgType type, QMessageLogContext const &, QString const & msg)
86 {
87 static bool inHandler = false;
88
89 // Avoid recursions in case outputting a message causes another message to be output
90 if (inHandler)
91 return;
92 inHandler = true;
93
94 // Qt message type conversion to eVaf logger severity levels
95 eVaf::Common::iLogger::Severity v;
96 switch (type) {
97 case QtWarningMsg:
98 v = eVaf::Common::iLogger::Warning;
99 break;
100 case QtCriticalMsg:
101 v = eVaf::Common::iLogger::Error;
102 break;
103 case QtFatalMsg:
104 v = eVaf::Common::iLogger::Fatal;
105 break;
106 default:
107 v = eVaf::Common::iLogger::Debug;
108 }
109
110 // Output to the log file and console
111 eVaf::Common::iLogger::instance()->write(v, msg);
112
113 inHandler = false;
114 }
115
116 /**
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
121 *
122 * This function shows a critical error message box on the screen if needed and then terminates
123 * the application.
124 *
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.
127 */
128 static void fatalMsgHandler(QString const & msg, QString const & source, QString const & where)
129 {
130 // Show the message on the screen
131 if (BeVerbose) {
132 if (FatalErr::message(QObject::tr("Fatal Error"),
133 QObject::tr("%1\n\nOccurred in '%2'")
134 .arg(msg)
135 .arg(where),
136 0) == FatalErr::Ignore)
137 return;
138 }
139 #ifdef Q_OS_LINUX
140 abort();
141 #else
142 exit(1);
143 #endif
144 }
145
146 } // namespace eVaf::GUI::Internal
147 } // namespace eVaf::GUI
148 } // namespace eVaf
149
150
151 //-------------------------------------------------------------------
152
153 using namespace eVaf;
154 using namespace eVaf::GUI;
155
156 Application::Application(int & argc, char ** argv)
157 : QApplication(argc, argv)
158 {
159 setObjectName(QString("%1-%2").arg(VER_MODULE_NAME_STR).arg(__FUNCTION__));
160
161 EVAF_INFO("%s version %s created", qPrintable(objectName()), VER_FILE_VERSION_STR);
162 }
163
164 Application::~Application()
165 {
166 EVAF_INFO("%s destroyed", qPrintable(objectName()));
167 }
168
169 bool Application::processCommandLine(int argc, char ** argv)
170 {
171 QStringList args;
172 for (int i = 1; i < argc; ++i)
173 args += argv[i];
174
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('='));
178
179 if (QRegExp("(-[-]?version)|([-//]V)").exactMatch(arg.at(0))) {
180 printVersion();
181 return false;
182 }
183 else if (QRegExp("(-[-]?help)|([-//][h/?])").exactMatch(arg.at(0))) {
184 printHelp();
185 return false;
186 }
187 else if (QRegExp("-[-]?help-qt").exactMatch(arg.at(0))) {
188 printQtHelp();
189 return false;
190 }
191 else if (QRegExp("-[-]?verbose").exactMatch(arg.at(0)) && arg.size() > 1) {
192 #ifdef Q_OS_WIN32
193 Internal::NeedsConsole = true;
194 #endif
195 QString v = arg.at(1).toLower();
196 if (v == "debug")
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;
209 #ifdef Q_OS_WIN32
210 Internal::NeedsConsole = false;
211 #endif
212 }
213 else {
214 printHelp();
215 return false;
216 }
217 }
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;
224 break;
225 case Common::iLogger::Fatal:
226 Internal::ConsoleSeverityLevel = Common::iLogger::Error;
227 break;
228 case Common::iLogger::Error:
229 Internal::ConsoleSeverityLevel = Common::iLogger::Warning;
230 break;
231 case Common::iLogger::Warning:
232 Internal::ConsoleSeverityLevel = Common::iLogger::Info;
233 break;
234 case Common::iLogger::Info:
235 Internal::ConsoleSeverityLevel = Common::iLogger::Debug;
236 break;
237 default:
238 break;
239 }
240 }
241 }
242 }
243
244 return true;
245 }
246
247 void Application::printHelp()
248 {
249 char const * const txt = QT_TR_NOOP(
250 "Usage: eVafGUI [options]\n"
251 "\n"
252 // General options
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"
259 " more verbosity.\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"
264 " code.\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"
271 );
272 ::fputs(tr(txt).toLocal8Bit().constData(), stdout);
273 }
274
275 void Application::printQtHelp()
276 {
277 // Cannot translate this text as QT_TR_NOOP() is not able to process #ifdef parts.
278 char const * const txt =
279 #ifdef QT_DEBUG
280 "Qt debugging options:\n"
281 " -nograb tells Qt that it must never grab the mouse or the keyboard.\n"
282 #ifdef Q_OS_UNIX
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"
286 #endif
287 #endif
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"
298 " the same time.\n"
299 " -reverse sets the application's layout direction to Qt::RightToLeft\n\n"
300 #ifdef Q_OS_WIN32
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"
304 #endif
305 #ifdef Q_WS_X11
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"
309 " shown.\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"
318 " 8-bit display.\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"
326 " 8-bit display.\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"
335 #endif
336 ;
337 ::fputs(txt, stdout);
338 }
339
340 void Application::printVersion()
341 {
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,
346 VER_MODULE_NAME_STR,
347 VER_FILE_VERSION_STR
348 );
349 }
350
351
352 //-------------------------------------------------------------------
353
354 int main(int argc, char ** argv)
355 {
356 Common::iLogger::instance()->setSeverity(Common::iLogger::Warning);
357
358 // Install our own message handlers
359 Common::iLogger::instance()->installFatalMsgHandler(Internal::fatalMsgHandler);
360 qInstallMessageHandler(Internal::messageOutput);
361
362 // Process command-line arguments
363 if (!Application::processCommandLine(argc, argv))
364 return 1;
365
366 // Set the console severity
367 Common::iLogger::instance()->setConsoleSeverity(Internal::ConsoleSeverityLevel);
368
369 #ifdef Q_OS_WIN32
370 // Enable the extra message console on Windows
371 if (Internal::NeedsConsole)
372 Internal::enableWinConsole();
373 #endif
374
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,
379 VER_MODULE_NAME_STR,
380 VER_FILE_VERSION_STR);
381
382 #ifdef Q_OS_LINUX
383 EVAF_INFO("%s application pid = %d", VER_MODULE_NAME_STR, getpid());
384 #endif
385
386 Application app(argc, argv);
387
388 // Install the exit handler
389 if (!Internal::installExitHandler())
390 return 1;
391
392 // Plugin manager
393 Plugins::PluginManager pluginManager;
394
395 // The main run loop
396 bool quit = false;
397 int rval;
398 while (!quit) {
399
400 EVAF_INFO("%s is starting up", VER_MODULE_NAME_STR);
401
402 // Initialize the common library
403 if (!Common::init())
404 return 1;
405
406 // Initialize the plugin manager and load plugins
407 if (!pluginManager.init())
408 return 1;
409
410 // Run the application
411 EVAF_INFO("Running %s", VER_MODULE_NAME_STR);
412 rval = Common::iApp::instance()->exec();
413
414 quit = rval != Common::iApp::RC_Restart;
415
416 EVAF_INFO("%s is %s", VER_MODULE_NAME_STR, quit ? "exiting" : "restarting");
417
418 // Unload plugins and finalize the plugin manager
419 pluginManager.done();
420 }
421
422 EVAF_INFO("%s exit with code %d", VER_MODULE_NAME_STR, rval);
423
424 return rval;
425 }