You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add notes regarding known unknowns that will require work in upstream.
(It's possible that work can be done in the upstream before getting to
it here... but equally if not more likely that the work in this repo
should push the interface design, since that way we'll really know
what we need from it.)
Copy file name to clipboardexpand all lines: ROADMAP.md
+5
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,13 @@ This will be done by producing several [ADL](https://github.com/ipld/docs/blob/m
11
11
- [ ] Writable
12
12
- [ ] Chunker as a callback/interface
13
13
- (may choose to implement this as mostly shared code with the other file ADL, where the internal layout is just a parameter; undecided)
14
+
- [ ] Upstream work to determine how `ipld.Node` and `ipld.NodeAssembler` should work for data in the size scale that requires streaming and seeking
14
15
- ADL to make files appear as `kind`==`bytes`, where interally layout=balanceddag:
15
16
- [ ] Readable
16
17
- [ ] Writable
17
18
- [ ] Chunker as a callback/interface
18
19
- (may choose to implement this as mostly shared code with the other file ADL, where the internal layout is just a parameter; undecided)
20
+
- [ ] Upstream work to determine how `ipld.Node` and `ipld.NodeAssembler` should work for data in the size scale that requires streaming and seeking
19
21
- ADL to make unixfsv1 unsharded directories look like a regular `kind`==`map`:
20
22
- (e.g. just walk the list of links and select something based on the name field inside the list as if that was a map key.)
21
23
- [x] Readable
@@ -31,6 +33,9 @@ This will be done by producing several [ADL](https://github.com/ipld/docs/blob/m
31
33
- (this is how natural pathing of the form `/ipfs/{cid}/xxx/yyy/zzz.ext` is served -- the `xxx` and `yyy` segments are served by lookups across this kind of ADL.)
32
34
- (note how this and the above ADL _read the same substrate data_ -- while _interpreting it in different ways_.)
33
35
36
+
The above list is unordered.
37
+
(E.g. the features related to directory sharding may well be implemented before the file features; they're not interdependent.)
0 commit comments