From 92155927a03534b5a2d1ed2f0d804515e9253050 Mon Sep 17 00:00:00 2001 From: milkbone57 Date: Wed, 16 Jul 2003 15:53:45 +0000 Subject: [PATCH] *** empty log message *** --- Milkbone.pm | 31 +++++++++++++++++++++---------- mos.pl | 13 +------------ plugins/Net-OSCAR/Net-OSCAR.pl | 5 +++-- 3 files changed, 25 insertions(+), 24 deletions(-) diff --git a/Milkbone.pm b/Milkbone.pm index 9da5b02..d494424 100644 --- a/Milkbone.pm +++ b/Milkbone.pm @@ -1,10 +1,12 @@ -# ---------------------------------------------------------------------- +# ----------------------------------------------------------------------------- # Author(s) : Bill Atkins -# Title : MOS core +# Title : MOS core tools # Date : 12.21.02 # Desc : the hamster that keep MOS going +# QoTP : got milkbone tools? +# Notes : for more information see the plugin documentation # License : under the same terms as mos.pl -# ---------------------------------------------------------------------- +# ----------------------------------------------------------------------------- package Milkbone; @@ -12,6 +14,7 @@ use strict; use warnings; use Carp qw(longmess); +use PAR; use Milkbone::HookEntry; use Benchmark; @@ -21,7 +24,7 @@ require Exporter; our @ISA = qw( Exporter ); our @EXPORT = qw( hook is_running abort queued_hook register_hook option path data %ARGS slurp - deregister_hook strip_html user_file set_option MOSLoop set_interval unload_plugin load_plugin init_plugin reload_core); + deregister_hook strip_html user_file set_option MOSLoop set_interval unload_plugin load_plugin init_plugin reload_core reload_plugin); our @EXPORT_OK = qw( ); my ($running, $dirty); @@ -68,8 +71,9 @@ sub init sub load_options { my ($directive, $temp, @args); + my $file = $ARGS{-file} || "mb.conf"; - open(GLOBAL, ") { @@ -227,6 +231,14 @@ sub load_plugins init_plugin($_) for(@plugins); } +sub reload_plugin +{ + my ($plugin) = @_; + unload_plugin($_); + load_plugin($_); + init_plugin($_); +} + sub hook { my ($hook, %args) = @_; @@ -264,7 +276,6 @@ sub register_hook my $entry = new Milkbone::HookEntry($hook, $coderef, $args, $package); push @{$hooks{$hook}}, $entry; - print "$hook registered by $file\n"; } sub deregister_hook @@ -273,14 +284,14 @@ sub deregister_hook my ($package, $file, $line) = caller; my @temp = @{$hooks{$hook}}; - print "$hook deregistered by $file\n"; - die "Required hook missing" if !exists($hooks{$hook}) and $hook eq "tick"; warn "Unregistered hook deleted: $hook" if !exists($hooks{$hook}); - @temp = grep { ($_->{package} ne $package) } @{$hooks{$hook}}; + @temp = grep { ($_->{package} ne $package) } @temp; @{$hooks{$hook}} = @temp; + +# delete $hooks{$hook} unless @temp; } sub MOSLoop @@ -289,7 +300,7 @@ sub MOSLoop while(is_running) { hook("tick"); - select(undef, undef, undef, $interval) if $i++ % 5 == 0 && $interval; + # select(undef, undef, undef, $interval) if $i++ % 5 == 0 && $interval; } } diff --git a/mos.pl b/mos.pl index 1c142cc..2cd6cc0 100755 --- a/mos.pl +++ b/mos.pl @@ -1,4 +1,4 @@ -#!/Usr/bin/perl +#!/usr/bin/perl # ---------------------------------------------------------------------- # Author(s) : Bill Atkins @@ -30,17 +30,6 @@ sub main { Milkbone->init(); - for(@ARGV) - { - if($_ eq '--load' or $_ eq '-l') - { - hook("load_options"); - hook("load_plugins"); - - exit; - } - } - hook("load_options"); require "plugins/Tk-Splash.pl" unless option("NoSplash"); diff --git a/plugins/Net-OSCAR/Net-OSCAR.pl b/plugins/Net-OSCAR/Net-OSCAR.pl index 7fdaff7..e69df44 100644 --- a/plugins/Net-OSCAR/Net-OSCAR.pl +++ b/plugins/Net-OSCAR/Net-OSCAR.pl @@ -194,7 +194,8 @@ sub signon hook("protocol_chat_buddy_out", -user => $_[1], -chat => $_[2]->name); } ); - hook("tk_getmain")->after(30, \&tick); + # hook("tk_getmain")->after(30, \&tick); + register_hook("tick", \&tick); $should_die = 0; @@ -212,7 +213,7 @@ sub tick { return unless $oscar; $oscar->do_one_loop; - hook("tk_getmain")->after(30, \&tick) unless $should_die; + # hook("tk_getmain")->after(30, \&tick) unless $should_die; } sub request_info