]> git.donarmstrong.com Git - infobot.git/blob - blootbot
- fhs changes
[infobot.git] / blootbot
1 #!/usr/bin/perl
2
3 # infobot  -- copyright kevin lenzo (c) 1997-1999
4 # blootbot -- copyright david sobon (c) 1999-infinity
5
6 use strict;
7 use vars qw($bot_base_dir $bot_src_dir $bot_misc_dir $bot_state_dir
8             $bot_data_dir $bot_config_dir $bot_log_dir $bot_run_dir 
9             $bot_pid $memusage %param $fhs
10 );
11
12 BEGIN {
13     $fhs = 0;
14
15     if (@ARGV and -f $ARGV[0]) {
16         # source passed config to allow $bot_*_dir to be set.
17         do $ARGV[0];
18     }
19
20     # set any $bot_*_dir var's that aren't already set
21     $bot_base_dir       ||= '.';
22     $bot_config_dir     ||= 'files/';
23     $bot_data_dir       ||= 'files/';
24     $bot_state_dir      ||= 'files/';
25     $bot_run_dir        ||= '.';
26     $bot_src_dir        ||= "$bot_base_dir/src";
27     $bot_log_dir        ||= "$bot_base_dir/log";
28     $bot_misc_dir       ||= "$bot_base_dir/files";
29
30     $bot_pid            = $$;
31
32     require "$bot_src_dir/logger.pl";
33     require "$bot_src_dir/core.pl";
34     require "$bot_src_dir/interface.pl";
35     require "$bot_src_dir/modules.pl";
36
37     # load the configuration (params) file.
38     &setupConfig();
39
40     &showProc();        # to get the first value.
41     &status("Initial memory usage: $memusage kB");
42     &loadCoreModules();
43     &loadDBModules();
44     &loadFactoidsModules();
45     &loadIRCModules();
46
47     &status("Memory usage after loading modules: $memusage kB");
48 }
49
50 # prevent duplicate processes of the same bot
51 &duperuncheck();
52
53 # initialize everything 
54 &startup();     # first time initialization.
55 &setup();
56
57 if (!&IsParam("Interface") or $param{'Interface'} =~ /IRC/) {
58     # launch the irc event loop
59     &ircloop();
60 } else {
61     &cliloop();
62 }
63
64 exit 0;  # just so you don't look farther down in this file :)
65
66 # --- support routines
67
68 # FIXME.
69 #   add arguments, basically '-h' and '--help', heh.
70 #
71
72 # added by the xk
73 sub duperuncheck {
74     my $pid     = $$;
75     my $file    = $file{PID};
76
77     if ( -f $file) {
78         open(PIDFILE,$file) or die "error: cannot open $file.";
79         my $thispid = <PIDFILE> || "NULL\n";
80         close PIDFILE;
81         chop $thispid;
82
83         if ($thispid =~ /^\D$/) {
84             &staus("warning: pidfile is invalid; wiping out.");
85         } else {
86             if ( -d "/proc/$thispid/") {
87                 &ERROR("bot is already running from this directory.");
88                 &ERROR("if this is incorrect, erase '*.pid'.");
89                 &ERROR("verify with 'ps -axu | grep $thispid'.");
90                 exit 1;
91             } else {
92                 &status("warning: stale $file found; wiping.");
93             }
94         }
95     }
96
97     open(PIDFILE,">$file") or die "error: cannot write to $file.";
98     print PIDFILE "$pid\n";
99     close PIDFILE;
100
101     return 0;
102 }
103
104 1;