shrub/lib/stdio.hoon

273 lines
5.8 KiB
Plaintext
Raw Normal View History

2019-05-29 01:38:14 +03:00
:: Standard input/output functions.
::
:: These are all asynchronous computations, which means they produce a
:: form:(trad A) for some type A. You can always tell what they
:: produce by checking their first three lines.
::
:: Functions with the word "raw" in their name are for internal use
:: only because they carry a high salmonella risk. More specifcally,
:: improper use of them may result in side effects that the tapp
:: runtime doesn't know about and can't undo in case the transaction
:: fails.
::
/- tapp-sur=tapp
/+ trad
2019-05-29 01:38:14 +03:00
|* [poke-data=mold out-peer-data=mold]
=/ tapp-sur (tapp-sur poke-data out-peer-data)
=, card=card:tapp-sur
=, sign=sign:tapp-sur
=, contract=contract:tapp-sur
=+ (trad sign card contract)
|%
::
:: Raw power
::
++ send-raw-card
|= =card
=/ m (trad ,~)
^- form:m
2019-05-29 01:38:14 +03:00
|= =trad-input
2019-05-31 00:43:27 +03:00
[[card]~ ~ ~ %done ~]
::
:: Add or remove a contract
::
++ set-raw-contract
|= [add=? =contract]
=/ m (trad ,~)
^- form:m
|= trad-input
[~ ~ (silt [add contract]~) %done ~]
::
2019-05-29 01:38:14 +03:00
:: Send effect on current bone
2019-05-28 23:23:06 +03:00
::
++ send-effect
|= =card
=/ m (trad ,~)
^- form:m
2019-05-29 01:38:14 +03:00
;< =bone bind:m
|= =trad-input
[~ ~ ~ %done ost.bowl.trad-input]
(send-effect-on-bone bone card)
::
:: Send effect on particular bone
::
++ send-effect-on-bone
|= [=bone =card]
=/ m (trad ,~)
^- form:m
2019-05-28 23:23:06 +03:00
|= trad-input
2019-05-29 01:38:14 +03:00
[~ [bone card]~ ~ %done ~]
2019-05-28 23:23:06 +03:00
::
:: ----
::
:: HTTP requests
::
++ send-hiss
|= =hiss:eyre
=/ m (trad ,~)
^- form:m
;< ~ bind:m (send-raw-card %hiss / ~ %httr %hiss hiss)
(set-raw-contract & %hiss ~)
::
:: Wait until we get an HTTP response
::
++ take-sigh-raw
=/ m (trad ,httr:eyre)
^- form:m
|= =trad-input
:^ ~ ~ ~
?~ in.trad-input
[%wait ~]
?. ?=(%sigh -.sign.u.in.trad-input)
[%fail %expected-sigh >got=-.sign.u.in.trad-input< ~]
[%done httr.sign.u.in.trad-input]
::
:: Wait until we get an HTTP response and unset contract
::
++ take-sigh
=/ m (trad ,httr:eyre)
^- form:m
;< =httr:eyre bind:m take-sigh-raw
;< ~ bind:m (set-raw-contract | %hiss ~)
(pure:m httr)
::
:: Extract body from raw httr
::
++ extract-httr-body
|= =httr:eyre
=/ m (trad ,cord)
^- form:m
?. =(2 (div p.httr 100))
(trad-fail %httr-error >p.httr< >+.httr< ~)
?~ r.httr
(trad-fail %expected-httr-body >httr< ~)
(pure:m q.u.r.httr)
::
:: Parse cord to json
::
++ parse-json
|= =cord
=/ m (trad ,json)
^- form:m
=/ json=(unit json) (de-json:html cord)
?~ json
(trad-fail %json-parse-error ~)
(pure:m u.json)
::
:: Fetch json at given url
::
++ fetch-json
|= url=tape
=/ m (trad ,json)
^- form:m
=/ =hiss:eyre
:* purl=(scan url auri:de-purl:html)
meth=%get
math=~
body=~
==
;< ~ bind:m (send-hiss hiss)
;< =httr:eyre bind:m take-sigh
;< =cord bind:m (extract-httr-body httr)
(parse-json cord)
::
:: ----
::
:: Time is what keeps everything from happening at once
::
++ get-time
=/ m (trad ,@da)
^- form:m
|= =trad-input
[~ ~ ~ %done now.bowl.trad-input]
::
:: Set a timer
::
++ send-wait
|= at=@da
=/ m (trad ,~)
^- form:m
2019-05-29 03:01:18 +03:00
;< ~ bind:m (send-raw-card %wait /note/(scot %da at) at)
(set-raw-contract & %wait at)
::
:: Wait until we get a wake event
::
++ take-wake-raw
=/ m (trad ,@da)
^- form:m
|= =trad-input
:^ ~ ~ ~
?~ in.trad-input
[%wait ~]
?. ?=(%wake -.sign.u.in.trad-input)
[%fail %expected-wake >got=-.sign.u.in.trad-input< ~]
?~ wire.u.in.trad-input
[%fail %expected-wake-time ~]
=/ at=(unit @da) (slaw %da i.wire.u.in.trad-input)
?~ at
[%fail %expected-wake-time-da >wire< ~]
[%done u.at]
::
:: Wait until we get a wake event and unset contract
::
++ take-wake
=/ m (trad ,~)
^- form:m
;< at=@da bind:m take-wake-raw
(set-raw-contract | %wait at)
::
:: Wait until time
::
++ wait
|= until=@da
=/ m (trad ,~)
^- form:m
;< ~ bind:m (send-wait until)
take-wake
::
2019-05-29 03:01:18 +03:00
:: Wait until time then start new computation
::
++ wait-effect
|= until=@da
=/ m (trad ,~)
^- form:m
(send-effect %wait /effect/(scot %da until) until)
::
:: Cancel computation if not done by time
::
++ set-timeout
|* computation-result=mold
=/ m (trad ,computation-result)
|= [when=@da computation=form:m]
^- form:m
;< ~ bind:m (send-wait when)
|= =trad-input
=* loop $
?: ?& ?=([~ * %wake *] in.trad-input)
=(/(scot %da when) wire.u.in.trad-input)
==
[~ ~ (silt [| %wait when]~) %fail %trad-timeout ~]
=/ c-res (computation trad-input)
?. ?=(%cont -.next.c-res)
c-res
c-res(self.next ..loop(computation self.next.c-res))
2019-05-28 23:23:06 +03:00
::
:: ----
::
:: Apps
::
++ poke-app
|= [[her=ship app=term] =poke-data]
=/ m (trad ,~)
^- form:m
(send-effect %poke / [her app] poke-data)
2019-05-29 01:38:14 +03:00
::
++ peer-app
|= [[her=ship app=term] =path]
=/ m (trad ,~)
^- form:m
=/ =wire (weld /(scot %p her)/[app] path)
(send-effect %peer wire [her app] path)
::
++ pull-app
|= [[her=ship app=term] =path]
=/ m (trad ,~)
^- form:m
=/ =wire (weld /(scot %p her)/[app] path)
(send-effect %pull wire [her app] ~)
::
:: ----
::
:: Handle subscriptions
::
:: Get bones at particular path; for internal use only
::
++ get-bones-on-path
|= =the=path
=/ m (trad ,(list bone))
^- form:m
|= =trad-input
:^ ~ ~ ~
:- %done
%+ murn ~(tap by sup.bowl.trad-input)
|= [ost=bone her=ship =sub=path]
^- (unit bone)
?. =(the-path sub-path)
~
`ost
::
:: Give a result to subscribers on particular path
::
++ give-result
|= [=path =out-peer-data]
=/ m (trad ,~)
^- form:m
;< bones=(list bone) bind:m (get-bones-on-path path)
|- ^- form:m
=* loop $
?~ bones
(pure:m ~)
;< ~ bind:m (send-effect-on-bone i.bones %diff out-peer-data)
loop(bones t.bones)
--