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
#![cfg_attr(feature="nightly", feature(test, drain))]
extern crate byteorder;
#[macro_use] extern crate log;
use std::collections::HashMap;
use std::io::{ self, Write };
use std::fmt;
use byteorder::{ WriteBytesExt, LittleEndian };
mod options;
mod template;
mod error;
pub mod interpreter;
pub mod compiler;
pub mod stream;
pub mod bytecode;
pub use options::{ OptionsTemplate, Options };
pub use template::{ Template };
pub use error::seek::SeekError;
pub use error::little::{ LittleError, LittleResult };
pub use error::build::{ BuildError };
#[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)]
pub struct Binding(pub u32);
#[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)]
pub struct Call(pub u32);
#[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)]
pub struct Constant(pub u32);
#[derive(Copy, Clone, Debug)]
pub enum Mem {
Const(Constant),
Binding(Binding),
Parameter { name: Constant },
Parameters,
StackTop1,
StackTop2,
}
#[derive(Copy, Clone, Debug)]
pub enum Cond {
Eq,
Ne,
Gt,
Lt,
Gte,
Lte,
}
#[derive(Copy, Clone, Debug)]
pub enum Instruction {
Output { location: Mem },
Property { name: Mem },
Push { location: Mem },
Pop { times: u16 },
Jump { pc: u16 },
CondJump { pc: u16, location: Mem, test: Cond },
Call { call: Call, argc: u8, push_result_to_stack: bool },
Load { binding: Binding, location: Mem },
Interupt,
}
pub trait Function<V> {
fn invoke<'r>(&self, &'r [V]) -> LittleResult<V>;
}
impl<V, F: for<'z> Fn(&'z [V]) -> LittleResult<V>> Function<V> for F {
fn invoke<'r>(&self, args: &'r [V]) -> LittleResult<V> {
self(args)
}
}
#[derive(Hash, Eq, PartialEq)]
pub struct Fingerprint([u8;20]);
impl Fingerprint {
pub fn empty() -> Fingerprint {
Fingerprint([0;20])
}
pub fn new(inner: [u8;20]) -> Fingerprint {
Fingerprint(inner)
}
}
pub trait Build<'a, V> {
type Output: Execute<'a, V>;
fn build(
&'a mut self,
id: &str,
template: Template<V>,
calls: &'a HashMap<&'a str, &'a (Function<V> + 'a)>
) -> LittleResult<Self::Output>;
fn load(&'a mut self, id: &str, env: Fingerprint, calls: &'a Vec<&'a (Function<V> + 'a)>)
-> LittleResult<Self::Output>;
}
pub trait Execute<'a, V> {
type Stream: io::Read;
fn execute(&'a self, V) -> Self::Stream;
fn get_id<'r>(&'r self) -> &'r str;
fn identify_env(&self) -> Fingerprint;
}
pub trait IdentifyValue {
fn identify_value(&self) -> Option<Fingerprint>;
fn hash_value<H: Sha1Hasher>(&self, hasher: &mut H) -> Result<(), ()>;
}
pub trait Sha1Hasher {
fn finish(&self) -> Fingerprint;
fn write(&mut self, bytes: &[u8]);
#[inline]
fn write_u8(&mut self, i: u8) {
self.write(&[i])
}
#[inline]
fn write_u16(&mut self, i: u16) {
let mut buf_ref: &mut [u8] = &mut [0u8;2];
buf_ref.write_u16::<LittleEndian>(i).unwrap();
self.write(buf_ref);
}
#[inline]
fn write_u32(&mut self, i: u32) {
let mut buf_ref: &mut [u8] = &mut [0u8;4];
buf_ref.write_u32::<LittleEndian>(i).unwrap();
self.write(buf_ref);
}
#[inline]
fn write_u64(&mut self, i: u64) {
let mut buf_ref: &mut [u8] = &mut [0u8;8];
buf_ref.write_u64::<LittleEndian>(i).unwrap();
self.write(buf_ref);
}
#[inline]
fn write_i8(&mut self, i: i8) {
let mut buf_ref: &mut [u8] = &mut [0u8;1];
buf_ref.write_i8(i).unwrap();
self.write(buf_ref);
}
#[inline]
fn write_i16(&mut self, i: i16) {
let mut buf_ref: &mut [u8] = &mut [0u8;2];
buf_ref.write_i16::<LittleEndian>(i).unwrap();
self.write(buf_ref);
}
#[inline]
fn write_i32(&mut self, i: i32) {
let mut buf_ref: &mut [u8] = &mut [0u8;4];
buf_ref.write_i32::<LittleEndian>(i).unwrap();
self.write(buf_ref);
}
#[inline]
fn write_i64(&mut self, i: i64) {
let mut buf_ref: &mut [u8] = &mut [0u8;8];
buf_ref.write_i64::<LittleEndian>(i).unwrap();
self.write(buf_ref);
}
}
pub trait GetProperty<V> {
fn get_property(&self, name: V) -> Option<V>;
}
pub trait LittleValue :
Default +
GetProperty<Self> +
PartialEq +
PartialOrd +
Clone +
IdentifyValue +
fmt::Display
{ }
pub trait PositionSeek {
fn seek(&mut self, pos: usize) -> Result<usize, SeekError>;
}