Source code for fedmsg.commands

# This file is part of fedmsg.
# Copyright (C) 2014 Red Hat, Inc.
#
# fedmsg is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# fedmsg 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with fedmsg; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# Authors:  Ralph Bean <rbean@redhat.com>
#
import fedmsg
import fedmsg.config
import warnings
import six

import logging
try:
    # Python2.7 and later
    from logging.config import dictConfig
except ImportError:
    # For Python2.6, we rely on a third party module.
    from logutils.dictconfig import dictConfig


[docs]class BaseCommand(object): daemonizable = False extra_args = None def __init__(self): if not self.extra_args: self.extra_args = [] self.config = self.get_config() dictConfig(self.config.get('logging', {'version': 1})) self.log = logging.getLogger(__name__)
[docs] def get_config(self): return fedmsg.config.load_config( self.extra_args, self.__doc__, fedmsg_command=True, )
def _handle_signal(self, signum, stackframe): from moksha.hub.reactor import reactor from moksha.hub import hub from twisted.internet.error import ReactorNotRunning if hub._hub: hub._hub.stop() try: reactor.stop() except ReactorNotRunning as e: warnings.warn(six.text_type(e))
[docs] def execute(self): try: return self.run() except KeyboardInterrupt: print()