2014-11-11 23:23:15 +00:00
|
|
|
import logging
|
|
|
|
import trollius
|
|
|
|
|
|
|
|
from autobahn.asyncio.wamp import RouterFactory, RouterSessionFactory
|
2014-11-18 20:45:56 +00:00
|
|
|
from autobahn.asyncio.websocket import WampWebSocketServerFactory
|
2014-11-11 23:23:15 +00:00
|
|
|
from autobahn.wamp import types
|
|
|
|
|
|
|
|
from aiowsgi import create_server as create_wsgi_server
|
|
|
|
from flask import Flask
|
2014-11-18 20:45:56 +00:00
|
|
|
from threading import Event
|
2014-11-11 23:23:15 +00:00
|
|
|
from trollius.coroutines import From
|
|
|
|
|
2014-11-18 20:45:56 +00:00
|
|
|
from buildman.buildjob import BuildJob, BuildJobLoadException
|
2014-11-12 19:03:07 +00:00
|
|
|
|
2014-11-18 20:45:56 +00:00
|
|
|
LOGGER = logging.getLogger(__name__)
|
2014-11-11 23:23:15 +00:00
|
|
|
|
2014-11-14 00:41:17 +00:00
|
|
|
WORK_CHECK_TIMEOUT = 10
|
2014-11-11 23:23:15 +00:00
|
|
|
TIMEOUT_PERIOD_MINUTES = 20
|
|
|
|
RESERVATION_SECONDS = (TIMEOUT_PERIOD_MINUTES + 5) * 60
|
|
|
|
|
2014-11-18 20:45:56 +00:00
|
|
|
class BuildJobResult(object):
|
2014-11-14 00:41:17 +00:00
|
|
|
""" Build job result enum """
|
|
|
|
INCOMPLETE = 'incomplete'
|
|
|
|
COMPLETE = 'complete'
|
|
|
|
ERROR = 'error'
|
|
|
|
|
2014-11-11 23:23:15 +00:00
|
|
|
class BuilderServer(object):
|
|
|
|
""" Server which handles both HTTP and WAMP requests, managing the full state of the build
|
|
|
|
controller.
|
|
|
|
"""
|
|
|
|
def __init__(self, server_hostname, queue, build_logs, user_files, lifecycle_manager_klass):
|
2014-11-18 20:45:56 +00:00
|
|
|
self._loop = None
|
|
|
|
self._current_status = 'starting'
|
|
|
|
self._current_components = []
|
|
|
|
self._job_count = 0
|
2014-11-11 23:23:15 +00:00
|
|
|
|
2014-11-18 20:45:56 +00:00
|
|
|
self._session_factory = RouterSessionFactory(RouterFactory())
|
2014-11-11 23:23:15 +00:00
|
|
|
self._server_hostname = server_hostname
|
|
|
|
self._queue = queue
|
|
|
|
self._build_logs = build_logs
|
|
|
|
self._user_files = user_files
|
|
|
|
self._lifecycle_manager = lifecycle_manager_klass(
|
2014-11-18 20:45:56 +00:00
|
|
|
self._register_component,
|
|
|
|
self._unregister_component,
|
|
|
|
self._job_complete
|
|
|
|
)
|
2014-11-11 23:23:15 +00:00
|
|
|
|
|
|
|
self._shutdown_event = Event()
|
|
|
|
self._current_status = 'running'
|
|
|
|
|
|
|
|
self._register_controller()
|
|
|
|
|
|
|
|
def _register_controller(self):
|
|
|
|
controller_app = Flask('controller')
|
|
|
|
server = self
|
|
|
|
|
|
|
|
@controller_app.route('/status')
|
|
|
|
def status():
|
|
|
|
return server._current_status
|
|
|
|
|
|
|
|
self._controller_app = controller_app
|
|
|
|
|
|
|
|
def run(self, host):
|
|
|
|
logging.debug('Initializing the lifecycle manager')
|
|
|
|
self._lifecycle_manager.initialize()
|
|
|
|
|
|
|
|
logging.debug('Initializing all members of the event loop')
|
|
|
|
loop = trollius.get_event_loop()
|
|
|
|
trollius.Task(self._initialize(loop, host))
|
|
|
|
|
|
|
|
logging.debug('Starting server on port 8080, with controller on port 8181')
|
|
|
|
try:
|
2014-11-18 20:45:56 +00:00
|
|
|
loop.run_forever()
|
2014-11-11 23:23:15 +00:00
|
|
|
except KeyboardInterrupt:
|
2014-11-18 20:45:56 +00:00
|
|
|
pass
|
2014-11-11 23:23:15 +00:00
|
|
|
finally:
|
2014-11-18 20:45:56 +00:00
|
|
|
loop.close()
|
2014-11-11 23:23:15 +00:00
|
|
|
|
|
|
|
def close(self):
|
|
|
|
logging.debug('Requested server shutdown')
|
|
|
|
self._current_status = 'shutting_down'
|
|
|
|
self._lifecycle_manager.shutdown()
|
|
|
|
self._shutdown_event.wait()
|
|
|
|
logging.debug('Shutting down server')
|
|
|
|
|
|
|
|
def _register_component(self, realm, component_klass, **kwargs):
|
|
|
|
""" Registers a component with the server. The component_klass must derive from
|
|
|
|
BaseComponent.
|
|
|
|
"""
|
|
|
|
logging.debug('Registering component with realm %s', realm)
|
|
|
|
|
2014-11-18 20:45:56 +00:00
|
|
|
component = component_klass(types.ComponentConfig(realm=realm), realm=realm, **kwargs)
|
2014-11-11 23:23:15 +00:00
|
|
|
component.server = self
|
|
|
|
component.parent_manager = self._lifecycle_manager
|
|
|
|
component.build_logs = self._build_logs
|
|
|
|
component.user_files = self._user_files
|
|
|
|
component.server_hostname = self._server_hostname
|
|
|
|
|
|
|
|
self._current_components.append(component)
|
|
|
|
self._session_factory.add(component)
|
|
|
|
return component
|
|
|
|
|
|
|
|
def _unregister_component(self, component):
|
|
|
|
logging.debug('Unregistering component with realm %s and token %s',
|
2014-11-18 20:45:56 +00:00
|
|
|
component.builder_realm, component.expected_token)
|
2014-11-11 23:23:15 +00:00
|
|
|
|
|
|
|
self._current_components.remove(component)
|
|
|
|
self._session_factory.remove(component)
|
|
|
|
|
2014-11-12 19:03:07 +00:00
|
|
|
def _job_complete(self, build_job, job_status):
|
2014-11-18 20:45:56 +00:00
|
|
|
if job_status == BuildJobResult.INCOMPLETE:
|
2014-11-14 00:41:17 +00:00
|
|
|
self._queue.incomplete(build_job.job_item(), restore_retry=True, retry_after=30)
|
2014-11-18 20:45:56 +00:00
|
|
|
elif job_status == BuildJobResult.ERROR:
|
2014-11-12 19:03:07 +00:00
|
|
|
self._queue.incomplete(build_job.job_item(), restore_retry=False)
|
2014-11-11 23:23:15 +00:00
|
|
|
else:
|
2014-11-14 00:41:17 +00:00
|
|
|
self._queue.complete(build_job.job_item())
|
2014-11-11 23:23:15 +00:00
|
|
|
|
|
|
|
self._job_count = self._job_count - 1
|
|
|
|
|
|
|
|
if self._current_status == 'shutting_down' and not self._job_count:
|
|
|
|
self._shutdown_event.set()
|
|
|
|
|
2014-11-18 20:45:56 +00:00
|
|
|
# TODO:(jschorr) check for work here?
|
2014-11-14 00:41:17 +00:00
|
|
|
|
2014-11-11 23:23:15 +00:00
|
|
|
@trollius.coroutine
|
|
|
|
def _work_checker(self):
|
|
|
|
while self._current_status == 'running':
|
2014-11-18 20:45:56 +00:00
|
|
|
LOGGER.debug('Checking for more work')
|
2014-11-11 23:23:15 +00:00
|
|
|
job_item = self._queue.get(processing_time=RESERVATION_SECONDS)
|
|
|
|
if job_item is None:
|
2014-11-18 20:45:56 +00:00
|
|
|
LOGGER.debug('No additional work found. Going to sleep for %s seconds', WORK_CHECK_TIMEOUT)
|
2014-11-11 23:23:15 +00:00
|
|
|
yield From(trollius.sleep(WORK_CHECK_TIMEOUT))
|
|
|
|
continue
|
|
|
|
|
2014-11-12 19:03:07 +00:00
|
|
|
try:
|
|
|
|
build_job = BuildJob(job_item)
|
|
|
|
except BuildJobLoadException as irbe:
|
2014-11-18 20:45:56 +00:00
|
|
|
LOGGER.exception(irbe)
|
2014-11-12 19:03:07 +00:00
|
|
|
self._queue.incomplete(job_item, restore_retry=False)
|
|
|
|
|
2014-11-18 20:45:56 +00:00
|
|
|
LOGGER.debug('Build job found. Checking for an avaliable worker.')
|
2014-11-12 19:03:07 +00:00
|
|
|
if self._lifecycle_manager.schedule(build_job, self._loop):
|
2014-11-11 23:23:15 +00:00
|
|
|
self._job_count = self._job_count + 1
|
2014-11-18 20:45:56 +00:00
|
|
|
LOGGER.debug('Build job scheduled. Running: %s', self._job_count)
|
2014-11-11 23:23:15 +00:00
|
|
|
else:
|
2014-11-18 20:45:56 +00:00
|
|
|
LOGGER.debug('All workers are busy. Requeuing.')
|
2014-11-14 00:41:17 +00:00
|
|
|
self._queue.incomplete(job_item, restore_retry=True, retry_after=0)
|
2014-11-18 20:45:56 +00:00
|
|
|
|
2014-11-11 23:23:15 +00:00
|
|
|
yield From(trollius.sleep(WORK_CHECK_TIMEOUT))
|
|
|
|
|
|
|
|
|
|
|
|
@trollius.coroutine
|
|
|
|
def _initialize(self, loop, host):
|
2014-11-12 19:03:07 +00:00
|
|
|
self._loop = loop
|
2014-11-18 20:45:56 +00:00
|
|
|
|
2014-11-11 23:23:15 +00:00
|
|
|
# Create the WAMP server.
|
2014-11-18 21:35:03 +00:00
|
|
|
transport_factory = WampWebSocketServerFactory(self._session_factory, debug_wamp=False)
|
2014-11-18 20:45:56 +00:00
|
|
|
transport_factory.setProtocolOptions(failByDrop=True)
|
2014-11-11 23:23:15 +00:00
|
|
|
|
|
|
|
# Initialize the controller server and the WAMP server
|
|
|
|
create_wsgi_server(self._controller_app, loop=loop, host=host, port=8181)
|
|
|
|
yield From(loop.create_server(transport_factory, host, 8080))
|
|
|
|
|
|
|
|
# Initialize the work queue checker.
|
2014-11-18 21:34:09 +00:00
|
|
|
yield From(self._work_checker())
|