Merge branch 'daemon-ext'
[libi2ncommon] / src / pidfile.hpp
CommitLineData
0e23f538
TJ
1/*
2The software in this package is distributed under the GNU General
3Public License version 2 (with a special exception described below).
4
5A copy of GNU General Public License (GPL) is included in this distribution,
6in the file COPYING.GPL.
7
8As a special exception, if other files instantiate templates or use macros
9or inline functions from this file, or you compile this file and link it
10with other works to produce a work based on this file, this file
11does not by itself cause the resulting work to be covered
12by the GNU General Public License.
13
14However the source code for this file must still be made available
15in accordance with section (3) of the GNU General Public License.
16
17This exception does not invalidate any other reasons why a work based
18on this file might be covered by the GNU General Public License.
19*/
6bf07aed
TJ
20#ifndef PIDFILE_H
21#define PIDFILE_H
22
23#include <string>
24#include <sys/types.h>
25
26/// Pid file handling
27/**
28 @copyright Intra2net AG
6bf07aed
TJ
29*/
30class PidFile
31{
32public:
33 PidFile(const std::string &filename, bool remove_file_on_destruction=true);
34 ~PidFile();
35
36 bool check_already_running(pid_t *running_pid=NULL);
37 bool write();
38
39private:
40 /// Full path to the pid file
41 std::string Filename;
42 /// Remove pid file on destruction
43 bool RemoveFileOnDestruction;
44 /// Indicates if we wrote the file (gets set by write())
45 bool WroteFile;
46};
47
48#endif