urbit/arvo/zuse.hoon

2694 lines
102 KiB
Plaintext
Raw Normal View History

2014-04-10 04:06:33 +04:00
::
2013-09-29 00:21:18 +04:00
:: zuse (3), standard library (tang)
::
|%
:::::::::::::::::::::::::::::::::::::::::::::::::::::: ::
:::: chapter 3b, Arvo libraries ::::
:: ::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: section 3bA, lite number theory ::
::
++ fu :: modulo (mul p q)
|= a=[p=@ q=@]
=+ b=?:(=([0 0] a) 0 (~(inv fo p.a) (~(sit fo p.a) q.a)))
|%
++ dif
|= [c=[@ @] d=[@ @]]
[(~(dif fo p.a) -.c -.d) (~(dif fo q.a) +.c +.d)]
::
++ exp
|= [c=@ d=[@ @]]
:- (~(exp fo p.a) (mod c (dec p.a)) -.d)
2013-09-29 00:21:18 +04:00
(~(exp fo q.a) (mod c (dec q.a)) +.d)
::
++ out :: garner's formula
|= c=[@ @]
%+ add
+.c
(mul q.a (~(pro fo p.a) b (~(dif fo p.a) -.c (~(sit fo p.a) +.c))))
::
++ pro
|= [c=[@ @] d=[@ @]]
[(~(pro fo p.a) -.c -.d) (~(pro fo q.a) +.c +.d)]
::
++ sum
|= [c=[@ @] d=[@ @]]
[(~(sum fo p.a) -.c -.d) (~(sum fo q.a) +.c +.d)]
::
++ sit
|= c=@
[(mod c p.a) (mod c q.a)]
--
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: section 3bB, cryptosuites ::
::
2014-05-09 04:13:25 +04:00
++ crua :: cryptosuite A (RSA)
2014-04-10 04:28:22 +04:00
^- acru
=| [mos=@ pon=(unit ,[p=@ q=@ r=[p=@ q=@] s=_*fu])]
=> |%
++ mx (dec (met 0 mos)) :: bit length
++ dap :: OEAP decode
|= [wid=@ xar=@ dog=@] ^- [p=@ q=@]
=+ pav=(sub wid xar)
=+ qoy=(cut 0 [xar pav] dog)
=+ dez=(mix (end 0 xar dog) (shaw %pad-b xar qoy))
[dez (mix qoy (shaw %pad-a pav dez))]
::
++ pad :: OEAP encode
|= [wid=@ rax=[p=@ q=@] meg=@] ^- @
=+ pav=(sub wid p.rax)
?> (gte pav (met 0 meg))
^- @
=+ qoy=(mix meg (shaw %pad-a pav q.rax))
=+ dez=(mix q.rax (shaw %pad-b p.rax qoy))
(can 0 [p.rax dez] [pav qoy] ~)
::
++ pull |=(a=@ (~(exp fo mos) 3 a))
++ push |=(a=@ (~(exp fo mos) 5 a))
++ pump
|= a=@ ^- @
?~ pon !!
(out.s.u.pon (exp.s.u.pon p.r.u.pon (sit.s.u.pon a)))
::
++ punt
|= a=@ ^- @
?~ pon !!
(out.s.u.pon (exp.s.u.pon q.r.u.pon (sit.s.u.pon a)))
--
|%
++ as
=> |%
2014-04-10 04:28:22 +04:00
++ haul :: revealing haul
|= a=pass
=+ [mag=(end 3 1 a) bod=(rsh 3 1 a)]
?> =('a' mag)
..as(mos bod, pon ~)
--
^?
|% ++ seal
|= [a=pass b=@ c=@]
^- @
=> .(c (sign b c))
=+ her=(haul a)
=+ det=(lte (add 256 (met 0 c)) mx.her)
=+ lip=?:(det c 0)
=- (add ?:(p.mav 0 1) (lsh 0 1 q.mav))
^= mav ^- [p=? q=@]
:- det
=+ dog=(pad mx.her [256 b] lip)
=+ hog=(push.her dog)
=+ ben=(en b c)
?:(det hog (jam hog ben))
++ sign
|= [a=@ b=@] ^- @
=- (add ?:(p.mav 0 1) (lsh 0 1 q.mav))
^= mav ^- [p=? q=@]
=+ det=(lte (add 128 (met 0 b)) mx)
:- det
=+ hec=(shaf (mix %agis a) b)
=+ dog=(pad mx [128 hec] ?:(det b 0))
=+ hog=(pump dog)
?:(det hog (jam hog b))
++ sure
|= [a=@ b=@]
^- (unit ,@)
=+ [det==(0 (end 0 1 b)) bod=(rsh 0 1 b)]
=+ gox=?:(det [p=bod q=0] ((hard ,[p=@ q=@]) (cue bod)))
=+ dog=(pull p.gox)
=+ pig=(dap mx 128 dog)
=+ log=?:(det q.pig q.gox)
?.(=(p.pig (shaf (mix %agis a) log)) ~ [~ log])
++ tear
|= [a=pass b=@]
^- (unit ,[p=@ q=@])
=+ her=(haul a)
=+ [det==(0 (end 0 1 b)) bod=(rsh 0 1 b)]
=+ gox=?:(det [p=bod q=0] ((hard ,[p=@ q=@]) (cue bod)))
=+ dog=(punt p.gox)
=+ pig=(dap mx 256 dog)
=+ ^= cow
^- (unit ,@)
?: det
2014-04-10 00:03:02 +04:00
[~ q.pig]
(de p.pig q.gox)
?~ cow ~
=> .(cow (sure:as.her p.pig u.cow))
?~ cow ~
[~ p.pig u.cow]
--
::
++ de
|+ [key=@ cep=@] ^- (unit ,@)
=+ toh=(met 8 cep)
?: (lth toh 2)
~
=+ adj=(dec toh)
=+ [hax=(end 8 1 cep) bod=(rsh 8 1 cep)]
=+ msg=(mix (~(raw og (mix hax key)) (mul 256 adj)) bod)
?. =(hax (shax (mix key (shax (mix adj msg)))))
~
[~ msg]
::
++ dy |+([a=@ b=@] (need (de a b)))
++ en
|+ [key=@ msg=@] ^- @ux
=+ len=(met 8 msg)
=+ adj=?:(=(0 len) 1 len)
=+ hax=(shax (mix key (shax (mix adj msg))))
(rap 8 hax (mix msg (~(raw og (mix hax key)) (mul 256 adj))) ~)
::
++ ex ^?
|% ++ fig ^- @uvH (shaf %afig mos)
++ pac ^- @uvG (end 6 1 (shaf %acod sec))
++ pub ^- pass (cat 3 'a' mos)
++ sec ^- ring ?~(pon !! (cat 3 'A' (jam p.u.pon q.u.pon)))
--
::
++ nu
=> |%
++ elcm
|= [a=@ b=@]
(div (mul a b) d:(egcd a b))
::
++ eldm
|= [a=@ b=@ c=@]
(~(inv fo (elcm (dec b) (dec c))) a)
::
++ ersa
|= [a=@ b=@]
[a b [(eldm 3 a b) (eldm 5 a b)] (fu a b)]
--
^?
|% ++ com
|= a=@
^+ ^?(..nu)
..nu(mos a, pon ~)
::
++ pit
|= [a=@ b=@]
=+ c=(rsh 0 1 a)
=+ [d=(ramp c [3 5 ~] b) e=(ramp c [3 5 ~] +(b))]
^+ ^?(..nu)
..nu(mos (mul d e), pon [~ (ersa d e)])
::
++ nol
|= a=@
^+ ^?(..nu)
=+ b=((hard ,[p=@ q=@]) (cue a))
..nu(mos (mul p.b q.b), pon [~ (ersa p.b q.b)])
--
--
2014-04-10 04:28:22 +04:00
++ bruw :: create keypair
2013-09-29 00:21:18 +04:00
|= [a=@ b=@] :: width seed
2014-04-10 04:28:22 +04:00
^- acru
(pit:nu:crua a b)
2013-09-29 00:21:18 +04:00
::
2014-04-10 04:28:22 +04:00
++ haul :: activate public key
2013-09-29 00:21:18 +04:00
|= a=pass
2014-04-10 04:28:22 +04:00
^- acru
2013-09-29 00:21:18 +04:00
=+ [mag=(end 3 1 a) bod=(rsh 3 1 a)]
?> =('a' mag)
2014-04-10 04:28:22 +04:00
(com:nu:crua bod)
2013-09-29 00:21:18 +04:00
::
2014-04-10 04:28:22 +04:00
++ weur :: activate secret key
2013-09-29 00:21:18 +04:00
|= a=ring
2014-04-10 04:28:22 +04:00
^- acru
2013-09-29 00:21:18 +04:00
=+ [mag=(end 3 1 a) bod=(rsh 3 1 a)]
?> =('A' mag)
2014-04-10 04:28:22 +04:00
(nol:nu:crua bod)
2013-09-29 00:21:18 +04:00
::
2014-04-10 04:28:22 +04:00
++ trua :: test rsa
2013-09-29 00:21:18 +04:00
|= msg=@tas
^- @
2014-04-10 04:28:22 +04:00
=+ ali=(bruw 1.024 (shax 'ali'))
=+ bob=(bruw 1.024 (shax 'bob'))
=+ tef=(sign:as.ali [0 msg])
=+ lov=(sure:as.ali [0 tef])
?. &(?=(^ lov) =(msg u.lov))
~|(%test-fail-sign !!)
2013-09-29 00:21:18 +04:00
=+ key=(shax (shax (shax msg)))
=+ sax=(seal:as.ali pub:ex.bob key msg)
=+ tin=(tear:as.bob pub:ex.ali sax)
2013-09-29 00:21:18 +04:00
?. &(?=(^ tin) =(key p.u.tin) =(msg q.u.tin))
~|(%test-fail-seal !!)
msg
::
++ crub :: cryptosuite B (Ed)
2014-05-19 21:48:10 +04:00
^- acru
=| [puc=pass sed=ring]
=> |%
++ dap :: OEAP decode
|= [wid=@ xar=@ dog=@] ^- [p=@ q=@]
=+ pav=(sub wid xar)
=+ qoy=(cut 0 [xar pav] dog)
=+ dez=(mix (end 0 xar dog) (shaw %pad-b xar qoy))
[dez (mix qoy (shaw %pad-a pav dez))]
::
++ pad :: OEAP encode
|= [wid=@ rax=[p=@ q=@] meg=@] ^- @
=+ pav=(sub wid p.rax)
?> (gte pav (met 0 meg))
^- @
=+ qoy=(mix meg (shaw %pad-a pav q.rax))
=+ dez=(mix q.rax (shaw %pad-b p.rax qoy))
(can 0 [p.rax dez] [pav qoy] ~)
--
|%
++ as
=> |%
++ haul :: revealing haul
|= a=pass
!!
--
^?
|% ++ seal
|= [a=pass b=@ c=@]
^- @
!!
++ sign
|= [a=@ b=@] ^- @
!!
++ sure
|= [a=@ b=@]
^- (unit ,@)
!!
++ tear
|= [a=pass b=@]
^- (unit ,[p=@ q=@])
!!
--
::
++ de
|+ [key=@ cep=@] ^- (unit ,@)
!!
::
++ dy
|+ [a=@ b=@] ^- @
!!
++ en
|+ [key=@ msg=@] ^- @ux
!!
::
++ ex ^?
|% ++ fig ^- @uvH (shaf %bfig puc)
++ pac ^- @uvG (end 6 1 (shaf %acod sec))
++ pub ^- pass (cat 3 'b' puc)
++ sec ^- ring sed
--
::
++ nu
^?
|% ++ com
|= a=@
^+ ^?(..nu)
2014-05-21 02:51:07 +04:00
..nu(sed ~, puc a)
2014-05-19 21:48:10 +04:00
::
++ pit
|= [a=@ b=@]
^+ ^?(..nu)
2014-05-21 02:51:07 +04:00
..nu(sed b, puc (puck:ed b))
2014-05-19 21:48:10 +04:00
::
++ nol
|= a=@
^+ ^?(..nu)
2014-05-21 02:51:07 +04:00
..nu(sed a, puc (puck:ed a))
2014-05-19 21:48:10 +04:00
--
--
++ brew :: create keypair
|= [a=@ b=@] :: width seed
^- acru
(pit:nu:crub a b)
::
++ hail :: activate public key
|= a=pass
^- acru
=+ [mag=(end 3 1 a) bod=(rsh 3 1 a)]
?> =('b' mag)
(com:nu:crub bod)
::
++ wear :: activate secret key
|= a=ring
^- acru
=+ [mag=(end 3 1 a) bod=(rsh 3 1 a)]
?> =('b' mag)
(nol:nu:crub bod)
::
++ trub :: test ed
|= msg=@tas
^- @
2014-05-19 21:48:10 +04:00
=+ ali=(brew 1.024 (shax 'ali'))
=+ bob=(brew 1.024 (shax 'bob'))
=+ tef=(sign:as.ali [0 msg])
=+ lov=(sure:as.ali [0 tef])
?. &(?=(^ lov) =(msg u.lov))
~|(%test-fail-sign !!)
=+ key=(shax (shax (shax msg)))
=+ sax=(seal:as.ali pub:ex.bob key msg)
=+ tin=(tear:as.bob pub:ex.ali sax)
?. &(?=(^ tin) =(key p.u.tin) =(msg q.u.tin))
~|(%test-fail-seal !!)
msg
::
2014-06-01 03:49:48 +04:00
++ hmac :: HMAC-SHA1
|= [key=@ mes=@]
=+ ip=(fil 2 64 0x36)
=+ op=(fil 3 64 0x5c)
=+ ^= kex
?: (gth (met 3 key) 64)
(lsh 3 44 (shan (swap 3 key)))
(lsh 3 (sub 64 (met 3 key)) (swap 3 key))
=+ inn=(shan (swap 3 (cat 3 (swap 3 mes) (mix ip kex))))
(shan (swap 3 (cat 3 inn (mix op kex))))
::
2013-09-29 00:21:18 +04:00
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
2014-04-19 07:27:19 +04:00
:: section 3bC, UTC :: Gregorian only
::
++ dawn :: Jan 1 weekday
|= yer=@ud
=+ yet=(sub yer 1)
%- mod :_ 7
:(add 1 (mul 5 (mod yet 4)) (mul 4 (mod yet 100)) (mul 6 (mod yet 400)))
2014-04-19 07:27:19 +04:00
::
++ daws :: date weekday
|= yed=date
%- mod :_ 7
(add (dawn y.yed) (sub (yawn [y.yed m.yed d.t.yed]) (yawn y.yed 1 1)))
::
2014-04-19 07:27:19 +04:00
++ deal :: to leap sec time
|= yer=@da
=+ n=0
=+ yud=(yore yer)
|- ^- date
?: (gte yer (add (snag n lef:yu) ~s1))
(yore (year yud(s.t (add n s.t.yud))))
?: &((gte yer (snag n lef:yu)) (lth yer (add (snag n lef:yu) ~s1)))
yud(s.t (add +(n) s.t.yud))
?: =(+(n) (lent lef:yu))
(yore (year yud(s.t (add +(n) s.t.yud))))
$(n +(n))
::
++ lead :: from leap sec time
|= ley=date
=+ ler=(year ley)
=+ n=0
|- ^- @da
=+ led=(sub ler (mul n ~s1))
?: (gte ler (add (snag n les:yu) ~s1))
led
?: &((gte ler (snag n les:yu)) (lth ler (add (snag n les:yu) ~s1)))
?: =(s.t.ley 60)
(sub led ~s1)
led
?: =(+(n) (lent les:yu))
(sub led ~s1)
$(n +(n))
::
++ dust :: print UTC format
|= yed=date
^- tape
=+ wey=(daws yed)
;: weld
`tape`(snag wey (turn wik:yu |=(a=tape (scag 3 a))))
", " ~(rud at d.t.yed) " "
2014-04-19 07:27:19 +04:00
`tape`(snag (dec m.yed) (turn mon:yu |=(a=tape (scag 3 a))))
" " (scag 1 ~(rud at y.yed)) (slag 2 ~(rud at y.yed)) " "
~(rud at h.t.yed) ":" ~(rud at m.t.yed) ":" ~(rud at s.t.yed)
2014-04-19 07:27:19 +04:00
" " "+0000"
==
::
++ stud :: parse UTC format
|= cud=tape
^- (unit date)
=- ?~ tud ~
`[[%.y &3.u.tud] &2.u.tud &1.u.tud &4.u.tud &5.u.tud &6.u.tud ~]
^= tud
%+ rust cud
;~ plug
;~(pfix (stun [5 5] next) dim:ag)
::
%+ cook
|= a=tape
=+ b=0
|- ^- @
?: =(a (snag b (turn mon:yu |=(a=tape (scag 3 a)))))
+(b)
$(b +(b))
(ifix [ace ace] (star alf))
::
;~(sfix dim:ag ace)
;~(sfix dim:ag col)
;~(sfix dim:ag col)
dim:ag
(cold ~ (star next))
==
::
++ unt :: UGT to UTC time
|= a=@
(div (sub a ~1970.1.1) (bex 64))
2014-04-19 07:27:19 +04:00
::
++ yu :: UTC format constants
|%
2014-04-19 07:27:19 +04:00
++ mon ^- (list tape)
:~ "January" "February" "March" "April" "May" "June" "July"
"August" "September" "October" "November" "December"
==
::
++ wik ^- (list tape)
:~ "Sunday" "Monday" "Tuesday" "Wednesday" "Thursday"
"Friday" "Saturday"
2014-04-19 07:27:19 +04:00
==
::
++ les ^- (list ,@da)
:~ ~2012.7.1 ~2009.1.1 ~2006.1.1 ~1999.1.1 ~1997.7.1 ~1996.1.1
~1994.7.1 ~1993.7.1 ~1992.7.1 ~1991.1.1 ~1990.1.1 ~1988.1.1
~1985.7.1 ~1983.7.1 ~1982.7.1 ~1981.7.1 ~1980.1.1 ~1979.1.1
~1978.1.1 ~1977.1.1 ~1976.1.1 ~1975.1.1 ~1974.1.1 ~1973.1.1
~1972.7.1
2014-04-19 07:27:19 +04:00
==
++ lef ^- (list ,@da)
:~ ~2012.6.30..23.59.59 ~2008.12.31..23.59.58
2014-04-19 07:27:19 +04:00
~2005.12.31..23.59.57 ~1998.12.31..23.59.56
~1997.6.30..23.59.55 ~1995.12.31..23.59.54
~1994.6.30..23.59.53 ~1993.6.30..23.59.52
~1992.6.30..23.59.51 ~1990.12.31..23.59.50
~1989.12.31..23.59.49 ~1987.12.31..23.59.48
~1985.6.30..23.59.47 ~1983.6.30..23.59.46
~1982.6.30..23.59.45 ~1981.6.30..23.59.44
~1979.12.31..23.59.43 ~1978.12.31..23.59.42
~1977.12.31..23.59.41 ~1976.12.31..23.59.40
~1975.12.31..23.59.39 ~1974.12.31..23.59.38
~1973.12.31..23.59.37 ~1972.12.31..23.59.36
2014-04-19 07:27:19 +04:00
~1972.6.30..23.59.35
==
--
::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: section 3bD, JSON and XML ::
2013-09-29 00:21:18 +04:00
::
++ moon :: mime type to text
2014-03-13 05:04:58 +04:00
|= myn=mite
2013-09-29 00:21:18 +04:00
%+ rap
3
|- ^- tape
?~ myn ~
2013-12-24 00:49:15 +04:00
?: =(~ t.myn) (trip i.myn)
(weld (trip i.myn) `tape`['/' $(myn t.myn)])
2014-04-15 21:32:48 +04:00
::
++ poja :: parse JSON
2014-01-22 03:14:05 +04:00
|%
2014-04-16 23:47:41 +04:00
++ apex :: JSON object
;~(pose abox obox)
++ valu :: JSON value
2014-07-12 22:24:52 +04:00
%+ knee *json |. ~+
2014-02-12 14:53:12 +04:00
;~ pfix spac
2014-01-22 03:14:05 +04:00
;~ pose
2014-02-12 14:53:12 +04:00
(cold ~ (jest 'null'))
(jify %b bool)
(jify %s stri)
(cook |=(s=tape [%n p=(rap 3 s)]) numb)
abox
obox
2014-01-22 03:14:05 +04:00
==
2014-02-12 14:53:12 +04:00
==
:: JSON arrays
++ arra (ifix [sel (ws ser)] (more (ws com) valu))
2014-07-12 22:24:52 +04:00
++ abox (cook |=(elts=(list json) [%a p=elts]) arra)
2014-02-12 14:53:12 +04:00
:: JSON objects
2014-07-12 22:24:52 +04:00
++ pair ;~((comp |=([k=@ta v=json] [k v])) ;~(sfix (ws stri) (ws col)) valu)
2014-02-12 14:53:12 +04:00
++ obje (ifix [(ws kel) (ws ker)] (more (ws com) pair))
2014-07-12 22:24:52 +04:00
++ obox (cook |=(s=(list ,[@ta json]) [%o p=(mo s)]) obje)
2014-02-12 14:53:12 +04:00
:: JSON booleans
++ bool ;~(pose (cold & (jest 'true')) (cold | (jest 'false')))
:: JSON strings
++ stri
(cook |=(s=(list ,@) (rap 3 s)) (ifix [doq doq] (star jcha)))
++ jcha :: character in string
;~ pose
esca
;~ pose
:: Non-escape string characters
(shim 32 33)
(shim 35 91)
(shim 93 126)
(shim 128 255)
2014-01-22 03:14:05 +04:00
==
2014-02-12 14:53:12 +04:00
==
++ esca :: Escaped character
;~ pfix bas
;~ pose
doq
fas
soq
bas
(cold 8 (just 'b'))
(cold 9 (just 't'))
(cold 10 (just 'n'))
(cold 12 (just 'f'))
(cold 13 (just 'r'))
;~(pfix (just 'u') (cook tuft qix:ab)) :: Convert 4-digit hex to UTF-8
2014-01-22 03:14:05 +04:00
==
2014-02-12 14:53:12 +04:00
==
:: JSON numbers
++ numb
;~ (comp twel)
(mayb (piec hep))
;~ pose
(piec (just '0'))
;~((comp twel) (piec (shim '1' '9')) digs)
2014-01-22 03:14:05 +04:00
==
2014-02-12 14:53:12 +04:00
(mayb frac)
(mayb expo)
==
++ digs (star (shim '0' '9'))
++ expo :: Exponent part
;~ (comp twel)
(piec (mask "eE"))
(mayb (piec (mask "+-")))
digs
==
++ frac :: Fractional part
;~ (comp twel)
(piec dot)
digs
==
:: whitespace
++ spac (star (mask [`@`9 `@`10 `@`13 ' ' ~]))
++ ws |*(sef=_rule ;~(pfix spac sef))
:: plumbing
++ jify |*([t=@ta r=_rule] (cook |*([v=*] [t p=v]) r))
++ mayb |*(bus=_rule ;~(pose bus (easy "")))
++ twel |=([a=tape b=tape] (weld a b))
++ piec
2014-04-15 21:32:48 +04:00
|* bus=_rule
(cook |=(a=@ [a ~]) bus)
--
2013-09-29 00:21:18 +04:00
::
++ pojo :: print json
2014-07-12 22:24:52 +04:00
|= val=json
2013-09-29 00:21:18 +04:00
^- tape
?~ val "null"
?- -.val
%a
;: weld
"["
=| rez=tape
|- ^+ rez
?~ p.val rez
$(p.val t.p.val, rez :(weld rez ^$(val i.p.val) ?~(t.p.val ~ ",")))
"]"
==
::
%b ?:(p.val "true" "false")
%n (trip p.val)
2014-02-12 14:53:12 +04:00
%s
2014-07-06 01:26:35 +04:00
;: welp
2014-02-12 14:53:12 +04:00
"\""
%+ reel
(turn (trip p.val) jesc)
2014-07-06 01:26:35 +04:00
|=([p=tape q=tape] (welp +<))
2014-02-12 14:53:12 +04:00
"\""
==
2013-09-29 00:21:18 +04:00
%o
2014-07-06 01:26:35 +04:00
;: welp
2013-09-29 00:21:18 +04:00
"\{"
=+ viz=(~(tap by p.val) ~)
=| rez=tape
|- ^+ rez
?~ viz rez
%= $
viz t.viz
rez
2014-07-06 01:26:35 +04:00
:(welp rez "\"" (trip p.i.viz) "\":" ^$(val q.i.viz) ?~(t.viz ~ ","))
2013-09-29 00:21:18 +04:00
==
"}"
==
==
2014-04-15 21:32:48 +04:00
::
++ jo :: json reparser
=> |% ++ grub (unit ,*)
++ fist $+(json grub)
--
|%
++ ar :: array as list
|* wit=fist
|= jon=json
?. ?=([%a *] jon) ~
%- zl
|-
?~ p.jon ~
[i=(wit i.p.jon) t=$(p.jon t.p.jon)]
::
++ at :: array as tuple
2014-07-03 06:56:33 +04:00
|* wil=(pole fist)
|= jon=json
2014-07-09 11:37:47 +04:00
?. ?=([%a *] jon) ~
=+ raw=((at-raw wil) p.jon)
2014-07-03 06:56:33 +04:00
?.((za raw) ~ (some (zp raw)))
::
++ at-raw :: array as tuple
|* wil=(pole fist)
2014-07-09 11:37:47 +04:00
|= jol=(list json)
?~ wil ~
2014-07-09 11:37:47 +04:00
:- ?~(jol ~ (-.wil i.jol))
((at-raw +.wil) ?~(jol ~ t.jol))
::
++ bo :: boolean
|=(jon=json ?.(?=([%b *] jon) ~ [~ u=p.jon]))
::
++ bu :: boolean not
|=(jon=json ?.(?=([%b *] jon) ~ [~ u=!p.jon]))
::
++ cu :: transform
|* [poq=$+(* *) wit=fist]
|= jon=json
(bind (wit jon) poq)
::
++ da :: UTC date
|= jon=json
?. ?=([%s *] jon) ~
(bind (stud (trip p.jon)) |=(a=date (year a)))
::
++ mu :: true unit
|* wit=fist
|= jon=json
?~(jon (some ~) (wit jon))
::
++ ne :: number as real
|= jon=json
^- (unit ,@rd)
!!
::
++ ni :: number as integer
|= jon=json
?. ?=([%n *] jon) ~
(slaw %ui (cat 3 '0i' p.jon))
::
++ no :: number as cord
|= jon=json
?. ?=([%n *] jon) ~
(some p.jon)
::
++ of :: object as frond
2014-07-08 22:38:07 +04:00
|* wer=(pole ,[cord fist])
|= jon=json
?. ?=([%o [@ *] ~ ~] jon) ~
|-
?~ wer ~
2014-07-08 22:38:07 +04:00
?: =(-.-.wer p.n.p.jon)
((pe -.-.wer +.-.wer) q.n.p.jon)
((of +.wer) jon)
::
++ ot :: object as tuple
2014-07-08 22:38:07 +04:00
|* wer=(pole ,[cord fist])
2014-07-03 06:56:33 +04:00
|= jon=json
2014-07-09 11:37:47 +04:00
?. ?=([%o *] jon) ~
=+ raw=((ot-raw wer) p.jon)
2014-07-03 06:56:33 +04:00
?.((za raw) ~ (some (zp raw)))
::
++ ot-raw :: object as tuple
2014-07-08 22:38:07 +04:00
|* wer=(pole ,[cord fist])
2014-07-09 11:37:47 +04:00
|= jom=(map ,@t json)
?~ wer ~
2014-07-09 11:37:47 +04:00
=+ ten=(~(get by jom) -.-.wer)
[?~(ten ~ (+.-.wer u.ten)) ((ot-raw +.wer) jom)]
::
++ om :: object as map
|* wit=fist
|= jon=json
?. ?=([%o *] jon) ~
%- zm
|-
?~ p.jon ~
[n=[p=p.n.p.jon q=(wit q.n.p.jon)] l=$(p.jon l.p.jon) r=$(p.jon r.p.jon)]
::
++ pe :: prefix
|* [pre=* wit=fist]
(cu |*(a=* [pre a]) wit)
::
++ sa :: string as tape
|= jon=json
?.(?=([%s *] jon) ~ (some (trip p.jon)))
::
++ so :: string as cord
|= jon=json
?.(?=([%s *] jon) ~ (some p.jon))
::
++ su :: parse string
|* sab=rule
|= jon=json
?. ?=([%s *] jon) ~
(rush p.jon sab)
::
++ ul |=(jon=json ?~(jon (some ~) ~)) :: null
2014-07-03 06:56:33 +04:00
++ za :: full unit pole
|* pod=(pole (unit))
?~ pod &
?~ -.pod |
(za +.pod)
::
++ zl :: collapse unit list
|* lut=(list (unit))
?. |- ^- ?
?~(lut & ?~(i.lut | $(lut t.lut)))
~
%- some
|-
?~ lut ~
2014-07-16 03:07:39 +04:00
[i=u:+.i.lut t=$(lut t.lut)]
::
2014-07-03 06:56:33 +04:00
++ zp :: unit tuple
|* but=(pole (unit))
?~ but !!
?~ +.but
u:->.but
[u:->.but (zp +.but)]
::
++ zt :: unit tuple
|* lut=(list (unit))
?: =(~ lut) ~
?. |- ^- ?
?~(lut & ?~(i.lut | $(lut t.lut)))
~
%- some
|-
?~ lut !!
?~ t.lut u:+.i.lut
[u:+.i.lut $(lut t.lut)]
::
++ zm :: collapse unit map
|* lum=(map term (unit))
?. |- ^- ?
?~(lum & ?~(q.n.lum | &($(lum l.lum) $(lum r.lum))))
~
%- some
|-
?~ lum ~
[[p.n.lum u:+.q.n.lum] $(lum l.lum) $(lum r.lum)]
--
::
2014-04-15 21:32:48 +04:00
++ joba
2014-07-12 22:24:52 +04:00
|= [p=@t q=json]
2014-04-15 21:32:48 +04:00
^- json
[%o [[p q] ~ ~]]
2014-07-22 20:32:35 +04:00
::
++ jobe
|= a=(list ,[p=@t q=json])
2014-04-15 21:32:48 +04:00
^- json
2014-07-12 22:24:52 +04:00
[%o (~(gas by *(map ,@t json)) a)]
2014-07-22 20:32:35 +04:00
::
++ jape
2014-04-16 04:49:11 +04:00
|= a=tape
2014-07-12 22:24:52 +04:00
^- json
2014-04-16 04:49:11 +04:00
[%s (crip a)]
2014-07-22 20:32:35 +04:00
::
++ jone
2014-02-12 14:53:12 +04:00
|= a=@
2014-07-12 22:24:52 +04:00
^- json
2014-04-16 04:49:11 +04:00
:- %n
?: =(0 a) '0'
(crip (flop |-(^-(tape ?:(=(0 a) ~ [(add '0' (mod a 10)) $(a (div a 10))])))))
2014-07-22 20:32:35 +04:00
::
++ jesc
2014-04-16 04:49:11 +04:00
|= a=@ ^- tape
?.(=(10 a) [a ~] "\\n")
2014-07-22 20:32:35 +04:00
::
++ taco :: atom to octstream
2014-03-23 01:42:25 +04:00
|= tam=@ ^- octs
[(met 3 tam) tam]
2014-07-22 20:32:35 +04:00
::
++ tact :: tape to octstream
2013-09-29 00:21:18 +04:00
|= tep=tape ^- octs
2014-07-22 20:32:35 +04:00
(taco (rap 3 tep))
::
++ tell :: wall to octstream
2014-03-12 23:50:39 +04:00
|= wol=wall ^- octs
2014-07-22 20:32:35 +04:00
=+ buf=(rap 3 (turn wol |=(a=tape (crip (weld a `tape`[`@`10 ~])))))
2014-03-12 23:50:39 +04:00
[(met 3 buf) buf]
2014-07-22 20:32:35 +04:00
::
++ txml :: string to xml
2013-09-29 00:21:18 +04:00
|= tep=tape ^- manx
[[%$ [%$ tep] ~] ~]
2014-07-22 20:32:35 +04:00
::
++ xmla :: attributes to tape
2013-09-29 00:21:18 +04:00
|= [tat=mart rez=tape]
^- tape
?~ tat rez
2014-07-22 20:32:35 +04:00
=+ ryq=$(tat t.tat)
2014-04-03 05:06:45 +04:00
:(weld (xmln n.i.tat) "=\"" (xmle | v.i.tat '"' ?~(t.tat ryq [' ' ryq])))
2014-07-22 20:32:35 +04:00
::
++ xmle :: escape for xml
2014-04-03 05:06:45 +04:00
|= [unq=? tex=tape rez=tape]
?: unq
2014-07-22 20:32:35 +04:00
(weld tex rez)
=+ xet=`tape`(flop tex)
2013-09-29 00:21:18 +04:00
|- ^- tape
?~ xet rez
%= $
2014-07-22 20:32:35 +04:00
xet t.xet
rez ?- i.xet
34 ['&' 'q' 'u' 'o' 't' ';' rez]
38 ['&' 'a' 'm' 'p' ';' rez]
39 ['&' '#' '3' '9' ';' rez]
60 ['&' 'l' 't' ';' rez]
62 ['&' 'g' 't' ';' rez]
* [i.xet rez]
==
2014-07-21 07:15:02 +04:00
==
2014-07-22 20:32:35 +04:00
::
++ xmln :: name to tape
2013-09-29 00:21:18 +04:00
|= man=mane ^- tape
2014-07-22 20:32:35 +04:00
?@ man (trip man)
2013-12-24 00:49:15 +04:00
(weld (trip -.man) `tape`[':' (trip +.man)])
2014-07-22 20:32:35 +04:00
::
++ xmll :: nodelist to tape
2014-04-03 05:06:45 +04:00
|= [unq=? lix=(list manx) rez=tape]
2013-09-29 00:21:18 +04:00
|- ^- tape
2014-04-03 05:06:45 +04:00
?~ lix rez
2014-07-22 20:32:35 +04:00
(xmlt unq i.lix $(lix t.lix))
::
++ xmlt :: node to tape
2014-04-03 05:06:45 +04:00
|= [unq=? mex=manx rez=tape]
2013-09-29 00:21:18 +04:00
^- tape
2014-04-03 05:06:45 +04:00
?: ?=([%$ [[%$ *] ~]] g.mex)
2014-07-22 20:32:35 +04:00
(xmle unq v.i.a.g.mex rez)
2014-07-07 02:16:20 +04:00
=+ man=`mane`-.g.mex
2014-04-05 23:04:05 +04:00
=. unq |(unq =(%script man) =(%style man))
2014-07-22 20:32:35 +04:00
=+ tam=(xmln man)
2013-09-29 00:21:18 +04:00
=+ end=:(weld "</" tam ">" rez)
2014-04-03 05:06:45 +04:00
=+ bod=['>' (xmll unq c.mex :(weld "</" tam ">" rez))]
2014-07-07 02:16:20 +04:00
=+ att=`mart`a.g.mex
2013-09-29 00:21:18 +04:00
:- '<'
%+ weld tam
2013-12-24 00:49:15 +04:00
`_tam`?~(att bod [' ' (xmla att bod)])
2014-07-22 20:32:35 +04:00
::
++ xmlp :: xml parser
2014-07-16 09:47:43 +04:00
|%
++ apex
=+ spa=;~(pose comt whit)
2014-07-22 20:32:35 +04:00
%+ knee *manx |. ~+
%+ ifix [(star spa) (star spa)]
;~ pose
%+ sear
|=([a=marx b=marl c=mane] ?.(=(c n.a) ~ (some [a b])))
;~(plug head (more (star comt) ;~(pose apex chrd)) tail)
2014-07-22 20:32:35 +04:00
empt
==
2014-07-16 09:47:43 +04:00
::
++ attr :: attribute
2014-07-22 20:32:35 +04:00
%+ knee *mart |. ~+
%- star
;~ pfix (plus whit)
2014-07-22 20:32:35 +04:00
;~ plug name
;~ pfix tis
;~ pose
(ifix [doq doq] (star ;~(less doq escp)))
(ifix [soq soq] (star ;~(less soq escp)))
2014-07-22 20:32:35 +04:00
== ==
== ==
2014-07-16 09:47:43 +04:00
::
++ chrd :: character data
2014-07-22 20:32:35 +04:00
%+ knee *manx |. ~+
%+ cook |=(a=tape :/(a))
(plus ;~(less soq doq ;~(pose (just `@`10) escp)))
::
++ comt %+ ifix [(jest '<!--') (jest '-->')] :: comments
(star ;~(less (jest '-->') ;~(pose whit prn)))
::
++ escp
2014-07-22 20:32:35 +04:00
;~ pose
;~(less gal gar pam prn)
(cold '>' (jest '&gt;'))
(cold '<' (jest '&lt;'))
(cold '&' (jest '&amp;'))
(cold '"' (jest '&quot;'))
(cold '\'' (jest '&apos;'))
2014-07-22 20:32:35 +04:00
==
2014-07-16 09:47:43 +04:00
++ empt :: self-closing tag
(ifix [gal (jest '/>')] ;~(plug ;~(plug name attr) (cold ~ (star whit))))
2014-07-16 09:47:43 +04:00
::
++ head :: opening tag
2014-07-22 20:32:35 +04:00
%+ knee *marx |. ~+
(ifix [gal gar] ;~(plug name attr))
2014-07-16 09:47:43 +04:00
::
++ name :: tag name
2014-07-22 20:32:35 +04:00
%+ knee *mane |. ~+
=+ ^= chx
%+ cook crip
;~ plug
;~(pose cab alf)
(star ;~(pose cab dot alp))
==
;~(pose ;~(plug ;~(sfix chx col) chx) chx)
2014-07-16 09:47:43 +04:00
::
++ tail (ifix [(jest '</') gar] name) :: closing tag
++ whit (mask ~[`@`0x20 `@`0x9 `@`0xa]) :: whitespace
--
2014-07-22 20:32:35 +04:00
::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: section 3bE, tree sync ::
::
++ alas :: sign misos
2014-07-10 00:56:23 +04:00
|= [yob=nori qez=mizu]
^- nori
?- -.yob
2014-07-22 20:32:35 +04:00
|
yob
&
%= yob
q.q %+ turn q.q.yob
|= tak=tako
^- tako
?: =(p.q.tak *mizu) tak(p.q qez) tak
==
2014-07-21 07:15:02 +04:00
==
2014-07-22 20:32:35 +04:00
::
++ cure :: invert miso
|= mis=yaki
:- p.mis
?- -.q.mis
2014-07-22 20:32:35 +04:00
%del [%ins p.q.mis]
%ins [%del p.q.mis]
%mut [%mut (limp p.q.mis)]
2013-09-29 00:21:18 +04:00
==
2014-07-22 20:32:35 +04:00
::
++ curl :: invert soba
2013-09-29 00:21:18 +04:00
|= doz=soba
^- soba
:- [q.p.doz p.p.doz]
2014-07-22 20:32:35 +04:00
(turn (flop q.doz) |=([a=path b=yaki] [a (cure b)]))
::
++ cosh :: locally rehash
2013-09-29 00:21:18 +04:00
|= ank=ankh
2014-07-22 20:32:35 +04:00
ank(p dash:(zu ank))
::
++ cost :: new external patch
2013-09-29 00:21:18 +04:00
|= [bus=ankh ank=ankh]
^- soba
:- [p.ank p.bus]
%- flop
2014-07-22 20:32:35 +04:00
myz:(dist:(zu ank) %c bus)
::
++ ze
|_ [lim=@da dome]
2013-09-29 00:21:18 +04:00
++ aeon :: aeon:ze
2014-07-22 20:32:35 +04:00
|= lok=case :: act count through
^- (unit ,@ud)
?- -.lok
%da
?: (gth p.lok lim) ~
|- ^- (unit ,@ud)
?~ hit [~ let]
?: (gte p.lok p.i.hit) [~ let]
$(hit t.hit, let (dec let))
::
%tas (~(get by lab) p.lok)
%ud ?:((gth p.lok let) ~ [~ p.lok])
==
2013-09-29 00:21:18 +04:00
::
++ ache :: ache:ze
2014-07-22 20:32:35 +04:00
^- arch :: arch report
:+ p.ank
?~(q.ank ~ [~ p.u.q.ank])
|- ^- (map ,@ta ,~)
?~ r.ank ~
[[p.n.r.ank ~] $(r.ank l.r.ank) $(r.ank r.r.ank)]
2013-09-29 00:21:18 +04:00
::
++ acai :: acai:ze
2014-07-22 20:32:35 +04:00
|= mus=masu :: inverse trout
[p.mus q.mus [q.r.mus p.r.mus] [q.s.mus p.s.mus] t.mus]
::
2013-09-29 00:21:18 +04:00
++ acid :: acid:ze
2014-07-22 20:32:35 +04:00
|= oan=@ud :: invert to
^- (list tako)
=+ mar=(scag (sub let oan) hit)
(alar (adze (turn mar |=([a=@da b=nori] b))))
2013-09-29 00:21:18 +04:00
::
++ adze :: adze:ze
2014-07-22 20:32:35 +04:00
|= may=(list nori) :: reverse nori
%- flop
^- (list nori)
%+ murn may
|= n=nori
?- -.n
& [~ u=[%& (bind p.n acai) (curl q.n)]]
| ~
==
2013-09-29 00:21:18 +04:00
::
++ alar :: alar:ze
2014-07-22 20:32:35 +04:00
|= may=(list nori) :: nori to tako
^- (list tako)
%- zing
%+ turn may
|= n=nori
?- -.n
& q.q.n
| ~
==
2013-09-29 00:21:18 +04:00
::
2014-05-20 22:53:49 +04:00
++ alda :: alda:ze
2014-07-22 20:32:35 +04:00
|= hoe=(list tako) :: deconstruct
^- (map path (list yaki))
%+ reel hoe
|= [rak=tako hom=(map path (list yaki))]
%- ~(add ja hom) rak
::
2014-07-03 19:38:26 +04:00
++ alot :: alot:ze
2014-07-22 20:32:35 +04:00
|= yop=(map path (list yaki)) :: construct, inverse alda
^- (list tako)
=+ puy=(~(tap by yop) ~)
%- zing
%+ turn puy :: map on pair -> list yaki
|= yup=[p=path q=(list yaki)]
%+ turn q.yup :: map on miso -> tako
|= yak=yaki
[p.yup yak]
::
++ alto :: alto:ze
2014-07-22 20:32:35 +04:00
|= $: wek=waks
yop=(map path (list yaki)) :: yop before peq
peq=(map path (list yaki)) :: aka miso commute
nik=niku
==
^+ [wek peq]
=+ puy=(~(tap by (~(gas by yop) (~(tap by peq) ~))) ~)
%+ roll puy
|= $: yup=[p=path q=(list yaki)]
$: kew=_wek
qep=_peq
==
==
=+ wof=(~(get by kew) p.yup)
=+ yoq=(~(get by yop) p.yup)
=+ peb=(~(get by qep) p.yup)
=+ lyr=(lyre wof ?~(yoq ~ u.yoq) ?~(peb ~ u.peb) nik)
:- ?~ -.lyr kew (~(put by kew) p.yup (lost u.-.lyr))
(~(put by qep) p.yup +.lyr)
2014-07-01 06:28:47 +04:00
::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
++ lisp :: transform urge
2014-07-22 20:32:35 +04:00
|* wig=(urge)
|= dog=woof
^+ [p=dog q=wig]
?@ dog
!!
=+ dog=+.dog
=- [[%chan (loss -.res)] +.res]
^= res
|- ^+ [p=dog q=wig]
::~& [%lisp dog (lith wig)]
?~ wig :: no more urges
=+ woo=(wode dog) :: dimensions
?> =(p.woo 0) :: line
[dog ~[[%& q.woo]]] :: extend
?~ dog :: no more woofs
=+ woo=(lode wig) :: dimensions
?> =(p.woo 0) :: line
[~[q.woo] wig] :: extend
?@ i.dog :: dog skip
?- -.i.wig :: dog skip, wig skip
& :: consume min(d,w) skip offset
?: =(i.dog p.i.wig) :: consume both
=+ mol=$(dog t.dog, wig t.wig)
[[i.dog p.mol] [[%& i.dog] q.mol]]
?: (lth i.dog p.i.wig) :: consume dog, part of wig
=+ mol=$(dog t.dog, p.i.wig (sub p.i.wig i.dog))
[[i.dog p.mol] [[%& i.dog] q.mol]]
=+ mol=$(i.dog (sub i.dog p.i.wig), wig t.wig) :: consume wig, part of dog
[[p.i.wig p.mol] [[%& p.i.wig] q.mol]]
::
| :: dog skip, wig chunk
=+ leg=(lent p.i.wig)
?> (gte i.dog leg) :: assert no conflict
=+ mol=$(i.dog (sub i.dog leg), wig t.wig) :: consume wig, part of dog
[[(lent q.i.wig) p.mol] [i.wig q.mol]]
== :: wig skip, dog chunk
?> ?=(& -.i.wig) :: assert no conflct (2x chunk)
?: =(p.i.wig -.i.dog) :: consume both (chunk = skip)
=+ mol=$(dog t.dog, wig t.wig)
[[i.dog p.mol] [[%& +.i.dog] q.mol]]
?: (gth p.i.wig -.i.dog) :: consume dog, part of wig
=+ mol=$(dog t.dog, p.i.wig (sub p.i.wig -.i.dog))
[[i.dog p.mol] [[%& +.i.dog] q.mol]]
!! :: assert no conflict
2014-07-01 06:28:47 +04:00
::
++ lide :: merge dogs
2014-07-22 20:32:35 +04:00
|= [wig=woof dog=woof]
^- woof
?@ dog
::%know
wig
?@ wig
::%know
dog
=+ dog=`(list $|(@ud [p=@ud q=@ud]))`(loss +.dog)
=+ wig=`(list $|(@ud [p=@ud q=@ud]))`(loss +.wig)
:- %chan %- loss
|- ^- (list $|(@ud [p=@ud q=@ud]))
?~ dog wig
?~ wig dog
?^ i.dog
?^ i.wig
:_ $(dog t.dog, wig t.wig) :: merge changes
?: (lte -.i.dog +.i.wig)
[-.i.wig (add +.i.dog (sub +.i.wig -.i.dog))]
[(add -.i.wig (sub -.i.dog +.i.wig)) +.i.dog]
?: (gte i.wig -.i.dog)
[i.dog $(dog t.dog, i.wig (sub i.wig -.i.dog))]
[[i.wig 0] $(wig t.wig, -.i.dog (sub -.i.dog i.wig))]
?^ i.wig
?: (gte i.dog +.i.wig)
[i.wig $(wig t.wig, i.dog (sub i.dog +.i.wig))]
[[-.i.wig (sub +.i.wig i.dog)] $(wig [[0 i.dog] t.wig], dog t.dog)]
::[[i.dog 0] $(dog t.dog, -.i.wig (sub -.i.wig i.dog))]
?: (gte i.wig i.dog)
[i.dog $(dog t.dog, i.wig (sub i.wig i.dog))]
[i.wig $(i.dog (sub i.dog i.wig), wig t.wig)]
::
++ lize :: merge dogs (inverse)
|= [wig=woof dog=woof]
^- woof
?@ dog
::%know
wig
?@ wig
::%know
dog
=+ dogg=dog
=+ dog=`(list $|(@ud [p=@ud q=@ud]))`(loss +.dog)
=+ wig=`(list $|(@ud [p=@ud q=@ud]))`(loss +.wig)
~& [%lize wig dog]
:- %chan %- loss
|- ^- (list $|(@ud [p=@ud q=@ud]))
~& [%lize-iter wig dog]
?~ dog wig
?~ wig dog
?^ i.dog
?^ i.wig
:_ ?: =(-.i.wig -.i.dog)
$(dog t.dog, wig t.wig)
:::_ $(dog t.dog, wig t.wig)
?: (gth -.i.wig -.i.dog)
$(wig t.wig, dog [(sub -.i.wig -.i.dog) t.dog])
$(wig [(sub -.i.dog -.i.wig) t.wig], dog t.dog)
[(sub -.i.wig +.i.dog) (sub +.i.wig -.i.dog)] :: conflict on sub overflow
?: =(i.wig 0)
$(wig t.wig)
?: (gte i.wig -.i.dog)
[i.dog $(dog t.dog, i.wig (sub i.wig -.i.dog))]
[[i.wig 0] $(wig t.wig, -.i.dog (sub -.i.dog i.wig))]
?: =(i.dog 0)
$(dog t.dog)
?^ i.wig
?: (gte i.dog -.i.wig)
[i.wig $(wig t.wig, i.dog (sub i.dog -.i.wig))]
[[+.i.wig (sub -.i.wig i.dog)] $(wig [[i.dog 0] t.wig], dog t.dog)]
::[[i.dog 0] $(dog t.dog, -.i.wig (sub -.i.wig i.dog))]
?: (gte i.wig i.dog)
[i.dog $(dog t.dog, i.wig (sub i.wig i.dog))]
[i.wig $(i.dog (sub i.dog i.wig), wig t.wig)]
::
2014-07-10 23:13:42 +04:00
++ loss :: simplify dog
2014-07-22 20:32:35 +04:00
|= dog=(list $|(@ud [p=@ud q=@ud]))
|-
^+ dog
?~ dog ~
?~ t.dog
?@ i.dog
?: =(i.dog 0)
~
dog
?: &(=(p.i.dog 0) =(q.i.dog 0))
~
dog
?@ i.dog
?@ i.t.dog
$(dog [(add i.dog i.t.dog) t.t.dog])
?: =(i.dog 0)
$(dog t.dog)
[i.dog $(dog t.dog)]
?: &(=(p.i.dog 0) =(q.i.dog 0))
$(dog t.dog)
[i.dog $(dog t.dog)]
2014-07-10 23:13:42 +04:00
::
++ lost
2014-07-22 20:32:35 +04:00
|= dog=woof
^- woof
?@ dog
dog
[%chan (loss +.dog)]
::
++ lode :: urge dimensions
2014-07-22 20:32:35 +04:00
|= wig=(urge)
^- [p=@ q=@]
%+ reel wig
|= [wug=(unce) [p=@ q=@]]
?- -.wug
&
:- (add p.wug p)
(add p.wug q)
|
:- (add (lent p.wug) p)
(add (lent q.wug) q)
==
::
++ wode :: woof dimensions
2014-07-22 20:32:35 +04:00
|= dog=(list $|(@ud [p=@ud q=@ud]))
^- [p=@ q=@]
%+ reel dog
|= [dug=$|(@ud [p=@ud q=@ud]) [p=@ q=@]]
?@ dug
[(add dug p) (add dug q)]
[(add p.dug p) (add q.dug q)]
2014-07-01 06:28:47 +04:00
::
++ lith :: initial merge points
2014-07-22 20:32:35 +04:00
|= wig=(urge)
^- woof
:- %chan
%+ turn wig
|= wug=(unce)
?- -.wug
& p.wug
| [(lent p.wug) (lent q.wug)]
==
2014-07-01 06:28:47 +04:00
::
2014-07-10 18:24:29 +04:00
++ luth :: invert woof
2014-07-22 20:32:35 +04:00
|= dog=woof
^- woof
?@ dog
dog
:- %chan
%+ turn +.dog
|= a=$|(@ud [p=@ud q=@ud])
?@ a a
[q.a p.a]
2014-07-10 18:24:29 +04:00
::
2014-07-10 23:13:42 +04:00
++ alne :: is new
2014-07-22 20:32:35 +04:00
|= [yak=yaki nik=niku] :: if %.n, should invert
?: &(=(p.q.p.nik p.p.yak) =(q.q.p.nik q.p.yak)) :: domstic, new
%.n
?: &(=(p.q.q.nik p.p.yak) =(q.q.q.nik q.p.yak)) :: from other, new
%.y
=+ ank=(~(get by p.p.nik) [p.p.yak q.p.yak]) :: third party
?~ ank %.y
(gth r.p.yak q.u.ank)
::
++ alho :: update woof, misos
2014-07-22 20:32:35 +04:00
|= [wof=woof mad=(list yaki) nik=niku]
^- [woof (list yaki)]
?~ mad [wof ~]
~& [%foreign p.i.mad]
?. (alne i.mad nik)
?: &(?=(%mut -.q.i.mad) ?=(%c -.q.p.q.i.mad))
~& [%invert-old p.i.mad]
=+ wug=(lize wof (luth (lith p.q.p.q.i.mad))) :: invert!
$(mad t.mad, wof wug)
?: ?=(%mut -.q.i.mad)
~| "Cannot generate merge with non textfile changes"
!!
~& [%skip-add-or-del p.i.mad]
$(mad t.mad)
?: &(?=(%mut -.q.i.mad) ?=(%c -.q.p.q.i.mad))
~& [%apply-new [%origin p.i.mad] [%wof wof] %mut]
=+ wug=((lisp p.q.p.q.i.mad) wof)
=+ rec=$(mad t.mad, wof p.wug)
[-.rec [[p.i.mad %mut [p.p.q.i.mad [%c q.wug]]] +.rec]]
?: ?=(%mut -.q.i.mad)
~| "Cannot generate merge with non textfile changes"
!!
?: ?=(%del -.q.i.mad)
=+ rec=$(wof %know, mad t.mad)
[-.rec [i.mad +.rec]]
=+ rec=$(wof %know, mad t.mad)
[-.rec [i.mad +.rec]]
2014-07-01 06:28:47 +04:00
::
++ lobo :: update woof, miso
2014-07-22 20:32:35 +04:00
|= [wof=woof don=miso]
^- woof
?: &(?=(%mut -.don) ?=(%c -.q.p.don))
(lide wof (lith p.q.p.don))
?: ?=(%mut -.don)
~| "Cannot generate merge with non textfile changes"
!!
%know
2014-07-01 06:28:47 +04:00
::
++ lyre :: put yeb before zeq
2014-07-22 20:32:35 +04:00
|= [wof=(unit woof) yeb=(list yaki) zeq=(list yaki) nik=niku]
^- [(unit woof) (list yaki)]
%- |= fow=(unit woof) :: postprocess roll
?~ fow [fow zeq]
=+ alh=(alho u.fow zeq nik)
:- (some -.alh) +.alh
%+ roll yeb
|= [mis=yaki waf=_wof]
~& [%our [%origin p.mis]]
?~ waf
?: &(?=(%mut -.q.mis) ?=(%c -.q.p.q.mis))
(some (lith p.q.p.q.mis))
?: ?=(%mut -.q.mis)
~| "Cannot generate merge with non textfile changes"
!!
(some %know)
~& [%our %waf-mut (lobo u.waf q.mis)]
(some (lobo u.waf q.mis))
2014-07-01 06:28:47 +04:00
::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::
2013-09-29 00:21:18 +04:00
++ amor :: amor:ze
2014-07-22 20:32:35 +04:00
|= ren=?(%v %x %y %z) :: endpoint query
^- (unit ,*)
?- ren
%v [~ `dome`+<+.amor]
%x ?~(q.ank ~ [~ q.u.q.ank])
%y [~ ache]
%z [~ ank]
==
2013-09-29 00:21:18 +04:00
::
++ ante :: ante:ze
2014-07-22 20:32:35 +04:00
|= lem=nori :: rewind by change
^+ +>
?- -.lem
& (avon:(anti q.lem) (bind p.lem acai) q.q.lem)
| +>(lab (~(del by lab) p.lem))
==
2013-09-29 00:21:18 +04:00
::
++ anti :: axon:ze
2014-07-22 20:32:35 +04:00
|= nyp=soba :: reverse axon
^+ +>
+>(ank ank:(dusk:(zu ank) nyp))
::
2013-09-29 00:21:18 +04:00
++ argo :: argo:ze
2014-07-22 20:32:35 +04:00
|= oan=@ud :: rewind to aeon
^+ +>
?: =(let oan) +>
=+ lem=?>(?=(^ hit) q.i.hit)
=: let (dec let)
hit ?>(?=(^ hit) t.hit)
==
$(+> (ante lem))
::
++ arum :: arum:ze
2014-07-22 20:32:35 +04:00
|= [wak=waks tak=(list tako) kat=(list tako) nik=niku] :: hard merge
^- [waks (list tako)]
=+ alt=(alto wak (alda tak) (alda kat) nik)
[-.alt (alot +.alt)]
2013-09-29 00:21:18 +04:00
::
++ clen
2014-07-22 20:32:35 +04:00
|= [shp=ship des=desk]
|= a=nori
^- ?
?- -.a
| |
&
?~ p.a |
&(=(p.u.p.a shp) =(q.u.p.a des))
==
::
2014-06-02 22:41:53 +04:00
++ auld :: auld:ze
2014-07-22 20:32:35 +04:00
|= [gem=germ who=ship des=desk sab=saba] :: construct merge
^- (unit (unit nori)) ::::::
=+ nik=`niku`[[ang who des] [t.sab p.sab q.sab]] :: merge partners
=+ ^= viq ^- [p=@ud q=@ud r=waks] :: merge status
=+ viq=(~(get by ang) [p.sab q.sab]) ::
?~(viq [0 0 ~] u.viq) ::
=. sab ::
?: =(q.viq p.r.sab) sab :: perfect motion
?> (gth q.viq p.r.sab) :: proper motion
%= sab ::
p.r q.viq ::
s (slag (sub q.viq p.r.sab) s.sab) :: remove excess
== ::
=+ stu=(skid s.sab (clen who des)) ::
::=+ len=(lent -.stu)
::=. sab sab(s +.stu) ::
?~ s.sab [~ ~] :: up to date
=+ ^= mus ^- masu :: sync square
:* p.sab q.sab [p.viq +(let)]
[q.viq q.r.sab] r.viq
==
~& [%merge-sync mus]
=+ kat=(alar s.sab) :: takos
=+ lem=[%& p=[~ u=mus] q=`soba`[_[@ @] kat]] :: nori
=+ ^= tak :: local changes
::%+ slag len
%- alar %- flop :: chronological takos
%+ turn (scag (sub let p.viq) hit) :: remove excess
|=(a=frog q.a)
?: &(?=(%fine gem) |(!=(tak ~) !=(r.viq ~)))
~
?- gem
%fine
[~ ~ lem]
%mate
=+ tig=(mang [arum r.viq tak kat nik] |=(* *(unit))) :: moves
?@ tig ~
=+ res=((hard ,[waks (list tako)]) u.tig)
[~ ~ lem(q.q +.res, t.u.p -.res)] :: update takos, woof
%that
=+ tig=(mang [arum r.viq ~ kat nik] |=(* *(unit)))
?~ tig !!
[~ ~ lem(q.q (weld (acid p.viq) q.q.lem))]
%this
=+ tig=(need (mang [arum r.viq tak ~ nik] |=(* *(unit))))
=+ typ=((hard ,[waks (list tako)]) tig)
[~ ~ lem(q.q ~, t.u.p -.typ)]
%check
=+ tig=(mang [arum r.viq tak kat nik] |=(* *(unit))) :: moves
?@ tig
~& %check-bad
~
=+ typ=((hard ,[waks (list tako)]) u.tig)
~& [%check-good -.typ]
[~ ~]
%conf
!!
==
2013-09-29 00:21:18 +04:00
::
++ auto :: auto:ze
2014-07-22 20:32:35 +04:00
|= mun=mood :: read at point
^- (unit)
?: ?=(%v p.mun)
[~ `dome`+<+.auto]
?: &(?=(%w p.mun) !?=(%ud -.q.mun))
?^(r.mun ~ [~ let])
?: ?=(%w p.mun)
?> ?=(^ hit) ?^(r.mun ~ [~ i.hit])
(amor(ank ank:(deny:(zu ank) r.mun)) p.mun)
2013-09-29 00:21:18 +04:00
::
++ aver :: aver:ze
2014-07-22 20:32:35 +04:00
|= mun=mood :: direct read
^- (unit (unit ,*))
=+ nao=(aeon q.mun)
?~(nao ~ [~ (avid u.nao mun)])
2013-09-29 00:21:18 +04:00
::
++ avid :: avid:ze
2014-07-22 20:32:35 +04:00
|= [oan=@ud mun=mood] :: seek and read
^- (unit)
?: &(?=(%w p.mun) !?=(%ud -.q.mun)) :: NB only for speed
?^(r.mun ~ [~ oan])
(auto:(argo oan) mun)
2013-09-29 00:21:18 +04:00
::
2014-07-11 00:54:28 +04:00
++ aven :: aven:ze
2014-07-22 20:32:35 +04:00
|= tak=(list tako)
%+ roll tak
|= [tek=tako ung=_ang]
=+ exi=(~(get by ung) [p.p.q.tek q.p.q.tek])
?~ exi
%+ ~(put by (~(del by ung) [p.p.q.tek q.p.q.tek]))
[p.p.q.tek q.p.q.tek]
[1 r.p.q.tek _waks]
?: (gth r.p.q.tek q.u.exi)
%+ ~(put by (~(del by ung) [p.p.q.tek q.p.q.tek]))
[p.p.q.tek q.p.q.tek]
[p.u.exi r.p.q.tek r.u.exi]
ung
2014-07-11 00:54:28 +04:00
::
++ avon :: avon:ze
2014-07-22 20:32:35 +04:00
|= [mys=(unit masu) tak=(list tako)] :: apply trout
^+ +>
?~ mys +>
=+ [yek=[p.u.mys q.u.mys] det=[q.r.u.mys q.s.u.mys t.u.mys]]
=+ guf=(~(get by ang) yek)
=+ ted=`[p=@ q=@ r=waks]`?~(guf [0 0 ~] u.guf)
~& [%avon p.u.mys q.u.mys [%haz ted] [%too r.u.mys] [%fro s.u.mys] [%wak t.u.mys]]
=. ang (aven tak)
+>.$(ang ?:(=([0 0 ~] det) (~(del by ang) yek) (~(put by ang) yek det)))
2014-05-20 22:53:49 +04:00
::
2013-09-29 00:21:18 +04:00
++ axel :: axel:ze
2014-07-22 20:32:35 +04:00
|= [wen=@da lem=nori] :: edit
^+ +>
=: let +(let)
hit :-([wen lem] hit)
==
?- -.lem
& (avon:(axon q.lem) p.lem q.q.lem)
| +>(lab ?<((~(has by lab) p.lem) (~(put by lab) p.lem let)))
==
::
++ axon :: axon:ze
2014-07-22 20:32:35 +04:00
|= nyp=soba :: apply changes
^+ +>
+>(ank ank:(durn:(zu ank) nyp))
2013-09-29 00:21:18 +04:00
--
2014-07-22 20:32:35 +04:00
::
++ zu :: filesystem
2013-09-29 00:21:18 +04:00
|= ank=ankh :: filesystem state
=| myz=(list tako) :: changes in reverse
2013-09-29 00:21:18 +04:00
=| ram=path :: reverse path into
|%
++ dash :: local rehash
2014-07-22 20:32:35 +04:00
^- cash
%+ mix ?~(q.ank 0 p.u.q.ank)
=+ axe=1
|- ^- cash
?~ r.ank _@
;: mix
(shaf %dash (mix axe (shaf %dush (mix p.n.r.ank p.q.n.r.ank))))
$(r.ank l.r.ank, axe (peg axe 2))
$(r.ank r.r.ank, axe (peg axe 3))
==
2013-09-29 00:21:18 +04:00
::
++ dosh %_(. p.ank dash) :: rehash and save
++ dose :: ascend
2014-07-22 20:32:35 +04:00
|= [lol=@ta kan=ankh]
^+ +>
?> &(?=(^ ram) =(lol i.ram))
%= +>
ram t.ram
ank
?: =([0 ~ ~] ank)
?. (~(has by r.kan) lol) kan
kan(r (~(del by r.kan) lol))
kan(r (~(put by r.kan) lol ank))
==
2013-09-29 00:21:18 +04:00
::
++ deaf :: add change
2014-07-22 20:32:35 +04:00
|= mis=miso
^+ +>
+>(myz [[(flop ram) [*mizu mis]] myz])
2013-09-29 00:21:18 +04:00
::
++ dent :: descend
2014-07-22 20:32:35 +04:00
|= lol=@ta
^+ +>
=+ you=(~(get by r.ank) lol)
+>.$(ram [lol ram], ank ?~(you [*cash ~ ~] u.you))
2013-09-29 00:21:18 +04:00
::
++ deny :: descend recursively
2014-07-22 20:32:35 +04:00
|= way=path
^+ +>
?~(way +> $(way t.way, +> (dent i.way)))
2013-09-29 00:21:18 +04:00
::
++ dest :: write over
2014-07-22 20:32:35 +04:00
|= [pum=umph val=(unit ,[p=cash q=*])]
^+ +>
?~ q.ank
?~ val +>
(deaf %ins q.u.val)
?~ val
(deaf %del q.u.q.ank)
?: =(q.u.val q.u.q.ank) +>
(deaf %mut ((diff pum) q.u.q.ank q.u.val))
2013-09-29 00:21:18 +04:00
::
++ dist :: modify tree
2014-07-22 20:32:35 +04:00
|= [pum=umph bus=ankh]
^+ +>
=. +> (dest pum q.bus)
=+ [yeg=(~(tap by r.ank) ~) gey=(~(tap by r.bus) ~)]
=. +>.$
|- ^+ +>.^$
?~ yeg +>.^$
?: (~(has by r.bus) p.i.yeg) $(yeg t.yeg)
$(yeg t.yeg, myz myz:dirk(ank q.i.yeg, ram [p.i.yeg ram]))
|- ^+ +>.^$
?~ gey +>.^$
$(gey t.gey, myz myz:^$(bus q.i.gey, +> (dent p.i.gey)))
2013-09-29 00:21:18 +04:00
::
++ dirk :: rm -r
2014-07-22 20:32:35 +04:00
|- ^+ +
=. + ?~(q.ank + (deaf %del q.u.q.ank))
=+ dyr=(~(tap by r.ank) ~)
|- ^+ +.^$
?~ dyr +.^$
=. +.^$ dirk:(dent p.i.dyr)
$(dyr t.dyr)
2013-09-29 00:21:18 +04:00
::
++ drum :: apply effect
2014-07-22 20:32:35 +04:00
|= [pax=path mis=miso]
^+ +>
?^ pax
dosh:(dose:$(pax t.pax, +> (dent i.pax)) i.pax ank)
~| %clay-fail
?- -.mis
%del
?> &(?=(^ q.ank) =(q.u.q.ank p.mis))
+>.$(p.ank (mix p.u.q.ank p.ank), q.ank ~)
::
%ins
?> ?=(~ q.ank)
=+ sam=(sham p.mis)
+>.$(p.ank (mix sam p.ank), q.ank [~ sam p.mis])
::
%mut
?> ?=(^ q.ank)
=+ nex=(lump p.mis q.u.q.ank)
=+ sam=(sham nex)
+>.$(p.ank :(mix sam p.u.q.ank p.ank), q.ank [~ sam nex])
==
::
2013-09-29 00:21:18 +04:00
++ dune :: apply
2014-07-22 20:32:35 +04:00
|- ^+ +
?~ myz +
=> .(+ (drum p.i.myz q.q.i.myz))
$(myz ?>(?=(^ myz) t.myz))
2013-09-29 00:21:18 +04:00
::
++ durn :: apply forward
2014-07-22 20:32:35 +04:00
|= nyp=soba
^+ +>
?: =([0 0] p.nyp)
dune(myz q.nyp)
=> ?: =(p.ank p.p.nyp) .
~& [%durn-in-wrong p.ank p.p.nyp]
.
=. +> dune(myz q.nyp)
=> ?: =(p.ank q.p.nyp) .
~& [%durn-out-wrong p.ank q.p.nyp]
.
+>
2013-09-29 00:21:18 +04:00
::
++ dusk :: apply reverse
2014-07-22 20:32:35 +04:00
|= nyp=soba
(durn (curl nyp))
2014-07-12 22:24:52 +04:00
--
2014-07-22 20:32:35 +04:00
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: section 3bF, names etc ::
::
++ clan :: ship to rank
2013-09-29 00:21:18 +04:00
|= who=ship ^- rank
2014-07-22 20:32:35 +04:00
=+ wid=(met 3 who)
2013-09-29 00:21:18 +04:00
?: (lte wid 1) %czar
?: =(2 wid) %king
?: (lte wid 4) %duke
?: (lte wid 8) %earl
?> (lte wid 16) %pawn
2014-07-22 20:32:35 +04:00
::
++ deft :: import url path
|= rax=(list ,@t)
2013-09-29 00:21:18 +04:00
|- ^- pork
?~ rax
2014-07-22 20:32:35 +04:00
[~ ~]
2013-09-29 00:21:18 +04:00
?~ t.rax
2014-07-22 20:32:35 +04:00
=+ den=(trip i.rax)
=+ ^= vex
%- %- full
;~(plug sym ;~(pose (stag ~ ;~(pfix dot sym)) (easy ~)))
[[1 1] (trip i.rax)]
?~ q.vex
[~ [i.rax ~]]
[+.p.u.q.vex [-.p.u.q.vex ~]]
=+ pok=$(rax t.rax)
2013-09-29 00:21:18 +04:00
:- p.pok
2014-03-04 02:47:59 +04:00
[i.rax q.pok]
2014-07-22 20:32:35 +04:00
::
++ fain :: path restructure
2014-07-09 11:37:47 +04:00
|= [hom=path raw=path]
2014-07-22 20:32:35 +04:00
=+ bem=(need (tome raw))
2014-07-10 03:12:26 +04:00
=+ [mer=(flop s.bem) moh=(flop hom)]
2014-07-22 20:32:35 +04:00
|- ^- (pair beam path)
2014-07-10 03:12:26 +04:00
?~ moh
2014-07-22 20:32:35 +04:00
[bem(s hom) (flop mer)]
2014-07-10 03:12:26 +04:00
?> &(?=(^ mer) =(i.mer i.moh))
2014-07-22 20:32:35 +04:00
$(mer t.mer, moh t.moh)
::
++ fest :: web synthesizer
2014-07-10 03:12:26 +04:00
|= [hom=path raw=path]
|* yax=$+(epic *)
2014-07-22 20:32:35 +04:00
(yax (fuel (fain hom raw)))
::
++ folk :: silk construction
2014-07-10 03:12:26 +04:00
|= [hom=path raw=path]
2014-07-12 22:24:52 +04:00
|* yox=$+((pair beam path) *)
2014-07-22 20:32:35 +04:00
(yox (fain hom raw))
::
++ fuel :: parse fcgi
2014-07-10 03:12:26 +04:00
|= [bem=beam but=path]
^- epic
2014-07-10 04:48:53 +04:00
?> ?=([%web @ *] but)
=+ dyb=(slay i.t.but)
2014-03-20 05:05:42 +04:00
?> ?& ?=([~ %many *] dyb)
2014-07-22 20:32:35 +04:00
?=([* * *] p.u.dyb)
:: ?=([%$ %tas *] i.p.u.dyb)
?=([%many *] i.p.u.dyb)
?=([%blob *] i.t.p.u.dyb)
==
=+ ced=((hard cred) p.i.t.p.u.dyb)
2014-07-09 13:40:49 +04:00
:: =+ nep=q.p.i.p.u.dyb
=+ ^= nyp ^- path
2014-07-22 20:32:35 +04:00
%+ turn p.i.p.u.dyb
|= a=coin ^- @ta
?> ?=([%$ %ta @] a)
?>(((sane %ta) q.p.a) q.p.a)
=+ ^= gut ^- (list ,@t)
%+ turn t.t.p.u.dyb
|= a=coin ^- @t
?> ?=([%$ %t @] a)
?>(((sane %t) q.p.a) q.p.a)
=+ ^= quy
2014-07-22 20:32:35 +04:00
|- ^- (list ,[p=@t q=@t])
?~ gut ~
?> ?=(^ t.gut)
[[i.gut i.t.gut] $(gut t.t.gut)]
:* (~(gas by *(map cord cord)) quy)
ced
-.bem
t.t.but
nyp
2014-03-20 05:05:42 +04:00
==
2014-07-10 03:12:26 +04:00
2014-07-22 20:32:35 +04:00
::
++ gist :: convenient html
2014-07-09 11:37:47 +04:00
|= [hom=path raw=path]
|= yax=$+(epic marl)
2014-07-22 20:32:35 +04:00
%- (fest hom raw)
2014-07-09 11:37:47 +04:00
|= piq=epic
^- manx
=+ ^= sip :: skip blanks
2014-07-22 20:32:35 +04:00
|= mal=marl
?~(mal ~ ?.(|(=(:/(~) i.mal) =(:/([10 ~]) i.mal)) mal $(mal t.mal)))
2014-07-09 11:37:47 +04:00
=+ zay=`marl`(yax piq)
2014-07-22 20:32:35 +04:00
=. zay (sip zay)
2014-07-09 11:37:47 +04:00
=+ ^= twa
2014-07-22 20:32:35 +04:00
|- ^- [p=marl q=marl]
?~ zay [~ ~]
?: ?=([[[%head *] *] *] zay)
[c.i.zay ?:(?=([[[%body *] *] ~] t.zay) c.i.t.zay t.zay)]
?: ?=([[[%title *] *] *] zay)
[[i.zay ~] t.zay]
[~ zay]
2014-07-09 11:37:47 +04:00
[/html [/head (sip p.twa)] [/body (sip q.twa)] ~]
2014-07-22 20:32:35 +04:00
::
++ urle :: URL encode
2014-04-21 21:02:09 +04:00
|= tep=tape
^- tape
%- zing
%+ turn tep
|= tap=char
=+ xen=|=(tig=@ ?:((gte tig 10) (add tig 55) (add tig '0')))
?: ?| &((gte tap 'a') (lte tap 'z'))
2014-07-22 20:32:35 +04:00
&((gte tap 'A') (lte tap 'Z'))
&((gte tap '0') (lte tap '9'))
=('.' tap)
=('-' tap)
=('~' tap)
=('_' tap)
==
[tap ~]
['%' (xen (rsh 0 4 tap)) (xen (end 0 4 tap)) ~]
2014-07-22 20:32:35 +04:00
::
++ urld :: URL decode
2014-04-21 21:02:09 +04:00
|= tep=tape
2014-07-22 20:32:35 +04:00
^- (unit tape)
2014-04-21 21:02:09 +04:00
?~ tep [~ ~]
?: =('%' i.tep)
2014-07-22 20:32:35 +04:00
?. ?=([@ @ *] t.tep) ~
=+ nag=(mix i.t.tep (lsh 3 1 i.t.t.tep))
=+ val=(rush nag hex:ag)
?~ val ~
=+ nex=$(tep t.t.t.tep)
?~(nex ~ [~ [`@`u.val u.nex]])
2014-04-21 21:02:09 +04:00
=+ nex=$(tep t.tep)
2014-07-22 20:32:35 +04:00
?~(nex ~ [~ i.tep u.nex])
++ sifo :: 64-bit encode
|= tig=@
^- tape
=+ poc=(mod (sub 3 (mod (met 3 tig) 3)) 3)
2014-07-22 20:32:35 +04:00
=+ pad=(lsh 3 poc (swap 3 tig))
=+ ^= ska
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
=+ ^= sif
2014-07-22 20:32:35 +04:00
%- flop
|- ^- tape
?~ pad
~
=+ d=(end 0 6 pad)
[(snag d ska) $(pad (rsh 0 6 pad))]
(weld (scag (sub (lent sif) poc) sif) (trip (fil 3 poc '=')))
2014-07-22 20:32:35 +04:00
::
++ earl :: local purl to tape
2014-04-21 21:02:09 +04:00
|= [who=@p pul=purl]
^- purl
2014-07-22 20:32:35 +04:00
pul(q.q [(rsh 3 1 (scot %p who)) q.q.pul])
::
++ earn :: purl to tape
2014-04-21 21:02:09 +04:00
|= pul=purl
^- tape
=< apex
|%
++ apex
2014-07-22 20:32:35 +04:00
^- tape
:(weld head "/" body tail)
2014-04-21 21:02:09 +04:00
::
++ body
2014-07-22 20:32:35 +04:00
|- ^- tape
?~ q.q.pul
?~(p.q.pul ~ ['.' (trip u.p.q.pul)])
=+ seg=(trip i.q.q.pul)
?:(=(~ t.q.q.pul) seg (weld seg `tape`['/' $(q.q.pul t.q.q.pul)]))
2014-04-21 21:02:09 +04:00
::
++ head
2014-07-22 20:32:35 +04:00
^- tape
;: weld
?:(&(p.p.pul !=([& /localhost] r.p.pul)) "https://" "http://")
::
?- -.r.p.pul
| (trip (rsh 3 1 (scot %if p.r.p.pul)))
& =+ rit=(flop p.r.p.pul)
|- ^- tape
?~(rit ~ (weld (trip i.rit) ?~(t.rit "" `tape`['.' $(rit t.rit)])))
==
::
?~(q.p.pul ~ `tape`[':' (trip (rsh 3 2 (scot %ui u.q.p.pul)))])
==
2014-04-21 21:02:09 +04:00
::
++ tail
2014-07-22 20:32:35 +04:00
^- tape
?: =(~ r.pul) ~
:- '?'
|- ^- tape
?~ r.pul ~
;: weld
(trip p.i.r.pul)
"="
(trip q.i.r.pul)
?~(t.r.pul ~ `tape`['&' $(r.pul t.r.pul)])
==
2014-04-21 21:02:09 +04:00
--
2014-07-22 20:32:35 +04:00
::
++ epur :: url/header parser
2013-09-29 00:21:18 +04:00
|%
++ apat :: 2396 abs_path
2014-07-22 20:32:35 +04:00
%+ cook deft
(ifix [fas ;~(pose fas (easy ~))] (more fas smeg))
2013-09-29 00:21:18 +04:00
++ auri
2014-07-22 20:32:35 +04:00
%+ cook
|= a=purl
?.(=([& /localhost] r.p.a) a a(p.p &))
;~ plug
;~ plug
%+ sear
|= a=@t
^- (unit ,?)
?+(a ~ %http [~ %|], %https [~ %&])
;~(sfix scem ;~(plug col fas fas))
thor
==
;~(plug ;~(pose apat (easy *pork)) yque)
==
2014-03-04 23:17:34 +04:00
++ cock :: cookie
2014-07-22 20:32:35 +04:00
(most ;~(plug sem ace) ;~(plug toke ;~(pfix tis tosk)))
2013-09-29 00:21:18 +04:00
++ dlab :: 2396 domainlabel
2014-07-22 20:32:35 +04:00
%+ sear
|= a=@ta
?.(=('-' (rsh 3 a (dec (met 3 a)))) [~ u=a] ~)
%+ cook cass
;~(plug aln (star alp))
2013-09-29 00:21:18 +04:00
::
++ fque (cook crip (plus pquo)) :: normal query field
++ fquu (cook crip (star pquo)) :: optional field
2013-09-29 00:21:18 +04:00
++ pcar ;~(pose pure pesc psub col pat) :: 2396 path char
2014-03-04 23:17:34 +04:00
++ pcok ;~ pose :: cookie char
2014-07-22 20:32:35 +04:00
(just `@`0x21)
(shim 0x23 0x2b)
(shim 0x2d 0x3a)
(shim 0x3c 0x5b)
(shim 0x5d 0x7e)
==
2013-09-29 00:21:18 +04:00
++ pesc ;~(pfix cen mes) :: 2396 escaped
++ pold (cold ' ' (just '+')) :: old space code
++ pque ;~(pose pcar fas wut) :: 3986 query char
++ pquo ;~(pose pure pesc pold) :: normal query char
++ pure ;~(pose aln hep dot cab sig) :: 2396 unreserved
++ psub ;~ pose :: 3986 sub-delims
2014-07-22 20:32:35 +04:00
zap buc pam soq pel per
tar lus com sem tis
==
2014-03-04 23:17:34 +04:00
++ ptok ;~ pose :: 2616 token
2014-07-22 20:32:35 +04:00
aln zap hax buc cen pam soq tar lus
hep dot ket cab tec bar sig
==
2013-09-29 00:21:18 +04:00
++ scem :: 2396 scheme
2014-07-22 20:32:35 +04:00
%+ cook cass
;~(plug alf (star ;~(pose aln lus hep dot)))
2013-09-29 00:21:18 +04:00
::
++ smeg (cook crip (plus pcar)) :: 2396 segment
2014-03-04 23:17:34 +04:00
++ tock (cook crip (plus pcok)) :: 6265 cookie-value
++ tosk ;~(pose tock (ifix [doq doq] tock)) :: 6265 cookie-value
++ toke (cook crip (plus ptok)) :: 2616 token
2013-09-29 00:21:18 +04:00
++ thor :: 2396 host/port
2014-07-22 20:32:35 +04:00
%+ cook |*(a=[* *] [+.a -.a])
;~ plug
thos
;~(pose (stag ~ ;~(pfix col dim:ag)) (easy ~))
==
2013-09-29 00:21:18 +04:00
++ thos :: 2396 host, no local
2014-07-22 20:32:35 +04:00
;~ plug
;~ pose
%+ stag %&
%+ sear :: LL parser weak here
|= a=(list ,@t)
=+ b=(flop a)
?> ?=(^ b)
=+ c=(end 3 1 i.b)
?.(&((gte c 'a') (lte c 'z')) ~ [~ u=b])
(most dot dlab)
::
%+ stag %|
=+ tod=(ape:ag ted:ab)
%+ bass 256
;~(plug tod (stun [3 3] ;~(pfix dot tod)))
==
==
2013-09-29 00:21:18 +04:00
++ yque :: query ending
2014-07-22 20:32:35 +04:00
;~ pose
;~(pfix wut yquy)
(easy ~)
==
2013-09-29 00:21:18 +04:00
++ yquy :: query
2014-07-22 20:32:35 +04:00
;~ pose :: proper query
%+ more
;~(pose pam sem)
;~(plug fque ;~(pose ;~(pfix tis fquu) (easy '')))
::
%+ cook :: funky query
|=(a=tape [[%$ (crip a)] ~])
(star pque)
==
2013-09-29 00:21:18 +04:00
++ zest :: 2616 request-uri
2014-07-22 20:32:35 +04:00
;~ pose
(stag %& (cook |=(a=purl a) auri))
(stag %| ;~(plug apat yque))
==
2013-09-29 00:21:18 +04:00
--
2014-07-22 20:32:35 +04:00
::
++ feel :: simple file write
2014-03-06 00:21:52 +04:00
|= [pax=path val=*]
2014-03-04 01:55:40 +04:00
^- miso
2014-07-22 20:32:35 +04:00
=+ dir=((hard arch) .^(%cy pax))
2014-03-04 01:55:40 +04:00
?~ q.dir [%ins val]
:- %mut
^- udon
[%a %a .^(%cx pax) val]
2014-07-22 20:32:35 +04:00
::
++ file :: simple file load
2014-03-04 01:55:40 +04:00
|= pax=path
^- (unit)
=+ dir=((hard arch) .^(%cy pax))
2014-07-22 20:32:35 +04:00
?~(q.dir ~ [~ .^(%cx pax)])
::
++ foal :: high-level write
2014-03-06 00:21:52 +04:00
|= [pax=path val=*]
^- toro
2014-07-22 20:32:35 +04:00
?> ?=([* * * *] pax)
2014-07-10 00:56:23 +04:00
[i.t.pax [%& ~ [*cart [[t.t.t.pax *mizu (feel pax val)] ~]]]]
2014-07-22 20:32:35 +04:00
::
++ fray :: high-level delete
2014-03-06 01:42:47 +04:00
|= pax=path
^- toro
2014-07-22 20:32:35 +04:00
?> ?=([* * * *] pax)
2014-07-10 00:56:23 +04:00
[i.t.pax [%& ~ [*cart [[t.t.t.pax *mizu [%del .^(%cx pax)]] ~]]]]
2014-07-22 20:32:35 +04:00
::
++ furl :: unify changes
|= [one=toro two=toro]
2014-03-06 01:42:47 +04:00
^- toro
~| %furl
?> ?& =(p.one p.two) :: same path
&(?=(& -.q.one) ?=(& -.q.two)) :: both deltas
&(?=(~ p.q.one) ?=(~ p.q.two)) :: not merges
==
2014-03-06 01:43:43 +04:00
[p.one [%& ~ [*cart (weld q.q.q.one q.q.q.two)]]]
2014-03-06 01:42:47 +04:00
::
++ glam
2013-09-29 00:21:18 +04:00
|= zar=@p ^- tape
%+ snag zar
^- (list tape)
:~ "Tianming" "Pepin the Short" "Haile Selassie" "Alfred the Great"
"Tamerlane" "Pericles" "Talleyrand" "Yongle" "Seleucus"
"Uther Pendragon" "Louis XVI" "Ahmad Shāh Durrānī" "Constantine"
"Wilhelm I" "Akbar" "Louis XIV" "Nobunaga" "Alexander VI"
"Philippe II" "Julius II" "David" "Niall Noígíallach" "Kublai Khan"
"Öz Beg Khan" "Ozymandias" "Ögedei Khan" "Jiang Jieshi" "Darius"
"Shivaji" "Qianlong" "Bolesław I Chrobry" "Tigranes" "Han Wudi"
"Charles X" "Naresuan" "Frederick II" "Simeon" "Kangxi"
2014-01-31 23:16:05 +04:00
"Suleiman the Magnificent" "Pedro II" "Genghis Khan" "Laozi"
2014-01-15 22:21:57 +04:00
"Porfirio Díaz" "Pakal" "Wu Zetian" "Garibaldi" "Matthias Corvinus"
"Leopold II" "Leonidas" "Sitting Bull" "Nebuchadnezzar II"
"Rhodes" "Henry VIII" "Attila" "Catherine II" "Chulalongkorn"
"Uthmān" "Augustus" "Faustin" "Chongde" "Justinian"
"Afonso de Albuquerque" "Antoninus Pius" "Cromwell" "Innocent X"
"Fidel" "Frederick the Great" "Canute" "Vytautas" "Amina"
"Hammurabi" "Suharto" "Victoria" "Hiawatha" "Paul V" "Shaka"
"Lê Thánh Tông" "Ivan Asen II" "Tiridates" "Nefertiti" "Gwangmu"
"Ferdinand & Isabella" "Askia" "Xuande" "Boris Godunov" "Gilgamesh"
"Maximillian I" "Mao" "Charlemagne" "Narai" "Hanno" "Charles I & V"
"Alexander II" "Mansa Musa" "Zoe Porphyrogenita" "Metternich"
"Robert the Bruce" "Pachacutec" "Jefferson" "Solomon" "Nicholas I"
"Barbarossa" "FDR" "Pius X" "Gwanggaeto" "Abbas I" "Julius Caesar"
"Lee Kuan Yew" "Ranavalona I" "Go-Daigo" "Zenobia" "Henry V"
"Bảo Đại" "Casimir III" "Cyrus" "Charles the Wise" "Sandrokottos"
"Agamemnon" "Clement VII" "Suppiluliuma" "Deng Xiaoping"
"Victor Emmanuel" "Ajatasatru" "Jan Sobieski" "Huangdi" "Xuantong"
"Narmer" "Cosimo de' Medici" "Möngke Khan" "Stephen Dušan" "Henri IV"
"Mehmed Fatih" "Conn Cétchathach" "Francisco Franco" "Leo X"
"Kammu" "Krishnadevaraya" "Elizabeth I" "Norton I" "Washington"
"Meiji" "Umar" "TR" "Peter the Great" "Agustin I" "Ashoka"
"William the Conqueror" "Kongolo Mwamba" "Song Taizu"
"Ivan the Terrible" "Yao" "Vercingetorix" "Geronimo" "Rurik"
"Urban VIII" "Alexios Komnenos" "Maria I" "Tamar" "Bismarck"
"Arthur" "Jimmu" "Gustavus Adolphus" "Suiko" "Basil I" "Montezuma"
"Santa Anna" "Xerxes" "Beyazıt Yıldırım" "Samudragupta" "James I"
"George III" "Kamehameha" "Francesco Sforza" "Trajan"
"Rajendra Chola" "Hideyoshi" "Cleopatra" "Alexander"
"Ashurbanipal" "Paul III" "Vespasian" "Tecumseh" "Narasimhavarman"
"Suryavarman II" "Bokassa I" "Charles Canning" "Theodosius"
"Francis II" "Zhou Wen" "William Jardine" "Ahmad al-Mansur"
"Lajos Nagy" "Theodora" "Mussolini" "Samuil" "Osman Gazi"
"Kim Il-sung" "Maria Theresa" "Lenin" "Tokugawa" "Marcus Aurelius"
"Nzinga Mbande" "Edward III" "Joseph II" "Pulakesi II" "Priam"
"Qin Shi Huang" "Shah Jahan" "Sejong" "Sui Wendi" "Otto I"
"Napoleon III" "Prester John" "Dido" "Joao I" "Gregory I"
"Gajah Mada" "Abd-ar Rahmān III" "Taizong" "Franz Josef I"
"Nicholas II" "Gandhi" "Chandragupta II" "Peter III"
"Oba Ewuare" "Louis IX" "Napoleon" "Selim Yavuz" "Shun"
"Hayam Wuruk" "Jagiełło" "Nicaule" "Sargon" "Saladin" "Charles II"
"Brian Boru" "Da Yu" "Antiochus III" "Charles I"
"Jan Pieterszoon Coen" "Hongwu" "Mithridates" "Hadrian" "Ptolemy"
"Benito Juarez" "Sun Yat-sen" "Raja Raja Chola" "Bolivar" "Pius VII"
"Shapur II" "Taksin" "Ram Khamhaeng" "Hatshepsut" "Alī" "Matilda"
2013-09-29 00:21:18 +04:00
"Ataturk"
==
::
++ glon
|= lag=lang
^- (unit tape)
?+ lag ~
%en [~ "English"] :: deleted others, memory crunch!
2013-09-29 00:21:18 +04:00
==
::
++ gnow
|= [who=@p gos=gcos] ^- @t
?- -.gos
%czar (rap 3 '|' (rap 3 (glam who)) '|' ~)
%king (rap 3 '_' p.gos '_' ~)
%earl (rap 3 ':' p.gos ':' ~)
%pawn ?~(p.gos %$ (rap 3 '.' u.p.gos '.' ~))
%duke
?: ?=(%anon -.p.gos) %$
%+ rap 3
^- (list ,@)
?- -.p.gos
2013-11-08 05:36:28 +04:00
%punk ~['"' q.p.gos '"']
2013-09-29 00:21:18 +04:00
?(%lord %lady)
=+ ^= nad
=+ nam=`name`s.p.p.gos
%+ rap 3
:~ p.nam
?~(q.nam 0 (cat 3 ' ' u.q.nam))
?~(r.nam 0 (rap 3 ' (' u.r.nam ')' ~))
' '
s.nam
==
?:(=(%lord -.p.gos) ~['[' nad ']'] ~['(' nad ')'])
==
==
::
2014-07-02 02:51:42 +04:00
++ hunt :: first of unit dates
2013-09-29 00:21:18 +04:00
|= [one=(unit ,@da) two=(unit ,@da)]
^- (unit ,@da)
?~ one two
?~ two one
?:((lth u.one u.two) one two)
::
2014-07-02 02:51:42 +04:00
++ meat :: kite to .^ path
2013-09-29 00:21:18 +04:00
|= kit=kite
^- path
[(cat 3 'c' p.kit) (scot %p r.kit) s.kit (scot (dime q.kit)) t.kit]
::
2014-03-20 05:05:42 +04:00
++ mojo :: compiling load
|= [pax=path src=*]
^- (each twig (list tank))
?. ?=(@ src)
[%| ~[[leaf/"musk: malformed: {<pax>}"]]]
2014-03-12 23:50:39 +04:00
=+ ^= mud
%- mule |.
2014-03-13 05:04:58 +04:00
((full vest) [1 1] (trip src))
2014-03-12 23:50:39 +04:00
?: ?=(| -.mud) mud
?~ q.p.mud
2014-03-20 05:05:42 +04:00
:~ %|
leaf/"musk: syntax error: {<pax>}"
leaf/"musk: line {<p.p.p.mud>}, column {<q.p.p.mud>}"
==
[%& p.u.q.p.mud]
::
2014-05-07 21:42:31 +04:00
++ mole :: new to old sky
|= ska=$+(* (unit (unit)))
|= a=*
^- (unit)
=+ b=(ska a)
?~ b ~
?~ u.b ~
[~ u.u.b]
::
2014-03-20 05:05:42 +04:00
++ much :: constructing load
|= [pax=path src=*]
^- gank
=+ moj=(mojo pax src)
?: ?=(| -.moj) moj
(mule |.((slap !>(+>.$) `twig`p.moj)))
2014-03-12 23:50:39 +04:00
::
2014-03-20 05:05:42 +04:00
++ musk :: compiling apply
|= [pax=path src=* sam=vase]
2014-03-12 23:50:39 +04:00
^- gank
2014-03-20 05:05:42 +04:00
=+ mud=(much pax src)
2014-03-12 23:50:39 +04:00
?: ?=(| -.mud) mud
(mule |.((slam p.mud sam)))
2014-03-05 23:00:27 +04:00
::
2014-07-02 02:51:42 +04:00
++ numb :: ship display name? XX
2013-10-16 06:24:02 +04:00
|= [him=@p now=@da] ^- @t
2013-11-05 03:44:45 +04:00
=+ yow=(scot %p him)
2013-11-05 03:55:02 +04:00
=+ woy=((hard ,@t) .^(%a yow %name (scot %da now) ~))
?: =(%$ woy) yow
(cat 3 yow (cat 3 ' ' woy))
2013-10-16 06:24:02 +04:00
::
2013-09-29 00:21:18 +04:00
++ saxo :: autocanon
|= who=ship
^- (list ship)
?: (lth who 256) [who ~]
[who $(who (sein who))]
::
2014-03-12 23:50:39 +04:00
++ sein :: autoboss
2013-09-29 00:21:18 +04:00
|= who=ship ^- ship
=+ mir=(clan who)
?- mir
%czar who
%king (end 3 1 who)
%duke (end 4 1 who)
%earl (end 5 1 who)
%pawn `@p`0
==
::
++ tame
|= hap=path
^- (unit kite)
2013-12-24 00:49:15 +04:00
?. ?=([@ @ @ @ *] hap) ~
=+ :* hyr=(slay i.hap)
2013-09-29 00:21:18 +04:00
fal=(slay i.t.hap)
dyc=(slay i.t.t.hap)
ved=(slay i.t.t.t.hap)
2013-09-29 00:21:18 +04:00
:: ved=(slay i.t.hap)
:: fal=(slay i.t.t.hap)
:: dyc=(slay i.t.t.t.hap)
tyl=t.t.t.t.hap
==
?. ?=([~ %$ %tas @] hyr) ~
?. ?=([~ %$ %p @] fal) ~
?. ?=([~ %$ %tas @] dyc) ~
?. ?=(^ ved) ~
=+ his=`@p`q.p.u.fal
=+ [dis=(end 3 1 q.p.u.hyr) rem=(rsh 3 1 q.p.u.hyr)]
?. ?&(?=(%c dis) ?=(?(%v %w %x %y %z) rem)) ~
2013-09-29 00:21:18 +04:00
[~ rem (case p.u.ved) q.p.u.fal q.p.u.dyc tyl]
2014-05-10 11:10:46 +04:00
::
++ tome :: parse path
|= pax=path
2014-06-07 22:36:31 +04:00
^- (unit beam)
2014-05-10 11:10:46 +04:00
?. ?=([* * * *] pax) ~
%+ biff (slaw %p i.pax)
|= who=ship
%+ biff (slaw %tas i.t.pax)
|= dex=desk
%+ biff (slay i.t.t.pax)
|= cis=coin
?. ?=([%$ case] cis) ~
2014-06-07 22:36:31 +04:00
`(unit beam)`[~ [who dex `case`p.cis] (flop t.t.t.pax)]
2014-05-10 11:10:46 +04:00
::
2014-06-07 22:36:31 +04:00
++ tope :: beam to path
|= bem=beam
2014-05-10 11:10:46 +04:00
^- path
[(scot %p p.bem) q.bem (scot r.bem) (flop s.bem)]
2013-09-29 00:21:18 +04:00
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
2014-04-19 07:27:19 +04:00
:: section 3bG, Arvo models ::
2013-09-29 00:21:18 +04:00
::
++ acru :: asym cryptosuite
$_ ^? |% :: opaque object
++ as ^? :: asym ops
|% ++ seal |=([a=pass b=@ c=@] _@) :: encrypt to a
++ sign |=([a=@ b=@] _@) :: certify as us
++ sure |=([a=@ b=@] *(unit ,@)) :: authenticate from us
++ tear |=([a=pass b=@] *(unit ,[p=@ q=@])) :: accept from a
--
++ de |+([a=@ b=@] *(unit ,@)) :: symmetric de, soft
++ dy |+([a=@ b=@] _@) :: symmetric de, hard
++ en |+([a=@ b=@] _@) :: symmetric en
++ ex ^? :: export
|% ++ fig _@uvH :: fingerprint
++ pac _@uvG :: default passcode
++ pub *pass :: public key
++ sec *ring :: private key
--
++ nu ^? :: reconstructors
2014-07-03 02:08:02 +04:00
|% ++ pit |=([a=@ b=@] ^?(..nu)) :: from [width seed]
++ nol |=(a=@ ^?(..nu)) :: from naked ring
++ com |=(a=@ ^?(..nu)) :: from naked pass
--
--
++ agon (map ,[p=ship q=desk] ,[p=@ud q=@ud r=waks]) :: mergepts
2013-10-12 23:38:08 +04:00
++ ankh :: fs node (new)
2013-09-29 00:21:18 +04:00
$: p=cash :: recursive hash
q=(unit ,[p=cash q=*]) :: file
r=(map ,@ta ankh) :: folders
== ::
++ apex ,[p=@uvI q=(map ,@ta ,@uvI) r=(map ,@ta ,~)] :: node report (old)
++ ball ,@uw :: statement payload
++ bait ,[p=skin q=@ud r=dove] :: fmt nrecvd spec
++ bath :: convo per client
$: sop=shed :: not stalled
raz=(map path race) :: statements inbound
ryl=(map path rill) :: statements outbound
2013-09-29 00:21:18 +04:00
== ::
2014-06-07 22:36:31 +04:00
++ beam ,[[p=ship q=desk r=case] s=path] :: global name
2014-05-02 03:33:15 +04:00
++ beak ,[p=ship q=desk r=case] :: garnish with beak
2013-09-29 00:21:18 +04:00
++ bird :: packet in travel
$: gom=soap :: message identity
mup=@ud :: pktno in msg
nux=@ud :: xmission count
lys=@da :: last sent
pac=rock :: packet data
== ::
++ boat ,[(list slip) tart] :: user stage
++ boon :: fort output
$% [%beer p=ship q=@uvG] :: gained ownership
[%coke p=sock q=soap r=cape s=duct] :: message result
2013-09-29 00:21:18 +04:00
[%mead p=lane q=rock] :: accept packet
[%milk p=sock q=soap r=*] :: accept message
2013-09-29 00:21:18 +04:00
[%ouzo p=lane q=rock] :: transmit packet
[%wine p=sock q=tape] :: notify user
== ::
++ bowl ,[p=(list gift) q=(unit boat)] :: app product
++ bray ,[p=life q=(unit life) r=ship s=@da] :: our parent us now
++ brow ,[p=@da q=@tas] :: browser version
++ buck ,[p=mace q=will] :: all security data
++ cake ,[p=sock q=skin r=@] :: top level packet
++ cape :: end-to-end result
$? %good :: delivered
%dead :: rejected
== ::
++ cart ,[p=cash q=cash] :: hash change
++ care ?(%v %w %x %y %z) :: clay submode
2014-05-02 03:33:15 +04:00
++ case :: ship desk case spur
2013-09-29 00:21:18 +04:00
$% [%da p=@da] :: date
[%tas p=@tas] :: label
[%ud p=@ud] :: number
== ::
++ cash ,@uvH :: ankh hash
2014-06-19 22:53:16 +04:00
++ clot :: symmetric record
2013-09-29 00:21:18 +04:00
$: yed=(unit ,[p=hand q=code]) :: outbound
heg=(map hand code) :: proposed
2013-09-29 00:21:18 +04:00
qim=(map hand code) :: inbound
== ::
++ coal ,* :: untyped vase
++ code ,@uvI :: symmetric key
++ cone :: reconfiguration
2013-12-15 11:07:57 +04:00
$% [& p=twig] :: transform
2013-09-29 00:21:18 +04:00
[| p=(list ,@tas)] :: alter
== ::
++ chum ,@uvI :: hashed passcode
++ claw $: :: startup chain
joy=(unit coal) :: local context
ran=(unit coal) :: arguments
pux=(unit path) :: execution path
jiv=(unit coal) :: app configuration
kyq=(unit coal) :: app customization
gam=(unit coal) :: app image
== ::
++ clip (each ,@if ,@is) :: client IP
2014-03-20 05:05:42 +04:00
++ cred :: credential
$: hut=hoot :: client host
2014-04-23 21:02:36 +04:00
aut=(jug ,@tas ,@t) :: client identities
2014-03-20 05:05:42 +04:00
orx=oryx :: CSRF secret
acl=(unit ,@t) :: accept-language
2014-03-20 05:05:42 +04:00
cip=(each ,@if ,@is) :: client IP
cum=(map ,@tas ,*) :: custom dirt
== ::
2014-06-02 01:07:13 +04:00
++ cuff :: permissions
$: p=(unit (set monk)) :: readers
q=(set monk) :: authors
== ::
2014-06-04 03:39:28 +04:00
++ deed ,[p=@ q=step r=?] :: sig, stage, fake?
2013-09-29 00:21:18 +04:00
++ dome :: project state
$: ang=agon :: pedigree
2014-02-14 23:29:03 +04:00
ank=ankh :: state
2013-09-29 00:21:18 +04:00
let=@ :: (lent hit)
hit=(list frog) :: changes in reverse
lab=(map ,@tas ,@ud) :: labels
== ::
++ dore :: foreign contact
2013-09-29 00:21:18 +04:00
$: wod=road :: connection to
wyl=will :: inferred mirror
2014-06-19 22:53:16 +04:00
caq=clot :: symmetric key state
2013-09-29 00:21:18 +04:00
== ::
++ dove ,[p=@ud q=(map ,@ud ,@)] :: count hash 13-blocks
2014-03-26 04:48:22 +04:00
++ epic :: FCGI parameters
2014-07-09 11:37:47 +04:00
$: qix=(map ,@t ,@t) :: query
2014-03-26 04:48:22 +04:00
ced=cred :: client credentials
2014-07-09 11:37:47 +04:00
bek=beak :: path prefix
2014-03-26 04:48:22 +04:00
but=path :: ending
2014-07-09 11:37:47 +04:00
nyp=path :: request model
2014-03-26 04:48:22 +04:00
== ::
2013-09-29 00:21:18 +04:00
++ flap ,@uvH :: network packet id
++ flow :: packet connection
$: rtt=@dr :: decaying avg rtt
wid=@ud :: logical wdow msgs
== ::
2014-06-27 08:02:05 +04:00
++ fort :: formal state
2014-05-31 02:04:20 +04:00
$: %0 :: version
gad=duct :: client interface
2014-05-31 02:04:20 +04:00
hop=@da :: network boot date
2014-06-27 08:02:05 +04:00
ton=town :: security
2014-01-21 01:50:54 +04:00
zac=(map ship corn) :: flows by server
2013-09-29 00:21:18 +04:00
== ::
++ frog ,[p=@da q=nori] :: time and change
2014-03-12 23:50:39 +04:00
++ gank (each vase (list tank)) :: abstract result
2013-09-29 00:21:18 +04:00
++ gift :: one-way effect
$% [%$ p=vase] :: trivial output
[%cc p=(unit case)] :: change case
[%ck p=@tas] :: change desk
[%cs p=path] :: change spur
[%de p=@ud q=tank] :: debug/level
[%ex p=(unit vase) q=lath] :: exec/patch
2014-02-10 21:50:20 +04:00
::[%fd p=vase] :: fundamental down
::[%fo p=vase] :: fundamental forward
::[%fu p=vase] :: fundamental up
2013-09-29 00:21:18 +04:00
[%ha p=tank] :: single error
[%ho p=(list tank)] :: multiple error
[%la p=tank] :: single statement
[%lo p=(list tank)] :: multiple statement
[%mu p=type q=(list)] :: batch emit
[%mx p=(list gift)] :: batch gift
2014-03-06 00:21:52 +04:00
[%ok p=@ta q=nori] :: save changes
2013-09-29 00:21:18 +04:00
[%sc p=(unit skit)] :: stack library
[%sp p=(list lark)] :: spawn task(s)
[%sq p=ship q=@tas r=path s=*] :: send request
[%sr p=ship q=path r=*] :: send response
2013-09-29 00:21:18 +04:00
[%te p=(list ,@t)] :: dump lines
[%th p=@ud q=love] :: http response
2013-10-27 07:55:53 +04:00
[%tq p=path q=hiss] :: http request
2013-09-29 00:21:18 +04:00
[%va p=@tas q=(unit vase)] :: set/clear variable
2014-06-06 03:51:59 +04:00
[%xx p=curd] :: return card
[%xy p=path q=curd] :: push card
[%xz p=[p=ship q=term] q=ship r=mark s=zang]
2014-07-03 02:08:02 +04:00
[%zz p=path q=path r=curd] ::
2013-09-29 00:21:18 +04:00
== ::
2014-07-03 02:08:02 +04:00
++ zang :: XX evil hack
2014-07-03 22:14:22 +04:00
$% [%backlog p=path q=?(%da %dr %ud) r=@] ::
2014-07-03 02:08:02 +04:00
[%hola p=path] ::
$: %mess p=path ::
$= q ::
$% [%do p=@t] :: act
[%exp p=@t q=tank] :: code
[%say p=@t] :: speak
== == == ::
2013-09-29 00:21:18 +04:00
++ gilt ,[@tas *] :: presumed gift
++ gens ,[p=lang q=gcos] :: general identity
++ germ ?(%fine %that %this %mate %conf %check) :: merge style
2013-09-29 00:21:18 +04:00
++ gcos :: id description
$% [%czar ~] :: 8-bit ship
[%duke p=what] :: 32-bit ship
[%earl p=@t] :: 64-bit ship
[%king p=@t] :: 16-bit ship
[%pawn p=(unit ,@t)] :: 128-bit ship
2013-09-29 00:21:18 +04:00
== ::
++ goad :: common note
$% [%eg p=riot] :: simple result
[%gr p=mark q=*] :: gall rush/rust
2013-10-27 07:55:53 +04:00
[%hp p=httr] :: http response
2014-03-12 23:50:39 +04:00
:: [%ht p=@ud q=scab r=cred s=moth] :: http request
2013-09-29 00:21:18 +04:00
[%it p=~] :: interrupt event
[%lq p=ship q=path r=*] :: client request
2013-09-29 00:21:18 +04:00
[%ly p=newt q=tape] :: lifecycle event
[%ow p=cape] :: one-way reaction
[%rt p=(unit)] :: roundtrip response
2013-09-29 00:21:18 +04:00
[%up p=@t] :: prompt response
[%wa ~] :: alarm
== ::
++ goal :: app request
$% [%$ p=type] :: open for input
[%do p=vase q=vase] :: call gate sample
[%eg p=kite] :: single request
2014-05-02 03:33:15 +04:00
[%es p=ship q=desk r=rave] :: subscription
2014-07-03 02:08:02 +04:00
[%gr ~] :: gall response
2013-09-29 00:21:18 +04:00
[%ht p=(list rout)] :: http server
2013-10-27 07:55:53 +04:00
[%hp ~] :: http response
[%lq p=@tas] :: listen for service
[%ow ~] :: one-way reaction
[%rt ~] :: roundtrip response
[%up p=prod] :: user prompt
2013-09-29 00:21:18 +04:00
[%wa p=@da] :: alarm
== ::
++ govt path :: country/postcode
++ hand ,@uvH :: hash of code
2014-04-03 05:06:45 +04:00
++ hart ,[p=? q=(unit ,@ud) r=host] :: http sec/port/host
2014-03-05 23:00:27 +04:00
++ hate ,[p=purl q=@p r=moth] :: semi-cooked request
2014-03-12 23:50:39 +04:00
++ heir ,[p=@ud q=mess r=(unit love)] :: status/headers/data
2014-02-27 05:58:40 +04:00
++ hiss ,[p=purl q=moth] :: outbound request
2013-09-29 00:21:18 +04:00
++ hist ,[p=@ud q=(list ,@t)] :: depth texts
2014-03-20 05:05:42 +04:00
++ hole ,@t :: session identity
2014-07-09 11:37:47 +04:00
++ hoot ,[p=? q=(unit ,@ud) r=host] :: secure/port/host
2013-09-29 00:21:18 +04:00
++ hort ,[p=(unit ,@ud) q=host] :: http port/host
++ host $%([& p=(list ,@t)] [| p=@if]) :: http host
++ httq :: raw http request
2014-03-12 23:50:39 +04:00
$: p=meth :: method
2013-09-29 00:21:18 +04:00
q=@t :: unparsed url
r=(list ,[p=@t q=@t]) :: headers
s=(unit octs) :: body
== ::
++ httr ,[p=@ud q=mess r=(unit octs)] :: raw http response
++ httx :: encapsulated http
$: p=? :: https?
q=clip :: source IP
r=httq ::
== ::
2014-05-02 03:33:15 +04:00
++ kite ,[p=care q=case r=ship s=desk t=spur] :: parsed global name
2014-06-19 07:27:36 +04:00
++ json :: normal json value
$| ~ :: null
2014-06-19 07:27:36 +04:00
$% [%a p=(list json)] :: array
[%b p=?] :: boolean
[%o p=(map ,@t json)] :: object
[%n p=@ta] :: number
[%s p=@ta] :: string
2013-09-29 00:21:18 +04:00
== ::
2014-07-12 22:24:52 +04:00
++ jsot :: strict json top
2014-06-19 07:27:36 +04:00
$% [%a p=(list json)] :: array
[%o p=(map ,@t json)] :: object
2013-09-29 00:21:18 +04:00
== ::
++ lamb :: short path
$% [& p=@tas] :: auto
2013-12-15 11:07:57 +04:00
[| p=twig] :: manual
2013-09-29 00:21:18 +04:00
== ::
++ lane :: packet route
2014-06-04 01:01:40 +04:00
$% [%if p=@da q=@ud r=@if] :: IP4/public UDP/addr
2013-09-29 00:21:18 +04:00
[%is p=@ud q=(unit lane) r=@is] :: IPv6 w/alternates
[%ix p=@da q=@ud r=@if] :: IPv4 provisional
== ::
++ lang ,@ta :: IETF lang as code
++ lark ,[p=(unit ,@tas) q=lawn] :: parsed command
++ lass ?(%0 %1 %2) :: power increment
++ lath $% :: pipeline stage
2013-12-15 11:07:57 +04:00
[%0 p=lass q=lamb r=(list cone) s=twig] :: command
[%1 p=twig] :: generator
[%2 p=twig] :: filter
2013-09-29 00:21:18 +04:00
== ::
++ lawn (list lath) ::
++ lice ,[p=ship q=buck] :: full license
++ life ,@ud :: regime number
++ lint (list rock) :: fragment array
++ love $% :: http response
[%ham p=manx] :: html node
2014-03-13 05:04:58 +04:00
[%mid p=mite q=octs] :: mime-typed data
2013-09-29 00:21:18 +04:00
[%raw p=httr] :: raw http response
2014-03-12 23:50:39 +04:00
[%wan p=wain] :: text lines
[%zap p=@ud q=(list tank)] :: status/error
2013-09-29 00:21:18 +04:00
== ::
++ luge ,[p=mark q=*] :: fully typed content
2014-05-20 21:33:59 +04:00
++ maki ,[p=@ta q=@ta r=@ta s=path] ::
2013-09-29 00:21:18 +04:00
++ mace (list ,[p=life q=ring]) :: private secrets
++ marv ?(%da %tas %ud) :: release form
2014-05-20 22:53:49 +04:00
++ masu ,[p=ship q=desk r=moar s=moar t=waks] :: sync square
2013-09-29 00:21:18 +04:00
++ math (map ,@t (list ,@t)) :: semiparsed headers
++ meal :: payload
$% [%back p=cape q=flap r=@dr] :: acknowledgment
[%bond p=life q=path r=@ud s=*] :: message
2013-09-29 00:21:18 +04:00
[%carp p=@ q=@ud r=@ud s=flap t=@] :: skin/inx/cnt/hash
[%fore p=ship q=(unit lane) r=@] :: forwarded packet
== ::
++ mess (list ,[p=@t q=@t]) :: raw http headers
++ meta :: path metadata
$% [& q=@uvI] :: hash
[| q=(list ,@ta)] :: dir
== ::
2014-03-12 23:50:39 +04:00
++ meth :: http methods
$? %conn :: CONNECT
%delt :: DELETE
%get :: GET
%head :: HEAD
%opts :: OPTIONS
%post :: POST
%put :: PUT
%trac :: TRACE
2014-05-26 22:59:21 +04:00
== ::
2014-03-13 05:04:58 +04:00
++ mite (list ,@ta) :: mime type
2013-09-29 00:21:18 +04:00
++ miso :: ankh delta
$% [%del p=*] :: delete
[%ins p=*] :: insert
[%mut p=udon] :: mutate
== ::
2014-07-10 00:56:23 +04:00
++ mizu ,[p=ship q=desk r=@] :: change origin
2013-09-29 00:21:18 +04:00
++ moar ,[p=@ud q=@ud] :: normal change range
++ moat ,[p=case q=case] :: change range
++ mood ,[p=care q=case r=path] :: request in desk
++ moth ,[p=meth q=math r=(unit octs)] :: http operation
++ name ,[p=@t q=(unit ,@t) r=(unit ,@t) s=@t] :: first mid/nick last
++ newt ?(%boot %kick %mess %slay %wake) :: lifecycle events
2014-07-10 18:38:53 +04:00
++ niku $: p=[p=agon q=[p=ship q=desk]] :: us
q=[p=agon q=[p=ship q=desk]] :: them
==
2013-09-29 00:21:18 +04:00
++ nose :: response, kernel
2014-01-04 11:28:16 +04:00
$? [%$ p=(unit ,[p=tutu q=(list)])] :: standard input
goad ::
2013-09-29 00:21:18 +04:00
== ::
++ note :: response, user
$? [%$ p=(unit ,[p=type q=(list)])] :: standard input
[%do p=vase] :: execution result
goad ::
== ::
++ nori :: repository action
$% [& p=(unit masu) q=soba] :: delta
2013-09-29 00:21:18 +04:00
[| p=@tas] :: label
== ::
++ octs ,[p=@ud q=@] :: octet-stream
2014-03-04 23:17:34 +04:00
++ oryx ,@t :: CSRF secret
2014-01-21 01:50:54 +04:00
++ corn :: flow by server
2013-09-29 00:21:18 +04:00
$: hen=duct :: admin channel
nys=(map flap bait) :: packets incoming
olz=(map flap cape) :: packets completed
wab=(map ship bath) :: relationship
== ::
++ pact path :: routed path
++ pail ?(%none %warm %cold) :: connection status
2014-05-30 02:00:13 +04:00
++ plan (trel view (pair ,@da (unit ,@dr)) path) :: subscription
2013-09-29 00:21:18 +04:00
++ plea ,[p=@ud q=[p=? q=@t]] :: live prompt
2014-03-04 02:47:59 +04:00
++ pork ,[p=(unit ,@ta) q=(list ,@t)] :: fully parsed url
2014-03-20 05:05:42 +04:00
++ pred ,[p=@ta q=@tas r=@ta ~] :: proto-path
2013-09-29 00:21:18 +04:00
++ prod ,[p=prom q=tape r=tape] :: prompt
++ prom ?(%text %pass %none) :: format type
++ purl ,[p=hart q=pork r=quay] :: parsed url
++ putt :: outgoing message
$: ski=snow :: sequence acked/sent
wyv=(list rock) :: packet list XX gear
== ::
++ pyre :: cascade stash
$: p=(map ,[p=path q=path r=coal] coal) :: by path
q=(map ,[p=path q=@uvI r=coal] coal) :: by source hash
2013-12-15 11:07:57 +04:00
r=(map ,[p=* q=coal] coal) :: by (soft) twig
2013-09-29 00:21:18 +04:00
== ::
2014-03-12 23:50:39 +04:00
++ quay (list ,[p=@t q=@t]) :: parsed url query
2013-09-29 00:21:18 +04:00
++ quri :: request-uri
$% [& p=purl] :: absolute
[| p=pork q=quay] :: relative
== ::
++ race :: inbound stream
$: did=@ud :: filled sequence
bum=(map ,@ud ,%dead) ::
2013-09-29 00:21:18 +04:00
mis=(map ,@ud ,[p=cape q=flap r=(unit)]) :: misordered
== ::
2013-09-29 00:21:18 +04:00
++ rank ?(%czar %king %duke %earl %pawn) :: ship width class
++ rant :: namespace binding
$: p=[p=care q=case r=@tas] :: clade release book
q=path :: spur
r=* :: data
== ::
2013-09-29 00:21:18 +04:00
++ rave :: general request
$% [& p=mood] :: single request
[| p=moat] :: change range
== ::
++ rill :: outbound stream
$: sed=@ud :: sent
san=(map ,@ud duct) :: outstanding
== ::
++ riot (unit rant) :: response/complete
++ road :: secured oneway route
$: exp=@da :: expiration date
lun=(unit lane) :: route to friend
2013-10-10 06:45:57 +04:00
lew=will :: will of friend
2013-09-29 00:21:18 +04:00
== ::
++ rock ,@uvO :: packet
++ rout ,[p=(list host) q=path r=oryx s=path] :: http route (new)
++ rump ,[p=care q=case r=@tas s=path] :: relative path
2014-07-10 18:38:53 +04:00
++ saba ,[p=ship q=@tas r=moar s=(list nori) t=agon] :: patch/merge
2014-06-26 16:18:30 +04:00
++ sack ,[p=ship q=ship] :: incoming [our his]
2014-04-10 04:28:22 +04:00
++ sufi :: domestic host
2013-09-29 00:21:18 +04:00
$: hoy=(list ship) :: hierarchy
2014-04-10 04:28:22 +04:00
val=wund :: private keys
2013-09-29 00:21:18 +04:00
law=will :: server will
seh=(map hand ,[p=ship q=@da]) :: key cache
hoc=(map ship dore) :: neighborhood
2013-09-29 00:21:18 +04:00
== ::
++ salt ,@uv :: entropy
++ seal :: auth conversation
$: whu=(unit ship) :: client identity
pul=purl :: destination url
wit=? :: wait for partner
foy=(unit ,[p=ship q=hole]) :: partner to notify
pus=(unit ,@ta) :: password
== ::
2013-09-29 00:21:18 +04:00
++ sect ?(%black %blue %red %orange %white) :: banner
++ shed :: packet flow
$: $: rtt=@dr :: smoothed rtt
rto=@dr :: retransmit timeout
rtn=(unit ,@da) :: next timeout
rue=(unit ,@da) :: last heard from
== ::
$: nus=@ud :: number sent
nif=@ud :: number live
nep=@ud :: next expected
caw=@ud :: logical window
cag=@ud :: congest thresh
== ::
$: diq=(map flap ,@ud) :: packets sent
pyz=(map soup ,@ud) :: message/unacked
puq=(qeu ,[p=@ud q=soul]) :: packet queue
== ::
== ::
++ skit ,[p=(unit ,@ta) q=(list ,@ta) r=(list ,@ta)] :: tracking path
++ skin ?(%none %open %fast %full) :: encoding stem
2013-10-27 07:55:53 +04:00
++ slip ,[p=path q=goal] :: traceable request
2013-09-29 00:21:18 +04:00
++ snow ,[p=@ud q=@ud r=(set ,@ud)] :: window exceptions
++ soap ,[p=[p=life q=life] q=path r=@ud] :: statement id
++ soup ,[p=path q=@ud] :: new statement id
2013-09-29 00:21:18 +04:00
++ soul :: packet in travel
$: gom=soup :: message identity
nux=@ud :: xmission count
liv=? :: deemed live
lys=@da :: last sent
pac=rock :: packet data
== ::
++ soba ,[p=cart q=(list tako)] :: delta
2014-06-26 16:18:30 +04:00
++ sock ,[p=ship q=ship] :: outgoing [from to]
2014-05-02 03:33:15 +04:00
++ spur path :: ship desk case spur
2013-09-29 00:21:18 +04:00
++ step ,[p=bray q=gens r=pass] :: identity stage
++ tako ,[p=path q=yaki] :: change detail
2014-01-06 05:52:37 +04:00
++ tart $+([@da path note] bowl) :: process core
2013-09-29 00:21:18 +04:00
++ taxi ,[p=lane q=rock] :: routed packet
++ tick ,@ud :: process id
2014-03-06 00:21:52 +04:00
++ toro ,[p=@ta q=nori] :: general change
2014-06-27 08:02:05 +04:00
++ town :: all security state
2013-09-29 00:21:18 +04:00
$: lit=@ud :: imperial modulus
any=@ :: entropy
2014-04-10 04:28:22 +04:00
urb=(map ship sufi) :: all keys and routes
2014-07-03 02:08:02 +04:00
fak=? ::
2013-09-29 00:21:18 +04:00
== ::
2014-03-12 23:50:39 +04:00
++ tube ,[p=@ta q=@ta r=@ta s=path] :: canonical path
2014-01-04 11:28:16 +04:00
++ tutu ,* :: presumed type
++ yaki ,[p=mizu q=miso] :: miso with origin
2014-05-30 02:00:13 +04:00
++ view ?(%u %v %w %x %y %z) :: view mode
++ waks (map path woof) :: list file states
2013-09-29 00:21:18 +04:00
++ what :: logical identity
$% [%anon ~] :: anonymous
[%lady p=whom] :: female person ()
[%lord p=whom] :: male person []
2013-11-08 04:34:44 +04:00
[%punk p=sect q=@t] :: opaque handle ""
2013-09-29 00:21:18 +04:00
== ::
++ whom ,[p=@ud q=govt r=sect s=name] :: year/govt/id
++ woof $| %know :: udon transform
[%chan (list $|(@ud [p=@ud q=@ud]))] ::
++ wund (list ,[p=life q=ring r=acru]) :: mace in action
2013-09-29 00:21:18 +04:00
++ will (list deed) :: certificate
++ worm ,* :: vase of tart
2014-07-16 22:54:53 +04:00
++ zuse %314 :: hoon/zuse kelvin
2013-09-29 00:21:18 +04:00
--