Files
pokerth/src/pokerth_server.cpp
T

180 lines
5.5 KiB
C++
Raw Normal View History

/***************************************************************************
* Copyright (C) 2007 by Lothar May *
* *
* 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, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <net/netpacket.h>
#include "session.h"
#include "configfile.h"
#include <qttoolsinterface.h>
#include <gui/generic/serverguiwrapper.h>
#include <net/socket_startup.h>
#include <core/loghelper.h>
#include <core/thread.h>
#include <boost/program_options.hpp>
#include <boost/filesystem.hpp>
#include <iostream>
2008-02-10 13:35:13 +00:00
#include <fstream>
#include <csignal>
#ifdef _MSC_VER
#ifdef _DEBUG
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
#define ENABLE_LEAK_CHECK() \
{ \
int tmpFlag = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG); \
tmpFlag |= _CRTDBG_LEAK_CHECK_DF; \
_CrtSetDbgFlag(tmpFlag); \
}
#endif
#endif
#ifndef ENABLE_LEAK_CHECK
#define ENABLE_LEAK_CHECK()
#endif
using namespace std;
namespace po = boost::program_options;
using namespace boost::filesystem;
volatile int g_pokerthTerminate = 0;
void
TerminateHandler(int /*signal*/)
{
g_pokerthTerminate = 1;
}
// TODO: Hack
#ifdef _WIN32
#include <process.h>
#else
#include <unistd.h>
#ifndef daemon
int daemon(int, int);
#endif
#endif
int
main(int argc, char *argv[])
{
ENABLE_LEAK_CHECK();
2011-02-28 23:06:23 +00:00
//_CrtSetBreakAlloc(10260);
bool readonlyConfig = false;
string pidFile;
2008-03-19 23:39:59 +00:00
int logLevel = 1;
{
// Check command line options.
po::options_description desc("Allowed options");
desc.add_options()
("help,h", "produce help message")
("version,v", "print version string")
("log-level,l", po::value<int>(), "set log level (0=minimal, 1=default, 2=verbose)")
("pid-file,p", po::value<string>(), "create pid-file in different location")
("readonly-config", "treat config file as read-only")
;
2008-02-10 12:48:49 +00:00
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
if (vm.count("help")) {
2008-02-10 12:48:49 +00:00
cout << desc << endl;
return 1;
}
if (vm.count("version")) {
cout << "PokerTH server version " << POKERTH_BETA_RELEASE_STRING << endl
<< "Network protocol version " << NET_VERSION_MAJOR << "." << NET_VERSION_MINOR << endl;
return 1;
}
if (vm.count("log-level")) {
2008-03-19 23:39:59 +00:00
logLevel = vm["log-level"].as<int>();
if (logLevel < 0 || logLevel > 2) {
2008-05-21 17:31:09 +00:00
cout << "Invalid log-level: \"" << logLevel << "\", allowed range 0-2." << endl;
2008-03-19 23:39:59 +00:00
return 1;
}
}
if (vm.count("pid-file"))
pidFile = vm["pid-file"].as<string>();
if (vm.count("readonly-config"))
readonlyConfig = true;
}
2011-02-28 23:06:23 +00:00
boost::shared_ptr<QtToolsInterface> myQtToolsInterface(CreateQtToolsWrapper());
//create defaultconfig
2011-02-28 23:06:23 +00:00
boost::shared_ptr<ConfigFile> myConfig(new ConfigFile(argv[0], readonlyConfig));
2008-03-19 23:39:59 +00:00
loghelper_init(myQtToolsInterface->stringFromUtf8(myConfig->readConfigString("LogDir")), logLevel);
// TODO: Hack
#ifndef _WIN32
if (daemon(0, 0) != 0) {
2011-01-14 23:21:36 +00:00
cout << "Failed to start daemon." << endl;
return 1;
}
#endif
signal(SIGTERM, TerminateHandler);
signal(SIGINT, TerminateHandler);
socket_startup();
LOG_MSG("Starting PokerTH dedicated server. Availability: IPv6 "
<< socket_has_ipv6() << ", SCTP " << socket_has_sctp() << ", Dual Stack " << socket_has_dual_stack() << ".");
// Store pid in file.
if (pidFile.empty()) {
path tmpPidPath(myConfig->readConfigString("LogDir"));
tmpPidPath /= "pokerth.pid";
pidFile = tmpPidPath.directory_string();
}
{
ofstream pidStream(pidFile.c_str(), ios_base::out | ios_base::trunc);
if (!pidStream.fail())
pidStream << _getpid();
else
LOG_ERROR("Could not create process id file \"" << pidFile << "\"!");
}
// Create pseudo Gui Wrapper for the server.
2011-02-28 23:06:23 +00:00
boost::shared_ptr<GuiInterface> myServerGuiInterface(new ServerGuiWrapper(myConfig.get(), NULL, NULL, NULL));
boost::shared_ptr<Session> session(new Session(myServerGuiInterface.get(), myConfig.get()));
if (!session->init())
LOG_ERROR("Missing files - please check your directory settings!");
myServerGuiInterface->setSession(session);
myServerGuiInterface->getSession()->startNetworkServer(true);
while (!g_pokerthTerminate) {
Thread::Msleep(100);
2008-10-07 21:16:27 +00:00
if (myServerGuiInterface->getSession()->pollNetworkServerTerminated())
g_pokerthTerminate = true;
}
2008-10-07 21:16:27 +00:00
myServerGuiInterface->getSession()->terminateNetworkServer();
2011-02-28 23:06:23 +00:00
session.reset();
myServerGuiInterface.reset();
myConfig.reset();
LOG_MSG("Terminating PokerTH dedicated server." << endl);
socket_cleanup();
return 0;
}