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
use core::fmt::Debug;
use std::iter::FromIterator;
use std::ops::{Deref, DerefMut};
use cpclib_common::smallvec::SmallVec;
use crate::{
BinaryTransformation, CrunchType, DataAccess, ExprElement, MacroParamElement, Mnemonic,
TestKindElement
};
pub trait ListingElement: Debug + Sized {
type MacroParam: MacroParamElement;
type TestKind: TestKindElement;
type Expr: ExprElement;
fn mnemonic(&self) -> Option<&Mnemonic>;
fn mnemonic_arg1(&self) -> Option<&DataAccess>;
fn mnemonic_arg2(&self) -> Option<&DataAccess>;
fn mnemonic_arg1_mut(&mut self) -> Option<&mut DataAccess>;
fn mnemonic_arg2_mut(&mut self) -> Option<&mut DataAccess>;
fn is_directive(&self) -> bool;
fn is_iterate(&self) -> bool;
fn iterate_listing(&self) -> &[Self];
fn iterate_counter_name(&self) -> &str;
fn iterate_values(&self) -> either::Either<&Vec<Self::Expr>, &Self::Expr>;
fn is_for(&self) -> bool;
fn for_listing(&self) -> &[Self];
fn for_label(&self) -> &str;
fn for_start(&self) -> &Self::Expr;
fn for_stop(&self) -> &Self::Expr;
fn for_step(&self) -> Option<&Self::Expr>;
fn is_repeat_until(&self) -> bool;
fn repeat_until_listing(&self) -> &[Self];
fn repeat_until_condition(&self) -> &Self::Expr;
fn is_rorg(&self) -> bool;
fn rorg_listing(&self) -> &[Self];
fn rorg_expr(&self) -> &Self::Expr;
fn is_repeat(&self) -> bool;
fn repeat_listing(&self) -> &[Self];
fn repeat_count(&self) -> &Self::Expr;
fn repeat_counter_name(&self) -> Option<&str>;
fn repeat_counter_start(&self) -> Option<&Self::Expr>;
fn is_crunched_section(&self) -> bool;
fn crunched_section_listing(&self) -> &[Self];
fn crunched_section_kind(&self) -> &CrunchType;
fn is_macro_definition(&self) -> bool;
fn macro_definition_name(&self) -> &str;
fn macro_definition_arguments(&self) -> SmallVec<[&str; 4]>;
fn macro_definition_code(&self) -> &str;
fn is_call_macro_or_build_struct(&self) -> bool;
fn macro_call_name(&self) -> &str;
fn macro_call_arguments(&self) -> &[Self::MacroParam];
fn is_if(&self) -> bool;
fn if_nb_tests(&self) -> usize;
fn if_test(&self, idx: usize) -> (&Self::TestKind, &[Self]);
fn if_else(&self) -> Option<&[Self]>;
fn is_incbin(&self) -> bool;
fn incbin_fname(&self) -> &str;
fn incbin_offset(&self) -> Option<&Self::Expr>;
fn incbin_length(&self) -> Option<&Self::Expr>;
fn incbin_transformation(&self) -> &BinaryTransformation;
fn is_include(&self) -> bool;
fn include_fname(&self) -> &str;
fn include_namespace(&self) -> Option<&str>;
fn include_once(&self) -> bool;
fn is_function_definition(&self) -> bool;
fn function_definition_name(&self) -> &str;
fn function_definition_params(&self) -> SmallVec<[&str; 4]>;
fn function_definition_inner(&self) -> &[Self];
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct BaseListing<T: Clone + ListingElement> {
pub(crate) listing: Vec<T>,
pub(crate) duration: Option<usize>
}
impl<T: Clone + ListingElement> From<Vec<T>> for BaseListing<T> {
fn from(listing: Vec<T>) -> Self {
Self {
listing,
duration: None
}
}
}
impl<T: Clone + ListingElement> Deref for BaseListing<T> {
type Target = Vec<T>;
fn deref(&self) -> &Self::Target {
&self.listing
}
}
impl<T: Clone + ListingElement> DerefMut for BaseListing<T> {
fn deref_mut(&mut self) -> &mut Vec<T> {
&mut self.listing
}
}
impl<T: Clone + ListingElement> Default for BaseListing<T> {
fn default() -> Self {
Self {
listing: Vec::new(),
duration: None
}
}
}
impl<T: Clone + Debug + ListingElement> From<T> for BaseListing<T> {
fn from(token: T) -> Self {
let mut lst = Self::default();
lst.add(token);
lst
}
}
impl<T: Clone + ListingElement + Debug> FromIterator<T> for BaseListing<T> {
fn from_iter<I: IntoIterator<Item = T>>(src: I) -> Self {
Self::new_with(&src.into_iter().collect::<Vec<T>>())
}
}
#[allow(missing_docs)]
impl<T: Clone + ListingElement + ::std::fmt::Debug> BaseListing<T> {
pub fn new() -> Self {
Self::default()
}
pub fn new_with(arg: &[T]) -> Self {
let mut new = Self::default();
new.listing = arg.to_vec();
new
}
#[deprecated(note = "use listing_mut instead")]
pub fn mut_listing(&mut self) -> &mut Vec<T> {
&mut self.listing
}
pub fn listing_mut(&mut self) -> &mut Vec<T> {
&mut self.listing
}
pub fn listing(&self) -> &[T] {
&self.listing
}
pub fn add(&mut self, token: T) {
self.listing.push(token);
}
pub fn inject_listing(&mut self, other: &Self) {
self.listing.extend_from_slice(&other.listing);
}
pub fn set_duration(&mut self, duration: usize) {
let duration = Some(duration);
self.duration = duration;
}
pub fn duration(&self) -> Option<usize> {
self.duration
}
pub fn get(&self, idx: usize) -> Option<&T> {
self.listing.get(idx)
}
}