summaryrefslogtreecommitdiff
path: root/desk/lib/mop-extensions.hoon
blob: e82e286e2698e76b45af42bbab0a61212cceaa4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|*  [key=mold val=mold]
=>  |%
    +$  item  [key=key val=val]
    --
~%  %mope-comp  ..zuse  ~
|=  compare=$-([key key] ?)
~%  %mope-core  ..zuse  ~
|%
::  +uno: merge with conflict resolution function
::
++  uno
  ~/  %uno
  |=  [a=(tree item) b=(tree item)]
  |=  [meg=$-([key val val] val)]
  ^-  (tree item)
  ?~  b  a
  ?~  a  b
  ?:  =(key.n.a key.n.b)
    :-  n=[key.n.a (meg key.n.a val.n.a val.n.b)]
    [l=$(a l.a, b l.b) r=$(a r.a, b r.b)]
  ?:  (mor key.n.a key.n.b)
    ?:  (compare key.n.b key.n.a)
      $(l.a $(a l.a, r.b ~), b r.b)
    $(r.a $(a r.a, l.b ~), b l.b)
  ?:  (compare key.n.a key.n.b)
    $(l.b $(b l.b, r.a ~), a r.a)
  $(r.b $(b r.b, l.a ~), a l.a)
::  +bat: tabulate a subset excluding start element with a max count (backwards)
::
++  bat
  |=  [a=(tree item) b=(unit key) c=@]
  ^-  (list item)
  |^
  e:(tabulate (del-span a b) b c)
  ::
  ++  tabulate
    |=  [a=(tree item) b=(unit key) c=@]
    ^-  [d=@ e=(list item)]
    ?:  ?&(?=(~ b) =(c 0))
      [0 ~]
    =|  f=[d=@ e=(list item)]
    |-  ^+  f
    ?:  ?|(?=(~ a) =(d.f c))  f
    =.  f  $(a r.a)
    ?:  =(d.f c)  f
    =.  f  [+(d.f) [n.a e.f]]
    ?:(=(d.f c) f $(a l.a))
  ::
  ++  del-span
    |=  [a=(tree item) b=(unit key)]
    ^-  (tree item)
    ?~  a  a
    ?~  b  a
    ?:  =(key.n.a u.b)
      l.a
    ?.  (compare key.n.a u.b)
      $(a l.a)
    a(r $(a r.a))
  --
::  +dop: dip:on but in reverse order (right to left)
::
++  dop
  |*  state=mold
  |=  $:  a=(tree item)
          =state
          f=$-([state item] [(unit val) ? state])
      ==
  ^+  [state a]
  ::  acc: accumulator
  ::
  ::    .stop: set to %.y by .f when done traversing
  ::    .state: threaded through each run of .f and produced by +abet
  ::
  =/  acc  [stop=`?`%.n state=state]
  =<  abet  =<  main
  |%
  ++  this  .
  ++  abet  [state.acc a]
  ::  +main: main recursive loop; performs a partial inorder traversal
  ::
  ++  main
    ^+  this
    ::  stop if empty or we've been told to stop
    ::
    ?:  =(~ a)  this
    ?:  stop.acc  this
    ::  reverse in-order traversal: right -> node -> left, until .f sets .stop
    ::
    =.  this  right
    ?:  stop.acc  this
    =^  del  this  node
    =?  this  !stop.acc  left
    ::  XX: remove for now; bring back when upstreaming
    :: =?  a  del  (nip a)
    this
  ::  +node: run .f on .n.a, updating .a, .state, and .stop
  ::
  ++  node
    ^+  [del=*? this]
    ::  run .f on node, updating .stop.acc and .state.acc
    ::
    ?>  ?=(^ a)
    =^  res  acc  (f state.acc n.a)
    ?~  res
      [del=& this]
    [del=| this(val.n.a u.res)]
  ::  +left: recurse on left subtree, copying mutant back into .l.a
  ::
  ++  left
    ^+  this
    ?~  a  this
    =/  lef  main(a l.a)
    lef(a a(l a.lef))
  ::  +right: recurse on right subtree, copying mutant back into .r.a
  ::
  ++  right
    ^+  this
    ?~  a  this
    =/  rig  main(a r.a)
    rig(a a(r a.rig))
  --
::  +bot: produce the N leftmost elements
::
++  bot
  |=  [a=(tree item) b=@]
  ^-  (list item)
  |^  p:(items-with-remainder a b)
  ++  items-with-remainder
    |=  [a=(tree item) b=@]
    ^-  (pair (list item) @)
    ?~  a  [~ b]
    ?:  =(b 0)  [~ 0]
    =/  left-result  (items-with-remainder l.a b)
    ?:  =(q.left-result 0)  left-result
    ?:  =(q.left-result 1)  [(zing ~[p.left-result ~[n.a]]) (dec q.left-result)]
    =/  right-result
      (items-with-remainder r.a (dec q.left-result))
    [(zing ~[p.left-result ~[n.a] p.right-result]) q.right-result]
  --
::  +top: produce the N rightmost elements
::
++  top
  |=  [a=(tree item) b=@]
  ^-  (list item)
  |^  p:(items-with-remainder a b)
  ++  items-with-remainder
    |=  [a=(tree item) b=@]
    ^-  (pair (list item) @)
    ?~  a  [~ b]
    ?:  =(b 0)  [~ 0]
    =/  right-result  (items-with-remainder r.a b)
    ?:  =(q.right-result 0)  right-result
    ?:  =(q.right-result 1)  [[n.a p.right-result] (dec q.right-result)]
    =/  left-result
      (items-with-remainder l.a (dec q.right-result))
    [(zing ~[p.left-result ~[n.a] p.right-result]) q.left-result]
  --
--