2022-01-26 19:37:02 +03:00
|
|
|
/- *story
|
2022-01-31 00:02:25 +03:00
|
|
|
!:
|
2022-02-04 20:49:55 +03:00
|
|
|
^?
|
2022-01-26 19:37:02 +03:00
|
|
|
|%
|
2022-01-31 00:02:25 +03:00
|
|
|
:: XX generalize move to hoon.hoon
|
|
|
|
++ dif-ju
|
|
|
|
|= [a=story b=story]
|
|
|
|
^- story
|
2022-02-04 20:51:58 +03:00
|
|
|
:: if 0 is the empty set,
|
|
|
|
:: a \ 0 = a
|
2022-02-05 14:15:45 +03:00
|
|
|
:: 0 \ b = 0 :: anything in 0 but not in b is by definition 0
|
|
|
|
::
|
2022-02-04 20:51:58 +03:00
|
|
|
?: =(~ a) ~
|
2022-02-05 14:15:45 +03:00
|
|
|
:: uno := (a-b) + (merged items in both a and b) + (b-a)
|
|
|
|
:: ret := (a-b) + (merged items in both a and b)
|
|
|
|
:: ret = (~(int by a) uno) :: preserve only the entries whose keys are in a
|
2022-01-31 00:02:25 +03:00
|
|
|
=/ uno=story
|
2022-02-03 07:35:55 +03:00
|
|
|
%- (~(uno by a) b)
|
2022-01-31 00:02:25 +03:00
|
|
|
|= [k=tako:clay proses-a=proses proses-b=proses]
|
|
|
|
^- proses
|
|
|
|
(~(dif in proses-a) proses-b)
|
|
|
|
::
|
2022-02-05 14:15:45 +03:00
|
|
|
=/ ret=story (~(int by a) uno)
|
2022-01-31 00:02:25 +03:00
|
|
|
:: normalizing step, remove any keys with null sets,
|
|
|
|
:: which can occur if proses-a == proses-b above
|
|
|
|
%- ~(gas by *story)
|
|
|
|
(skip ~(tap by ret) |=([k=* v=proses] ?=(~ v)))
|
|
|
|
::
|
|
|
|
++ uni-ju
|
|
|
|
|= [a=story b=story]
|
|
|
|
^- story
|
2022-02-03 07:35:55 +03:00
|
|
|
:: 0 + b = b
|
|
|
|
?: =(~ a) b
|
2022-01-31 00:02:25 +03:00
|
|
|
%- (~(uno by a) b)
|
|
|
|
|= [k=tako:clay proses-a=proses proses-b=proses]
|
|
|
|
^- proses
|
|
|
|
(~(uni in proses-a) proses-b)
|
|
|
|
::
|
|
|
|
:: Canonical textual representation
|
|
|
|
::
|
2022-09-29 16:09:59 +03:00
|
|
|
++ chapter-to-text
|
|
|
|
|= [=tako:clay =proses]
|
|
|
|
^- wain
|
|
|
|
:- (crip "commit: {<`@uv`tako>}")
|
|
|
|
%- zing
|
|
|
|
%+ join `wain`~['|||']
|
|
|
|
%+ turn ~(tap in proses)
|
|
|
|
|= prose
|
|
|
|
^- wain
|
|
|
|
%- to-wain:format
|
|
|
|
(rap 3 title '\0a\0a' body ~)
|
2022-01-31 00:01:00 +03:00
|
|
|
::
|
|
|
|
:: Parsers
|
|
|
|
::
|
2022-02-05 14:16:59 +03:00
|
|
|
++ parse-commit-hash
|
2022-01-31 00:01:00 +03:00
|
|
|
;~ sfix
|
|
|
|
;~ pfix (jest 'commit: ')
|
|
|
|
(cook @uv ;~(pfix (jest '0v') viz:ag))
|
|
|
|
==
|
|
|
|
::
|
|
|
|
(just '\0a')
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ parse-title
|
|
|
|
;~ sfix
|
|
|
|
(cook crip (star prn))
|
|
|
|
(jest '\0a\0a')
|
|
|
|
==
|
|
|
|
::
|
2022-02-05 14:16:59 +03:00
|
|
|
++ parse-body
|
|
|
|
%+ cook of-wain:format
|
2022-01-31 00:01:00 +03:00
|
|
|
%- star
|
|
|
|
;~ less
|
|
|
|
;~(pose (jest '|||\0a') (jest '---\0a'))
|
|
|
|
(cook crip ;~(sfix (star prn) (just '\0a')))
|
|
|
|
==
|
|
|
|
::
|
2022-03-11 20:08:40 +03:00
|
|
|
++ parse-prose ;~(plug parse-title parse-body)
|
|
|
|
++ parse-rest-proses (star ;~(pfix (jest '|||\0a') parse-prose))
|
|
|
|
++ parse-proses (cook silt ;~(plug parse-prose parse-rest-proses))
|
|
|
|
++ parse-chapter ;~(plug parse-commit-hash parse-proses)
|
|
|
|
++ parse-story
|
|
|
|
(cook ~(gas by *story) (star ;~(sfix parse-chapter (jest '---\0a'))))
|
|
|
|
::
|
|
|
|
:: N.B: If conflicting messages are written individually,
|
|
|
|
:: instead of under the same commit, we will overwrite previous entries
|
|
|
|
:: with later ones due to the nature of gas:by.
|
2022-02-05 14:16:59 +03:00
|
|
|
--
|