To avoid having one set of options coming from `engine_conf` and another set of options coming from `kwargs` and another set coming from `engine_conf` if it is a URI just start to shift toward `engine_conf` being deprecated and `engine` being a string type only (or a URI with additional query parameters) and having any additional **kwargs that are provided just get merged into the final engine options. This adds a new helper function that handles all these various options and adds in a keyword argument `engine` that will be shifted to in a future version (in that future version we can also then remove the `engine_conf` and just stick to a smaller set of option mechanisms). It also adjusts all examples to use this new and more easier to understand format and adjusts tests, conductor interface to use this new more easily understandable style of getting an engine. Change-Id: Ic7617057338e0c63775cf38a24643cff6e454950
		
			
				
	
	
		
			114 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
 | 
						|
#    Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved.
 | 
						|
#
 | 
						|
#    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 logging
 | 
						|
import os
 | 
						|
import sys
 | 
						|
import tempfile
 | 
						|
import traceback
 | 
						|
 | 
						|
logging.basicConfig(level=logging.ERROR)
 | 
						|
 | 
						|
self_dir = os.path.abspath(os.path.dirname(__file__))
 | 
						|
top_dir = os.path.abspath(os.path.join(os.path.dirname(__file__),
 | 
						|
                                       os.pardir,
 | 
						|
                                       os.pardir))
 | 
						|
sys.path.insert(0, top_dir)
 | 
						|
sys.path.insert(0, self_dir)
 | 
						|
 | 
						|
from taskflow import engines
 | 
						|
from taskflow.patterns import linear_flow as lf
 | 
						|
from taskflow.persistence import logbook
 | 
						|
from taskflow import task
 | 
						|
from taskflow.utils import persistence_utils as p_utils
 | 
						|
 | 
						|
import example_utils as eu  # noqa
 | 
						|
 | 
						|
# INTRO: In this example we create two tasks, one that will say hi and one
 | 
						|
# that will say bye with optional capability to raise an error while
 | 
						|
# executing. During execution if a later task fails, the reverting that will
 | 
						|
# occur in the hi task will undo this (in a ~funny~ way).
 | 
						|
#
 | 
						|
# To also show the effect of task persistence we create a temporary database
 | 
						|
# that will track the state transitions of this hi + bye workflow, this
 | 
						|
# persistence allows for you to examine what is stored (using a sqlite client)
 | 
						|
# as well as shows you what happens during reversion and what happens to
 | 
						|
# the database during both of these modes (failing or not failing).
 | 
						|
 | 
						|
 | 
						|
class HiTask(task.Task):
 | 
						|
    def execute(self):
 | 
						|
        print("Hi!")
 | 
						|
 | 
						|
    def revert(self, **kwargs):
 | 
						|
        print("Whooops, said hi too early, take that back!")
 | 
						|
 | 
						|
 | 
						|
class ByeTask(task.Task):
 | 
						|
    def __init__(self, blowup):
 | 
						|
        super(ByeTask, self).__init__()
 | 
						|
        self._blowup = blowup
 | 
						|
 | 
						|
    def execute(self):
 | 
						|
        if self._blowup:
 | 
						|
            raise Exception("Fail!")
 | 
						|
        print("Bye!")
 | 
						|
 | 
						|
 | 
						|
# This generates your flow structure (at this stage nothing is ran).
 | 
						|
def make_flow(blowup=False):
 | 
						|
    flow = lf.Flow("hello-world")
 | 
						|
    flow.add(HiTask(), ByeTask(blowup))
 | 
						|
    return flow
 | 
						|
 | 
						|
 | 
						|
# Persist the flow and task state here, if the file/dir exists already blowup
 | 
						|
# if not don't blowup, this allows a user to see both the modes and to see
 | 
						|
# what is stored in each case.
 | 
						|
if eu.SQLALCHEMY_AVAILABLE:
 | 
						|
    persist_path = os.path.join(tempfile.gettempdir(), "persisting.db")
 | 
						|
    backend_uri = "sqlite:///%s" % (persist_path)
 | 
						|
else:
 | 
						|
    persist_path = os.path.join(tempfile.gettempdir(), "persisting")
 | 
						|
    backend_uri = "file:///%s" % (persist_path)
 | 
						|
 | 
						|
if os.path.exists(persist_path):
 | 
						|
    blowup = False
 | 
						|
else:
 | 
						|
    blowup = True
 | 
						|
 | 
						|
with eu.get_backend(backend_uri) as backend:
 | 
						|
    # Make a flow that will blowup if the file doesn't exist previously, if it
 | 
						|
    # did exist, assume we won't blowup (and therefore this shows the undo
 | 
						|
    # and redo that a flow will go through).
 | 
						|
    book = logbook.LogBook("my-test")
 | 
						|
    flow = make_flow(blowup=blowup)
 | 
						|
    eu.print_wrapped("Running")
 | 
						|
    try:
 | 
						|
        eng = engines.load(flow, engine='serial',
 | 
						|
                           backend=backend, book=book)
 | 
						|
        eng.run()
 | 
						|
        if not blowup:
 | 
						|
            eu.rm_path(persist_path)
 | 
						|
    except Exception:
 | 
						|
        # NOTE(harlowja): don't exit with non-zero status code, so that we can
 | 
						|
        # print the book contents, as well as avoiding exiting also makes the
 | 
						|
        # unit tests (which also runs these examples) pass.
 | 
						|
        traceback.print_exc(file=sys.stdout)
 | 
						|
 | 
						|
    eu.print_wrapped("Book contents")
 | 
						|
    print(p_utils.pformat(book))
 |