2016-12-30 02:51:56 -05:00
|
|
|
#! /bin/python
|
|
|
|
|
2017-05-29 21:48:01 -04:00
|
|
|
import os, time, signal, traceback, logging
|
2016-12-30 02:51:56 -05:00
|
|
|
import RPi.GPIO as GPIO
|
|
|
|
|
2017-05-30 01:01:30 -04:00
|
|
|
from sharedLogging import unmountGluster # this should be first program module
|
|
|
|
from stateMachine import StateMachine
|
2017-06-02 02:17:32 -04:00
|
|
|
from exceptionThreading import excChildListener, excStopper
|
2017-05-29 21:15:38 -04:00
|
|
|
|
2017-05-29 21:48:01 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
2017-05-22 02:32:19 -04:00
|
|
|
|
2016-12-30 02:51:56 -05:00
|
|
|
def clean():
|
|
|
|
GPIO.cleanup()
|
|
|
|
|
|
|
|
try:
|
|
|
|
stateMachine.__del__()
|
|
|
|
except NameError:
|
|
|
|
pass
|
2017-05-22 02:32:19 -04:00
|
|
|
|
2016-12-30 02:51:56 -05:00
|
|
|
try:
|
|
|
|
logger.info('Terminated root process - PID: %s', os.getpid())
|
2017-05-29 21:48:01 -04:00
|
|
|
unmountGluster()
|
2017-05-22 02:32:19 -04:00
|
|
|
except Exception:
|
2017-05-29 21:48:01 -04:00
|
|
|
logger.critical(traceback.format_exc())
|
2016-12-30 02:51:56 -05:00
|
|
|
|
|
|
|
def sigtermHandler(signum, stackFrame):
|
2017-06-02 02:17:32 -04:00
|
|
|
excStopper.set()
|
2016-12-30 02:51:56 -05:00
|
|
|
logger.info('Caught SIGTERM')
|
2017-05-23 01:43:39 -04:00
|
|
|
raise SystemExit
|
2016-12-30 02:51:56 -05:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
try:
|
|
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
|
|
|
|
|
|
|
GPIO.setwarnings(False)
|
|
|
|
GPIO.setmode(GPIO.BCM)
|
2017-06-02 02:17:32 -04:00
|
|
|
|
2017-05-21 14:29:17 -04:00
|
|
|
stateMachine = StateMachine()
|
2017-06-07 01:42:58 -04:00
|
|
|
stateMachine.start()
|
2017-05-22 02:32:19 -04:00
|
|
|
|
2016-12-30 02:51:56 -05:00
|
|
|
signal.signal(signal.SIGTERM, sigtermHandler)
|
|
|
|
|
2017-06-02 02:17:32 -04:00
|
|
|
excChildListener()
|
2016-12-30 02:51:56 -05:00
|
|
|
|
|
|
|
except Exception:
|
2017-05-31 00:21:23 -04:00
|
|
|
logger.critical(traceback.format_exc())
|
2017-05-22 02:32:19 -04:00
|
|
|
|
|
|
|
finally:
|
2016-12-30 02:51:56 -05:00
|
|
|
clean()
|