mirror of
https://github.com/kunkundi/crossdesk.git
synced 2025-12-17 12:42:51 +08:00
39 lines
600 B
C++
39 lines
600 B
C++
/*
|
|
* @Author: DI JUNKUN
|
|
* @Date: 2025-11-19
|
|
* Copyright (c) 2025 by DI JUNKUN, All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef _DAEMON_H_
|
|
#define _DAEMON_H_
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
#define DAEMON_DEFAULT_RESTART_DELAY_MS 1000
|
|
|
|
class Daemon {
|
|
public:
|
|
using MainLoopFunc = std::function<void()>;
|
|
|
|
Daemon(const std::string& name);
|
|
|
|
bool start(MainLoopFunc loop);
|
|
|
|
void stop();
|
|
|
|
bool isRunning() const;
|
|
|
|
private:
|
|
std::string name_;
|
|
bool runWithRestart(MainLoopFunc loop);
|
|
|
|
#ifdef _WIN32
|
|
bool running_;
|
|
#else
|
|
static Daemon* instance_;
|
|
volatile bool running_;
|
|
#endif
|
|
};
|
|
|
|
#endif |