06db1a0a0d4f4fc06ee39fd2228377e05242e3e4
[senf.git] / Utils / DaemonTools.cc
1 // $Id$
2 //
3 // Copyright (C) 2006 Stefan Bund <g0dil@senf.berlios.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the
17 // Free Software Foundation, Inc.,
18 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 /** \file
21     \brief DaemonTools  non-inline non-template implementation */
22
23 #include "DaemonTools.hh"
24 //#include "DaemonTools.ih"
25
26 // Custom includes
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <unistd.h>
30 #include <fcntl.h>
31 #include <errno.h>
32
33 #include "Exception.hh"
34
35 //#include "DaemonTools.mpp"
36 #define prefix_
37 ///////////////////////////////cc.p////////////////////////////////////////
38
39 prefix_ void senf::daemonize()
40 {
41     int pid = fork();
42     if (pid < 0)
43         throw senf::SystemException("fork",errno);
44     if (pid > 0)
45         ::_exit(0);
46     if (::setsid() < 0)
47         throw senf::SystemException("setsid",errno);
48 }
49
50 prefix_ void senf::redirect_stdio(std::string const & path)
51 {
52     int fd = ::open(path.c_str(),O_RDWR);
53     if (fd < 0) throw senf::SystemException("open",errno);
54     if (dup2(fd,0) < 0) throw senf::SystemException("dup2",errno);
55     if (dup2(fd,1) < 0) throw senf::SystemException("dup2",errno);
56     if (dup2(fd,2) < 0) throw senf::SystemException("dup2",errno);
57     if (::close(fd) < 0) throw senf::SystemException("close",errno);
58 }
59
60 ///////////////////////////////cc.e////////////////////////////////////////
61 #undef prefix_
62 //#include "DaemonTools.mpp"
63
64 \f
65 // Local Variables:
66 // mode: c++
67 // fill-column: 100
68 // c-file-style: "senf"
69 // indent-tabs-mode: nil
70 // ispell-local-dictionary: "american"
71 // compile-command: "scons -u test"
72 // comment-column: 40
73 // End: