Project

General

Profile

Actions

Bug #4400

closed

nested at_exit hooks run in strange order

Added by sunaku (Suraj Kurapati) about 13 years ago. Updated almost 13 years ago.

Status:
Closed
Target version:
ruby -v:
ruby 1.9.2p136 (2010-12-25 revision 30365) [x86_64-linux]
Backport:
[ruby-core:35237]

Description

=begin
Hello,

The documentation for Kernel#at_exit says "If multiple [at_exit] handlers are
registered, they are executed in reverse order of registration". However, does
not seem to be true for nested at_exit hooks (registering an at_exit hook inside
another at_exit hook). For example consider this code:

at_exit { puts :outer0 }
at_exit { puts :outer1_begin; at_exit { puts :inner1 }; puts :outer1_end }
at_exit { puts :outer2_begin; at_exit { puts :inner2 }; puts :outer2_end }
at_exit { puts :outer3 }

Here is the output of running this code with two Rubies:

ruby 1.9.2p136 (2010-12-25 revision 30365) [x86_64-linux]
outer3
outer2_begin
outer2_end
outer1_begin
outer1_end
outer0
inner1
inner2

ruby 1.8.7 (2010-08-16 patchlevel 302) [x86_64-linux]
outer3
outer2_begin
outer2_end
outer1_begin
outer1_end
outer0
inner1
inner2

Observe how inner1 and inner2 are executed in registration order after all
non-nested hooks are executed in reverse registration order. This seems very
strange to me; I would expect nested at_exit hooks to be executed immediately
(as follows) because we are already inside the at_exit phase of the program:

outer3
outer2_begin
inner2
outer2_end
outer1_begin
inner1
outer1_end
outer0

What do you think? Thanks for your consideration.
=end


Files

bug4400-atexit.patch (1.99 KB) bug4400-atexit.patch kosaki (Motohiro KOSAKI), 02/15/2011 08:25 PM
Actions #1

Updated by sunaku (Suraj Kurapati) about 13 years ago

=begin
By the way, this issue is not contrived. It prevents propagation of a
proper exit status when using Test::Unit with Capybara (Selenium driver)
where a unit test (run from Test::Unit's at_exit hook) loads the Capybara
library which registers an at_exit hook of its own.

As a result, Test::Unit always exits with 0 status, even if there were
assertion failures, because Capybara's at_exit hook runs after Test::Unit's
at_exit hook and overrides its exit status setting.

See this bug report for full details:

https://github.com/jnicklas/capybara/issues#issue/178/comment/658647
=end

Actions #2

Updated by kosaki (Motohiro KOSAKI) about 13 years ago

=begin
2011/2/15 Suraj Kurapati :

Bug #4400: nested at_exit hooks run in strange order
http://redmine.ruby-lang.org/issues/show/4400

Author: Suraj Kurapati
Status: Open, Priority: Normal
Category: core
ruby -v: ruby 1.9.2p136 (2010-12-25 revision 30365) [x86_64-linux]

Hello,

The documentation for Kernel#at_exit says "If multiple [at_exit] handlers are
registered, they are executed in reverse order of registration".  However, does
not seem to be true for nested at_exit hooks (registering an at_exit hook inside
another at_exit hook).  For example consider this code:

at_exit { puts :outer0 }
at_exit { puts :outer1_begin; at_exit { puts :inner1 }; puts :outer1_end }
at_exit { puts :outer2_begin; at_exit { puts :inner2 }; puts :outer2_end }
at_exit { puts :outer3 }

Here is the output of running this code with two Rubies:

ruby 1.9.2p136 (2010-12-25 revision 30365) [x86_64-linux]
outer3
outer2_begin
outer2_end
outer1_begin
outer1_end
outer0
inner1
inner2

ruby 1.8.7 (2010-08-16 patchlevel 302) [x86_64-linux]
outer3
outer2_begin
outer2_end
outer1_begin
outer1_end
outer0
inner1
inner2

Observe how inner1 and inner2 are executed in registration order after all
non-nested hooks are executed in reverse registration order.  This seems very
strange to me; I would expect nested at_exit hooks to be executed immediately
(as follows) because we are already inside the at_exit phase of the program:

outer3
outer2_begin
inner2
outer2_end
outer1_begin
inner1
outer1_end
outer0

What do you think?  Thanks for your consideration.

btw, C's atexit() has different behavior.

at_exit.c

#include <stdlib.h>
#include <stdio.h>

static void func0(void) { printf("outer0\n"); }

static void func1_inner(void) { printf("inner1\n"); }

static void func1(void)
{
printf("outer1_begin\n");
atexit(func1_inner);
printf("outer1_end\n");
}

static void func2_inner(void) { printf("inner2\n"); }

static void func2(void)
{
printf("outer2_begin\n");
atexit(func2_inner);
printf("outer2_end\n");
}

static void func3(void) { printf("outer3\n"); }

main()
{
atexit(func0);
atexit(func1);
atexit(func2);
atexit(func3);
}

% gcc at_exit.c; ./a.out
outer3
outer2_begin
outer2_end
inner2
outer1_begin
outer1_end
inner1
outer0

=end

Actions #3

Updated by kosaki (Motohiro KOSAKI) about 13 years ago

=begin
The attached patch is to adapt C's behavior.

And, Current behavior seems to be introduced by following commit.
Therefore we should hear ko1's opinion. I think.

ko1, what do you think?


commit a3e1b1ce7ed7e7ffac23015fc2fde56511b30681
Author: ko1
Date: Sun Dec 31 15:02:22 2006 +0000

     * Merge YARV

 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11439 b2dd03c8-39d4-4d8f-98ff-823fe69b080e

=end

Actions #4

Updated by kosaki (Motohiro KOSAKI) about 13 years ago

=begin

btw, C's atexit() has different behavior.

(snip)

% gcc at_exit.c; ./a.out
outer3
outer2_begin
outer2_end
inner2
outer1_begin
outer1_end
inner1
outer0

Python has the same behavior with C.

test_atexit.py

import atexit

def func0():
print "outer0"

def func1_internal():
print "inner1"

def func1():
print "outer1_begin"
atexit.register(func1_internal);
print "outer1_end"

def func2_internal():
print "inner2"

def func2():
print "outer2_begin"
atexit.register(func2_internal);
print "outer2_end"

def func3():
print "outer3"

atexit.register(func0);
atexit.register(func1);
atexit.register(func2);
atexit.register(func3);

=end

Actions #5

Updated by ko1 (Koichi Sasada) about 13 years ago

=begin
(2011/02/15 20:25), Motohiro KOSAKI wrote:

ko1, what do you think?

I don't have any idea about it. However, I think it should be a
specification issue == Matz issue.

Regards,
Koichi

--
// SASADA Koichi at atdot dot net

=end

Actions #6

Updated by matz (Yukihiro Matsumoto) about 13 years ago

=begin
Hi,

In message "Re: [ruby-core:35252] Re: [Ruby 1.9-Bug#4400] nested at_exit hooks run in strange order"
on Tue, 15 Feb 2011 22:32:39 +0900, SASADA Koichi writes:
|
|(2011/02/15 20:25), Motohiro KOSAKI wrote:
|> ko1, what do you think?
|
|I don't have any idea about it. However, I think it should be a
|specification issue == Matz issue.

OK, I choose C's behavior. Although I don't recommend to rely too
much on the atexit order. Motohiro, could you check in?

						matz.

=end

Actions #7

Updated by sunaku (Suraj Kurapati) about 13 years ago

=begin
Cool! I prefer C's behavior also. Thank you.
=end

Actions #8

Updated by kosaki (Motohiro KOSAKI) about 13 years ago

=begin

|> ko1, what do you think?
|
|I don't have any idea about it.  However, I think it should be a
|specification issue == Matz issue.

OK, I choose C's behavior.  Although I don't recommend to rely too
much on the atexit order.  Motohiro, could you check in?

Yes, sir. :)

=end

Actions #9

Updated by kosaki (Motohiro KOSAKI) about 13 years ago

  • Status changed from Open to Closed
  • % Done changed from 0 to 100

=begin
This issue was solved with changeset r30888.
Suraj, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.


  • eval_jump.c (rb_exec_end_proc): changed at_exit and END proc
    evaluation order. [Bug #4400] [ruby-core:35237]

  • eval_jump.c (rb_mark_end_proc): ditto.

  • test/ruby/test_beginendblock.rb (TestBeginEndBlock#test_nested_at_exit):
    added a test for nested at_exit.

  • test/ruby/test_beginendblock.rb (TestBeginEndBlock#test_beginendblock):
    changed the test to adopt new spec.
    =end

Actions #10

Updated by headius (Charles Nutter) about 13 years ago

=begin
FWIW, JRuby already seems to match the C ordering, thought I don't think we did it on purpose:

~/projects/jruby ➔ jruby at_exit.rb
outer3
outer2_begin
outer2_end
inner2
outer1_begin
outer1_end
inner1
outer0

=end

Actions #11

Updated by jballanc (Joshua Ballanco) about 13 years ago

=begin
On Thu, Feb 17, 2011 at 10:16 AM, Charles Nutter wrote:

Issue #4400 has been updated by Charles Nutter.

FWIW, JRuby already seems to match the C ordering, thought I don't think we
did it on purpose:

~/projects/jruby ➔ jruby at_exit.rb
outer3
outer2_begin
outer2_end
inner2
outer1_begin
outer1_end
inner1
outer0

Seems the same is true of MacRuby:

DeepThought: ~/Source/MacRuby > macruby at_exit.rb
outer3
outer2_begin
outer2_end
inner2
outer1_begin
outer1_end
inner1
outer0

On Thu, Feb 17, 2011 at 10:16 AM, Charles Nutter <> wrote:
Issue #4400 has been updated by Charles Nutter.


FWIW, JRuby already seems to match the C ordering, thought I don't think we did it on purpose:


~/projects/jruby ➔ jruby at_exit.rb
outer3
outer2_begin
outer2_end
inner2
outer1_begin
outer1_end
inner1
outer0

Seems the same is true of MacRuby:

DeepThought: ~/Source/MacRuby > macruby at_exit.rb 
outer3
outer2_begin
outer2_end
inner2
outer1_begin
outer1_end
inner1
outer0
 

=end

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0