|
|
|
@ -15,7 +15,7 @@ require Exporter;
@@ -15,7 +15,7 @@ require Exporter;
|
|
|
|
|
|
|
|
|
|
# include the rest of the core |
|
|
|
|
use Milkbone::HookEntry; |
|
|
|
|
use Milkbone::Util; |
|
|
|
|
use Milkbone::Util qw(path slurp win32 nix nt loaded_files user_path strip_html); |
|
|
|
|
use Milkbone::Plugin; |
|
|
|
|
|
|
|
|
|
# equal to the version of the current milkbone release |
|
|
|
@ -27,13 +27,13 @@ our $FatalLog = "fatals.txt";
@@ -27,13 +27,13 @@ our $FatalLog = "fatals.txt";
|
|
|
|
|
push @INC, "./plugins"; |
|
|
|
|
|
|
|
|
|
# exports |
|
|
|
|
our @ISA = qw( Exporter ); |
|
|
|
|
our @EXPORT = qw(@Milkbone::Util::EXPORT hook is_running abort register_hook |
|
|
|
|
option data slurp |
|
|
|
|
deregister_hook strip_html user_file set_option |
|
|
|
|
unload_plugin load_plugin reload_core reload_plugin |
|
|
|
|
nix win32 %ARGS); |
|
|
|
|
our @EXPORT_OK = qw(@Milkbone::Util::EXPORT_OK); |
|
|
|
|
our @ISA = qw(Exporter); |
|
|
|
|
our @EXPORT = (@Milkbone::Util::EXPORT, qw(hook is_running abort register_hook |
|
|
|
|
option data deregister_hook strip_html user_file set_option |
|
|
|
|
unload_plugin reload_core reload_plugin |
|
|
|
|
nix win32 %ARGS path)); |
|
|
|
|
our @EXPORT_OK = (@EXPORT, @Milkbone::Util::EXPORT_OK, |
|
|
|
|
qw(load_plugin)); |
|
|
|
|
|
|
|
|
|
# global variables |
|
|
|
|
my ($running, $dirty); |
|
|
|
@ -47,29 +47,32 @@ $running = 1;
@@ -47,29 +47,32 @@ $running = 1;
|
|
|
|
|
# autoflushing on |
|
|
|
|
$| = 1; |
|
|
|
|
|
|
|
|
|
# This causes @EXPORT to be exported even when using import lists |
|
|
|
|
sub import { |
|
|
|
|
Milkbone->export_to_level(1, @_, @EXPORT); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# returns a boolean indicating whether or not the core loop is running |
|
|
|
|
sub is_running |
|
|
|
|
{ |
|
|
|
|
$running; |
|
|
|
|
sub is_running { |
|
|
|
|
$running; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# end the core loop and begin shutdown |
|
|
|
|
sub abort |
|
|
|
|
{ |
|
|
|
|
$running = 0; |
|
|
|
|
print @_; |
|
|
|
|
exit; |
|
|
|
|
sub abort { |
|
|
|
|
$running = 0; |
|
|
|
|
print @_; |
|
|
|
|
exit; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# initialize the core |
|
|
|
|
sub init |
|
|
|
|
{ |
|
|
|
|
register_hook("load_plugins", \&load_plugins); |
|
|
|
|
register_hook("pre_mainloop", \&pre_mainloop); |
|
|
|
|
register_hook("post_mainloop", \&post_mainloop); |
|
|
|
|
register_hook("save_options", \&save_options); |
|
|
|
|
register_hook("loaded_plugins", \&plugin_list); |
|
|
|
|
register_hook("error", \&error); |
|
|
|
|
sub init { |
|
|
|
|
register_hook("load_plugins", \&load_plugins); |
|
|
|
|
register_hook("pre_mainloop", \&pre_mainloop); |
|
|
|
|
register_hook("post_mainloop", \&post_mainloop); |
|
|
|
|
register_hook("save_options", \&save_options); |
|
|
|
|
register_hook("loaded_plugins", \&plugin_list); |
|
|
|
|
register_hook("error", \&error); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# ------------------------------------------ |
|
|
|
@ -77,22 +80,22 @@ sub init
@@ -77,22 +80,22 @@ sub init
|
|
|
|
|
# ------------------------------------------ |
|
|
|
|
|
|
|
|
|
sub load_options |
|
|
|
|
{ |
|
|
|
|
my ($directive, $temp, @args); |
|
|
|
|
my $file = $ARGS{-file} || "mb.conf"; |
|
|
|
|
|
|
|
|
|
open(GLOBAL, "<$file") or die "Can't open config file: $!"; |
|
|
|
|
|
|
|
|
|
while(<GLOBAL>) |
|
|
|
|
{ |
|
|
|
|
my ($directive, $temp, @args); |
|
|
|
|
my $file = $ARGS{-file} || "mb.conf"; |
|
|
|
|
|
|
|
|
|
open(GLOBAL, "<$file") or die "Can't open config file: $!"; |
|
|
|
|
|
|
|
|
|
while(<GLOBAL>) |
|
|
|
|
{ |
|
|
|
|
next if /^\#/; |
|
|
|
|
next if /^\s*\n/; |
|
|
|
|
|
|
|
|
|
chomp; |
|
|
|
|
|
|
|
|
|
($directive, @args) = split /\s|\,/; |
|
|
|
|
|
|
|
|
|
if(@args > 1) |
|
|
|
|
next if /^\#/; |
|
|
|
|
next if /^\s*\n/; |
|
|
|
|
|
|
|
|
|
chomp; |
|
|
|
|
|
|
|
|
|
($directive, @args) = split /\s|\,/; |
|
|
|
|
|
|
|
|
|
if(@args > 1) |
|
|
|
|
{ |
|
|
|
|
my @val = grep { !/^$/ } @args; |
|
|
|
|
$options{$directive} = \@val; |
|
|
|
@ -167,12 +170,12 @@ sub prep_plugin
@@ -167,12 +170,12 @@ sub prep_plugin
|
|
|
|
|
|
|
|
|
|
return unless $plugin; |
|
|
|
|
|
|
|
|
|
if(-e path("plugins/$plugin.pl")) { |
|
|
|
|
if(-e "plugins/$plugin.pl") { |
|
|
|
|
# single-file plugin - no need for @INC setting |
|
|
|
|
} |
|
|
|
|
elsif(-e path("plugins/$plugin") and -d path("plugins/$plugin")) { |
|
|
|
|
elsif(-e "plugins/$plugin" and -d "plugins/$plugin") { |
|
|
|
|
# multi-file plugin - add its folder to @INC |
|
|
|
|
unshift @INC, path("plugins/$plugin"); |
|
|
|
|
unshift @INC, "plugins/$plugin"; |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
# plugin doesn't exist |
|
|
|
@ -189,7 +192,7 @@ sub init_plugin
@@ -189,7 +192,7 @@ sub init_plugin
|
|
|
|
|
{ |
|
|
|
|
my ($plugin) = @_; |
|
|
|
|
eval "require \"$plugin.pl\";"; |
|
|
|
|
error("Couldn't require $plugin.pl for $plugin: $@") if $@; |
|
|
|
|
die "Couldn't require $plugin.pl for $plugin: $@" if $@; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# load one or more plugins |
|
|
|
|