shrub/pkg/arvo/lib/metadata.hoon

61 lines
1.3 KiB
Plaintext
Raw Normal View History

:: metadata: helpers for getting data from the metadata-store
::
/- *metadata-store
/+ resource
::
|_ =bowl:gall
++ app-paths-from-group
2021-01-12 07:26:19 +03:00
|= [=app-name group=resource]
^- (list resource)
%+ murn
%~ tap in
2021-01-12 07:26:19 +03:00
=- (~(gut by -) group ~)
.^ (jug resource md-resource)
%gy
(scot %p our.bowl)
%metadata-store
(scot %da now.bowl)
/group-indices
==
|= =md-resource
2021-01-12 07:26:19 +03:00
^- (unit resource)
?. =(app-name.md-resource app-name) ~
2021-01-12 07:26:19 +03:00
`resource.md-resource
::
2021-01-13 07:50:37 +03:00
++ metadata-for-group
|= group=resource
.^ associations
%gx (scot %p our.bowl) %metadata-store (scot %da now.bowl)
%group (snoc (en-path:resource group) %noun)
2021-01-13 07:50:37 +03:00
==
::
++ md-resources-from-group
|= group=resource
=- (~(get ju -) group)
.^ (jug resource md-resource)
%gy
(scot %p our.bowl)
%metadata-store
(scot %da now.bowl)
/group-indices
==
::
++ peek-association
|= [app-name=term rid=resource]
.^ (unit association)
2020-10-22 04:29:35 +03:00
%gx (scot %p our.bowl) %metadata-store (scot %da now.bowl)
%metadata app-name (snoc (en-path:resource rid) %noun)
2020-10-22 04:29:35 +03:00
==
::
++ peek-metadata
2021-01-12 07:26:19 +03:00
|= =md-resource
%+ bind (peek-association md-resource)
|=(association metadata)
2020-10-22 04:29:35 +03:00
::
++ peek-group
|= =md-resource
^- (unit resource)
%+ bind (peek-association md-resource)
|=(association group)
--