blob: 375d654c3808a24496882a73f5ea65aae917b00f [file] [log] [blame]
#!/usr/bin/env python
'''
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
import logging
import signal
import threading
import traceback
logger = logging.getLogger()
_handler = None
class StopHandler(object):
def set_stop(self):
pass
def wait(self, timeout=None):
return -1
#
# Linux implementation
#
def signal_handler(signum, frame):
global _handler
_handler.set_stop()
def debug(sig, frame):
"""Interrupt running process, and provide a python prompt for
interactive debugging."""
d = {'_frame': frame} # Allow access to frame object.
d.update(frame.f_globals) # Unless shadowed by global
d.update(frame.f_locals)
message = "Signal received : entering python shell.\nTraceback:\n"
message += ''.join(traceback.format_stack(frame))
logger.info(message)
class StopHandlerLinux(StopHandler):
def __init__(self, stopEvent=None):
# Event used to gracefully stop the process
if stopEvent is None:
# Allow standalone testing
self.stop_event = threading.Event()
else:
# Allow one unique event per process
self.stop_event = stopEvent
def set_stop(self):
self.stop_event.set()
def wait(self, timeout=None):
# Stop process when stop event received
self.stop_event.wait(timeout)
if self.stop_event.isSet():
logger.debug("Stop event received")
return 0
# Timeout
return -1
def bind_signal_handlers(new_handler=None):
signal.signal(signal.SIGINT, signal_handler)
signal.signal(signal.SIGTERM, signal_handler)
signal.signal(signal.SIGUSR1, debug)
if new_handler is None:
global _handler
_handler = StopHandler()
else:
_handler = new_handler
return _handler