Skip to content
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

Support directory partitions #3

Open
crclark opened this issue Sep 16, 2018 · 1 comment
Open

Support directory partitions #3

crclark opened this issue Sep 16, 2018 · 1 comment

Comments

@crclark
Copy link
Owner

crclark commented Sep 16, 2018

All operations in the directory layer currently assume that directories are not partitions. They need to support partitions and check whether the given directory is a partition when opening it.

We also have to deal with the fact that partitions don't support all of the operations of normal directories. This will most likely require splitting Directory into two types. Other bindings just throw if an unsupported operation is called on a partition; we should try to avoid that by separating directory operations into type classes or something.

@crclark
Copy link
Owner Author

crclark commented May 28, 2021

Found a TODO comment in the code which I am removing, and immortalizing here instead:

-- TODO: in the other bindings, there is an abstract directory interface
-- and two implementors of that interface. DirSubspace is the standard one,
-- and DirPartition is the weird one that throws exceptions for most of the
-- functions in the directory interface. In the short term, I think we need only
-- support DirSubspace. In Java, DirPartition inherits from DirSubspace.
-- They both contain an internal DirectoryLayer object that does the real work.
-- We should export a sum type where the constructors are
-- DirSubspace and DirPartition. Or, since DirPartition supports only a subset
-- of operations, make DirSubspace and DirPartition separate types implementing
-- different type classes, so we don't have excessive partiality.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant