blob: bab62eccc160b2a6b34e8b3650aef3b458615866 [file] [log] [blame]
from pywy.graph.types import WGraphOfOperator, NodeOperator
from pywy.core import ChannelDescriptor
from pywy.core import Executor
from pywy.core import PywyPlan
from pywy.platforms.python.channels import PY_ITERATOR_CHANNEL_DESCRIPTOR
from pywy.platforms.python.operator.py_execution_operator import PyExecutionOperator
class PyExecutor(Executor):
def __init__(self):
super(PyExecutor, self).__init__()
def execute(self, plan):
pywyPlan: PywyPlan = plan
graph = WGraphOfOperator(pywyPlan.sinks)
# TODO get this information by a configuration and ideally by the context
descriptor_default: ChannelDescriptor = PY_ITERATOR_CHANNEL_DESCRIPTOR
def execute(op_current: NodeOperator, op_next: NodeOperator):
if op_current is None:
return
py_current: PyExecutionOperator = op_current.current
if py_current.outputs == 0:
py_current.execute(py_current.inputChannel, [])
return
if op_next is None:
return
py_next: PyExecutionOperator = op_next.current
outputs = py_current.get_output_channeldescriptors()
inputs = py_next.get_input_channeldescriptors()
intersect = outputs.intersection(inputs)
if len(intersect) == 0:
raise Exception(
"The operator(A) {} can't connect with (B) {}, "
"because the output of (A) is {} and the input of (B) is {} ".format(
py_current,
py_next,
outputs,
inputs
)
)
if len(intersect) > 1:
if descriptor_default is None:
raise Exception(
"The interaction between the operator (A) {} and (B) {}, "
"can't be decided because are several channel availables {}".format(
py_current,
py_next,
intersect
)
)
descriptor = descriptor_default
else:
descriptor = intersect.pop()
# TODO validate if is valite for several output
py_current.outputChannel[0] = descriptor.create_instance()
py_current.execute(py_current.inputChannel, py_current.outputChannel)
py_next.inputChannel = py_current.outputChannel
graph.traversal(graph.starting_nodes, execute)