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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619

use std::rc::Rc;
use std::cell::{Cell,RefCell};
use std::collections::HashMap;
use std::fmt;
use std::any::Any;
use std::mem::replace;

use crate::complex::Complex64;
use crate::vm;
use crate::vm::{Module,RTE};
pub use crate::vm::Env;
pub use crate::table::Table;

pub enum Object {
    Null,
    Bool(bool),
    Int(i32),
    Float(f64),
    Complex(Complex64),
    Info(Info),

    List(Rc<RefCell<List>>),
    String(Rc<CharString>),
    Map(Rc<RefCell<Map>>),
    Function(Rc<Function>),
    Interface(Rc<dyn Interface>)
}

impl Object{
    pub fn string(&self, env: &mut Env) -> Result<String,Box<Exception>> {
        vm::object_to_string(env,self)
    }

    pub fn repr(&self, env: &mut Env) -> Result<String,Box<Exception>> {
        vm::object_to_repr(env,self)
    }

    pub fn to_repr(&self) -> String {
        vm::object_to_repr_plain(self)
    }

    #[inline(always)]
    pub fn take(&mut self) -> Object {
        replace(self,Object::Null)
    }

    pub fn table(t: Rc<Table>) -> Object {
        Object::Interface(t)
    }
    
    pub fn empty() -> Object {
        Object::Info(Info::Empty)
    }
    
    pub fn unimplemented() -> Object {
        Object::Info(Info::Unimplemented)
    }
    
    pub fn is_empty(&self) -> bool {
        match self {
            Object::Info(Info::Empty) => true,
            _ => false
        }
    }

    pub fn is_unimplemented(&self) -> bool {
        match self {
            Object::Info(Info::Unimplemented) => true,
            _ => false
        }
    }
}

impl fmt::Display for Object {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", vm::object_to_string_plain(self))
    }
}

impl Clone for Object {
    fn clone(&self) -> Object {
        match *self {
            Object::Null => {Object::Null},
            Object::Bool(x) => {Object::Bool(x)},
            Object::Int(x) => {Object::Int(x)},
            Object::Float(x) => {Object::Float(x)},
            Object::Complex(x) => {Object::Complex(x)},
            Object::Info(x) => {Object::Info(x)},
            Object::String(ref x) => {Object::String(x.clone())},
            Object::List(ref x) => {Object::List(x.clone())},
            Object::Map(ref x) => {Object::Map(x.clone())},
            Object::Function(ref x) => {Object::Function(x.clone())},
            Object::Interface(ref x) => {Object::Interface(x.clone())}
        }
    }
}

#[derive(PartialEq,Eq,Clone,Copy)]
pub enum Info {
    Empty, Unimplemented
}

impl Info {
    pub fn to_string(&self) -> String {
        String::from(match self {
            Info::Empty => "empty",
            Info::Unimplemented => "unimplemented"
        })
    }
}

pub struct CharString {
    pub data: Vec<char>
}

impl CharString {
    pub fn new_object(v: Vec<char>) -> Object{
        return Object::String(Rc::new(CharString{data: v}));
    }

    pub fn new_object_str(s: &str) -> Object{
        return Object::String(Rc::new(CharString{data: s.chars().collect()}));
    }

    pub fn new_object_char(c: char) -> Object{
        return Object::String(Rc::new(CharString{data: vec![c]}));
    }
    
    pub fn to_string(&self) -> String {
        return self.data.iter().collect();
    }
}

pub struct List {
    pub v: Vec<Object>,
    pub frozen: bool
}

impl List {
    pub fn new_object(v: Vec<Object>) -> Object{
        return Object::List(Rc::new(RefCell::new(List{v, frozen: false})));
    }

    pub fn new() -> Self {
        return List{v: Vec::new(), frozen: false};
    }
}

pub struct Map {
    pub m: HashMap<Object,Object>,
    pub frozen: bool
}

impl Map {
    pub fn new_object(m: HashMap<Object,Object>) -> Object{
        return Object::Map(Rc::new(RefCell::new(Map{m, frozen: false})));
    }

    pub fn new() -> Rc<RefCell<Map>>{
        return Rc::new(RefCell::new(Map{m: HashMap::new(), frozen: false}));
    }

    pub fn insert(&mut self, key: &str, value: Object){
        self.m.insert(CharString::new_object_str(key),value);
    }

    pub fn insert_fn_plain(&mut self, key: &str, fp: PlainFn,
        argc_min: u32, argc_max: u32
    ) {
        let key = CharString::new_object_str(key);

        let f = Object::Function(Rc::new(Function{
            f: EnumFunction::Plain(fp),
            argc: if argc_min==argc_max {argc_min} else {VARIADIC},
            argc_min, argc_max,
            id: key.clone()
        }));
        
        self.m.insert(key,f);
    }
}

pub struct Spot {
    pub line: usize,
    pub col: usize,
    pub module: String
}

pub struct Exception {
    pub value: Object,
    pub traceback: Option<List>,
    pub spot: Option<Spot>
}

impl Exception {
    pub fn new(s: &str, prototype: Object) -> Box<Exception> {
        let t = Table{prototype, map: Map::new()};
        t.map.borrow_mut().insert("text", CharString::new_object_str(s));
        Box::new(Exception{
            value: Object::Interface(Rc::new(t)),
            traceback: None, spot: None
        })
    }

    pub fn raise(x: Object) -> Box<Exception> {
        Box::new(Exception{
            value: x, traceback: None, spot: None
        })
    }

    pub fn set_spot(&mut self, line: usize, col: usize, module: &str) {
        self.spot = Some(Spot{line,col,module: module.to_string()});
    }

    pub fn push_clm(&mut self, line: usize, col: usize, module: &str, fid: &str) {
        let s = CharString::new_object_str(&format!(
            "{}, {}:{}:{}",fid,module,line,col
        ));
        if let Some(ref mut a) = self.traceback {
            a.v.push(s);
        }else{
            let mut a = List::new();
            a.v.push(s);
            self.traceback = Some(a);
        }
    }

    pub fn traceback_push(&mut self, fid: &str) {
        let s = CharString::new_object_str(fid);
        if let Some(ref mut a) = self.traceback {
            a.v.push(s);
        }else{
            let mut a = List::new();
            a.v.push(s);
            self.traceback = Some(a);
        }
    }
}

impl fmt::Debug for Exception {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", vm::object_to_string_plain(&self.value))
    }
}

#[macro_export]
macro_rules! trace_err {
    ($e:expr, $fid:expr) => (match $e {
        Ok(val) => val,
        Err(mut err) => {
            err.traceback_push($fid);
            return Err(err)
        }
    });
}

pub type OperatorResult = Result<(),Box<Exception>>;
pub type FnResult = Result<Object,Box<Exception>>;

pub type PlainFn = fn(&mut Env, pself: &Object, argv: &[Object]) -> FnResult;
pub type MutableFn = Box<dyn FnMut(&mut Env, &Object, &[Object])->FnResult>;

pub struct StandardFn {
    pub address: Cell<usize>,
    pub module: Rc<Module>,
    pub gtab: Rc<RefCell<Map>>,
    pub var_count: u32,
    pub context: Rc<RefCell<List>>
}

pub enum EnumFunction {
    Std(StandardFn),
    Plain(PlainFn),
    Mut(RefCell<MutableFn>)
}

pub struct Function {
    pub f: EnumFunction,
    pub argc: u32,
    pub argc_min: u32,
    pub argc_max: u32,
    pub id: Object
}

pub const VARIADIC: u32 = 0xffffffff;

impl Function {
    pub fn plain(fp: PlainFn, argc_min: u32, argc_max: u32)
    -> Object
    {
        Object::Function(Rc::new(Function{
            f: EnumFunction::Plain(fp),
            argc: if argc_min==argc_max {argc_min} else {VARIADIC},
            argc_min, argc_max,
            id: Object::Null
        }))
    }

    pub fn new(f: StandardFn, id: Object, argc_min: u32, argc_max: u32)
    -> Object
    {
        Object::Function(Rc::new(Function{
            f: EnumFunction::Std(f),
            argc: if argc_min==argc_max {argc_min} else {VARIADIC},
            argc_min, argc_max, id
        }))
    }

    pub fn mutable(fp: MutableFn, argc_min: u32, argc_max: u32)
    -> Object
    {
        Object::Function(Rc::new(Function{
            f: EnumFunction::Mut(RefCell::new(fp)),
            argc: if argc_min==argc_max {argc_min} else {VARIADIC},
            argc_min, argc_max, id: Object::Null
        }))
    }
}

pub fn new_module(_id: &str) -> Table {
    Table{prototype: Object::Null, map: Map::new()}
}

#[inline]
pub fn ptr_eq_plain<T: ?Sized, U: ?Sized>(p: &Rc<T>, q: &Rc<U>) -> bool {
    std::ptr::eq(&**p as *const T as *const (),&**q as *const U as *const ())
}

pub trait Interface {
    fn as_any(&self) -> &dyn Any;
    fn to_string(self: Rc<Self>, _env: &mut Env) -> Result<String,Box<Exception>> {
        Ok("interface object".to_string())
    }
    fn add(self: Rc<Self>, _b: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn radd(self: Rc<Self>, _a: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn sub(self: Rc<Self>, _b: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn rsub(self: Rc<Self>, _a: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn mul(self: Rc<Self>, _b: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn rmul(self: Rc<Self>, _a: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn div(self: Rc<Self>, _b: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn rdiv(self: Rc<Self>, _a: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn idiv(self: Rc<Self>, _b: &Object, env: &mut Env) -> FnResult {
        env.std_exception("Error: a//b is not implemented for objects of this type.")
    }
    fn ridiv(self: Rc<Self>, _a: &Object, env: &mut Env) -> FnResult {
        env.std_exception("Error: a//b is not implemented for objects of this type.")
    }
    fn imod(self: Rc<Self>, _b: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn rimod(self: Rc<Self>, _b: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn pow(self: Rc<Self>, _b: &Object, env: &mut Env) -> FnResult {
        env.std_exception("Error: a^b is not implemented for objects of this type.")
    }
    fn rpow(self: Rc<Self>, _b: &Object, env: &mut Env) -> FnResult {
        env.std_exception("Error: a^b is not implemented for objects of this type.")
    }

    fn eq_plain(&self, _b: &Object) -> bool {
        false
    }
    fn req_plain(&self, _a: &Object) -> bool {
        false
    }

    fn eq(self: Rc<Self>, _b: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn req(self: Rc<Self>, _a: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn rin(&self, _x: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }

    fn lt(self: Rc<Self>, _y: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn le(self: Rc<Self>, _y: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn rlt(self: Rc<Self>, _x: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    fn rle(self: Rc<Self>, _x: &Object, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }
    
    fn neg(self: Rc<Self>, _env: &mut Env) -> FnResult {
        Ok(Object::unimplemented())
    }

    fn abs(self: Rc<Self>, env: &mut Env) -> FnResult {
        env.std_exception("Error: abs(x) is not implemented for objects of this type.")
    }
    fn sgn(self: Rc<Self>, env: &mut Env) -> FnResult {
        env.std_exception("Error: sgn(x) is not implemented for objects of this type.")
    }
    fn get(&self, key: &Object, env: &mut Env) -> FnResult {
        env.std_exception(&format!(
            "Type error in t.{}: getter is not implemented for objects of this type.",key))
    }
    fn set(&self, env: &mut Env, key: Object, _value: Object) -> FnResult {
        env.std_exception(&format!(
            "Type error in t.{} = value: getter is not implemented for objects of this type.",key))
    }
    fn index(self: Rc<Self>, _indices: &[Object], env: &mut Env) -> FnResult {
        env.std_exception("Type error in a[i]: indexing is not implemented for objects of this type.")
    }
    fn set_index(&self, _indices: &[Object], _value: &Object, env: &mut Env) -> FnResult {
        env.std_exception("Type error in a[i]=value: indexing is not implemented for objects of this type.")
    }
    fn type_name(&self, _env: &mut Env) -> String {
        "Interface object".to_string()
    }
    fn get_type(&self, env: &mut Env) -> FnResult {
        env.type_error("Type error in type(x): interface object x has no type")
    }
    fn is_instance_of(&self, _type_obj: &Object, _rte: &RTE) -> bool {
        false
    }
    fn hash(&self) -> u64 {
        self as *const _ as *const u8 as usize as u64
    }
    fn iter(self: Rc<Self>, env: &mut Env) -> FnResult {
        env.type_error("Type error in iter(x): x is not iterable.")
    }
}

pub fn interface_object_get(
  type_name: &str, key: &Object, env: &mut Env, index: usize
) -> FnResult
{
    let t = &env.rte().interface_types.borrow()[index];
    match t.get(key) {
        Some(value) => return Ok(value),
        None => {
            env.index_error(&format!(
                "Index error in {0}.{1}: {1} not found.", type_name, key
            ))
        }
    }
}

pub fn downcast<T: 'static>(x: &Object) -> Option<&T> {
    if let Object::Interface(ref a) = *x {
        a.as_any().downcast_ref::<T>()
    }else{
        None
    }
}

impl<'a> From<&'a str> for Object {
    fn from(x: &str) -> Object {
        return CharString::new_object_str(x);
    }
}

impl From<char> for Object {
    fn from(x: char) -> Object {
        return CharString::new_object_char(x);
    }
}

impl From<bool> for Object {
    fn from(x: bool) -> Object {
        return Object::Bool(x);
    }
}

impl From<u8> for Object {
    fn from(x: u8) -> Object {
        return Object::Int(x as i32);
    }
}

impl From<u16> for Object {
    fn from(x: u16) -> Object {
        return Object::Int(x as i32);
    }
}

impl From<i32> for Object {
    fn from(x: i32) -> Object {
        return Object::Int(x);
    }
}

impl From<f64> for Object {
    fn from(x: f64) -> Object {
        return Object::Float(x);
    }
}

impl From<Complex64> for Object {
    fn from(x: Complex64) -> Object {
        return Object::Complex(x);
    }
}

impl<T> From<Vec<T>> for Object
where Object: From<T>
{
    fn from(v: Vec<T>) -> Object {
        let mut a: Vec<Object> = Vec::with_capacity(v.len());
        for x in v {
           a.push(Object::from(x));
        }
        return List::new_object(a);
    }
}

pub trait TypeName {
    fn type_name() -> String;
}
impl TypeName for bool {
    fn type_name() -> String {String::from("bool")}
}
impl TypeName for i32 {
    fn type_name() -> String {String::from("i32")}
}
impl TypeName for f64 {
    fn type_name() -> String {String::from("f64")}
}
impl<'a> TypeName for &'a str {
    fn type_name() -> String {String::from("&str")}
}
impl TypeName for String {
    fn type_name() -> String {String::from("String")}
}
impl TypeName for Object {
    fn type_name() -> String {String::from("Object")}
}
impl<T> TypeName for Vec<T>
where T: TypeName
{
    fn type_name() -> String {format!("Vec<{}>",T::type_name())}
}

pub trait Downcast {
    type Output;
    fn try_downcast(x: &Object) -> Option<Self::Output>;
}
impl Downcast for Object {
    type Output = Object;
    fn try_downcast(x: &Object) -> Option<Object> {
        Some(x.clone())
    }
}
impl Downcast for bool {
    type Output = bool;
    fn try_downcast(x: &Object) -> Option<bool> {
        match *x {Object::Bool(x)=>Some(x), _ => None}
    }
}
impl Downcast for i32 {
    type Output = i32;
    fn try_downcast(x: &Object) -> Option<i32> {
        match *x {Object::Int(x)=>Some(x), _ => None}
    }
}
impl Downcast for f64 {
    type Output = f64;
    fn try_downcast(x: &Object) -> Option<f64> {
        match *x {Object::Float(x)=>Some(x), _ => None}
    }
}
impl Downcast for String {
    type Output = String;
    fn try_downcast(x: &Object) -> Option<String> {
        match *x {
            Object::String(ref s) => Some(s.to_string()),
            _ => None
        }
    }
}

impl<T> Downcast for Vec<T>
where T: Downcast<Output=T>
{
    type Output = Vec<T>;
    fn try_downcast(x: &Object) -> Option<Vec<T>> {
        match *x {
            Object::List(ref a) => {
                let a = a.borrow_mut();
                let mut v: Vec<T> = Vec::with_capacity(a.v.len());
                for x in &a.v {
                    match T::try_downcast(x) {
                        Some(x) => v.push(x),
                        None => return None
                    }
                }
                return Some(v);
            },
            _ => None
        }
    }
}