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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
|
//! ref: composer/vendor/composer/semver/src/Constraint/MultiConstraint.php
use std::cell::RefCell;
use crate::constraint::bound::Bound;
use crate::constraint::constraint_interface::ConstraintInterface;
use crate::constraint::match_all_constraint::MatchAllConstraint;
pub struct MultiConstraint {
pub(crate) constraints: Vec<Box<dyn ConstraintInterface>>,
pub(crate) pretty_string: Option<String>,
string: RefCell<Option<String>>,
pub(crate) conjunctive: bool,
lower_bound: RefCell<Option<Bound>>,
upper_bound: RefCell<Option<Bound>>,
}
impl std::fmt::Debug for MultiConstraint {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("MultiConstraint")
.field("conjunctive", &self.conjunctive)
.finish()
}
}
impl MultiConstraint {
pub fn new(constraints: Vec<Box<dyn ConstraintInterface>>, conjunctive: bool) -> Self {
assert!(
constraints.len() >= 2,
"Must provide at least two constraints for a MultiConstraint. Use \
the regular Constraint class for one constraint only or MatchAllConstraint for none. You may use \
MultiConstraint::create() which optimizes and handles those cases automatically."
);
Self {
constraints,
pretty_string: None,
string: RefCell::new(None),
conjunctive,
lower_bound: RefCell::new(None),
upper_bound: RefCell::new(None),
}
}
pub fn get_constraints(&self) -> &[Box<dyn ConstraintInterface>] {
&self.constraints
}
pub fn is_conjunctive(&self) -> bool {
self.conjunctive
}
pub fn is_disjunctive_mc(&self) -> bool {
!self.conjunctive
}
fn extract_bounds(&self) {
if self.lower_bound.borrow().is_some() {
return;
}
let mut current_lower: Option<Bound> = None;
let mut current_upper: Option<Bound> = None;
for constraint in &self.constraints {
if current_lower.is_none() || current_upper.is_none() {
current_lower = Some(constraint.get_lower_bound());
current_upper = Some(constraint.get_upper_bound());
continue;
}
let constraint_lower = constraint.get_lower_bound();
let is_conj = self.is_conjunctive();
if constraint_lower
.compare_to(
current_lower.as_ref().unwrap(),
if is_conj { ">" } else { "<" },
)
.expect("valid operator")
{
current_lower = Some(constraint_lower);
}
let constraint_upper = constraint.get_upper_bound();
if constraint_upper
.compare_to(
current_upper.as_ref().unwrap(),
if is_conj { "<" } else { ">" },
)
.expect("valid operator")
{
current_upper = Some(constraint_upper);
}
}
*self.lower_bound.borrow_mut() = current_lower;
*self.upper_bound.borrow_mut() = current_upper;
}
pub fn create(
constraints: Vec<Box<dyn ConstraintInterface>>,
conjunctive: bool,
) -> anyhow::Result<Box<dyn ConstraintInterface>> {
if constraints.is_empty() {
return Ok(Box::new(MatchAllConstraint {
pretty_string: None,
}));
}
if constraints.len() == 1 {
return Ok(constraints.into_iter().next().unwrap());
}
let (constraints, conjunctive) = Self::optimize_constraints(constraints, conjunctive);
if constraints.len() == 1 {
return Ok(constraints.into_iter().next().unwrap());
}
Ok(Box::new(MultiConstraint::new(constraints, conjunctive)))
}
// Returns the (possibly optimized) constraints and the effective conjunctive flag.
// Always returns the constraints vector (consuming it), whether or not optimization was applied.
// The PHP version returns null for no optimization; here we return the original values unchanged.
fn optimize_constraints(
constraints: Vec<Box<dyn ConstraintInterface>>,
conjunctive: bool,
) -> (Vec<Box<dyn ConstraintInterface>>, bool) {
// Parse the two OR groups and if they are contiguous collapse into one constraint.
// [>= 1 < 2] || [>= 2 < 3] || [>= 3 < 4] => [>= 1 < 4]
if !conjunctive {
let mut iter = constraints.into_iter();
let mut left: Box<dyn ConstraintInterface> = iter.next().unwrap();
let mut merged_constraints: Vec<Box<dyn ConstraintInterface>> = Vec::new();
let mut optimized = false;
for right in iter {
let merged: Option<Box<dyn ConstraintInterface>> = {
let maybe_l_mc = left.as_any().downcast_ref::<MultiConstraint>();
let maybe_r_mc = right.as_any().downcast_ref::<MultiConstraint>();
if let (Some(l_mc), Some(r_mc)) = (maybe_l_mc, maybe_r_mc) {
if l_mc.conjunctive
&& r_mc.conjunctive
&& l_mc.constraints.len() == 2
&& r_mc.constraints.len() == 2
{
let left0 = l_mc.constraints[0].__to_string();
let left1 = l_mc.constraints[1].__to_string();
let right0 = r_mc.constraints[0].__to_string();
let right1 = r_mc.constraints[1].__to_string();
if left0.starts_with(">=")
&& left1.starts_with('<')
&& right0.starts_with(">=")
&& right1.starts_with('<')
&& left1.get(2..) == right0.get(3..)
{
Some(Box::new(MultiConstraint::new(
vec![
l_mc.constraints[0].clone_box(),
r_mc.constraints[1].clone_box(),
],
true,
))
as Box<dyn ConstraintInterface>)
} else {
None
}
} else {
None
}
} else {
None
}
};
if let Some(new_left) = merged {
optimized = true;
left = new_left;
} else {
merged_constraints.push(left);
left = right;
}
}
merged_constraints.push(left);
if optimized {
return (merged_constraints, false);
}
return (merged_constraints, conjunctive);
}
// TODO: Here's the place to put more optimizations
(constraints, conjunctive)
}
}
impl ConstraintInterface for MultiConstraint {
fn compile(&self, other_operator: i64) -> String {
let mut parts = Vec::new();
for constraint in &self.constraints {
let code = constraint.compile(other_operator);
if code == "true" {
if !self.conjunctive {
return "true".to_string();
}
} else if code == "false" {
if self.conjunctive {
return "false".to_string();
}
} else {
parts.push(format!("({})", code));
}
}
if parts.is_empty() {
return if self.conjunctive {
"true".to_string()
} else {
"false".to_string()
};
}
if self.conjunctive {
parts.join("&&")
} else {
parts.join("||")
}
}
fn matches(&self, provider: &dyn ConstraintInterface) -> bool {
if !self.conjunctive {
for constraint in &self.constraints {
if provider.matches(constraint.as_ref()) {
return true;
}
}
return false;
}
if provider.is_disjunctive() {
return provider.matches(self);
}
for constraint in &self.constraints {
if !provider.matches(constraint.as_ref()) {
return false;
}
}
true
}
fn set_pretty_string(&mut self, pretty_string: Option<String>) {
self.pretty_string = pretty_string;
}
fn get_pretty_string(&self) -> String {
if let Some(ref s) = self.pretty_string
&& !s.is_empty()
{
return s.clone();
}
self.__to_string()
}
fn __to_string(&self) -> String {
if let Some(ref s) = *self.string.borrow() {
return s.clone();
}
let parts: Vec<String> = self.constraints.iter().map(|c| c.__to_string()).collect();
let sep = if self.conjunctive { " " } else { " || " };
let result = format!("[{}]", parts.join(sep));
*self.string.borrow_mut() = Some(result.clone());
result
}
fn get_lower_bound(&self) -> Bound {
self.extract_bounds();
self.lower_bound
.borrow()
.clone()
.expect("extractBounds should have populated the lowerBound property")
}
fn get_upper_bound(&self) -> Bound {
self.extract_bounds();
self.upper_bound
.borrow()
.clone()
.expect("extractBounds should have populated the upperBound property")
}
fn is_disjunctive(&self) -> bool {
!self.conjunctive
}
fn clone_box(&self) -> Box<dyn ConstraintInterface> {
Box::new(MultiConstraint {
constraints: self.constraints.iter().map(|c| c.clone_box()).collect(),
pretty_string: self.pretty_string.clone(),
string: RefCell::new(self.string.borrow().clone()),
conjunctive: self.conjunctive,
lower_bound: RefCell::new(self.lower_bound.borrow().clone()),
upper_bound: RefCell::new(self.upper_bound.borrow().clone()),
})
}
fn as_any(&self) -> &dyn std::any::Any {
self
}
}
|