# distbuild/__init__.py -- library for Morph's distributed build plugin # # Copyright (C) 2014 Codethink Limited # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 2 of the License. # # This program 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 General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.. from stringbuffer import StringBuffer from sm import StateMachine from eventsrc import EventSource from socketsrc import (SocketError, NewConnection, ListeningSocketEventSource, SocketReadable, SocketWriteable, SocketEventSource, set_nonblocking) from sockbuf import (SocketBufferNewData, SocketBufferEof, SocketBufferClosed, SocketBuffer) from mainloop import MainLoop from sockserv import ListenServer from jm import JsonMachine, JsonNewMessage, JsonEof from serialise import serialise_artifact, deserialise_artifact from idgen import IdentifierGenerator from route_map import RouteMap from timer_event_source import TimerEventSource, Timer from proxy_event_source import ProxyEventSource from json_router import JsonRouter from helper_router import (HelperRouter, HelperRequest, HelperOutput, HelperResult) from initiator_connection import (InitiatorConnection, InitiatorDisconnect) from connection_machine import (ConnectionMachine, InitiatorConnectionMachine, Reconnect, StopConnecting) from worker_build_scheduler import (WorkerBuildQueuer, WorkerConnection, WorkerBuildRequest, WorkerCancelPending, WorkerBuildOutput, WorkerBuildCaching, WorkerBuildStepAlreadyStarted, WorkerBuildWaiting, WorkerBuildFinished, WorkerBuildFailed, WorkerBuildStepStarted) from build_controller import (BuildController, BuildFailed, BuildProgress, BuildSteps, BuildStepStarted, BuildStepAlreadyStarted, BuildOutput, BuildStepFinished, BuildStepFailed, BuildFinished, BuildCancel, build_step_name, map_build_graph) from initiator import Initiator from protocol import message from crashpoint import (crash_point, add_crash_condition, add_crash_conditions, clear_crash_conditions) from distbuild_socket import create_socket __all__ = locals()