mpd/src/unix/PidFile.hxx

98 lines
1.6 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2014-01-18 12:10:20 +01:00
#ifndef MPD_PID_FILE_HXX
#define MPD_PID_FILE_HXX
#include "lib/fmt/PathFormatter.hxx"
2014-01-18 12:10:20 +01:00
#include "fs/FileSystem.hxx"
#include "fs/AllocatedPath.hxx"
2022-11-28 23:05:15 +01:00
#include "lib/fmt/SystemError.hxx"
#include "lib/fmt/ToBuffer.hxx"
2014-01-18 12:10:20 +01:00
#include <cassert>
#include <string.h>
2014-01-18 12:10:20 +01:00
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
2014-01-18 12:10:20 +01:00
class PidFile {
int fd;
2014-01-18 12:10:20 +01:00
public:
PidFile(const AllocatedPath &path):fd(-1) {
2014-01-18 12:10:20 +01:00
if (path.IsNull())
return;
fd = OpenFile(path, O_WRONLY|O_CREAT|O_TRUNC, 0666).Steal();
if (fd < 0)
throw FmtErrno("Failed to create pid file \"{}\"",
path);
2014-01-18 12:10:20 +01:00
}
PidFile(const PidFile &) = delete;
2018-08-01 20:27:56 +02:00
void Close() noexcept {
if (fd < 0)
return;
close(fd);
}
2018-08-01 20:27:56 +02:00
void Delete(const AllocatedPath &path) noexcept {
if (fd < 0) {
assert(path.IsNull());
return;
}
assert(!path.IsNull());
close(fd);
unlink(path.c_str());
}
2018-08-01 20:27:56 +02:00
void Write(pid_t pid) noexcept {
if (fd < 0)
2014-01-18 12:10:20 +01:00
return;
const auto s = FmtBuffer<64>("{}\n", pid);
write(fd, s.c_str(), strlen(s.c_str()));
close(fd);
2014-01-18 12:10:20 +01:00
}
2018-08-01 20:27:56 +02:00
void Write() noexcept {
if (fd < 0)
2014-01-18 12:10:20 +01:00
return;
Write(getpid());
}
};
2021-10-13 11:28:04 +02:00
[[gnu::pure]]
static inline pid_t
ReadPidFile(Path path) noexcept
{
auto fd = OpenFile(path, O_RDONLY, 0);
if (!fd.IsDefined())
return -1;
pid_t pid = -1;
char buffer[32];
auto nbytes = fd.Read(buffer, sizeof(buffer) - 1);
if (nbytes > 0) {
buffer[nbytes] = 0;
char *endptr;
auto value = strtoul(buffer, &endptr, 10);
if (endptr > buffer)
pid = value;
}
return pid;
}
2014-01-18 12:10:20 +01:00
#endif