2008-12-30 16:28:07 +01:00
|
|
|
/*
|
2020-01-18 19:22:19 +01:00
|
|
|
* Copyright 2003-2020 The Music Player Daemon Project
|
2008-12-30 16:28:07 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
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
|