mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 cef64ee0ba
			
		
	
	
		cef64ee0ba
		
	
	
	
	
		
			
			git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			941 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			941 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| #
 | |
| # timeout.rb -- execution timeout
 | |
| #
 | |
| # Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
 | |
| # Copyright (C) 2000  Information-technology Promotion Agency, Japan
 | |
| #
 | |
| #= SYNOPSIS
 | |
| #
 | |
| #   require 'timeout'
 | |
| #   status = timeout(5) {
 | |
| #     # something may take time
 | |
| #   }
 | |
| #
 | |
| #= DESCRIPTION
 | |
| #
 | |
| # timeout executes the block.  If the block execution terminates successfully
 | |
| # before timeout, it returns true.  If not, it terminates the execution and
 | |
| # raise TimeoutError exception.
 | |
| #
 | |
| #== Parameters
 | |
| #
 | |
| #  : timout
 | |
| #
 | |
| #    The time in seconds to wait for block teminatation.   
 | |
| #
 | |
| #=end
 | |
| 
 | |
| class TimeoutError<StandardError
 | |
| end
 | |
| 
 | |
| def timeout(sec)
 | |
|   return yield if sec == nil
 | |
|   begin
 | |
|     x = Thread.current
 | |
|     y = Thread.start {
 | |
|       sleep sec
 | |
|       x.raise TimeoutError, "execution expired" if x.alive?
 | |
|     }
 | |
|     yield sec
 | |
|     return true
 | |
|   ensure
 | |
|     Thread.kill y if y and y.alive?
 | |
|   end
 | |
| end
 | |
| 
 | |
| if __FILE__ == $0
 | |
|   timeout(5) {
 | |
|     p 10
 | |
|   }
 | |
| end
 |