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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
use std::fmt;
use memory::*;
use dispatch::*;
use value::*;
use handle;
use handle::Handle;
use transduce::{Process};
use vector::guide::Guide;
pub mod pop;
use self::pop::Pop;
pub mod assoc;
pub mod eq;
pub mod get;
pub mod reduce;
pub mod tear_down;
pub mod dissoc;
pub const BITS: u32 = 4;
pub const ARITY: u32 = 1 << BITS;
pub const MASK: u32 = ARITY - 1;
pub const MAX_LEVELS: u32 = (32 + BITS - 1) / BITS;
pub struct Map_ { }
pub fn prism_unit() -> Unit { mechanism::prism::<Map_>() }
pub fn is_prism(prism: AnchoredLine) -> bool { prism[0] == prism_unit() }
pub fn find_prism(h: Handle) -> Option<AnchoredLine> { h.find_prism(prism_unit()) }
pub fn is_map(h: Handle) -> bool { find_prism(h).is_some() }
pub fn new() -> Unit {
let guide = {
let cap = 1 + Guide::units() + 1 + size(1);
let s = Segment::new(cap);
let prism = s.line_at(0);
prism.set(0, prism_unit());
let g = Guide::hydrate_top_bot(prism, 0, 0);
g
};
guide.root.set(-1, Pop::new().unit());
guide.store().segment().unit()
}
pub fn new_value() -> Value { new().handle().value() }
pub fn alias_components(prism: AnchoredLine, has_vals: u32) {
let guide = Guide::hydrate(prism);
let (child_count, key_count) = {
let p = Pop::from(guide.root[-1]);
(p.child_count() as i32, p.key_count())
};
for i in 0..child_count {
guide.root[1 + (i << 1)].segment().alias();
}
let kvs = guide.root.offset(child_count << 1).span(key_count << has_vals);
kvs.split();
}
pub fn unaliased(prism: AnchoredLine, has_vals: u32) -> AnchoredLine {
let seg = prism.segment();
if seg.is_aliased() {
if prism.index() == 0 {
alias_components(prism, has_vals);
} else {
seg.unit().handle()._alias_components();
}
let s = seg.carbon_copy();
let p = prism.with_seg(s);
seg.unit().handle().retire();
p
} else {
prism
}
}
impl Dispatch for Map_ {
fn tear_down(&self, prism: AnchoredLine) {
tear_down::tear_down(prism, 1);
}
fn alias_components(&self, prism: AnchoredLine) { alias_components(prism, 1); }
}
impl Identification for Map_ {
fn type_name(&self) -> &'static str { "Map" }
}
impl Distinguish for Map_ {
fn hash(&self, prism: AnchoredLine) -> u32 {
let guide = Guide::hydrate(prism);
if guide.has_hash() {
return guide.hash;
}
use random::{PI, cycle_abc};
struct Pointer {
pub ptr: *mut u64,
}
impl Process for Pointer {
fn inges_kv(&mut self, stack: &mut [Box<dyn Process>], k: &Value, v: &Value) -> Option<Value> {
let kh = k.hash() as u64;
let vh = v.hash() as u64;
let h = cycle_abc(256, (kh << 32) | vh);
unsafe {
*self.ptr = (*self.ptr).wrapping_add(h);
}
None
}
fn last_call(&mut self, stack: &mut [Box<dyn Process>]) -> Value { Handle::nil().value() }
}
let mut y = cycle_abc(58, PI[123] + guide.count as u64);
let mut procs: [Box<dyn Process>; 1] = [Box::new(Pointer { ptr: (&mut y) as *mut u64 })];
let _ = reduce::reduce(prism, &mut procs, 1);
let h = cycle_abc(179, y) as u32;
guide.set_hash(h).store_hash().hash
}
fn eq(&self, prism: AnchoredLine, other: Unit) -> bool {
let o = other.handle();
if let Some(m_prism) = find_prism(o) {
let res = eq::eq(Guide::hydrate(prism), Guide::hydrate(m_prism), 1);
return res
}
false
}
}
impl Aggregate for Map_ {
fn is_aggregate(&self, prism: AnchoredLine) -> bool { true }
fn count(&self, prism: AnchoredLine) -> u32 {
let guide = Guide::hydrate(prism);
guide.count
}
fn empty(&self, prism: AnchoredLine) -> Unit { new() }
fn get(&self, prism: AnchoredLine, k: Unit) -> *const Unit {
let h = k.handle().hash();
if let Some(key_line) = get::get(prism, k, h, 1) {
key_line.offset(1).line().star()
} else {
(& handle::STATIC_NIL) as *const Unit
}
}
fn reduce(&self, prism: AnchoredLine, process: &mut [Box<dyn Process>]) -> Value {
reduce::reduce(prism, process, 1)
}
}
impl Sequential for Map_ { }
impl Associative for Map_ {
fn is_map(&self, prism: AnchoredLine) -> bool { true }
fn contains(&self, prism: AnchoredLine, k: Unit) -> bool {
let h = k.handle().hash();
get::get(prism, k, h, 1).is_some()
}
fn assoc(&self, prism: AnchoredLine, k: Unit, v: Unit) -> (Unit, Unit) {
let h = k.handle().hash();
let (g, key_slot) = assoc::assoc(prism, k, h, 1);
match key_slot {
Ok(new_slot) => {
new_slot.set(0, k);
new_slot.set(1, v);
(g.inc_count().store().segment().unit(), Handle::nil().unit())
},
Err(old_slot) => {
k.handle().retire();
let prev = old_slot[1];
old_slot.set(1, v);
(g.clear_hash().store().segment().unit(), prev)
},
}
}
fn dissoc(&self, prism: AnchoredLine, k: Unit) -> Unit {
let h = k.handle().hash();
let g = dissoc::dissoc(prism, k, h, 1);
g.segment().unit()
}
}
impl Reversible for Map_ {}
impl Sorted for Map_ {}
impl Notation for Map_ {
fn edn(&self, prism: AnchoredLine, f: &mut fmt::Formatter) -> fmt::Result {
struct Printer {
pub is_first: bool,
pub f: usize,
}
impl Printer {
pub fn new(f: &mut fmt::Formatter) -> Printer {
use std::mem::transmute;
unsafe { Printer { is_first: true, f: transmute::<& fmt::Formatter, usize>(f) } }
}
}
impl Process for Printer {
fn inges_kv(&mut self, stack: &mut [Box<dyn Process>], k: &Value, v: &Value) -> Option<Value> {
use std::mem::transmute;
write!(unsafe { transmute::<usize, &mut fmt::Formatter>(self.f) },
"{}{} {}",
if self.is_first { self.is_first = false; "" } else { ", " },
k, v).unwrap();
None
}
fn last_call(&mut self, stack: &mut [Box<dyn Process>]) -> Value {
Handle::nil().value()
}
}
write!(f, "{{")?;
let mut procs: [Box<dyn Process>; 1] = [Box::new(Printer::new(f))];
let _ = reduce::reduce(prism, &mut procs, 1);
write!(f, "}}")
}
}
impl Numeral for Map_ {}
impl Callable for Map_ {}
pub fn next_power(x: u32) -> u32 { (x + 1).next_power_of_two() }
pub fn cap_at_arity_width(power: u32) -> u32 { power >> (power >> (BITS + 2)) }
pub fn size(unit_count: u32) -> u32 { cap_at_arity_width(next_power(unit_count | 0x4)) }
pub fn common_chunks(h1: u32, h2: u32) -> u32 {
let top_chunks = (h1 ^ h2) >> BITS;
let zeros = (top_chunks | 0x80000000u32).trailing_zeros();
divide_by_bits(zeros) + 1
}
pub fn divide_by_five(x: u32) -> u32 {
let p = x as u64 * 0x33333334u64;
(p >> 32) as u32
}
pub fn divide_by_bits(x: u32) -> u32 {
if BITS == 4 {
x >> 2
} else {
divide_by_five(x)
}
}
#[cfg(test)]
mod tests {
use super::*;
}