Packets: Fix min_value / max_value boundary cases for Parse_(U)IntField
[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 <errno.h>
28 #include <sys/stat.h>
29 #include <sys/types.h>
30 #include <fcntl.h>
31 #include "Exception.hh"
32
33 //#include "DaemonTools.mpp"
34 #define prefix_
35 ///////////////////////////////cc.p////////////////////////////////////////
36
37 prefix_ void senf::daemonize()
38 {
39     int pid = fork();
40     if (pid < 0)
41         throw senf::SystemException("fork",errno);
42     if (pid > 0)
43         ::_exit(0);
44     if (::setsid() < 0)
45         throw senf::SystemException("setsid",errno);
46 }
47
48 prefix_ void senf::redirect_stdio(std::string const & path)
49 {
50     int fd = ::open(path.c_str(),O_RDWR);
51     if (fd < 0) throw senf::SystemException("open",errno);
52     if (dup2(fd,0) < 0) throw senf::SystemException("dup2",errno);
53     if (dup2(fd,1) < 0) throw senf::SystemException("dup2",errno);
54     if (dup2(fd,2) < 0) throw senf::SystemException("dup2",errno);
55     if (::close(fd) < 0) throw senf::SystemException("close",errno);
56 }
57
58 ///////////////////////////////cc.e////////////////////////////////////////
59 #undef prefix_
60 //#include "DaemonTools.mpp"
61
62 \f
63 // Local Variables:
64 // mode: c++
65 // fill-column: 100
66 // c-file-style: "senf"
67 // indent-tabs-mode: nil
68 // ispell-local-dictionary: "american"
69 // compile-command: "scons -u test"
70 // comment-column: 40
71 // End: