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

#![allow(unused_imports)]

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

use complex::Complex64;
use vm::Module;
pub use vm::Env;

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

  List(Rc<RefCell<List>>),
  String(Rc<U32String>),
  Map(Rc<RefCell<Map>>),
  Function(Rc<Function>),
  Range(Rc<Range>),
  Table(Rc<Table>),
  Tuple(Rc<Vec<Object>>),
  Empty,
  Interface(Rc<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)
  }
}

impl ToString for Object{
  fn to_string(&self) -> String {
    return ::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::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::Range(ref x) => {Object::Range(x.clone())},
      Object::Tuple(ref x) => {Object::Tuple(x.clone())},
      Object::Table(ref x) => {Object::Table(x.clone())},
      Object::Empty => {Object::Empty},
      Object::Interface(ref x) => {Object::Interface(x.clone())}
    }
  }
}

pub struct U32String{
  pub v: Vec<char>
}

impl U32String{
  pub fn new_object(v: Vec<char>) -> Object{
    return Object::String(Rc::new(U32String{v: v}));
  }
  pub fn new_object_str(s: &str) -> Object{
    return Object::String(Rc::new(U32String{v: s.chars().collect()}));
  }
  pub fn new_object_char(c: char) -> Object{
    return Object::String(Rc::new(U32String{v: vec![c]}));
  }
}

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: 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: 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(U32String::new_object_str(key),value);
  }
  pub fn insert_fn_plain(&mut self, key: &str, fp: PlainFn, argc_min: u32, argc_max: u32){
    let key = U32String::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_min, argc_max: argc_max,
      id: key.clone()
    }));
    
    self.m.insert(key,f);
  }
}

pub struct Range{
  pub a: Object,
  pub b: Object,
  pub step: Object
}

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 mut t = Table{prototype, map: Map::new()};
    t.map.borrow_mut().insert("value", U32String::new_object_str(s));
    Box::new(Exception{
      value: Object::Table(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 = U32String::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 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<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_min, argc_max: 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_min, argc_max: argc_max,
      id: 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_min, argc_max: argc_max,
      id: Object::Null
    }))
  }
}

pub struct Table{
  pub prototype: Object,
  pub map: Rc<RefCell<Map>>
}
impl Table{
  pub fn new(prototype: Object) -> Rc<Table> {
    Rc::new(Table{prototype: prototype, map: Map::new()})
  }
  pub fn get(&self, key: &Object) -> Option<Object> {
    let mut p = self;
    loop{
      match p.map.borrow_mut().m.get(key) {
        Some(value) => {return Some(value.clone());},
        None => {
          p = match p.prototype {
            Object::Table(ref t) => t,
            _ => {return None;}
          }
        }
      }
    }
  }
}

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

pub trait Interface{
  fn as_any(&self) -> &Any;
  fn to_string(&self, env: &mut Env) -> Result<String,Box<Exception>> {
    Ok("interface object".to_string())
  }
  fn add(&self, b: &Object, env: &mut Env) -> FnResult {
    Ok(Object::Table(env.rte().unimplemented.clone()))
  }
  fn radd(&self, a: &Object, env: &mut Env) -> FnResult {
    Ok(Object::Table(env.rte().unimplemented.clone()))
  }
  fn sub(&self, b: &Object, env: &mut Env) -> FnResult {
    Ok(Object::Table(env.rte().unimplemented.clone()))
  }
  fn rsub(&self, a: &Object, env: &mut Env) -> FnResult {
    Ok(Object::Table(env.rte().unimplemented.clone()))
  }
  fn mpy(&self, b: &Object, env: &mut Env) -> FnResult {
    Ok(Object::Table(env.rte().unimplemented.clone()))
  }
  fn rmpy(&self, a: &Object, env: &mut Env) -> FnResult {
    Ok(Object::Table(env.rte().unimplemented.clone()))
  }
  fn div(&self, b: &Object, env: &mut Env) -> FnResult {
    Ok(Object::Table(env.rte().unimplemented.clone()))
  }
  fn rdiv(&self, a: &Object, env: &mut Env) -> FnResult {
    Ok(Object::Table(env.rte().unimplemented.clone()))
  }
  fn idiv(&self, b: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Error: a//b is not implemented for objects of this type.")
  }
  fn ridiv(&self, a: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Error: a//b is not implemented for objects of this type.")
  }
  fn imod(&self, b: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Error: a%b is not implemented for objects of this type.")
  }
  fn pow(&self, b: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Error: a^b is not implemented for objects of this type.")
  }
  fn rpow(&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, b: &Object, env: &mut Env) -> FnResult {
    Ok(Object::Table(env.rte().unimplemented.clone()))
  }
  fn req(&self, a: &Object, env: &mut Env) -> FnResult {
    Ok(Object::Table(env.rte().unimplemented.clone()))
  }
  fn lt(&self, b: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Error: a<b is not implemented for objects of this type.")
  }
  fn gt(&self, b: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Error: a>b is not implemented for objects of this type.")
  }
  fn le(&self, b: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Error: a<=b is not implemented for objects of this type.")
  }
  fn ge(&self, b: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Error: a>=b is not implemented for objects of this type.")
  }

  fn rlt(&self, b: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Error: a<b is not implemented for objects of this type.")
  }
  fn rgt(&self, b: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Error: a>b is not implemented for objects of this type.")
  }
  fn rle(&self, b: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Error: a<=b is not implemented for objects of this type.")
  }
  fn rge(&self, b: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Error: a>=b is not implemented for objects of this type.")
  }
  
  fn neg(&self, env: &mut Env) -> FnResult {
    Ok(Object::Table(env.rte().unimplemented.clone()))
  }

  fn abs(&self, env: &mut Env) -> FnResult {
    env.std_exception("Error: abs(x) is not implemented for objects of this type.")
  }
  fn get(&self, key: &Object, env: &mut Env) -> FnResult {
    env.std_exception("Type error in t.x: getter is not implemented for objects of this type.")
  }
  fn index(&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) -> String {
    "Interface object".to_string()
  }
}