torrus, RT#10574
[freeside.git] / torrus / configs / webmux2.pl
1 #  Copyright (C) 2002  Stanislav Sinyagin
2 #
3 #  This program is free software; you can redistribute it and/or modify
4 #  it under the terms of the GNU General Public License as published by
5 #  the Free Software Foundation; either version 2 of the License, or
6 #  (at your option) any later version.
7 #
8 #  This program is distributed in the hope that it will be useful,
9 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 #  GNU General Public License for more details.
12 #
13 #  You should have received a copy of the GNU General Public License
14 #  along with this program; if not, write to the Free Software
15 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
16
17 # $Id: webmux2.pl,v 1.1 2010-12-27 00:04:42 ivan Exp $
18 # Stanislav Sinyagin <ssinyagin@yahoo.com>
19
20 # Apache mod_perl initialisation
21
22 BEGIN { require '@torrus_config_pl@'; }
23
24 use Apache2::ServerUtil;
25 use mod_perl2;
26
27 use Torrus::Log;
28 use Torrus::DB;
29
30 # Probably we need MPM-specific Code here
31 # http://perl.apache.org/docs/2.0/user/coding/coding.html
32
33 # Tested with prefork MPM only.
34 # Threaded MPMs will not work because RRDtool is RRDs.pm is not
35 # currently thread safe
36
37
38 sub child_exit_handler
39 {
40     my( $child_pool, $s ) = @_;
41     Debug('Torrus child exit handler executed');
42     Torrus::DB::cleanupEnvironment();
43 }
44
45
46 if( $Torrus::Renderer::globalDebug )
47 {
48     &Torrus::Log::setLevel('debug');
49 }
50
51 my $ok = 1;
52 my $s = Apache2::ServerUtil->server();
53
54 # Apache::Server::is_perl_option_enabled is implemented since
55 # mod_perl2-1.99r13, but many installations still use mod_perl2-1.99r12
56 if( $mod_perl::VERSION > 1.9912 and
57     not $s->is_perl_option_enabled('ChildExit') )
58 {
59     $ok = 0;
60     $s->log_error('ChildExit must be enabled for proper cleanup');
61 }
62 else
63 {
64     $s->push_handlers( 'ChildExit' => \&child_exit_handler );
65 }
66
67
68 $ok;
69
70 # Local Variables:
71 # mode: perl
72 # indent-tabs-mode: nil
73 # perl-indent-level: 4
74 # End: