1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-24 22:44:15 +00:00
i2pd/Daemon.h

80 lines
1.3 KiB
C
Raw Normal View History

#ifndef DAEMON_H__
#define DAEMON_H__
2014-04-24 11:10:46 -04:00
#include <string>
2014-04-20 05:54:34 +04:00
#ifdef _WIN32
#define Daemon i2p::util::DaemonWin32::Instance()
#else
#define Daemon i2p::util::DaemonLinux::Instance()
#endif
2014-04-20 05:54:34 +04:00
namespace i2p
{
namespace util
{
class Daemon_Singleton_Private;
2014-04-20 05:54:34 +04:00
class Daemon_Singleton
{
public:
virtual bool init(int argc, char* argv[]);
2014-04-20 05:54:34 +04:00
virtual bool start();
virtual bool stop();
2016-03-08 15:02:32 -05:00
virtual void run () {};
2014-04-20 05:54:34 +04:00
bool isLogging;
bool isDaemon;
2016-03-09 14:41:14 -05:00
bool running;
2014-04-20 05:54:34 +04:00
protected:
Daemon_Singleton();
virtual ~Daemon_Singleton();
2016-03-09 14:41:14 -05:00
bool IsService () const;
2014-10-17 09:55:41 -04:00
// d-pointer for httpServer, httpProxy, etc.
class Daemon_Singleton_Private;
Daemon_Singleton_Private &d;
2014-04-20 05:54:34 +04:00
};
#ifdef _WIN32
class DaemonWin32 : public Daemon_Singleton
{
public:
static DaemonWin32& Instance()
{
static DaemonWin32 instance;
return instance;
}
2016-03-09 14:41:14 -05:00
bool init(int argc, char* argv[]);
bool start();
bool stop();
void run ();
2014-04-20 05:54:34 +04:00
};
#else
class DaemonLinux : public Daemon_Singleton
{
public:
static DaemonLinux& Instance()
{
static DaemonLinux instance;
return instance;
}
2016-03-08 15:02:32 -05:00
bool start();
bool stop();
; void run ();
2014-04-22 06:15:07 +02:00
private:
std::string pidfile;
2016-01-11 10:58:39 +00:00
int pidFH;
2014-04-22 06:15:07 +02:00
2014-04-20 05:54:34 +04:00
};
#endif
}
2014-04-22 06:15:07 +02:00
}
#endif // DAEMON_H__