-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit modifies the `remotepath` module by encapsulating the path management logic inside a `StreamFlowPath` abstract class, which in turn translates to two alternative concrete implementations: `LocalStreamFlowPath` for local files and `RemoteStreamFlowPath` for remote ones. The implemented logic mimics the Python `pathlib` module, with two important differences: - All the potentially-remote functions are `async`; - Some additional functions (e.g., `size` or `checksum`) have been added to simplify file management in StreamFlow.
- Loading branch information
1 parent
2c8fc7b
commit f83c0cb
Showing
17 changed files
with
1,211 additions
and
1,081 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
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
Oops, something went wrong.