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
use crate::css::Value;
use crate::value::{ListSeparator, Quotes, Unit};
use num_traits::Zero;
use std::fmt;

#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub enum Operator {
    And,
    Or,
    Equal,
    NotEqual,
    Greater,
    GreaterE,
    Lesser,
    LesserE,

    Plus,
    Minus,
    Multiply,
    Div,

    Not,
}

impl Operator {
    pub fn eval(&self, a: Value, b: Value) -> Option<Value> {
        match *self {
            Operator::And => Some(Value::bool(a.is_true() && b.is_true())),
            Operator::Or => {
                if a.is_true() {
                    Some(a)
                } else {
                    Some(b)
                }
            }
            Operator::Equal => Some(Value::bool(equal_values(&a, &b))),
            Operator::NotEqual => Some(Value::bool(!equal_values(&a, &b))),
            Operator::Greater => Some(Value::bool(a > b)),
            Operator::GreaterE => Some(Value::bool(a >= b)),
            Operator::Lesser => Some(Value::bool(a < b)),
            Operator::LesserE => Some(Value::bool(a <= b)),
            Operator::Plus => match (a, b) {
                (Value::Color(a, _), Value::Numeric(bn, Unit::None, _)) => {
                    let bn = bn.value;
                    Some(Value::Color(a + bn, None))
                }
                (Value::Color(a, _), Value::Color(b, _)) => {
                    Some(Value::Color(a + b, None))
                }
                (Value::Numeric(a, au, ..), Value::Numeric(b, bu, ..)) => {
                    if au == bu || bu == Unit::None {
                        Some(Value::Numeric(a + b, au, true))
                    } else if au == Unit::None {
                        Some(Value::Numeric(a + b, bu, true))
                    } else {
                        Some(Value::Literal(
                            format!("{}{}", a, b),
                            Quotes::None,
                        ))
                    }
                }
                (Value::Literal(a, Quotes::None), Value::Literal(b, _)) => {
                    Some(Value::Literal(format!("{}{}", a, b), Quotes::None))
                }
                (Value::Literal(a, _), Value::Literal(b, _)) => Some(
                    Value::Literal(format!("{}{}", a, b), Quotes::Double),
                ),
                (Value::Literal(a, q), b) => {
                    Some(Value::Literal(format!("{}{}", a, b), q))
                }
                (a, Value::Literal(b, q)) => {
                    Some(Value::Literal(format!("{}{}", a, b), q))
                }
                _ => None,
            },
            Operator::Minus => match (&a, &b) {
                (
                    &Value::Color(ref a, _),
                    &Value::Numeric(ref bn, Unit::None, _),
                ) => {
                    let bn = bn.value;
                    Some(Value::Color(a - bn, None))
                }
                (&Value::Color(ref a, _), &Value::Color(ref b, _)) => {
                    Some(Value::Color(a - b, None))
                }
                (
                    &Value::Numeric(ref av, ref au, ..),
                    &Value::Numeric(ref bv, ref bu, ..),
                ) => {
                    if au == bu || bu == &Unit::None {
                        Some(Value::Numeric(av - bv, au.clone(), true))
                    } else if au == &Unit::None {
                        Some(Value::Numeric(av - bv, bu.clone(), true))
                    } else {
                        None
                    }
                }
                // Note: This very special case should probably be much
                // more general.
                (&Value::UnicodeRange(..), &Value::Literal(..)) => {
                    Some(Value::List(
                        vec![
                            a.clone(),
                            Value::UnaryOp(
                                Operator::Minus,
                                Box::new(b.clone()),
                            ),
                        ],
                        ListSeparator::Space,
                        false,
                    ))
                }
                _ => None,
            },
            Operator::Multiply => {
                if let (
                    &Value::Numeric(ref a, ref au, ..),
                    &Value::Numeric(ref b, ref bu, ..),
                ) = (&a, &b)
                {
                    if bu == &Unit::None {
                        Some(Value::Numeric(a * b, au.clone(), true))
                    } else if au == &Unit::None {
                        Some(Value::Numeric(a * b, bu.clone(), true))
                    } else {
                        // TODO None?
                        Some(Value::Literal(
                            format!("{}*{}", a, b),
                            Quotes::None,
                        ))
                    }
                } else {
                    // TODO None?
                    Some(Value::Literal(format!("{}*{}", a, b), Quotes::None))
                }
            }
            Operator::Div => {
                if a.is_calculated() || b.is_calculated() {
                    match (&a, &b) {
                        (
                            &Value::Color(ref a, _),
                            &Value::Numeric(ref bn, Unit::None, ..),
                        ) => {
                            let bn = bn.value;
                            Some(Value::Color(a / bn, None))
                        }
                        (
                            &Value::Numeric(ref av, ref au, ..),
                            &Value::Numeric(ref bv, ref bu, ..),
                        ) => {
                            if bv.is_zero() {
                                None
                            } else if bu == &Unit::None {
                                Some(Value::Numeric(
                                    av / bv,
                                    au.clone(),
                                    true,
                                ))
                            } else if au == bu {
                                Some(Value::Numeric(
                                    av / bv,
                                    Unit::None,
                                    true,
                                ))
                            } else {
                                None
                            }
                        }
                        //_ => None,
                        (a, b) => Some(Value::BinOp(
                            Box::new(a.clone()),
                            false, // *space1,
                            Operator::Div,
                            false, // *space2,
                            Box::new(b.clone()),
                        )),
                    }
                } else {
                    None
                }
            }
            Operator::Not => panic!("not is a unary operator only"),
        }
    }
}

impl fmt::Display for Operator {
    fn fmt(&self, out: &mut fmt::Formatter) -> fmt::Result {
        write!(
            out,
            "{}",
            match *self {
                Operator::And => "and",
                Operator::Or => "or",
                Operator::Equal => "==",
                Operator::NotEqual => "!=",
                Operator::Greater => ">",
                Operator::GreaterE => ">=",
                Operator::Lesser => "<",
                Operator::LesserE => "<=",
                Operator::Plus => "+",
                Operator::Minus => "-",
                Operator::Multiply => "*",
                Operator::Div => "/",
                Operator::Not => "not",
            }
        )
    }
}

/// A more relaxed equality checker for the sass == operator.
///
/// Strings with equal content are considered equal, even if they have
/// different quoting.
///
/// Make this a separate function, so the rust == operator is still
/// the strict derived version, for unit tests etc.
fn equal_values(a: &Value, b: &Value) -> bool {
    match (a, b) {
        (&Value::Literal(ref a, _), &Value::Literal(ref b, _)) => a == b,
        (a, b) => a == b,
    }
}