You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
1.5 KiB
C++

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
#ifndef MPD_DAEMON_HXX
#define MPD_DAEMON_HXX
class AllocatedPath;
/**
* Throws on error.
*/
#ifndef _WIN32
void
daemonize_init(const char *user, const char *group, AllocatedPath &&pidfile);
#else
static inline void
daemonize_init(const char *user, const char *group, AllocatedPath &&pidfile)
{ (void)user; (void)group; (void)pidfile; }
#endif
#ifndef _WIN32
void
daemonize_finish() noexcept;
#else
static inline void
daemonize_finish() noexcept
{ /* nop */ }
#endif
/**
* Kill the MPD which is currently running, pid determined from the
* pid file.
*
* Throws on error.
*/
#ifndef _WIN32
[[noreturn]]
void
daemonize_kill();
#else
#include <stdexcept>
[[noreturn]]
static inline void
daemonize_kill()
{
throw std::runtime_error("--kill is not available on WIN32");
}
#endif
/**
* Close stdin (fd 0) and re-open it as /dev/null.
*/
#ifndef _WIN32
void
daemonize_close_stdin() noexcept;
#else
static inline void
daemonize_close_stdin() noexcept {}
#endif
/**
* Change to the configured Unix user.
*
* Throws on error.
*/
#ifndef _WIN32
void
daemonize_set_user();
#else
static inline void
daemonize_set_user()
{ /* nop */ }
#endif
/**
* Throws on error.
*/
#ifndef _WIN32
void
daemonize_begin(bool detach);
#else
static inline void
daemonize_begin(bool detach)
{ (void)detach; }
#endif
/**
* Throws on error.
*/
#ifndef _WIN32
void
daemonize_commit();
#else
static inline void
daemonize_commit() {}
#endif
#endif