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
use std::ops::{Index, IndexMut};
use cairo_lang_diagnostics::{DiagnosticAdded, Maybe};
use crate::FlatBlock;
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
pub struct BlockId(pub usize);
impl BlockId {
pub fn root() -> Self {
Self(0)
}
pub fn is_root(&self) -> bool {
self.0 == 0
}
pub fn next_block_id(&self) -> BlockId {
BlockId(self.0 + 1)
}
}
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct BlocksBuilder<T>(pub Vec<T>);
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Blocks<T>(Vec<T>);
impl<T: Default> BlocksBuilder<T> {
pub fn new() -> Self {
Self(vec![])
}
pub fn alloc(&mut self, block: T) -> BlockId {
let id = BlockId(self.0.len());
self.0.push(block);
id
}
pub fn alloc_empty(&mut self) -> BlockId {
let id = BlockId(self.0.len());
self.0.push(T::default());
id
}
pub fn set_block(&mut self, id: BlockId, block: T) {
self.0[id.0] = block;
}
pub fn len(&self) -> usize {
self.0.len()
}
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
pub fn build(self) -> Option<Blocks<T>> {
if self.is_empty() {
return None;
}
Some(Blocks(self.0))
}
}
impl<T: Default> Blocks<T> {
pub fn new_errored(_diag_added: DiagnosticAdded) -> Self {
Self(vec![])
}
pub fn get(&self) -> &Vec<T> {
&self.0
}
pub fn len(&self) -> usize {
self.0.len()
}
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
pub fn iter(&self) -> BlocksIter<'_, T> {
self.into_iter()
}
pub fn root_block(&self) -> Maybe<&T> {
if self.is_empty() { Err(DiagnosticAdded) } else { Ok(&self.0[0]) }
}
pub fn has_root(&self) -> Maybe<()> {
if self.is_empty() { Err(DiagnosticAdded) } else { Ok(()) }
}
pub fn iter_mut(&mut self) -> std::slice::IterMut<'_, T> {
self.0.iter_mut()
}
}
impl<T> Index<BlockId> for Blocks<T> {
type Output = T;
fn index(&self, index: BlockId) -> &Self::Output {
&self.0[index.0]
}
}
impl<T> IndexMut<BlockId> for Blocks<T> {
fn index_mut(&mut self, index: BlockId) -> &mut Self::Output {
&mut self.0[index.0]
}
}
impl<'a, T> IntoIterator for &'a Blocks<T> {
type Item = (BlockId, &'a T);
type IntoIter = BlocksIter<'a, T>;
fn into_iter(self) -> Self::IntoIter {
BlocksIter { blocks: self, index: 0 }
}
}
pub struct BlocksIter<'a, T> {
pub blocks: &'a Blocks<T>,
pub index: usize,
}
impl<'a, T> Iterator for BlocksIter<'a, T> {
type Item = (BlockId, &'a T);
fn next(&mut self) -> Option<Self::Item> {
self.blocks.0.get(self.index).map(|b| {
let res = (BlockId(self.index), b);
self.index += 1;
res
})
}
}
pub type FlatBlocksBuilder = BlocksBuilder<FlatBlock>;
pub type FlatBlocks = Blocks<FlatBlock>;