icinga2/lib/base/application.cpp

758 lines
17 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2013-09-25 07:43:57 +02:00
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
* *
* 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 Foundation *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
2013-03-16 21:18:53 +01:00
#include "base/application.h"
#include "base/stacktrace.h"
#include "base/timer.h"
#include "base/logger_fwd.h"
#include "base/exception.h"
#include "base/objectlock.h"
2013-03-18 11:02:18 +01:00
#include "base/utility.h"
2013-08-28 08:18:58 +02:00
#include "base/debug.h"
#include "base/type.h"
#include "base/scriptvariable.h"
2013-11-03 13:45:26 +01:00
#include "icinga-version.h"
2013-03-16 21:18:53 +01:00
#include <sstream>
2013-03-15 18:21:29 +01:00
#include <boost/algorithm/string/classification.hpp>
#include <boost/thread/thread.hpp>
#include <boost/bind.hpp>
2013-03-16 21:18:53 +01:00
#include <boost/make_shared.hpp>
#include <boost/foreach.hpp>
2013-03-18 11:02:18 +01:00
#include <boost/algorithm/string/split.hpp>
2013-03-18 17:04:22 +01:00
#include <boost/exception/errinfo_api_function.hpp>
#include <boost/exception/errinfo_errno.hpp>
#include <boost/exception/errinfo_file_name.hpp>
2013-03-17 22:14:40 +01:00
#include <iostream>
2012-03-28 13:24:49 +02:00
using namespace icinga;
REGISTER_TYPE(Application);
Application *Application::m_Instance = NULL;
2012-07-10 12:21:19 +02:00
bool Application::m_ShuttingDown = false;
2013-08-30 14:27:24 +02:00
bool Application::m_Restarting = false;
2012-07-10 12:21:19 +02:00
bool Application::m_Debugging = false;
int Application::m_ArgC;
char **Application::m_ArgV;
2013-10-26 09:41:45 +02:00
double Application::m_StartTime;
2012-03-28 13:24:49 +02:00
2012-04-24 14:02:15 +02:00
/**
* Constructor for the Application class.
*/
void Application::OnConfigLoaded(void)
2012-03-28 13:24:49 +02:00
{
m_PidFile = NULL;
2012-03-28 13:24:49 +02:00
#ifdef _WIN32
/* disable GUI-based error messages for LoadLibrary() */
SetErrorMode(SEM_FAILCRITICALERRORS);
2012-03-28 13:24:49 +02:00
WSADATA wsaData;
2013-03-11 14:03:01 +01:00
if (WSAStartup(MAKEWORD(1, 1), &wsaData) != 0) {
BOOST_THROW_EXCEPTION(win32_error()
2013-03-18 17:04:22 +01:00
<< boost::errinfo_api_function("WSAStartup")
2013-03-18 22:40:40 +01:00
<< errinfo_win32_error(WSAGetLastError()));
2013-03-11 14:03:01 +01:00
}
#endif /* _WIN32 */
2012-03-28 13:24:49 +02:00
2012-04-18 15:22:25 +02:00
#ifdef _WIN32
if (IsDebuggerPresent())
m_Debugging = true;
#endif /* _WIN32 */
ASSERT(m_Instance == NULL);
m_Instance = this;
2012-03-28 13:24:49 +02:00
}
2012-04-24 14:02:15 +02:00
/**
* Destructor for the application class.
*/
void Application::Stop(void)
2012-03-28 13:24:49 +02:00
{
2012-05-25 22:04:03 +02:00
m_ShuttingDown = true;
#ifdef _WIN32
WSACleanup();
#endif /* _WIN32 */
ClosePidFile();
2012-03-28 13:24:49 +02:00
}
Application::~Application(void)
{
m_Instance = NULL;
}
/**
* Retrieves a pointer to the application singleton object.
*
* @returns The application object.
*/
2013-03-02 09:07:47 +01:00
Application::Ptr Application::GetInstance(void)
{
if (!m_Instance)
return Application::Ptr();
2013-03-02 09:07:47 +01:00
return m_Instance->GetSelf();
}
int Application::GetArgC(void)
{
return m_ArgC;
}
void Application::SetArgC(int argc)
{
m_ArgC = argc;
}
char **Application::GetArgV(void)
{
return m_ArgV;
}
void Application::SetArgV(char **argv)
{
m_ArgV = argv;
}
2012-04-24 14:02:15 +02:00
/**
2012-05-18 22:53:35 +02:00
* Processes events for registered sockets and timers and calls whatever
* handlers have been set up for these events.
2012-04-24 14:02:15 +02:00
*/
void Application::RunEventLoop(void) const
2012-03-28 13:24:49 +02:00
{
/* Start the system time watch thread. */
2013-03-15 18:21:29 +01:00
boost::thread t(&Application::TimeWatchThreadProc);
t.detach();
2012-09-25 14:03:41 +02:00
2013-02-19 23:02:08 +01:00
Timer::Initialize();
2013-10-17 10:56:42 +02:00
while (!m_ShuttingDown && !m_Restarting)
Utility::Sleep(0.5);
Log(LogInformation, "base", "Shutting down Icinga...");
Application::GetInstance()->OnShutdown();
#ifdef _DEBUG
DynamicObject::StopObjects();
GetTP().Stop();
m_ShuttingDown = false;
2013-03-25 18:36:15 +01:00
GetTP().Join();
2013-02-19 23:02:08 +01:00
Timer::Uninitialize();
2013-10-17 10:56:42 +02:00
#endif /* _DEBUG */
}
void Application::OnShutdown(void)
{
/* Nothing to do here. */
}
/**
* Watches for changes to the system time. Adjusts timers if necessary.
*/
void Application::TimeWatchThreadProc(void)
{
Utility::SetThreadName("Time Watch");
double lastLoop = Utility::GetTime();
for (;;) {
Utility::Sleep(5);
2012-09-25 14:03:41 +02:00
double now = Utility::GetTime();
double timeDiff = lastLoop - now;
2012-09-25 14:03:41 +02:00
if (abs(timeDiff) > 15) {
/* We made a significant jump in time. */
2013-03-16 21:18:53 +01:00
std::ostringstream msgbuf;
msgbuf << "We jumped "
2012-09-25 15:33:51 +02:00
<< (timeDiff < 0 ? "forward" : "backward")
<< " in time: " << abs(timeDiff) << " seconds";
2013-03-16 21:18:53 +01:00
Log(LogInformation, "base", msgbuf.str());
2013-02-17 19:14:34 +01:00
Timer::AdjustTimers(-timeDiff);
2012-09-25 14:03:41 +02:00
}
lastLoop = now;
2012-03-28 13:24:49 +02:00
}
}
2012-04-24 14:02:15 +02:00
/**
* Signals the application to shut down during the next
* execution of the event loop.
*/
void Application::RequestShutdown(void)
2012-03-28 13:24:49 +02:00
{
m_ShuttingDown = true;
}
2013-08-30 14:27:24 +02:00
/**
* Signals the application to restart during the next
* execution of the event loop.
*/
void Application::RequestRestart(void)
{
m_Restarting = true;
}
2012-04-24 14:02:15 +02:00
/**
2012-07-10 13:31:17 +02:00
* Retrieves the full path of the executable.
2012-04-24 14:02:15 +02:00
*
* @param argv0 The first command-line argument.
2012-07-10 13:31:17 +02:00
* @returns The path.
2012-04-24 14:02:15 +02:00
*/
String Application::GetExePath(const String& argv0)
2012-04-02 13:09:33 +02:00
{
String executablePath;
2012-04-02 13:09:33 +02:00
#ifndef _WIN32
char buffer[MAXPATHLEN];
2013-03-11 13:45:08 +01:00
if (getcwd(buffer, sizeof(buffer)) == NULL) {
BOOST_THROW_EXCEPTION(posix_error()
2013-03-18 17:04:22 +01:00
<< boost::errinfo_api_function("getcwd")
<< boost::errinfo_errno(errno));
2013-03-11 13:45:08 +01:00
}
String workingDirectory = buffer;
2012-04-02 13:09:33 +02:00
if (argv0[0] != '/')
executablePath = workingDirectory + "/" + argv0;
2012-04-02 13:09:33 +02:00
else
executablePath = argv0;
2012-04-02 13:09:33 +02:00
bool foundSlash = false;
2012-08-04 09:58:31 +02:00
for (size_t i = 0; i < argv0.GetLength(); i++) {
if (argv0[i] == '/') {
foundSlash = true;
break;
}
}
if (!foundSlash) {
const char *pathEnv = getenv("PATH");
if (pathEnv != NULL) {
2013-03-16 21:18:53 +01:00
std::vector<String> paths;
boost::algorithm::split(paths, pathEnv, boost::is_any_of(":"));
2012-04-02 13:09:33 +02:00
bool foundPath = false;
BOOST_FOREACH(String& path, paths) {
String pathTest = path + "/" + argv0;
2012-04-02 13:09:33 +02:00
if (access(pathTest.CStr(), X_OK) == 0) {
executablePath = pathTest;
foundPath = true;
2012-04-02 13:09:33 +02:00
break;
}
}
if (!foundPath) {
executablePath.Clear();
2013-03-16 21:18:53 +01:00
BOOST_THROW_EXCEPTION(std::runtime_error("Could not determine executable path."));
}
2012-04-02 13:09:33 +02:00
}
}
2013-03-11 13:45:08 +01:00
if (realpath(executablePath.CStr(), buffer) == NULL) {
BOOST_THROW_EXCEPTION(posix_error()
2013-03-18 17:04:22 +01:00
<< boost::errinfo_api_function("realpath")
<< boost::errinfo_errno(errno)
<< boost::errinfo_file_name(executablePath));
2013-03-11 13:45:08 +01:00
}
2012-04-02 13:09:33 +02:00
return buffer;
2012-04-02 13:09:33 +02:00
#else /* _WIN32 */
char FullExePath[MAXPATHLEN];
if (!GetModuleFileName(NULL, FullExePath, sizeof(FullExePath)))
2013-03-11 14:03:01 +01:00
BOOST_THROW_EXCEPTION(win32_error()
2013-03-18 17:04:22 +01:00
<< boost::errinfo_api_function("GetModuleFileName")
2013-03-18 22:40:40 +01:00
<< errinfo_win32_error(GetLastError()));
2012-04-02 13:09:33 +02:00
return FullExePath;
2012-04-02 13:09:33 +02:00
#endif /* _WIN32 */
}
/**
* Sets whether debugging is enabled.
*
* @param debug Whether to enable debugging.
*/
void Application::SetDebugging(bool debug)
{
m_Debugging = debug;
}
2012-04-24 14:02:15 +02:00
/**
* Retrieves the debugging mode of the application.
*
* @returns true if the application is being debugged, false otherwise
*/
bool Application::IsDebugging(void)
{
return m_Debugging;
}
2012-04-03 19:49:56 +02:00
2013-11-15 09:04:39 +01:00
/**
* Display version information.
*/
void Application::DisplayVersionMessage(void)
{
std::cerr << "***" << std::endl
<< "* Application version: " << GetVersion() << std::endl
<< "* Installation root: " << GetPrefixDir() << std::endl
<< "* Sysconf directory: " << GetSysconfDir() << std::endl
2013-11-15 09:04:39 +01:00
<< "* Local state directory: " << GetLocalStateDir() << std::endl
<< "* Package data directory: " << GetPkgDataDir() << std::endl
<< "* State path: " << GetStatePath() << std::endl
<< "* PID path: " << GetPidPath() << std::endl
<< "* Application type: " << GetApplicationType() << std::endl
<< "***" << std::endl;
}
2013-02-01 19:36:47 +01:00
/**
* Displays a message that tells users what to do when they encounter a bug.
*/
void Application::DisplayBugMessage(void)
{
std::cerr << "***" << std::endl
2013-11-15 09:04:39 +01:00
<< "* This would indicate a runtime problem or configuration error. If you believe this is a bug in Icinga 2" << std::endl
<< "* please submit a bug report at https://dev.icinga.org/ and include this stack trace as well as any other" << std::endl
<< "* information that might be useful in order to reproduce this problem." << std::endl
<< "***" << std::endl;
2013-02-01 19:36:47 +01:00
}
2012-04-22 16:45:31 +02:00
#ifndef _WIN32
2012-04-24 14:02:15 +02:00
/**
* Signal handler for SIGINT and SIGTERM. Prepares the application for cleanly
2012-05-18 22:53:35 +02:00
* shutting down during the next execution of the event loop.
2012-04-24 14:02:15 +02:00
*
* @param - The signal number.
2012-04-24 14:02:15 +02:00
*/
void Application::SigIntTermHandler(int signum)
2012-04-03 19:49:56 +02:00
{
2013-03-06 11:03:50 +01:00
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = SIG_DFL;
sigaction(signum, &sa, NULL);
2013-03-06 11:03:50 +01:00
2013-03-02 09:07:47 +01:00
Application::Ptr instance = Application::GetInstance();
if (!instance)
return;
instance->RequestShutdown();
}
/**
* Signal handler for SIGABRT. Helps with debugging ASSERT()s.
*
* @param - The signal number.
*/
void Application::SigAbrtHandler(int)
{
#ifndef _WIN32
2013-03-06 11:03:50 +01:00
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = SIG_DFL;
sigaction(SIGABRT, &sa, NULL);
#endif /* _WIN32 */
2013-03-06 11:03:50 +01:00
2013-11-15 09:04:39 +01:00
std::cerr << "Caught SIGABRT." << std::endl
<< std::endl;
DisplayVersionMessage();
2013-03-07 15:16:01 +01:00
StackTrace trace;
std::cerr << "Stacktrace:" << std::endl;
2013-03-07 15:16:01 +01:00
trace.Print(std::cerr, 1);
DisplayBugMessage();
}
#else /* _WIN32 */
/**
* Console control handler. Prepares the application for cleanly
* shutting down during the next execution of the event loop.
*/
BOOL WINAPI Application::CtrlHandler(DWORD type)
{
2013-03-02 09:07:47 +01:00
Application::Ptr instance = Application::GetInstance();
if (!instance)
return TRUE;
2013-03-01 12:07:52 +01:00
instance->RequestShutdown();
SetConsoleCtrlHandler(NULL, FALSE);
return TRUE;
}
2012-04-22 16:45:31 +02:00
#endif /* _WIN32 */
/**
* Handler for unhandled exceptions.
*/
void Application::ExceptionHandler(void)
{
2013-03-06 11:03:50 +01:00
#ifndef _WIN32
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = SIG_DFL;
sigaction(SIGABRT, &sa, NULL);
#endif /* _WIN32 */
2013-11-15 09:04:39 +01:00
std::cerr << "Caught unhandled exception." << std::endl
<< std::endl;
DisplayVersionMessage();
try {
throw;
} catch (const std::exception& ex) {
std::cerr << std::endl
<< DiagnosticInformation(ex)
<< std::endl;
}
DisplayBugMessage();
abort();
}
#ifdef _WIN32
LONG CALLBACK Application::SEHUnhandledExceptionFilter(PEXCEPTION_POINTERS exi)
{
2013-11-15 09:04:39 +01:00
DisplayVersionMessage();
std::cerr << "Caught unhandled SEH exception." << std::endl
<< std::endl;
StackTrace trace(exi);
std::cerr << "Stacktrace:" << std::endl;
trace.Print(std::cerr, 1);
DisplayBugMessage();
return EXCEPTION_CONTINUE_SEARCH;
}
2013-03-09 12:56:40 +01:00
#endif /* _WIN32 */
/**
* Installs the exception handlers.
*/
void Application::InstallExceptionHandlers(void)
{
std::set_terminate(&Application::ExceptionHandler);
#ifndef _WIN32
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = &Application::SigAbrtHandler;
sigaction(SIGABRT, &sa, NULL);
#else /* _WIN32 */
SetUnhandledExceptionFilter(&Application::SEHUnhandledExceptionFilter);
#endif /* _WIN32 */
}
2012-04-24 14:02:15 +02:00
/**
* Runs the application.
2012-04-24 14:02:15 +02:00
*
* @returns The application's exit code.
*/
int Application::Run(void)
{
int result;
#ifndef _WIN32
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = &Application::SigIntTermHandler;
sigaction(SIGINT, &sa, NULL);
sigaction(SIGTERM, &sa, NULL);
sa.sa_handler = SIG_IGN;
sigaction(SIGPIPE, &sa, NULL);
#else /* _WIN32 */
SetConsoleCtrlHandler(&Application::CtrlHandler, TRUE);
#endif /* _WIN32 */
2013-09-10 16:03:36 +02:00
UpdatePidFile(GetPidPath());
result = Main();
2013-08-30 14:27:24 +02:00
if (m_Restarting) {
Log(LogInformation, "base", "Restarting application.");
#ifndef _WIN32
String exePath = GetExePath(m_ArgV[0]);
int fdcount = getdtablesize();
for (int i = 3; i < fdcount; i++)
(void) close(i);
2013-08-30 14:27:24 +02:00
(void) execv(exePath.CStr(), m_ArgV);
#else /* _WIN32 */
STARTUPINFO si;
2013-09-01 06:01:27 +02:00
PROCESS_INFORMATION pi;
2013-08-30 14:27:24 +02:00
memset(&si, 0, sizeof(si));
si.cb = sizeof(si);
CreateProcess(NULL, GetCommandLine(), NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi);
#endif /* _WIN32 */
_exit(0);
}
return result;
2012-04-16 16:27:41 +02:00
}
2012-09-14 14:41:17 +02:00
/**
* Grabs the PID file lock and updates the PID. Terminates the application
* if the PID file is already locked by another instance of the application.
2012-09-14 14:41:17 +02:00
*
* @param filename The name of the PID file.
*/
void Application::UpdatePidFile(const String& filename)
{
ASSERT(!OwnsLock());
2013-03-02 09:07:47 +01:00
ObjectLock olock(this);
2013-03-04 15:52:42 +01:00
if (m_PidFile != NULL)
fclose(m_PidFile);
/* There's just no sane way of getting a file descriptor for a
* C++ ofstream which is why we're using FILEs here. */
m_PidFile = fopen(filename.CStr(), "r+");
if (m_PidFile == NULL)
m_PidFile = fopen(filename.CStr(), "w");
if (m_PidFile == NULL)
2013-03-16 21:18:53 +01:00
BOOST_THROW_EXCEPTION(std::runtime_error("Could not open PID file '" + filename + "'"));
2013-02-13 12:47:51 +01:00
#ifndef _WIN32
2013-03-02 09:07:47 +01:00
int fd = fileno(m_PidFile);
Utility::SetCloExec(fd);
struct flock lock;
lock.l_start = 0;
lock.l_len = 0;
lock.l_type = F_WRLCK;
lock.l_whence = SEEK_SET;
if (fcntl(fd, F_SETLK, &lock) < 0) {
2013-03-16 21:18:53 +01:00
Log(LogCritical, "base", "Could not lock PID file. Make sure that only one instance of the application is running.");
2013-03-02 09:07:47 +01:00
_exit(EXIT_FAILURE);
}
2013-08-28 10:48:19 +02:00
if (ftruncate(fd, 0) < 0) {
BOOST_THROW_EXCEPTION(posix_error()
<< boost::errinfo_api_function("ftruncate")
<< boost::errinfo_errno(errno));
}
2012-07-13 15:29:39 +02:00
#endif /* _WIN32 */
fprintf(m_PidFile, "%d", Utility::GetPid());
fflush(m_PidFile);
}
2012-09-14 14:41:17 +02:00
/**
* Closes the PID file. Does nothing if the PID file is not currently open.
*/
void Application::ClosePidFile(void)
{
ASSERT(!OwnsLock());
2013-03-02 09:07:47 +01:00
ObjectLock olock(this);
if (m_PidFile != NULL)
fclose(m_PidFile);
m_PidFile = NULL;
}
/**
* Retrieves the path of the installation prefix.
*
* @returns The path.
*/
String Application::GetPrefixDir(void)
{
return ScriptVariable::Get("IcingaPrefixDir");
}
/**
* Sets the path for the installation prefix.
*
* @param path The new path.
*/
2013-11-03 13:45:26 +01:00
void Application::DeclarePrefixDir(const String& path)
{
ScriptVariable::Set("IcingaPrefixDir", path, false);
}
/**
* Retrives the path of the sysconf dir.
*
* @returns The path.
*/
String Application::GetSysconfDir(void)
{
return ScriptVariable::Get("IcingaSysconfDir");
}
/**
* Sets the path of the sysconf dir.
*
* @param path The new path.
*/
void Application::DeclareSysconfDir(const String& path)
{
ScriptVariable::Set("IcingaSysconfDir", path, false);
}
/**
* Retrieves the path for the local state dir.
*
* @returns The path.
*/
String Application::GetLocalStateDir(void)
{
return ScriptVariable::Get("IcingaLocalStateDir");
}
/**
* Sets the path for the local state dir.
*
* @param path The new path.
*/
2013-11-03 13:45:26 +01:00
void Application::DeclareLocalStateDir(const String& path)
{
ScriptVariable::Set("IcingaLocalStateDir", path, false);
}
/**
* Retrieves the path for the package data dir.
*
* @returns The path.
*/
String Application::GetPkgDataDir(void)
{
return ScriptVariable::Get("IcingaPkgDataDir");
}
/**
* Sets the path for the package data dir.
*
* @param path The new path.
*/
2013-11-03 13:45:26 +01:00
void Application::DeclarePkgDataDir(const String& path)
{
ScriptVariable::Set("IcingaPkgDataDir", path, false);
}
/**
* Retrieves the path for the state file.
*
* @returns The path.
*/
String Application::GetStatePath(void)
{
return ScriptVariable::Get("IcingaStatePath");
}
/**
2013-09-10 16:03:36 +02:00
* Sets the path for the state file.
*
* @param path The new path.
*/
2013-11-03 13:45:26 +01:00
void Application::DeclareStatePath(const String& path)
{
ScriptVariable::Set("IcingaStatePath", path, false);
}
2013-09-10 16:03:36 +02:00
/**
* Retrieves the path for the PID file.
*
* @returns The path.
*/
String Application::GetPidPath(void)
{
return ScriptVariable::Get("IcingaPidPath");
}
/**
* Sets the path for the PID file.
*
* @param path The new path.
*/
2013-11-03 13:45:26 +01:00
void Application::DeclarePidPath(const String& path)
2013-09-10 16:03:36 +02:00
{
ScriptVariable::Set("IcingaPidPath", path, false);
2013-09-10 16:03:36 +02:00
}
/**
* Retrieves the name of the Application type.
*
* @returns The name.
*/
String Application::GetApplicationType(void)
{
return ScriptVariable::Get("ApplicationType");
}
/**
* Sets the name of the Application type.
*
* @param path The new type name.
*/
2013-11-03 13:45:26 +01:00
void Application::DeclareApplicationType(const String& type)
2013-09-10 16:03:36 +02:00
{
ScriptVariable::Set("ApplicationType", type, false);
2013-09-10 16:03:36 +02:00
}
2013-02-15 06:47:26 +01:00
/**
2013-03-25 18:36:15 +01:00
* Returns the global thread pool.
2013-02-15 06:47:26 +01:00
*
2013-03-25 18:36:15 +01:00
* @returns The global thread pool.
2013-02-15 06:47:26 +01:00
*/
2013-03-25 18:36:15 +01:00
ThreadPool& Application::GetTP(void)
2013-02-15 06:47:26 +01:00
{
2013-03-25 18:36:15 +01:00
static ThreadPool tp;
return tp;
2013-02-15 06:47:26 +01:00
}
String Application::GetVersion(void)
{
2013-11-03 13:45:26 +01:00
return VERSION;
}
2013-10-26 09:41:45 +02:00
double Application::GetStartTime(void)
{
return m_StartTime;
}
void Application::SetStartTime(double ts)
{
m_StartTime = ts;
}