just-engine 0.1.0

A ground-up ES6 JavaScript engine with tree-walking interpreter, bytecode VMs, and Cranelift JIT compiler
Documentation
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
//! JSON built-in object.
//!
//! Provides JSON.parse and JSON.stringify methods.

use crate::runner::ds::error::JErrorType;
use crate::runner::ds::value::{JsValue, JsNumberType};
use crate::runner::plugin::registry::BuiltInRegistry;
use crate::runner::plugin::types::{BuiltInObject, EvalContext};

/// Register the JSON object with the registry.
pub fn register(registry: &mut BuiltInRegistry) {
    let json = BuiltInObject::new("JSON")
        .with_no_prototype()
        .add_method("parse", json_parse)
        .add_method("stringify", json_stringify);

    registry.register_object(json);
}

/// JSON.parse - Parse JSON string to JavaScript value.
fn json_parse(
    _ctx: &mut EvalContext,
    _this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    if args.is_empty() {
        return Err(JErrorType::SyntaxError("Unexpected end of JSON input".to_string()));
    }

    let s = match &args[0] {
        JsValue::String(s) => s.trim(),
        _ => {
            return Err(JErrorType::SyntaxError(
                "JSON.parse requires a string argument".to_string(),
            ))
        }
    };

    if s.is_empty() {
        return Err(JErrorType::SyntaxError("Unexpected end of JSON input".to_string()));
    }

    // Simple JSON parser
    let mut chars = s.chars().peekable();
    parse_value(&mut chars)
}

/// Parse a JSON value.
fn parse_value(chars: &mut std::iter::Peekable<std::str::Chars>) -> Result<JsValue, JErrorType> {
    skip_whitespace(chars);

    match chars.peek() {
        Some('"') => parse_string(chars),
        Some('0'..='9') | Some('-') => parse_number(chars),
        Some('t') | Some('f') => parse_boolean(chars),
        Some('n') => parse_null(chars),
        Some('[') => parse_array(chars),
        Some('{') => parse_object(chars),
        Some(c) => Err(JErrorType::SyntaxError(format!("Unexpected character: {}", c))),
        None => Err(JErrorType::SyntaxError("Unexpected end of JSON input".to_string())),
    }
}

/// Skip whitespace characters.
fn skip_whitespace(chars: &mut std::iter::Peekable<std::str::Chars>) {
    while let Some(&c) = chars.peek() {
        if c.is_whitespace() {
            chars.next();
        } else {
            break;
        }
    }
}

/// Parse a JSON string.
fn parse_string(chars: &mut std::iter::Peekable<std::str::Chars>) -> Result<JsValue, JErrorType> {
    chars.next(); // consume opening quote

    let mut result = String::new();

    loop {
        match chars.next() {
            Some('"') => return Ok(JsValue::String(result)),
            Some('\\') => {
                match chars.next() {
                    Some('"') => result.push('"'),
                    Some('\\') => result.push('\\'),
                    Some('/') => result.push('/'),
                    Some('b') => result.push('\u{0008}'),
                    Some('f') => result.push('\u{000C}'),
                    Some('n') => result.push('\n'),
                    Some('r') => result.push('\r'),
                    Some('t') => result.push('\t'),
                    Some('u') => {
                        let mut hex = String::with_capacity(4);
                        for _ in 0..4 {
                            match chars.next() {
                                Some(c) if c.is_ascii_hexdigit() => hex.push(c),
                                _ => return Err(JErrorType::SyntaxError("Invalid unicode escape".to_string())),
                            }
                        }
                        let code = u32::from_str_radix(&hex, 16)
                            .map_err(|_| JErrorType::SyntaxError("Invalid unicode escape".to_string()))?;
                        if let Some(c) = char::from_u32(code) {
                            result.push(c);
                        }
                    }
                    _ => return Err(JErrorType::SyntaxError("Invalid escape sequence".to_string())),
                }
            }
            Some(c) if c.is_control() => {
                return Err(JErrorType::SyntaxError("Invalid character in string".to_string()))
            }
            Some(c) => result.push(c),
            None => return Err(JErrorType::SyntaxError("Unterminated string".to_string())),
        }
    }
}

/// Parse a JSON number.
fn parse_number(chars: &mut std::iter::Peekable<std::str::Chars>) -> Result<JsValue, JErrorType> {
    let mut num_str = String::new();

    // Optional negative sign
    if chars.peek() == Some(&'-') {
        num_str.push(chars.next().unwrap());
    }

    // Integer part
    match chars.peek() {
        Some('0') => {
            num_str.push(chars.next().unwrap());
        }
        Some('1'..='9') => {
            while let Some(&c) = chars.peek() {
                if c.is_ascii_digit() {
                    num_str.push(chars.next().unwrap());
                } else {
                    break;
                }
            }
        }
        _ => return Err(JErrorType::SyntaxError("Invalid number".to_string())),
    }

    // Fractional part
    if chars.peek() == Some(&'.') {
        num_str.push(chars.next().unwrap());
        let mut has_digits = false;
        while let Some(&c) = chars.peek() {
            if c.is_ascii_digit() {
                num_str.push(chars.next().unwrap());
                has_digits = true;
            } else {
                break;
            }
        }
        if !has_digits {
            return Err(JErrorType::SyntaxError("Invalid number".to_string()));
        }
    }

    // Exponent part
    if let Some(&c) = chars.peek() {
        if c == 'e' || c == 'E' {
            num_str.push(chars.next().unwrap());

            // Optional sign
            if let Some(&c) = chars.peek() {
                if c == '+' || c == '-' {
                    num_str.push(chars.next().unwrap());
                }
            }

            // Exponent digits
            let mut has_digits = false;
            while let Some(&c) = chars.peek() {
                if c.is_ascii_digit() {
                    num_str.push(chars.next().unwrap());
                    has_digits = true;
                } else {
                    break;
                }
            }
            if !has_digits {
                return Err(JErrorType::SyntaxError("Invalid number".to_string()));
            }
        }
    }

    // Parse the number string
    if num_str.contains('.') || num_str.contains('e') || num_str.contains('E') {
        num_str
            .parse::<f64>()
            .map(|f| JsValue::Number(JsNumberType::Float(f)))
            .map_err(|_| JErrorType::SyntaxError("Invalid number".to_string()))
    } else {
        num_str
            .parse::<i64>()
            .map(|i| JsValue::Number(JsNumberType::Integer(i)))
            .map_err(|_| JErrorType::SyntaxError("Invalid number".to_string()))
    }
}

/// Parse a JSON boolean.
fn parse_boolean(chars: &mut std::iter::Peekable<std::str::Chars>) -> Result<JsValue, JErrorType> {
    if chars.peek() == Some(&'t') {
        if chars.next() == Some('t')
            && chars.next() == Some('r')
            && chars.next() == Some('u')
            && chars.next() == Some('e')
        {
            return Ok(JsValue::Boolean(true));
        }
    } else if chars.peek() == Some(&'f') {
        if chars.next() == Some('f')
            && chars.next() == Some('a')
            && chars.next() == Some('l')
            && chars.next() == Some('s')
            && chars.next() == Some('e')
        {
            return Ok(JsValue::Boolean(false));
        }
    }
    Err(JErrorType::SyntaxError("Invalid literal".to_string()))
}

/// Parse JSON null.
fn parse_null(chars: &mut std::iter::Peekable<std::str::Chars>) -> Result<JsValue, JErrorType> {
    if chars.next() == Some('n')
        && chars.next() == Some('u')
        && chars.next() == Some('l')
        && chars.next() == Some('l')
    {
        Ok(JsValue::Null)
    } else {
        Err(JErrorType::SyntaxError("Invalid literal".to_string()))
    }
}

/// Parse a JSON array.
fn parse_array(chars: &mut std::iter::Peekable<std::str::Chars>) -> Result<JsValue, JErrorType> {
    chars.next(); // consume '['
    skip_whitespace(chars);

    if chars.peek() == Some(&']') {
        chars.next();
        // TODO: Return actual array when array creation is implemented
        return Err(JErrorType::TypeError(
            "JSON.parse array creation not yet implemented".to_string(),
        ));
    }

    let mut _elements = Vec::new();

    loop {
        let value = parse_value(chars)?;
        _elements.push(value);

        skip_whitespace(chars);

        match chars.peek() {
            Some(',') => {
                chars.next();
                skip_whitespace(chars);
            }
            Some(']') => {
                chars.next();
                // TODO: Return actual array when array creation is implemented
                return Err(JErrorType::TypeError(
                    "JSON.parse array creation not yet implemented".to_string(),
                ));
            }
            _ => return Err(JErrorType::SyntaxError("Expected ',' or ']'".to_string())),
        }
    }
}

/// Parse a JSON object.
fn parse_object(chars: &mut std::iter::Peekable<std::str::Chars>) -> Result<JsValue, JErrorType> {
    chars.next(); // consume '{'
    skip_whitespace(chars);

    if chars.peek() == Some(&'}') {
        chars.next();
        // TODO: Return actual object when object creation is implemented
        return Err(JErrorType::TypeError(
            "JSON.parse object creation not yet implemented".to_string(),
        ));
    }

    let mut _properties = Vec::new();

    loop {
        skip_whitespace(chars);

        // Parse key (must be a string)
        let key = match chars.peek() {
            Some('"') => {
                if let JsValue::String(s) = parse_string(chars)? {
                    s
                } else {
                    return Err(JErrorType::SyntaxError("Expected string key".to_string()));
                }
            }
            _ => return Err(JErrorType::SyntaxError("Expected string key".to_string())),
        };

        skip_whitespace(chars);

        // Expect ':'
        if chars.next() != Some(':') {
            return Err(JErrorType::SyntaxError("Expected ':'".to_string()));
        }

        skip_whitespace(chars);

        // Parse value
        let value = parse_value(chars)?;
        _properties.push((key, value));

        skip_whitespace(chars);

        match chars.peek() {
            Some(',') => {
                chars.next();
            }
            Some('}') => {
                chars.next();
                // TODO: Return actual object when object creation is implemented
                return Err(JErrorType::TypeError(
                    "JSON.parse object creation not yet implemented".to_string(),
                ));
            }
            _ => return Err(JErrorType::SyntaxError("Expected ',' or '}'".to_string())),
        }
    }
}

/// JSON.stringify - Convert JavaScript value to JSON string.
fn json_stringify(
    _ctx: &mut EvalContext,
    _this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    if args.is_empty() {
        return Ok(JsValue::Undefined);
    }

    let value = &args[0];
    stringify_value(value)
}

/// Stringify a JavaScript value to JSON.
fn stringify_value(value: &JsValue) -> Result<JsValue, JErrorType> {
    let result = match value {
        JsValue::Null => "null".to_string(),
        JsValue::Boolean(true) => "true".to_string(),
        JsValue::Boolean(false) => "false".to_string(),
        JsValue::Number(JsNumberType::Integer(i)) => i.to_string(),
        JsValue::Number(JsNumberType::Float(f)) => {
            if f.is_finite() {
                f.to_string()
            } else {
                "null".to_string()
            }
        }
        JsValue::Number(JsNumberType::NaN) => "null".to_string(),
        JsValue::Number(JsNumberType::PositiveInfinity) => "null".to_string(),
        JsValue::Number(JsNumberType::NegativeInfinity) => "null".to_string(),
        JsValue::String(s) => stringify_string(s),
        JsValue::Undefined => return Ok(JsValue::Undefined),
        JsValue::Symbol(_) => return Ok(JsValue::Undefined),
        JsValue::Object(_) => {
            // TODO: Implement object/array stringification when those are available
            return Err(JErrorType::TypeError(
                "JSON.stringify for objects not yet implemented".to_string(),
            ));
        }
    };

    Ok(JsValue::String(result))
}

/// Stringify a string with proper escaping.
fn stringify_string(s: &str) -> String {
    let mut result = String::with_capacity(s.len() + 2);
    result.push('"');

    for c in s.chars() {
        match c {
            '"' => result.push_str("\\\""),
            '\\' => result.push_str("\\\\"),
            '\n' => result.push_str("\\n"),
            '\r' => result.push_str("\\r"),
            '\t' => result.push_str("\\t"),
            '\u{0008}' => result.push_str("\\b"),
            '\u{000C}' => result.push_str("\\f"),
            c if c.is_control() => {
                result.push_str(&format!("\\u{:04x}", c as u32));
            }
            c => result.push(c),
        }
    }

    result.push('"');
    result
}