From d84d5fb931850955a9eb0f4a0edd0b6a00dc8ed9 Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Mon, 18 Jul 2011 15:42:43 +0100 Subject: * Fixed up log rotation. * Added a couple of exception catches. --- lib/mauve/configuration.rb | 2 ++ lib/mauve/mauve_thread.rb | 8 +++++--- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'lib/mauve') diff --git a/lib/mauve/configuration.rb b/lib/mauve/configuration.rb index baf6ad1..0d3e520 100644 --- a/lib/mauve/configuration.rb +++ b/lib/mauve/configuration.rb @@ -88,6 +88,8 @@ module Mauve require "log4r/outputter/#{@outputter.downcase}" end + @outputter_name = "Mauve-"+5.times.collect{rand(36).to_s(36)}.join + @args = {} end diff --git a/lib/mauve/mauve_thread.rb b/lib/mauve/mauve_thread.rb index 1aa8619..4a2787d 100644 --- a/lib/mauve/mauve_thread.rb +++ b/lib/mauve/mauve_thread.rb @@ -53,13 +53,15 @@ module Mauve @frozen = true - 20.times { Kernel.sleep 0.1 ; break if @thread.stop? } + if @thread.is_a?(Thread) + 20.times { Kernel.sleep 0.1 ; break if @thread.stop? } - logger.debug("Thread has not frozen!") unless @thread.stop? + logger.debug("Thread has not frozen!") unless @thread.stop? + end end def frozen? - defined? @frozen and @frozen and @thread.stop? + defined? @frozen and @frozen and @thread.is_a?(Thread) and @thread.stop? end def thaw -- cgit v1.2.1 From bbc6dc3fccfcdffef65211dd4d1c4058ecef624b Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Mon, 18 Jul 2011 16:44:21 +0100 Subject: Improved code to avoid Exception when the processor attempts to freeze a thread that is not running. --- lib/mauve/mauve_thread.rb | 12 +++++------- lib/mauve/processor.rb | 2 +- lib/mauve/server.rb | 1 - 3 files changed, 6 insertions(+), 9 deletions(-) (limited to 'lib/mauve') diff --git a/lib/mauve/mauve_thread.rb b/lib/mauve/mauve_thread.rb index 4a2787d..55ec446 100644 --- a/lib/mauve/mauve_thread.rb +++ b/lib/mauve/mauve_thread.rb @@ -7,6 +7,7 @@ module Mauve def initialize @thread = nil + @stop = true end def logger @@ -53,15 +54,13 @@ module Mauve @frozen = true - if @thread.is_a?(Thread) - 20.times { Kernel.sleep 0.1 ; break if @thread.stop? } + 20.times { Kernel.sleep 0.1 ; break if @thread.stop? } - logger.debug("Thread has not frozen!") unless @thread.stop? - end + logger.debug("Thread has not frozen!") unless @thread.stop? end def frozen? - defined? @frozen and @frozen and @thread.is_a?(Thread) and @thread.stop? + self.alive? and self.stop? end def thaw @@ -90,7 +89,7 @@ module Mauve end def stop? - @thread.is_a?(Thread) and @thread.stop? + !@thread.is_a?(Thread) or @thread.stop? end def join(ok_exceptions=[]) @@ -128,7 +127,6 @@ module Mauve self.join end - alias exit stop def kill diff --git a/lib/mauve/processor.rb b/lib/mauve/processor.rb index 15987c2..e3aac54 100644 --- a/lib/mauve/processor.rb +++ b/lib/mauve/processor.rb @@ -36,7 +36,7 @@ module Mauve # break if data.nil? - Timer.instance.freeze unless Timer.instance.frozen? + Timer.instance.freeze if Timer.instance.alive? and !Timer.instance.frozen? logger.debug("Got #{data.inspect} from #{client.inspect}") diff --git a/lib/mauve/server.rb b/lib/mauve/server.rb index 4bd5a0f..f9ea769 100644 --- a/lib/mauve/server.rb +++ b/lib/mauve/server.rb @@ -149,7 +149,6 @@ module Mauve thread_list.delete(Thread.current) THREAD_CLASSES.each do |klass| - # # No need to double check ourselves. # -- cgit v1.2.1