Ensure statement and signals

I have a program (currently written in python, but that could change
:slight_smile: that runs until it recieves a signal to exit. Before exiting, it
needs to close a Lucene index, so the logical thing to do would be put
that writer.close call in an ensure statement so that the index will
close before the program exits. It looks like ruby (python as well)
doesn't integrate external signals in the normal program flow at all.
Is it possible to have a signal trigger an exception so that an ensure
statement will be executed? My test code is:

#!/usr/bin/env ruby
begin
聽聽sleep(1000)
ensure
聽聽p "hi there!"
end

And I run the script and send it all sort of signals (quit, int, term,
hup, etc). Nothing makes the program print "hi there!" Can this be
done?

Wow, I'm not smart. I had print in my actual test code, which doesn't
do a newline. The message was lost in my ugly command prompt. So, it
looks like Ruby handles this very nicely (with a SignalException).
Sorry for the noise.

路路路

On 25/01/06, tsuraan <tsuraan@gmail.com> wrote:

I have a program (currently written in python, but that could change
:slight_smile: that runs until it recieves a signal to exit. Before exiting, it
needs to close a Lucene index, so the logical thing to do would be put
that writer.close call in an ensure statement so that the index will
close before the program exits. It looks like ruby (python as well)
doesn't integrate external signals in the normal program flow at all.
Is it possible to have a signal trigger an exception so that an ensure
statement will be executed? My test code is:

#!/usr/bin/env ruby
begin
  sleep(1000)
ensure
  p "hi there!"
end

And I run the script and send it all sort of signals (quit, int, term,
hup, etc). Nothing makes the program print "hi there!" Can this be
done?

Running your code and hitting Ctrl-C does give the expected behaviour,
as does sending an INT directly:

  [rosco@jukebox ruby]$ ruby term1.rb &
  [1] 28052
  [rosco@jukebox ruby]$ kill -INT 28052
  [rosco@jukebox ruby]$
  "hi there!"
  term1.rb:2:in `sleep': Interrupt
          from term1.rb:2

  [1]+ Exit 1 ruby term1.rb

(I made it p "\nhi there!" to make the example clearer). If you wanted
to broaden your horizons a bit you could try trapping some signals and
raising exceptions yourself:

  trap('TERM') {
    raise "Terminated!"
  }

  begin
    sleep 1000
  rescue Exception => ex
    puts "\nGot #{ex}"
  ensure
    puts "hi there!"
  end

Running that gives:

  [rosco@jukebox ruby]$ ruby term2.rb &
  [1] 28088
  [rosco@jukebox ruby]$ kill -TERM 28088
  [rosco@jukebox ruby]$
  Got Terminated!
  hi there!

  [1]+ Done ruby term2.rb

Obviously it's pretty simplistic but maybe gives a starting point...

Hope that helps,
Ross

路路路

On Thu, 2006-01-26 at 07:06 +0900, tsuraan wrote:

My test code is:

#!/usr/bin/env ruby
begin
  sleep(1000)
ensure
  p "hi there!"
end

And I run the script and send it all sort of signals (quit, int, term,
hup, etc). Nothing makes the program print "hi there!" Can this be
done?

--
Ross Bamford - rosco@roscopeco.REMOVE.co.uk

Doh, sorry for the reply to the noise :slight_smile:

self.lookahead += 2

路路路

On Thu, 2006-01-26 at 07:08 +0900, tsuraan wrote:

Wow, I'm not smart. I had print in my actual test code, which doesn't
do a newline. The message was lost in my ugly command prompt. So, it
looks like Ruby handles this very nicely (with a SignalException).
Sorry for the noise.

--
Ross Bamford - rosco@roscopeco.REMOVE.co.uk