def setup_comet(): try: logging.info('Starting comet server') c = Comet() c.start() logging.info('Comet server running') except: logging.critical('Error starting up the comet server: ' + str(sys.exc_info()[1]) \ + '. Exiting server..') Util.clean_exit(1)
def handler_sigint(signum, frame): logging.warning("Got a sigint. Attemping clean exit") Util.clean_exit(1)
except: logging.critical('Error starting up the comet server: ' + str(sys.exc_info()[1]) \ + '. Exiting server..') Util.clean_exit(1) def setup_sighandlers(): def handler_sigterm(signum, frame): logging.warning("Got a sigterm. Attemping clean exit") Util.clean_exit(1) def handler_sigint(signum, frame): logging.warning("Got a sigint. Attemping clean exit") Util.clean_exit(1) signal.signal(signal.SIGTERM, handler_sigterm) signal.signal(signal.SIGINT, handler_sigint) setup_logging() # Setup logging for the application setup_comet() # Setup the comet server components setup_sighandlers() # Set up various signal handlers to safely exit the server # Set up the global singleton to event manager EM_INTERFACE = None try: config = Configuration(EM_CONFIG_FILE); config.load() EM_INTERFACE = ClientConnection(config) except: logging.critical('Error creating event manager interface: ' + str(sys.exc_info()[1]) + '. Exiting..') Util.clean_exit(1)