2003-08-17 09:54:41 +00:00
|
|
|
// bootstrap.cxx -- bootstrap routines: main()
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started May 1997.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 1997 - 2002 Curtis L. Olson - http://www.flightgear.org/~curt
|
2003-08-17 09:54:41 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-08-17 09:54:41 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2011-08-20 20:55:42 +00:00
|
|
|
#ifdef HAVE_WINDOWS_H
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
#if defined(__linux__)
|
|
|
|
// set link for setting _GNU_SOURCE before including fenv.h
|
|
|
|
// http://man7.org/linux/man-pages/man3/fenv.3.html
|
|
|
|
|
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <fenv.h>
|
2003-08-17 09:54:41 +00:00
|
|
|
#endif
|
|
|
|
|
2011-10-16 17:35:40 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
# include <unistd.h> // for gethostname()
|
|
|
|
#endif
|
|
|
|
|
2005-12-22 23:32:23 +00:00
|
|
|
#include <errno.h>
|
2008-07-15 16:55:23 +00:00
|
|
|
#include <signal.h>
|
2003-08-17 09:54:41 +00:00
|
|
|
#include <stdlib.h>
|
2004-10-17 17:59:02 +00:00
|
|
|
#include <stdio.h>
|
2014-02-19 21:53:52 +00:00
|
|
|
#include <cstring>
|
|
|
|
#include <iostream>
|
2003-08-17 09:54:41 +00:00
|
|
|
|
|
|
|
#include <simgear/compiler.h>
|
2003-09-24 17:20:55 +00:00
|
|
|
#include <simgear/structure/exception.hxx>
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2014-01-04 17:27:55 +00:00
|
|
|
#include <osg/Texture>
|
|
|
|
#include <osg/BufferObject>
|
|
|
|
|
2012-04-25 21:28:00 +00:00
|
|
|
#include <Viewer/fgviewer.hxx>
|
2003-08-17 09:54:41 +00:00
|
|
|
#include "main.hxx"
|
2014-01-18 14:50:31 +00:00
|
|
|
#include <Include/version.h>
|
2013-11-06 23:49:58 +00:00
|
|
|
#include <Main/globals.hxx>
|
2014-02-19 21:53:52 +00:00
|
|
|
#include <Main/options.hxx>
|
2013-11-06 23:49:58 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
|
|
|
#include <GUI/MessageBox.hxx>
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2004-03-31 21:10:32 +00:00
|
|
|
#include "fg_os.hxx"
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2013-11-06 23:49:58 +00:00
|
|
|
#if defined(SG_MAC)
|
2013-12-21 15:29:11 +00:00
|
|
|
#include <GUI/CocoaHelpers.h> // for transformToForegroundApp
|
2013-11-06 23:49:58 +00:00
|
|
|
#endif
|
|
|
|
|
2014-01-18 14:50:31 +00:00
|
|
|
#if defined(HAVE_CRASHRPT)
|
|
|
|
#include <CrashRpt.h>
|
2014-01-22 22:33:30 +00:00
|
|
|
|
|
|
|
bool global_crashRptEnabled = false;
|
|
|
|
|
2014-01-18 14:50:31 +00:00
|
|
|
#endif
|
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
using std::cerr;
|
|
|
|
using std::endl;
|
|
|
|
|
2012-08-21 16:07:47 +00:00
|
|
|
std::string homedir;
|
|
|
|
std::string hostname;
|
2005-12-21 13:36:04 +00:00
|
|
|
|
2012-04-21 07:38:41 +00:00
|
|
|
// forward declaration.
|
2004-08-24 08:40:41 +00:00
|
|
|
void fgExitCleanup();
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
static void initFPE(bool enableExceptions);
|
|
|
|
|
|
|
|
#if defined(__linux__)
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2011-07-17 17:31:28 +00:00
|
|
|
static void handleFPE(int);
|
2009-05-19 22:14:35 +00:00
|
|
|
static void
|
2014-02-19 21:53:52 +00:00
|
|
|
initFPE (bool fpeAbort)
|
2009-05-19 22:14:35 +00:00
|
|
|
{
|
|
|
|
if (fpeAbort) {
|
|
|
|
int except = fegetexcept();
|
|
|
|
feenableexcept(except | FE_DIVBYZERO | FE_INVALID);
|
|
|
|
} else {
|
|
|
|
signal(SIGFPE, handleFPE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleFPE(int)
|
|
|
|
{
|
|
|
|
feclearexcept(FE_ALL_EXCEPT);
|
2014-02-19 21:53:52 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT, "Floating point interrupt (SIGFPE)");
|
2009-05-19 22:14:35 +00:00
|
|
|
signal(SIGFPE, handleFPE);
|
|
|
|
}
|
2014-02-19 21:53:52 +00:00
|
|
|
#elif defined (SG_WINDOWS)
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
static void initFPE(bool fpeAbort)
|
2003-08-17 09:54:41 +00:00
|
|
|
{
|
2014-02-19 21:53:52 +00:00
|
|
|
// Enable floating-point exceptions for Windows
|
|
|
|
if (fpeAbort) {
|
|
|
|
// set following link for what this does (note it does set SSE
|
|
|
|
// flags too, it's not just for the x87 FPU)
|
|
|
|
// http://msdn.microsoft.com/en-us/library/e9b52ceh.aspx
|
|
|
|
_control87( _EM_INEXACT, _MCW_EM );
|
|
|
|
}
|
2003-08-17 09:54:41 +00:00
|
|
|
}
|
|
|
|
|
2009-05-19 22:14:35 +00:00
|
|
|
#else
|
2014-02-19 21:53:52 +00:00
|
|
|
static void initFPE(bool)
|
2009-05-19 22:14:35 +00:00
|
|
|
{
|
2014-02-19 21:53:52 +00:00
|
|
|
// Ignore floating-point exceptions on FreeBSD, OS-X, other Unices
|
|
|
|
signal(SIGFPE, SIG_IGN);
|
2009-05-19 22:14:35 +00:00
|
|
|
}
|
2003-08-17 09:54:41 +00:00
|
|
|
#endif
|
|
|
|
|
2013-11-06 23:49:58 +00:00
|
|
|
#if defined(SG_WINDOWS)
|
2004-03-20 22:39:30 +00:00
|
|
|
int main ( int argc, char **argv );
|
|
|
|
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
|
|
|
LPSTR lpCmdLine, int nCmdShow) {
|
|
|
|
|
|
|
|
main( __argc, __argv );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
static void fg_terminate()
|
|
|
|
{
|
|
|
|
flightgear::fatalMessageBox("Fatal exception", "Uncaught exception on some thread");
|
2007-05-10 12:50:50 +00:00
|
|
|
}
|
|
|
|
|
2004-08-24 08:40:41 +00:00
|
|
|
int _bootstrap_OSInit;
|
|
|
|
|
2003-08-17 09:54:41 +00:00
|
|
|
// Main entry point; catch any exceptions that have made it this far.
|
2013-02-08 11:43:51 +00:00
|
|
|
int main ( int argc, char **argv )
|
|
|
|
{
|
2013-11-06 23:49:58 +00:00
|
|
|
#if defined(SG_WINDOWS)
|
2011-08-20 20:55:42 +00:00
|
|
|
// Don't show blocking "no disk in drive" error messages on Windows 7,
|
|
|
|
// silently return errors to application instead.
|
|
|
|
// See Microsoft MSDN #ms680621: "GUI apps should specify SEM_NOOPENFILEERRORBOX"
|
|
|
|
SetErrorMode(SEM_NOOPENFILEERRORBOX);
|
|
|
|
|
2011-10-16 17:35:40 +00:00
|
|
|
hostname = ::getenv( "COMPUTERNAME" );
|
|
|
|
#else
|
|
|
|
// Unix(alike) systems
|
|
|
|
char _hostname[256];
|
|
|
|
gethostname(_hostname, 256);
|
2012-04-21 07:38:41 +00:00
|
|
|
hostname = _hostname;
|
2013-02-08 11:43:51 +00:00
|
|
|
|
2011-10-16 17:35:40 +00:00
|
|
|
signal(SIGPIPE, SIG_IGN);
|
2010-08-06 07:06:32 +00:00
|
|
|
#endif
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2004-08-24 08:40:41 +00:00
|
|
|
_bootstrap_OSInit = 0;
|
|
|
|
|
2014-01-18 14:50:31 +00:00
|
|
|
#if defined(HAVE_CRASHRPT)
|
|
|
|
// Define CrashRpt configuration parameters
|
|
|
|
CR_INSTALL_INFO info;
|
|
|
|
memset(&info, 0, sizeof(CR_INSTALL_INFO));
|
|
|
|
info.cb = sizeof(CR_INSTALL_INFO);
|
|
|
|
info.pszAppName = "FlightGear";
|
|
|
|
info.pszAppVersion = FLIGHTGEAR_VERSION;
|
|
|
|
info.pszEmailSubject = "FlightGear " FLIGHTGEAR_VERSION " crash report";
|
|
|
|
info.pszEmailTo = "fgcrash@goneabitbursar.com";
|
|
|
|
info.pszUrl = "http://fgfs.goneabitbursar.com/crashreporter/crashrpt.php";
|
|
|
|
info.uPriorities[CR_HTTP] = 3;
|
|
|
|
info.uPriorities[CR_SMTP] = 2;
|
|
|
|
info.uPriorities[CR_SMAPI] = 1;
|
|
|
|
|
|
|
|
// Install all available exception handlers
|
|
|
|
info.dwFlags |= CR_INST_ALL_POSSIBLE_HANDLERS;
|
|
|
|
|
|
|
|
// Restart the app on crash
|
|
|
|
info.dwFlags |= CR_INST_SEND_QUEUED_REPORTS;
|
|
|
|
|
2014-01-20 21:54:06 +00:00
|
|
|
// automatically install handlers for all threads
|
2014-01-18 14:50:31 +00:00
|
|
|
info.dwFlags |= CR_INST_AUTO_THREAD_HANDLERS;
|
|
|
|
|
|
|
|
// Define the Privacy Policy URL
|
|
|
|
info.pszPrivacyPolicyURL = "http://flightgear.org/crash-privacypolicy.html";
|
|
|
|
|
|
|
|
// Install crash reporting
|
|
|
|
int nResult = crInstall(&info);
|
|
|
|
if(nResult!=0) {
|
2014-01-22 22:33:30 +00:00
|
|
|
char buf[1024];
|
|
|
|
crGetLastErrorMsg(buf, 1024);
|
|
|
|
flightgear::modalMessageBox("CrashRpt setup failed",
|
|
|
|
"Failed to setup crash-reporting engine, check the installation is not damaged.",
|
|
|
|
buf);
|
2014-01-18 14:50:31 +00:00
|
|
|
} else {
|
2014-01-22 22:33:30 +00:00
|
|
|
global_crashRptEnabled = true;
|
|
|
|
|
2014-01-20 21:54:06 +00:00
|
|
|
crAddProperty("hudson-build-id", HUDSON_BUILD_ID);
|
|
|
|
char buf[16];
|
|
|
|
::snprintf(buf, 16, "%d", HUDSON_BUILD_NUMBER);
|
|
|
|
crAddProperty("hudson-build-number", buf);
|
2014-01-18 14:50:31 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
initFPE(flightgear::Options::checkForArg(argc, argv, "enable-fpe"));
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
bool fgviewer = flightgear::Options::checkForArg(argc, argv, "fgviewer");
|
2003-08-17 09:54:41 +00:00
|
|
|
try {
|
2013-10-15 21:02:36 +00:00
|
|
|
// http://code.google.com/p/flightgear-bugs/issues/detail?id=1231
|
|
|
|
// ensure sglog is inited before atexit() is registered, so logging
|
|
|
|
// is possible inside fgExitCleanup
|
|
|
|
sglog();
|
|
|
|
|
2014-01-04 17:27:55 +00:00
|
|
|
// similar to above, ensure some static maps inside OSG exist before
|
|
|
|
// we register our at-exit handler, otherwise the statics are gone
|
|
|
|
// when fg_terminate runs, which causes crashes.
|
|
|
|
osg::Texture::getTextureObjectManager(0);
|
|
|
|
osg::GLBufferObjectManager::getGLBufferObjectManager(0);
|
|
|
|
|
2007-05-13 08:43:40 +00:00
|
|
|
std::set_terminate(fg_terminate);
|
2004-08-24 08:40:41 +00:00
|
|
|
atexit(fgExitCleanup);
|
2009-08-10 21:43:55 +00:00
|
|
|
if (fgviewer)
|
|
|
|
fgviewerMain(argc, argv);
|
|
|
|
else
|
|
|
|
fgMainInit(argc, argv);
|
2014-01-18 14:50:31 +00:00
|
|
|
|
2006-02-23 12:55:57 +00:00
|
|
|
} catch (const sg_throwable &t) {
|
2013-11-06 23:49:58 +00:00
|
|
|
std::string info;
|
2009-06-16 08:41:17 +00:00
|
|
|
if (std::strlen(t.getOrigin()) != 0)
|
2013-11-06 23:49:58 +00:00
|
|
|
info = std::string("received from ") + t.getOrigin();
|
|
|
|
flightgear::fatalMessageBox("Fatal exception", t.getFormattedMessage(), info);
|
2005-06-12 16:01:49 +00:00
|
|
|
|
2013-03-04 22:13:36 +00:00
|
|
|
} catch (const std::exception &e ) {
|
2013-11-06 23:49:58 +00:00
|
|
|
flightgear::fatalMessageBox("Fatal exception", e.what());
|
2012-08-21 16:07:47 +00:00
|
|
|
} catch (const std::string &s) {
|
2013-11-06 23:49:58 +00:00
|
|
|
flightgear::fatalMessageBox("Fatal exception", s);
|
2007-05-10 12:50:50 +00:00
|
|
|
} catch (const char *s) {
|
2014-02-19 21:53:52 +00:00
|
|
|
std::cerr << "Fatal error (const char*): " << s << std::endl;
|
2007-05-10 12:50:50 +00:00
|
|
|
|
2008-07-17 21:32:20 +00:00
|
|
|
} catch (...) {
|
2014-02-19 21:53:52 +00:00
|
|
|
std::cerr << "Unknown exception in the main loop. Aborting..." << std::endl;
|
2005-12-22 23:32:23 +00:00
|
|
|
if (errno)
|
|
|
|
perror("Possible cause");
|
2008-07-17 21:32:20 +00:00
|
|
|
}
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2014-01-18 14:50:31 +00:00
|
|
|
#if defined(HAVE_CRASHRPT)
|
|
|
|
crUninstall();
|
|
|
|
#endif
|
|
|
|
|
2003-08-17 09:54:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-21 16:07:47 +00:00
|
|
|
// do some clean up on exit. Specifically we want to delete the sound-manager,
|
|
|
|
// so OpenAL device and context are released cleanly
|
2004-08-24 08:40:41 +00:00
|
|
|
void fgExitCleanup() {
|
|
|
|
|
2014-01-04 17:27:55 +00:00
|
|
|
if (_bootstrap_OSInit != 0) {
|
2004-08-24 08:40:41 +00:00
|
|
|
fgSetMouseCursor(MOUSE_CURSOR_POINTER);
|
|
|
|
|
2014-01-04 17:27:55 +00:00
|
|
|
fgOSCloseWindow();
|
|
|
|
}
|
|
|
|
|
2013-10-15 21:02:36 +00:00
|
|
|
// on the common exit path globals is already deleted, and NULL,
|
|
|
|
// so this only happens on error paths.
|
2005-05-04 21:31:16 +00:00
|
|
|
delete globals;
|
2004-08-24 08:40:41 +00:00
|
|
|
}
|
2003-08-17 09:54:41 +00:00
|
|
|
|