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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
//! PyBoolean - Object for the True and False singletons
//!
use std;
use std::ops::{Deref, Neg};
use std::borrow::Borrow;
use num::{Signed, Zero, FromPrimitive, ToPrimitive};

use api::{self, RtValue, typing, method};
use api::method::{BooleanCast, IntegerCast, StringRepresentation};
use api::selfref::{self, SelfRef};

use ::runtime::Runtime;
use ::runtime::traits::{BooleanProvider, StringProvider, IntegerProvider, FloatProvider};
use ::api::result::{ObjectResult, RtResult};
use ::modules::builtins::Type;
use ::api::RtObject;
use ::objects::number;
use ::system::primitives::{Number, HashId};
use ::system::primitives as rs;


pub const TRUE_STR: &'static str = "True";
pub const FALSE_STR: &'static str = "False";
pub const TRUE_BYTES: &'static [u8] = &[1];
pub const FALSE_BYTES: &'static [u8] = &[0];


#[derive(Clone)]
pub struct PyBooleanType {
    singleton_true: RtObject,
    singleton_false: RtObject,
}


impl typing::BuiltinType for PyBooleanType {
    type T = PyBoolean;
    type V = rs::Boolean;

    #[inline(always)]
    #[allow(unused_variables)]
    fn new(&self, rt: &Runtime, value: Self::V) -> RtObject {
        if value {
            self.singleton_true.clone()
        } else {
            self.singleton_false.clone()
        }
    }

    fn init_type() -> Self {
        PyBooleanType {
            singleton_true: PyBooleanType::inject_selfref(PyBooleanType::alloc(true)),
            singleton_false: PyBooleanType::inject_selfref(PyBooleanType::alloc(false)),
        }
    }

    fn inject_selfref(value: Self::T) -> RtObject {
        let object = RtObject::new(Type::Bool(value));
        let new = object.clone();

        match object.as_ref() {
            &Type::Bool(ref boolean) => {
                boolean.rc.set(&object.clone());
            }
            _ => unreachable!(),
        }
        new
    }

    fn alloc(value: Self::V) -> Self::T {
        let int = if value {
            rs::Integer::from_usize(1).unwrap()
        } else {
            rs::Integer::zero()
        };
        PyBoolean {
            value: BoolValue(int),
            rc: selfref::RefCount::default(),
        }
    }
}


#[derive(Clone)]
pub struct BoolValue(pub rs::Integer);
pub type PyBoolean = RtValue<BoolValue>;


impl std::fmt::Debug for PyBoolean {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        if self.value.0.is_zero() {
            write!(f, "{}", FALSE_STR)
        } else {
            write!(f, "{}", TRUE_STR)
        }
    }
}


impl api::PyAPI for PyBoolean {}


impl method::Hashed for PyBoolean {
    fn op_hash(&self, rt: &Runtime) -> ObjectResult {
        let hash = self.native_hash()?;
        Ok(rt.int(hash))
    }

    fn native_hash(&self) -> RtResult<HashId> {
        Ok(number::hash_int(&self.value.0))
    }
}

impl method::StringCast for PyBoolean {
    fn op_str(&self, rt: &Runtime) -> ObjectResult {
        self.op_repr(rt)
    }

    fn native_str(&self) -> RtResult<rs::String> {
        self.native_repr()
    }
}

impl method::BytesCast for PyBoolean {

    fn native_bytes(&self) -> RtResult<rs::Bytes> {
        let result = if self.value.0.is_zero() {
            FALSE_BYTES.to_vec()
        } else {
            TRUE_BYTES.to_vec()
        };
        Ok(result)
    }
}

impl method::StringRepresentation for PyBoolean {
    fn op_repr(&self, rt: &Runtime) -> ObjectResult {
        match self.native_repr() {
            Ok(string) => Ok(rt.str(string)),
            Err(_) => unreachable!(),
        }
    }

    fn native_repr(&self) -> RtResult<rs::String> {
        let value = if self.value.0.is_zero() {
            FALSE_STR
        } else {
            TRUE_STR
        };
        Ok(value.to_string())
    }
}

/// `x == y`
impl method::Equal for PyBoolean {
    fn op_eq(&self, rt: &Runtime, rhs: &RtObject) -> ObjectResult {
        match self.native_eq(rhs.as_ref()) {
            Ok(value) => {
                if value {
                    Ok(rt.bool(true))
                } else {
                    Ok(rt.bool(false))
                }
            }
            Err(err) => Err(err),
        }
    }

    fn native_eq(&self, rhs: &Type) -> RtResult<rs::Boolean> {
        match rhs.native_bool() {
            Ok(value) => Ok(self.native_bool().unwrap() == value),
            Err(err) => Err(err),
        }
    }
}

impl method::NotEqual for PyBoolean {
    fn op_ne(&self, rt: &Runtime, rhs: &RtObject) -> ObjectResult {
        match self.native_ne(rhs.as_ref()) {
            Ok(value) => {
                if value {
                    Ok(rt.bool(true))
                } else {
                    Ok(rt.bool(false))
                }
            }
            Err(err) => Err(err),
        }
    }

    fn native_ne(&self, rhs: &Type) -> RtResult<rs::Boolean> {
        match rhs.native_bool() {
            Ok(value) => Ok(self.native_bool()? != value),
            Err(err) => Err(err),
        }
    }
}



impl method::BooleanCast for PyBoolean {
    #[allow(unused_variables)]
    fn op_bool(&self, rt: &Runtime) -> ObjectResult {
        self.rc.upgrade()
    }

    fn native_bool(&self) -> RtResult<rs::Boolean> {
        Ok(!self.value.0.is_zero())
    }
}
impl method::IntegerCast for PyBoolean {
    fn op_int(&self, rt: &Runtime) -> ObjectResult {
        Ok(rt.int(self.value.0.clone()))
    }

    fn native_int(&self) -> RtResult<rs::Integer> {
        Ok(self.value.0.clone())
    }
}

impl method::FloatCast for PyBoolean {
        fn op_float(&self, rt: &Runtime) -> ObjectResult {
            let value = if self.value.0.is_zero() {0.0} else {1.0};
            Ok(rt.float(value))
        }

        fn native_float(&self) -> RtResult<rs::Float> {
            return Ok(self.value.0.to_f64().unwrap());
        }
}


/// `round(True) => 1` `round(False) => 0`
impl method::Rounding for PyBoolean {
    fn op_round(&self, rt: &Runtime) -> ObjectResult {
        match self.native_round() {
            Ok(Number::Int(int)) => Ok(rt.int(int)),
            _ => unreachable!(),
        }
    }

    fn native_round(&self) -> RtResult<Number> {
        Ok(Number::Int(self.value.0.clone()))
    }
}

/// `__index___`
impl method::Index for PyBoolean {
    fn op_index(&self, rt: &Runtime) -> ObjectResult {
        match self.native_index() {
            Ok(int) => Ok(rt.int(int)),
            _ => unreachable!(),
        }
    }

    fn native_index(&self) -> RtResult<rs::Integer> {
        self.native_int()
    }
}

/// `-self`
impl method::NegateValue for PyBoolean {
    fn op_neg(&self, rt: &Runtime) -> ObjectResult {
        match self.native_neg() {
            Ok(Number::Int(int)) => Ok(rt.int(int)),
            _ => unreachable!(),
        }
    }

    fn native_neg(&self) -> RtResult<Number> {
        Ok(Number::Int(self.value
                           .0
                           .clone()
                           .neg()))
    }
}

/// `__abs__`
impl method::AbsValue for PyBoolean {
    fn op_abs(&self, rt: &Runtime) -> ObjectResult {
        match self.native_abs() {
            Ok(Number::Int(int)) => Ok(rt.int(int)),
            _ => unreachable!(),
        }
    }

    fn native_abs(&self) -> RtResult<Number> {
        Ok(Number::Int(self.value.0.abs()))
    }
}

/// `+self`
impl method::PositiveValue for PyBoolean {
    fn op_pos(&self, rt: &Runtime) -> ObjectResult {
        match self.native_pos() {
            Ok(Number::Int(int)) => Ok(rt.int(int)),
            _ => unreachable!(),
        }
    }

    fn native_pos(&self) -> RtResult<Number> {
        Ok(Number::Int(self.value.0.clone()))
    }
}

method_not_implemented!(PyBoolean,
    New   Init   Delete   GetAttr   
    GetAttribute   SetAttr   DelAttr   StringFormat   
    ComplexCast   LessThan   LessOrEqual   GreaterOrEqual   
    GreaterThan   InvertValue   Add   BitwiseAnd   
    DivMod   FloorDivision   LeftShift   Modulus   
    Multiply   MatrixMultiply   BitwiseOr   Pow   
    RightShift   Subtract   TrueDivision   XOr   
    ReflectedAdd   ReflectedBitwiseAnd   ReflectedDivMod   ReflectedFloorDivision   
    ReflectedLeftShift   ReflectedModulus   ReflectedMultiply   ReflectedMatrixMultiply   
    ReflectedBitwiseOr   ReflectedPow   ReflectedRightShift   ReflectedSubtract   
    ReflectedTrueDivision   ReflectedXOr   InPlaceAdd   InPlaceBitwiseAnd   
    InPlaceDivMod   InPlaceFloorDivision   InPlaceLeftShift   InPlaceModulus   
    InPlaceMultiply   InPlaceMatrixMultiply   InPlaceBitwiseOr   InPlacePow   
    InPlaceRightShift   InPlaceSubtract   InPlaceTrueDivision   InPlaceXOr   
    Contains   Iter   Call   Length   
    LengthHint   Next   Reversed   GetItem   
    SetItem   DeleteItem   Count   Append   
    Extend   Pop   Remove   IsDisjoint   
    AddItem   Discard   Clear   Get   
    Keys   Values   Items   PopItem   
    Update   SetDefault   Await   Send   
    Throw   Close   Exit   Enter   
    DescriptorGet   DescriptorSet   DescriptorSetName
);


// +-+-+-+-+-+-+-+-+-+-+-+-+-+
//          Tests
// +-+-+-+-+-+-+-+-+-+-+-+-+-+

#[cfg(test)]
mod tests {
    use api::method::*;
    use super::*;

    fn setup_test() -> (Runtime) {
        Runtime::new()
    }

    #[test]
    fn is_() {
        let rt = setup_test();

        let f = rt.bool(false);
        let f2 = f.clone();
        let t = rt.bool(true);

        let result = f.op_is(&rt, &f2).unwrap();
        assert_eq!(result, rt.bool(true), "BooleanObject is(op_is)");

        let result = f.op_is(&rt, &t).unwrap();
        assert_eq!(result, rt.bool(false));
    }

    #[test]
    fn is_not() {
        let rt = setup_test();

        let f = rt.bool(false);
        let f2 = f.clone();
        let t = rt.bool(true);


        let result = f.op_is_not(&rt, &f2).unwrap();
        assert_eq!(result, rt.bool(false), "BooleanObject is(op_is)");

        let result = f.op_is_not(&rt, &t).unwrap();
        assert_eq!(result, rt.bool(true));
    }


    #[test]
    fn __eq__() {
        let rt = setup_test();

        let f = rt.bool(false);
        let f2 = f.clone();

        let result = f.op_eq(&rt, &f2).unwrap();
        assert_eq!(result, rt.bool(true))
    }

    #[test]
    fn __bool__() {
        let rt = setup_test();

        let (t, f) = (rt.bool(true), rt.bool(false));

        let result = t.op_bool(&rt).unwrap();
        assert_eq!(result, rt.bool(true));

        let result = f.op_bool(&rt).unwrap();
        assert_eq!(result, rt.bool(false));
    }

    #[test]
    fn __int__() {
        let rt = setup_test();

        let one = rt.int(1);

        let t = rt.bool(true);

        let result = t.op_int(&rt).unwrap();
        assert_eq!(result, one);
    }


    #[test]
    fn __float__() {
        let rt = setup_test();

        let one = rt.float(1.0);
        let t = rt.bool(true);

        let result = t.op_float(&rt).unwrap();
        assert_eq!(result, one);
    }

}