forked from djabberd/DJabberd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdjabberd
executable file
·103 lines (87 loc) · 2.95 KB
/
djabberd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#!/usr/bin/perl
use strict;
use warnings;
BEGIN {
# tell debugger of sub enter/exit,
$^P |= 0x01 if $ENV{TRACE_DJABBERD};
# keep descriptive string value of all anon subs maintained per coderef:
$^P |= 0x200 unless $ENV{NDEBUG_SUB_NAMES};
};
use lib 'lib';
use vars qw($DEBUG $daemonize $conffile $logconf);
use Getopt::Long;
BEGIN {
# We need to set up the logger before we "use DJabberd", because
# most of the DJabberd libs will immediately make calls into
# DJabberd::Log.
$DEBUG = 0;
$daemonize = 0;
$conffile = undef;
$logconf = undef;
Getopt::Long::GetOptions(
'd|daemon' => \$daemonize,
'debug=i' => \$DEBUG,
'conffile=s' => \$conffile,
'logconf=s' => \$logconf,
);
my @try_logconf_conf = ();
if (defined($logconf)) {
die "Can't find logging configuration file $logconf" unless -e $logconf;
@try_logconf_conf = ( $logconf );
}
else {
@try_logconf_conf = ( "etc/log.conf", "/etc/djabberd/log.conf", "etc/log.conf.default" );
}
use DJabberd::Log;
DJabberd::Log->set_logger(@try_logconf_conf);
}
use DJabberd;
use FindBin qw($Bin);
BEGIN {
# while the core ("use DJabberd" above) must be in normal paths,
# we open up the lib paths here, so make it easy to work in
# the subversion directories and have cousin plugins in their
# dev locations, but not system-wide installed.
if (-e "$Bin/Makefile.PL") { # lame check to see if we're in dev directory
opendir(my $dh, "$Bin/../");
foreach my $d (grep { /^DJabberd-/ } readdir($dh)) {
my $dir = "$Bin/../$d/lib";
next unless -d $dir;
unshift(@INC, $dir);
}
}
}
my $server = DJabberd->new(
daemonize => $daemonize
);
if (defined $conffile) {
die "Can't find configuration file ".$conffile unless -e $conffile;
}
my @try_conf = defined $conffile ? ($conffile) : ( "/etc/djabberd/djabberd.conf", "djabberd.conf" );
shift @try_conf while @try_conf && ! -e $try_conf[0];
die "No configuration file found; please specify --conffile argument.\n" unless @try_conf;
$server->load_config($try_conf[0]);
$server->run;
package DB;
no strict 'refs';
no utf8;
sub DB{};
sub sub {
# localize CALL_DEPTH so that we don't need to decrement it after the sub
# is called
local $DB::CALL_DEPTH = $DB::CALL_DEPTH+1;
#my @foo = @_;
my $fileline = "";
if (ref $DB::sub eq "CODE") {
my @caller = caller;
my $pkg = $caller[0];
my $line = $caller[2];
$fileline = " called from $pkg, line $line";
}
warn ("." x $DB::CALL_DEPTH . " ($DB::CALL_DEPTH) $DB::sub$fileline\n");
# Call our subroutine. @_ gets passed on for us.
# by calling it last, we don't need to worry about "wantarray", etc
# by returning it like this, the caller's expectations are conveyed to
# the called routine
&{$DB::sub};
}