blob: e01d4310b129240680e252186066da6117ab66ed [file] [log] [blame]
from pywy.wayangplan.unary import FilterOperator
from pywy.platforms.python.operators.PythonExecutionOperator import PythonExecutionOperator
from pywy.platforms.python.channels import (Channel, ChannelDescriptor, PyIteratorChannel,
PyIteratorChannelDescriptor, PyCallableChannelDescriptor,
PyCallableChannel)
from typing import Set
class PyFilterOperator(FilterOperator, PythonExecutionOperator):
def __init__(self, origin: FilterOperator = None):
predicate = None if origin is None else origin.predicate
super().__init__(predicate)
pass
def execute(self, inputs: Channel, outputs: Channel):
self.validate_channels(inputs, outputs)
udf = self.predicate
if isinstance(inputs[0], PyIteratorChannel) :
py_in_iter_channel: PyIteratorChannel = inputs[0]
py_out_iter_channel: PyIteratorChannel = outputs[0]
py_out_iter_channel.accept_iterable(filter(udf, py_in_iter_channel.provide_iterable()))
elif isinstance(inputs[0], PyCallableChannel) :
py_in_call_channel: PyCallableChannel = inputs[0]
py_out_call_channel: PyCallableChannel = outputs[0]
def func(iterator):
return filter(udf, iterator)
py_out_call_channel.accept_callable(
PyCallableChannel.concatenate(
func,
py_in_call_channel.provide_callable()
)
)
else:
raise Exception("Channel Type does not supported")
def get_input_channeldescriptors(self) -> Set[ChannelDescriptor]:
return {PyIteratorChannelDescriptor, PyCallableChannelDescriptor}
def get_output_channeldescriptors(self) -> Set[ChannelDescriptor]:
return {PyIteratorChannelDescriptor, PyCallableChannelDescriptor}