| # Copyright 2014 Rackspace Australia |
| # |
| # Licensed 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 abc |
| |
| import extras |
| |
| |
| class BaseConnection(object, metaclass=abc.ABCMeta): |
| """Base class for connections. |
| |
| A connection is a shared object that sources, triggers and reporters can |
| use to speak with a remote API without needing to establish a new |
| connection each time or without having to authenticate each time. |
| |
| Multiple instances of the same connection may exist with different |
| credentials, for example, thus allowing for different pipelines to operate |
| on different Gerrit installations or post back as a different user etc. |
| |
| Connections can implement their own public methods. Required connection |
| methods are validated by the {trigger, source, reporter} they are loaded |
| into. For example, a trigger will likely require some kind of query method |
| while a reporter may need a review method.""" |
| |
| def __init__(self, driver, connection_name, connection_config): |
| # connection_name is the name given to this connection in zuul.ini |
| # connection_config is a dictionary of config_section from zuul.ini for |
| # this connection. |
| # __init__ shouldn't make the actual connection in case this connection |
| # isn't used in the layout. |
| self.driver = driver |
| self.connection_name = connection_name |
| self.connection_config = connection_config |
| self.statsd = extras.try_import('statsd.statsd') |
| |
| def logEvent(self, event): |
| self.log.debug( |
| 'Scheduling event from {connection}: {event}'.format( |
| connection=self.connection_name, |
| event=event)) |
| try: |
| if self.statsd: |
| self.statsd.incr( |
| 'zuul.event.{driver}.{event}'.format( |
| driver=self.driver.name, event=event.type)) |
| self.statsd.incr( |
| 'zuul.event.{driver}.{connection}.{event}'.format( |
| driver=self.driver.name, |
| connection=self.connection_name, |
| event=event.type)) |
| except: |
| self.log.exception("Exception reporting event stats") |
| |
| def onLoad(self): |
| pass |
| |
| def onStop(self): |
| pass |
| |
| def registerScheduler(self, sched): |
| self.sched = sched |
| |
| def registerWebapp(self, webapp): |
| self.webapp = webapp |
| |
| def registerHttpHandler(self, path, handler): |
| """Add connection handler for HTTP URI. |
| |
| Connection can use builtin HTTP server for listening on incoming event |
| requests. The resulting path will be /connection/connection_name/path. |
| """ |
| self.webapp.register_path(self._connectionPath(path), handler) |
| |
| def unregisterHttpHandler(self, path): |
| """Remove the connection handler for HTTP URI.""" |
| self.webapp.unregister_path(self._connectionPath(path)) |
| |
| def _connectionPath(self, path): |
| return '/connection/%s/%s' % (self.connection_name, path) |