-
Notifications
You must be signed in to change notification settings - Fork 326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve enso://
URIs in Data.read
#9048
Comments
I think this has to wait until https://github.com/enso-org/cloud-v2/issues/899 is implemented. |
Currently implemented a workaround that resolves paths one-by-one. Later we will integrate with the backend-side resolver. |
Radosław Waśko reports a new STANDUP for yesterday (2024-02-29): Progress: Prepared the datalink PR. Prepared a PR with basic Next Day: Next day I will be working on the #8590 task. Update types work to latest develop, pick up the cleanups and refactors. |
- Implements the core parts of #9048 - Currently the path resolution is done by resolving each segment, one by one - requiring as many API calls as there are segments in the path. - This should be replaced in a followup PR, once enso-org/cloud-v2#899 is implemented.
We want to be able to resolve read an Enso file by an URI, e.g.
Data.read "enso://radeusgd/my_dir/foo.txt"
.To do so, we want to:
enso://
path to anEnso_File
instance,File_Error.Not_Found
.Enso_File
path resolution with theFileSystemSPI
and register it for theenso://
protocol,Data.read
using it.The text was updated successfully, but these errors were encountered: