-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efc1162
commit 47f4526
Showing
11 changed files
with
168 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
data-processing-lib/python/src/data_processing/transform/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
data-processing-lib/python/src/data_processing/transform/abstract_transform.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# (C) Copyright IBM Corp. 2024. | ||
# 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. | ||
################################################################################ | ||
|
||
class AbstractTransform: | ||
""" | ||
Base class for all transform types | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
data-processing-lib/python/src/data_processing/transform/folder_transform.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# (C) Copyright IBM Corp. 2024. | ||
# 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. | ||
################################################################################ | ||
|
||
from typing import Any | ||
from data_processing.data_access import data_access | ||
from data_processing.transform import AbstractTransform | ||
|
||
|
||
class AbstractFolderTransform(AbstractTransform): | ||
""" | ||
Converts input folder to output file(s) (binary) | ||
Sub-classes must provide the transform() method to provide the conversion of a folder to 0 or | ||
more new binary files and metadata. | ||
""" | ||
|
||
def __init__(self, config: dict[str, Any]): | ||
""" | ||
Initialize based on the dictionary of configuration information. | ||
This simply stores the given instance in this instance for later use. | ||
""" | ||
self.config = config | ||
|
||
def transform(self, folder_name: str) -> tuple[list[tuple[bytes, str]], dict[str, Any]]: | ||
""" | ||
Converts input folder into o or more output files. | ||
If there is an error, an exception must be raised - exit()ing is not generally allowed. | ||
:param folder_name: the name of the folder containing arbitrary amount of files. | ||
:return: a tuple of a list of 0 or more tuples and a dictionary of statistics that will be propagated | ||
to metadata. Each element of the return list, is a tuple of the transformed bytes and a string | ||
holding the extension to be used when writing out the new bytes. | ||
""" | ||
raise NotImplemented() | ||
|
||
@staticmethod | ||
def get_folders(data_access:data_access) -> list(str): | ||
""" | ||
Compute the list of folders to use. | ||
:param data_access - data access class | ||
:return: | ||
""" | ||
raise NotImplemented() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.