blob: 245d090da445099502ef96ced299b8cb814d1c62 [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
#
from typing import Set, List, Type
from pywy.core.channel import (CH_T, ChannelDescriptor)
from pywy.operators.source import TextFileSource
from pywy.platforms.python.operator.py_execution_operator import PyExecutionOperator
from pywy.platforms.python.channels import (
PyIteratorChannel,
PY_ITERATOR_CHANNEL_DESCRIPTOR
)
class PyTextFileSourceOperator(TextFileSource, PyExecutionOperator):
def __init__(self, origin: TextFileSource = None):
path = None if origin is None else origin.path
super().__init__(path)
pass
def execute(self, inputs: List[Type[CH_T]], outputs: List[Type[CH_T]]):
self.validate_channels(inputs, outputs)
if isinstance(outputs[0], PyIteratorChannel):
py_out_iter_channel: PyIteratorChannel = outputs[0]
py_out_iter_channel.accept_iterable(
open(
self.path,
'r'
)
)
else:
raise Exception("Channel Type does not supported")
def get_input_channeldescriptors(self) -> Set[ChannelDescriptor]:
raise Exception("The PyTextFileSource does not support Input Channels")
def get_output_channeldescriptors(self) -> Set[ChannelDescriptor]:
return {PY_ITERATOR_CHANNEL_DESCRIPTOR}