urbit/lib/helm.hoon

250 lines
9.3 KiB
Plaintext
Raw Normal View History

2015-05-11 20:53:47 +03:00
:: :: ::
2015-12-20 14:48:17 +03:00
:::: /hoon/helm/lib :: ::
2015-05-11 20:53:47 +03:00
:: :: ::
/? 310 :: version
2015-09-02 01:20:17 +03:00
/- sole
/+ talk
[. sole]
2015-05-11 20:53:47 +03:00
:: :: ::
:::: :: ::
:: :: ::
|% :: ::
2015-12-09 04:54:26 +03:00
++ helm-part {$helm $0 helm-pith} :: helm state
++ helm-pith :: helm content
$: bur/(unit (pair ship mace:ames)) :: requesting ticket
2015-12-20 23:50:45 +03:00
hoc/(map bone helm-session) :: consoles
2015-05-11 20:53:47 +03:00
== ::
++ helm-session ::
2015-12-20 23:50:45 +03:00
$: say/sole-share :: console state
mud/(unit (sole-dialog @ud)) :: console dialog
2015-05-11 20:53:47 +03:00
== ::
:: :: ::
:::: :: ::
:: :: ::
2015-05-12 03:31:37 +03:00
++ hood-begin :: begin command
2015-12-20 23:50:45 +03:00
$: his/@p :: identity
tic/@p :: ticket
eny/@t :: entropy
ges/gens:ames :: description
2015-05-11 20:53:47 +03:00
== ::
2015-05-12 03:31:37 +03:00
++ hood-init :: report init
2015-12-20 23:50:45 +03:00
$: him/ship ::
2015-05-11 20:53:47 +03:00
== ::
2017-05-16 23:56:54 +03:00
++ hood-nuke :: block/unblock
$: him/ship ::
== ::
2015-05-12 03:31:37 +03:00
++ hood-reset :: reset command
2015-12-09 04:54:26 +03:00
$~ ::
2015-05-11 20:53:47 +03:00
++ helm-verb :: reset command
2015-12-09 04:54:26 +03:00
$~ ::
2015-05-12 03:31:37 +03:00
++ hood-reload :: reload command
2015-05-11 20:53:47 +03:00
(list term) ::
-- ::
:: :: ::
:::: :: ::
2016-11-17 04:42:58 +03:00
:: :: ::
2017-10-10 08:22:47 +03:00
|= {bowl:gall helm-part} :: main helm work
2015-09-02 01:20:17 +03:00
=+ sez=(fall (~(get by hoc) ost) *helm-session)
2016-11-08 04:40:00 +03:00
=> |% :: arvo structures
++ card ::
2017-10-03 07:36:34 +03:00
$% {$cash wire p/@p q/buck:ames} ::
2016-11-08 04:40:00 +03:00
{$conf wire dock $load ship term} ::
2017-10-03 07:36:34 +03:00
{$flog wire flog:dill} ::
2016-11-08 04:40:00 +03:00
{$funk wire @p @p @} ::
2017-10-03 07:36:34 +03:00
{$nuke wire ship} ::
2016-11-08 04:40:00 +03:00
{$serv wire ?(desk beam)} ::
{$poke wire dock pear} ::
2017-10-10 08:22:47 +03:00
{$want wire sock path *} :: send message
2016-11-08 04:40:00 +03:00
== ::
++ move (pair bone card) :: user-level move
++ pear :: poke fruit
$% {$hood-unsync desk ship desk} ::
{$talk-command command:talk} ::
{$ask-mail cord} ::
{$helm-hi cord} ::
== ::
2015-09-02 01:20:17 +03:00
--
2015-12-20 23:50:45 +03:00
|_ moz/(list move)
2015-09-02 01:20:17 +03:00
++ abet :: resolve
[(flop moz) %_(+>+>+<+ hoc (~(put by hoc) ost sez))]
::
++ emit |=(card %_(+> moz [[ost +<] moz])) :: return card
++ emil :: return cards
|= (list card)
^+ +>
?~(+< +> $(+< t.+<, +> (emit i.+<)))
::
++ poke-begin :: make/send keypair
|= hood-begin =< abet
2015-12-09 04:54:26 +03:00
?> ?=($~ bur)
2017-10-10 08:22:47 +03:00
~& [%poke-begin our his]
=+ buz=(shaz :(mix (jam ges) eny))
=+ loy=(pit:nu:crub:crypto 512 buz)
2015-09-02 01:20:17 +03:00
%- emit(bur `[his [0 sec:ex:loy]~])
2017-10-10 08:22:47 +03:00
[%want /helm/ticket [our (sein:title his)] /a/ta his tic ges pub:ex:loy]
2015-09-02 01:20:17 +03:00
::
2016-04-11 05:23:29 +03:00
++ poke-spawn
|= {him/ship key/@pG} =< abet
%- emit
[%funk ~ our him (shax key)]
::
2015-09-02 01:20:17 +03:00
++ poke-init :: initialize
2015-12-20 23:50:45 +03:00
|= him/ship =< abet
2015-12-21 00:16:39 +03:00
(emit %flog /helm %crud %hax-init leaf+(scow %p him) ~)
2015-09-02 01:20:17 +03:00
::
2017-05-16 23:56:54 +03:00
++ poke-nuke :: initialize
|= him/ship =< abet
(emit %nuke /helm him)
::
2015-09-02 01:20:17 +03:00
++ poke-mass
2015-12-09 04:54:26 +03:00
|= $~ =< abet
2015-09-02 01:20:17 +03:00
(emit %flog /heft %crud %hax-heft ~)
::
++ poke-send-hi
2015-12-20 23:50:45 +03:00
|= {her/ship mes/(unit tape)} =< abet
2015-09-02 01:20:17 +03:00
%^ emit %poke /helm/hi/(scot %p her)
[[her %hood] %helm-hi ?~(mes '' (crip u.mes))]
::
++ poke-send-ask
2015-12-20 23:50:45 +03:00
|= mel/cord =< abet
%^ emit %poke /helm/ask/(scot %p ~marzod)
[[~marzod %ask] %ask-mail mel]
::
++ poke-serve
|= top/?(desk beam) =< abet
(emit %serv /helm/serv top)
::
2017-10-10 06:39:08 +03:00
++ poke-hi
|= mes/@t
~| %poke-hi-fail
?: =(%fail mes)
~& %poke-hi-fail
!!
abet:(emit %flog /di %text "< {<src>}: {(trip mes)}")
::
++ poke-atom
|= ato/@
=+ len=(scow %ud (met 3 ato))
=+ gum=(scow %p (mug ato))
=< abet
(emit %flog /di %text "< {<src>}: atom: {len} bytes, mug {gum}")
::
2015-09-02 01:20:17 +03:00
++ coup-hi
2015-12-20 23:50:45 +03:00
|= {pax/path cop/(unit tang)} =< abet
2015-12-09 04:54:26 +03:00
?> ?=({@t $~} pax)
2016-06-13 18:38:02 +03:00
(emit %flog ~ %text "hi {(trip i.pax)} {?~(cop "" "un")}successful")
2015-09-02 01:20:17 +03:00
::
2016-08-20 00:07:34 +03:00
++ coup-ask
|= {pax/path cop/(unit tang)} =< abet
?> ?=({@t $~} pax)
(emit %flog ~ %text "ask {<src>} {?~(cop "" "un")}successful")
2016-08-20 00:07:34 +03:00
::
2015-12-20 23:50:45 +03:00
++ poke-reload |=(all/(list term) (poke-reload-desk %home all))
2015-09-02 01:20:17 +03:00
++ poke-reload-desk :: reload vanes
2015-12-20 23:50:45 +03:00
|= {syd/desk all/(list term)} =< abet
2015-09-02 01:20:17 +03:00
%- emil
%- flop
%+ turn all
2016-12-02 04:17:02 +03:00
=+ top=`path`/(scot %p our)/[syd]/(scot %da now)
2016-12-03 00:41:06 +03:00
=/ van/(list {term $~})
:- zus=[%zuse ~]
~(tap by dir:.^(arch %cy (welp top /sys/vane)))
2015-12-20 23:50:45 +03:00
|= nam/@tas
2016-12-03 00:41:06 +03:00
=. nam
?. =(1 (met 3 nam))
nam
=+ ^- zaz/(list {p/knot $~})
(skim van |=({a/term $~} =(nam (end 3 1 a))))
?> ?=({{@ $~} $~} zaz)
`term`p.i.zaz
2015-09-02 01:20:17 +03:00
=+ tip=(end 3 1 nam)
2016-12-02 04:17:02 +03:00
=+ zus==('z' tip)
=+ way=?:(zus (welp top /sys/[nam]) (welp top /sys/vane/[nam]))
2016-01-26 03:47:58 +03:00
=+ fil=.^(@ %cx (welp way /hoon))
2015-09-02 01:20:17 +03:00
[%flog /reload [%veer ?:(=('z' tip) %$ tip) way fil]]
::
++ poke-invite :: send invite; fake
2015-12-20 23:50:45 +03:00
|= {who/@p myl/@t} =< abet
2015-09-02 01:20:17 +03:00
%^ emit %poke /helm/invite
:- [our %talk]
(said:talk our %helm now eny [%leaf "invited: {<who>} at {(trip myl)}"]~)
::
++ poke-reset :: reset system
2017-10-19 06:50:48 +03:00
|= hood-reset =< abet
%- emil
%- flop ^- (list card)
=+ top=`path`/(scot %p our)/home/(scot %da now)/sys
:- [%flog /reset %vega (weld top /hoon) (weld top /ovra)]
2017-10-19 06:50:48 +03:00
%+ turn
^- (list {p/@tas q/path})
:~ [%$ /zuse]
[%a /vane/ames]
[%b /vane/behn]
[%c /vane/clay]
[%d /vane/dill]
[%e /vane/eyre]
[%f /vane/ford]
[%g /vane/gall]
==
|= {p/@tas q/path}
=+ way=`path`(welp top q)
=+ txt=.^(@ %cx (welp way /hoon))
[%flog /reset %veer p way txt]
::
++ poke-meset :: reset system (new)
2015-09-02 01:20:17 +03:00
|= hood-reset =< abet
%- emil
%- flop ^- (list card)
2016-12-02 04:17:02 +03:00
=+ top=`path`/(scot %p our)/home/(scot %da now)/sys
=+ hun=.^(@ %cx (welp top /hoon/hoon))
=+ arv=.^(@ %cx (welp top /arvo/hoon))
:- [%flog /reset [%velo `@t`hun `@t`arv]]
:- =+ way=(weld top `path`/zuse)
[%flog /reset %veer %$ way .^(@ %cx (welp way /hoon))]
2015-09-02 01:20:17 +03:00
%+ turn
2015-12-20 23:50:45 +03:00
^- (list {p/@tas q/@tas})
2016-12-02 04:17:02 +03:00
:~ [%a %ames]
2015-09-02 01:20:17 +03:00
[%b %behn]
[%c %clay]
[%d %dill]
[%e %eyre]
[%f %ford]
[%g %gall]
2017-10-19 06:50:48 +03:00
[%j %jael]
2015-05-11 20:53:47 +03:00
==
2015-12-20 23:50:45 +03:00
|= {p/@tas q/@tas}
2016-12-02 04:17:02 +03:00
=+ way=`path`(welp top /vane/[q])
2016-01-26 03:47:58 +03:00
=+ txt=.^(@ %cx (welp way /hoon))
2015-09-02 01:20:17 +03:00
[%flog /reset %veer p way txt]
::
2017-10-12 03:00:21 +03:00
++ poke-will :: hear certificate
|= wil/(unit wyll:ames)
2015-09-02 01:20:17 +03:00
?> ?=(^ bur)
?> ?=(^ wil)
=< abet
%- emil(bur ~)
:~ [%cash /helm p.u.bur q.u.bur u.wil]
[%poke /helm [our %hood] %hood-unsync %base (sein:title our) %kids]
2015-09-02 01:20:17 +03:00
==
::
++ poke-verb :: toggle verbose
2015-12-09 04:54:26 +03:00
|= $~ =< abet
2015-09-02 01:20:17 +03:00
(emit %flog /helm %verb ~)
::
++ take-onto :: result of %conf
|= saw/(each suss:gall tang) =< abet
2015-09-02 01:20:17 +03:00
%- emit
?- -.saw
$| [%flog ~ %crud %onto `tang`p.saw]
$& [%flog ~ %text "<{<p.saw>}>"]
2015-09-02 01:20:17 +03:00
==
::
++ take-note :: result of %init
2015-12-20 23:50:45 +03:00
|= {way/wire chr/@tD tan/tank} =< abet
2015-09-02 01:20:17 +03:00
(emit %flog ~ %text chr ' ' ~(ram re tan))
::
++ take-woot :: result of %want
2015-12-20 23:50:45 +03:00
|= {way/wire her/ship cop/coop} =< abet
2015-09-02 01:20:17 +03:00
(emit %flog ~ %text "woot: {<[way cop]>}")
2015-05-11 20:53:47 +03:00
--