diff env/lib/python3.7/site-packages/planemo/engine/factory.py @ 5:9b1c78e6ba9c draft default tip

"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author shellac
date Mon, 01 Jun 2020 08:59:25 -0400
parents 79f47841a781
children
line wrap: on
line diff
--- a/env/lib/python3.7/site-packages/planemo/engine/factory.py	Thu May 14 16:47:39 2020 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,61 +0,0 @@
-"""Module contains factory method for building class:`Engine` objects."""
-
-import contextlib
-
-from .cwltool import CwlToolEngine
-from .galaxy import (
-    DockerizedManagedGalaxyEngine,
-    ExternalGalaxyEngine,
-    LocalManagedGalaxyEngine,
-)
-from .toil import ToilEngine
-
-
-UNKNOWN_ENGINE_TYPE_MESSAGE = "Unknown engine type specified [%s]."
-
-
-def is_galaxy_engine(**kwds):
-    """Return True iff the engine configured is :class:`GalaxyEngine`."""
-    engine_type_str = kwds.get("engine", "galaxy")
-    return engine_type_str in ["galaxy", "docker_galaxy", "external_galaxy"]
-
-
-def build_engine(ctx, **kwds):
-    """Build an engine from the supplied planemo configuration."""
-    engine_type_str = kwds.get("engine", "galaxy")
-    if engine_type_str == "galaxy":
-        engine_type = LocalManagedGalaxyEngine
-    elif engine_type_str == "docker_galaxy":
-        engine_type = DockerizedManagedGalaxyEngine
-    elif engine_type_str == "external_galaxy":
-        engine_type = ExternalGalaxyEngine
-    elif engine_type_str == "cwltool":
-        engine_type = CwlToolEngine
-    elif engine_type_str == "toil":
-        engine_type = ToilEngine
-    else:
-        raise Exception(UNKNOWN_ENGINE_TYPE_MESSAGE % engine_type_str)
-
-    return engine_type(ctx, **kwds)
-
-
-@contextlib.contextmanager
-def engine_context(ctx, **kwds):
-    """A :func:`contextlib.contextmanager` engine builder for use with ``with`` statements.
-
-    https://docs.python.org/2/library/contextlib.html
-    """
-    engine = None
-    try:
-        engine = build_engine(ctx, **kwds)
-        yield engine
-    finally:
-        if engine is not None:
-            engine.cleanup()
-
-
-__all__ = (
-    "is_galaxy_engine",
-    "build_engine",
-    "engine_context",
-)