]> git.donarmstrong.com Git - infobot.git/blob - src/modules.pl
ee86c3817fef38e694fb188978b37e1b0c275360
[infobot.git] / src / modules.pl
1 #
2 #  modules.pl: pseudo-Module handler
3 #      Author: dms
4 #     Version: v0.2 (20000629)
5 #     Created: 20000624
6 #
7
8 if (&IsParam("useStrict")) { use strict; }
9 use vars qw($AUTOLOAD);
10
11 ###
12 ### REQUIRED MODULES.
13 ###
14
15 eval "use IO::Socket";
16 if ($@) {
17     &ERROR("no IO::Socket?");
18     exit 1;
19 }
20 &showProc(" (IO::Socket)");
21
22 ### MODULES.
23 %myModules = (
24         "countdown"     => "Countdown.pl",
25         "debian"        => "Debian.pl",
26         "debianExtra"   => "DebianExtra.pl",
27         "dict"          => "Dict.pl",
28         "dumpvars"      => "DumpVars.pl",
29         "factoids"      => "Factoids.pl",
30         "freshmeat"     => "Freshmeat.pl",
31         "kernel"        => "Kernel.pl",
32         "ircdcc"        => "UserDCC.pl",
33         "perlMath"      => "Math.pl",
34         "news"          => "News.pl",
35         "quote"         => "Quote.pl",
36         "rootwarn"      => "RootWarn.pl",
37         "search"        => "Search.pl",
38         "slashdot"      => "Slashdot3.pl",
39         "topic"         => "Topic.pl",
40         "units"         => "Units.pl",
41         "uptime"        => "Uptime.pl",
42         "userinfo"      => "UserInfo.pl",
43         "wwwsearch"     => "W3Search.pl",
44         "whatis"        => "WhatIs.pl",
45         "wingate"       => "Wingate.pl",
46         "insult"        => "insult.pl",
47         "nickometer"    => "nickometer.pl",
48         "babelfish"     => "babel.pl",
49 );
50 ### THIS IS NOT LOADED ON RELOAD :(
51 BEGIN {
52     @myModulesLoadNow   = ('topic', 'uptime', 'news');
53     @myModulesReloadNot = ('IRC/Irc.pl','IRC/Schedulers.pl');
54 }
55
56 sub loadCoreModules {
57     if (!opendir(DIR, $bot_src_dir)) {
58         &ERROR("can't open source directory $bot_src_dir: $!");
59         exit 1;
60     }
61
62     my @mods;
63     while (defined(my $file = readdir DIR)) {
64         next unless $file =~ /\.pl$/;
65         next unless $file =~ /^[A-Z]/;
66         push(@mods, $file);
67     }
68     closedir DIR;
69     &status("Loading ".scalar(@mods)." CORE modules...");
70
71     foreach (sort @mods) {
72         my $mod = "$bot_src_dir/$_";
73
74         eval "require \"$mod\"";
75         if ($@) {
76             &ERROR("lCM => $@");
77             &shutdown();
78             exit 1;
79         }
80
81         $moduleAge{$mod} = (stat $mod)[9];
82         &showProc(" ($_)") if (&IsParam("DEBUG"));
83     }
84 }
85
86 sub loadDBModules {
87     &status("Loading DB modules...");
88
89     if ($param{'DBType'} =~ /^mysql$/i) {
90         eval "use DBI";
91         if ($@) {
92             &ERROR("libdbd-mysql-perl is not installed!");
93             exit 1;
94         }
95         &showProc(" (DBI // mysql)");
96
97         &status("  using MySQL support.");
98         require "$bot_src_dir/db_mysql.pl";
99
100     } elsif ($param{'DBType'} =~ /^pgsql$/i) {
101         eval "use Pg";
102         if ($@) {
103             &ERROR("libpgperl is not installed!");
104             exit 1;
105         }
106         &showProc(" (Pg // postgreSQLl)");
107
108         &status("  using PostgreSQL support.");
109         require "$bot_src_dir/db_pgsql.pl";
110     } elsif ($param{'DBType'} =~ /^dbm$/i) {
111
112         &status("  using Berkeley DBM 1.85/2.0 support.");
113         require "$bot_src_dir/db_dbm.pl";
114     } else {
115
116         &status("DB support DISABLED.");
117         return;
118     }
119 }
120
121 sub loadFactoidsModules {
122     &status("Loading Factoids modules...");
123
124     if (!&IsParam("factoids")) {
125         &status("Factoid support DISABLED.");
126         return;
127     }
128
129     if (!opendir(DIR, "$bot_src_dir/Factoids")) {
130         &ERROR("can't open source directory Factoids: $!");
131         exit 1;
132     }
133
134     while (defined(my $file = readdir DIR)) {
135         next unless $file =~ /\.pl$/;
136         next unless $file =~ /^[A-Z]/;
137         my $mod = "$bot_src_dir/Factoids/$file";
138         ### TODO: use eval and exit gracefully?
139         eval "require \"$mod\"";
140         if ($@) {
141             &WARN("lFM: $@");
142             exit 1;
143         }
144
145         $moduleAge{$mod} = (stat $mod)[9];
146         &showProc(" ($file)") if (&IsParam("DEBUG"));
147     }
148     closedir DIR;
149 }
150
151 sub loadIRCModules {
152     &status("Loading IRC modules...");
153     if (&whatInterface() =~ /IRC/) {
154         eval "use Net::IRC";
155         if ($@) {
156             &ERROR("libnet-irc-perl is not installed!");
157             exit 1;
158         }
159         &showProc(" (Net::IRC)");
160
161     } else {
162         &status("IRC support DISABLED.");
163         return;
164     }
165
166     if (!opendir(DIR, "$bot_src_dir/IRC")) {
167         &ERROR("can't open source directory Factoids: $!");
168         exit 1;
169     }
170
171     while (defined(my $file = readdir DIR)) {
172         next unless $file =~ /\.pl$/;
173         next unless $file =~ /^[A-Z]/;
174         my $mod = "$bot_src_dir/IRC/$file";
175         ### TODO: use eval and exit gracefully?
176         require $mod;
177         $moduleAge{$mod} = (stat $mod)[9];
178         &showProc(" ($file)") if (&IsParam("DEBUG"));
179     }
180     closedir DIR;
181 }
182
183 sub loadMyModulesNow {
184     my $loaded = 0;
185     my $total  = 0;
186
187     &status("Loading MyModules...");
188     foreach (@myModulesLoadNow) {
189         $total++;
190         if (!defined $_) {
191             &WARN("mMLN: null element.");
192             next;
193         }
194
195         if (!&IsParam($_) and !&IsChanConf($_) and !&getChanConfList($_)) {
196             &DEBUG("_ => $_");
197             if (exists $myModules{$_}) {
198                 &status("myModule: $myModules{$_} (1) not loaded.");
199             } else {
200                 &DEBUG("myModule: $_ (2) not loaded.");
201             }
202
203             next;
204         }
205
206         &loadMyModule($myModules{$_});
207         $loaded++;
208     }
209
210     &status("Module: Runtime: Loaded/Total [$loaded/$total]");
211 }
212
213 ### rename to moduleReloadAll?
214 sub reloadAllModules {
215 ###    &status("Module: reloading all.");
216     foreach (map { substr($_,2) } keys %moduleAge) {
217         &reloadModule($_);
218     }
219 ###    &status("Module: reloading done.");
220 }
221
222 ### rename to modulesReload?
223 sub reloadModule {
224     my ($mod)   = @_;
225     my $file    = (grep /\/$mod/, keys %INC)[0];
226
227     # don't reload if it's not our module.
228     if ($mod =~ /::/ or $mod !~ /pl$/) {
229         &VERB("Not reloading $mod.",3);
230         return;
231     }
232
233     if (!defined $file) {
234         &WARN("rM: Cannot reload $mod since it was not loaded anyway.");
235         return;
236     }
237
238     if (! -f $file) {
239         &ERROR("rM: file '$file' does not exist?");
240         return;
241     }
242
243     my $age = (stat $file)[9];
244     return if ($age == $moduleAge{$file});
245
246     if ($age < $moduleAge{$file}) {
247         &WARN("rM: we're not gonna downgrade the file. use 'touch'.");
248         return;
249     }
250
251     if (grep /$mod/, @myModulesReloadNot) {
252         &DEBUG("rM: SHOULD NOT RELOAD $mod!!!");
253         return;
254     }
255
256     my $dc  = &Time2String($age   - $moduleAge{$file});
257     my $ago = &Time2String(time() - $moduleAge{$file});
258
259     &status("Module: Loading $mod...");
260     &VERB("Module:  delta change: $dc",2);
261     &VERB("Module:           ago: $ago",2);
262
263     delete $INC{$file};
264     eval "require \"$file\"";   # require or use?
265     if (@$) {
266         &DEBUG("rM: failure: @$");
267     } else {
268         my $basename = $file;
269         $basename =~ s/^.*\///;
270         &status("Module: reloaded $basename");
271         $moduleAge{$file} = $age;
272     }
273 }
274
275 ###
276 ### OPTIONAL MODULES.
277 ###
278
279 local %perlModulesLoaded  = ();
280 local %perlModulesMissing = ();
281
282 sub loadPerlModule {
283     return 0 if (exists $perlModulesMissing{$_[0]});
284     &reloadModule($_[0]);
285     return 1 if (exists $perlModulesLoaded{$_[0]});
286
287     eval "use $_[0]";
288     if ($@) {
289         &WARN("Module: $_[0] is not installed!");
290         $perlModulesMissing{$_[0]} = 1;
291         return 0;
292     } else {
293         $perlModulesLoaded{$_[0]} = 1;
294         &status("Module: Loaded $_[0] ...");
295         &showProc(" ($_[0])");
296         return 1;
297     }
298 }
299
300 sub loadMyModule {
301     my ($tmp) = @_;
302     if (!defined $tmp) {
303         &WARN("loadMyModule: module is NULL.");
304         return 0; 
305     }
306
307     my ($modulebase, $modulefile);
308     if (exists $myModules{$tmp}) {
309         ($modulename, $modulebase) = ($tmp, $myModules{$tmp});
310     } else {
311         $modulebase = $tmp;
312         if ($tmp = grep /^$modulebase$/, keys %myModules) {
313             &DEBUG("lMM: lame hack, file => name => $tmp.");
314             $modulename = $tmp;
315         }
316     }
317     my $modulefile = "$bot_src_dir/Modules/$modulebase";
318
319     # call reloadModule() which checks age of file and reload.
320     if (grep /\/$modulebase$/, keys %INC) {
321         &reloadModule($modulebase);
322         return 1;       # depend on reloadModule?
323     }
324
325     if (! -f $modulefile) {
326         &ERROR("lMM: module ($modulebase) does not exist.");
327         if ($$ == $bot_pid) {   # parent.
328             &shutdown() if (defined $shm and defined $dbh);
329         } else {                        # child.
330             &DEBUG("b4 delfork 1");
331             &delForked($modulebase);
332         }
333
334         exit 1;
335     }
336
337     eval "require \"$modulefile\"";
338     if ($@) {
339         &ERROR("cannot load my module: $modulebase");
340         if ($bot_pid != $$) {   # child.
341             &DEBUG("b4 delfork 2");
342             &delForked($modulebase);
343             exit 1;
344         }
345
346         return 0;
347     } else {
348         $moduleAge{$modulefile} = (stat $modulefile)[9];
349
350         &status("myModule: Loaded $modulebase ...");
351         &showProc(" ($modulebase)");
352         return 1;
353     }
354 }
355
356 $no_timehires = 0;
357 eval "use Time::HiRes qw(gettimeofday tv_interval)";
358 if ($@) {
359     &WARN("No Time::HiRes?");
360     $no_timehires = 1;
361 }
362 &showProc(" (Time::HiRes)");
363
364 sub AUTOLOAD {
365     return if ($AUTOLOAD =~ /__/);      # internal.
366
367     &ERROR("UNKNOWN FUNCTION CALLED: $AUTOLOAD");
368     foreach (@_) {
369         next unless (defined $_);
370         &status("  => $_");
371     }
372 }
373
374 1;