shrub/pkg/arvo/lib/graph.hoon

37 lines
797 B
Plaintext
Raw Normal View History

/- *resource
/+ store=graph-store
|_ =bowl:gall
2020-06-27 00:13:12 +03:00
++ scry-for
|* [=mold =path]
.^ mold
%gx
(scot %p our.bowl)
%graph-store
(scot %da now.bowl)
(snoc `^path`path %noun)
==
::
++ get-graph
|= res=resource
2020-09-04 10:42:20 +03:00
^- update:store
%+ scry-for update:store
2020-07-07 03:02:15 +03:00
/graph/(scot %p entity.res)/[name.res]
::
2020-09-04 10:42:20 +03:00
++ get-update-log
|= rid=resource
^- update-log:store
%+ scry-for update-log:store
/update-log/(scot %p entity.rid)/[name.rid]
::
2020-08-19 22:22:20 +03:00
++ peek-update-log
|= res=resource
^- (unit time)
(scry-for (unit time) /peek-update-log/(scot %p entity.res)/[name.res])
2020-08-19 22:22:20 +03:00
::
++ get-update-log-subset
|= [res=resource start=@da]
^- update-log:store
%+ scry-for update-log:store
/update-log-subset/(scot %p entity.res)/[name.res]/(scot %da start)/'~'
2020-06-27 00:13:12 +03:00
--