/nimpretty/

od='get'> mirror of ranger - a simple, vim-like file managerakspecs <akspecs@tilde.institute>
about summary refs log blame commit diff stats
path: root/ranger/ext/curses_interrupt_handler.py
blob: 4e2845cc9e67e4b2ae868d0997dbcd7437c32a31 (plain) (tree)
1
2
3
4
5
6
7
                                                                 
 



                                                                      
 






                                                                       




































                                                                            
# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

"""
This module can catch interrupt signals which would otherwise
rise a KeyboardInterrupt exception and handle it by pushing
a Ctrl+C (ASCII value 3) to the curses getch stack.
"""

import curses
import signal

_do_catch_interrupt = True

def catch_interrupt(boolean=True):
	"""Should interrupts be caught and simulate a ^C press in curses?"""
	global _do_catch_interrupt
	old_value = _do_catch_interrupt
	_do_catch_interrupt = bool(boolean)
	return old_value

# The handler which will be used in signal.signal()
def _interrupt_handler(a1, a2):
	global _do_catch_interrupt
	# if a keyboard-interrupt occurs...
	if _do_catch_interrupt:
		# push a Ctrl+C (ascii value 3) to the curses getch stack
		curses.ungetch(3)
	else:
		# use the default handler
		signal.default_int_handler(a1, a2)

def install_interrupt_handler():
	"""Install the custom interrupt_handler"""
	signal.signal(signal.SIGINT, _interrupt_handler)

def restore_interrupt_handler():
	"""Restore the default_int_handler"""
	signal.signal(signal.SIGINT, signal.default_int_handler)