2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2008-12-30 16:28:07 +01:00
|
|
|
|
2013-08-07 09:53:33 +02:00
|
|
|
#ifndef MPD_DAEMON_HXX
|
|
|
|
#define MPD_DAEMON_HXX
|
2008-12-30 16:28:07 +01:00
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
class AllocatedPath;
|
2013-08-07 19:54:38 +02:00
|
|
|
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifndef _WIN32
|
2009-01-18 18:29:27 +01:00
|
|
|
void
|
2013-10-17 21:59:35 +02:00
|
|
|
daemonize_init(const char *user, const char *group, AllocatedPath &&pidfile);
|
2009-07-19 08:18:23 +02:00
|
|
|
#else
|
|
|
|
static inline void
|
2013-10-17 21:59:35 +02:00
|
|
|
daemonize_init(const char *user, const char *group, AllocatedPath &&pidfile)
|
2009-07-19 08:18:23 +02:00
|
|
|
{ (void)user; (void)group; (void)pidfile; }
|
|
|
|
#endif
|
2009-01-18 18:29:27 +01:00
|
|
|
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifndef _WIN32
|
2009-01-18 18:29:27 +01:00
|
|
|
void
|
2015-03-03 20:05:08 +01:00
|
|
|
daemonize_finish();
|
2009-07-19 08:18:23 +02:00
|
|
|
#else
|
|
|
|
static inline void
|
2015-03-03 20:05:08 +01:00
|
|
|
daemonize_finish()
|
2009-07-19 08:18:23 +02:00
|
|
|
{ /* nop */ }
|
|
|
|
#endif
|
2009-01-18 18:29:27 +01:00
|
|
|
|
2009-01-18 17:15:34 +01:00
|
|
|
/**
|
|
|
|
* Kill the MPD which is currently running, pid determined from the
|
|
|
|
* pid file.
|
|
|
|
*/
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifndef _WIN32
|
2020-03-16 05:03:09 +01:00
|
|
|
[[noreturn]]
|
2009-01-18 17:15:34 +01:00
|
|
|
void
|
2015-03-03 20:05:08 +01:00
|
|
|
daemonize_kill();
|
2009-07-19 08:18:23 +02:00
|
|
|
#else
|
2018-08-01 20:20:29 +02:00
|
|
|
#include <stdexcept>
|
2020-03-16 05:03:09 +01:00
|
|
|
[[noreturn]]
|
2009-07-19 08:18:23 +02:00
|
|
|
static inline void
|
2015-03-03 20:05:08 +01:00
|
|
|
daemonize_kill()
|
2013-08-07 09:35:30 +02:00
|
|
|
{
|
2018-08-01 20:20:29 +02:00
|
|
|
throw std::runtime_error("--kill is not available on WIN32");
|
2013-08-07 09:35:30 +02:00
|
|
|
}
|
2009-07-19 08:18:23 +02:00
|
|
|
#endif
|
2009-01-18 17:15:34 +01:00
|
|
|
|
2008-12-30 16:28:13 +01:00
|
|
|
/**
|
|
|
|
* Close stdin (fd 0) and re-open it as /dev/null.
|
|
|
|
*/
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifndef _WIN32
|
2008-12-30 16:28:13 +01:00
|
|
|
void
|
2015-03-03 20:05:08 +01:00
|
|
|
daemonize_close_stdin();
|
2009-07-22 13:43:21 +02:00
|
|
|
#else
|
|
|
|
static inline void
|
2015-03-03 20:05:08 +01:00
|
|
|
daemonize_close_stdin() {}
|
2009-07-22 13:43:21 +02:00
|
|
|
#endif
|
2008-12-30 16:28:13 +01:00
|
|
|
|
2009-01-18 17:15:34 +01:00
|
|
|
/**
|
|
|
|
* Change to the configured Unix user.
|
|
|
|
*/
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifndef _WIN32
|
2009-01-18 17:15:34 +01:00
|
|
|
void
|
2015-03-03 20:05:08 +01:00
|
|
|
daemonize_set_user();
|
2009-07-19 08:18:23 +02:00
|
|
|
#else
|
|
|
|
static inline void
|
2015-03-03 20:05:08 +01:00
|
|
|
daemonize_set_user()
|
2009-07-19 08:18:23 +02:00
|
|
|
{ /* nop */ }
|
|
|
|
#endif
|
2009-01-18 17:15:34 +01:00
|
|
|
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifndef _WIN32
|
2008-12-30 16:28:07 +01:00
|
|
|
void
|
2014-01-18 12:01:09 +01:00
|
|
|
daemonize_begin(bool detach);
|
2009-07-19 08:18:23 +02:00
|
|
|
#else
|
|
|
|
static inline void
|
2014-01-18 12:01:09 +01:00
|
|
|
daemonize_begin(bool detach)
|
2009-07-19 08:18:23 +02:00
|
|
|
{ (void)detach; }
|
|
|
|
#endif
|
2008-12-30 16:28:07 +01:00
|
|
|
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifndef _WIN32
|
2014-01-18 12:01:09 +01:00
|
|
|
void
|
|
|
|
daemonize_commit();
|
|
|
|
#else
|
|
|
|
static inline void
|
|
|
|
daemonize_commit() {}
|
|
|
|
#endif
|
|
|
|
|
2008-12-30 16:28:07 +01:00
|
|
|
#endif
|