2024-02-10 23:56:02 +02:00
|
|
|
/*
|
|
|
|
* ServerRunner.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class CVCMIServer;
|
2024-03-01 11:57:48 +02:00
|
|
|
struct StartInfo;
|
2024-02-10 23:56:02 +02:00
|
|
|
|
|
|
|
class IServerRunner
|
|
|
|
{
|
|
|
|
public:
|
2024-03-01 11:57:48 +02:00
|
|
|
virtual void start(uint16_t port, bool connectToLobby, std::shared_ptr<StartInfo> startingInfo) = 0;
|
2024-02-11 15:38:29 +02:00
|
|
|
virtual void shutdown() = 0;
|
|
|
|
virtual void wait() = 0;
|
|
|
|
virtual int exitCode() = 0;
|
2024-02-10 23:56:02 +02:00
|
|
|
|
|
|
|
virtual ~IServerRunner() = default;
|
|
|
|
};
|
|
|
|
|
2024-02-11 15:38:29 +02:00
|
|
|
/// Class that runs server instance as a thread of client process
|
2024-02-10 23:56:02 +02:00
|
|
|
class ServerThreadRunner : public IServerRunner, boost::noncopyable
|
|
|
|
{
|
|
|
|
std::unique_ptr<CVCMIServer> server;
|
|
|
|
boost::thread threadRunLocalServer;
|
|
|
|
public:
|
2024-03-01 11:57:48 +02:00
|
|
|
void start(uint16_t port, bool connectToLobby, std::shared_ptr<StartInfo> startingInfo) override;
|
2024-02-11 15:38:29 +02:00
|
|
|
void shutdown() override;
|
|
|
|
void wait() override;
|
|
|
|
int exitCode() override;
|
2024-02-10 23:56:02 +02:00
|
|
|
|
|
|
|
ServerThreadRunner();
|
|
|
|
~ServerThreadRunner();
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifndef VCMI_MOBILE
|
|
|
|
|
|
|
|
namespace boost::process {
|
|
|
|
class child;
|
|
|
|
}
|
|
|
|
|
2024-02-11 15:38:29 +02:00
|
|
|
/// Class that runs server instance as a child process
|
|
|
|
/// Available only on desktop systems where process management is allowed
|
2024-02-10 23:56:02 +02:00
|
|
|
class ServerProcessRunner : public IServerRunner, boost::noncopyable
|
|
|
|
{
|
|
|
|
std::unique_ptr<boost::process::child> child;
|
|
|
|
|
|
|
|
public:
|
2024-03-01 11:57:48 +02:00
|
|
|
void start(uint16_t port, bool connectToLobby, std::shared_ptr<StartInfo> startingInfo) override;
|
2024-02-11 15:38:29 +02:00
|
|
|
void shutdown() override;
|
|
|
|
void wait() override;
|
|
|
|
int exitCode() override;
|
2024-02-10 23:56:02 +02:00
|
|
|
|
|
|
|
ServerProcessRunner();
|
|
|
|
~ServerProcessRunner();
|
|
|
|
};
|
|
|
|
#endif
|