2019-12-09 17:11:31 -05:00
|
|
|
#![allow(non_snake_case)]
|
|
|
|
|
|
|
|
use crate::Context;
|
|
|
|
use crate::Local;
|
|
|
|
use crate::String;
|
|
|
|
use crate::Value;
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
fn v8__JSON__Parse(
|
|
|
|
context: *mut Context,
|
|
|
|
json_string: *mut String,
|
|
|
|
) -> *mut Value;
|
|
|
|
fn v8__JSON__Stringify(
|
|
|
|
context: *mut Context,
|
|
|
|
json_object: *mut Value,
|
|
|
|
) -> *mut String;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A JSON Parser and Stringifier
|
|
|
|
pub mod JSON {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
/// Tries to parse the string `json_string` and returns it as value if
|
|
|
|
/// successful.
|
2019-12-19 23:36:29 -05:00
|
|
|
pub fn Parse(
|
|
|
|
mut context: Local<Context>,
|
|
|
|
mut json_string: Local<String>,
|
|
|
|
) -> Option<Local<Value>> {
|
2019-12-09 17:11:31 -05:00
|
|
|
unsafe {
|
|
|
|
Local::from_raw(v8__JSON__Parse(&mut *context, &mut *json_string))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Tries to stringify the JSON-serializable object `json_object` and returns
|
|
|
|
/// it as string if successful.
|
2019-12-19 23:36:29 -05:00
|
|
|
pub fn Stringify(
|
|
|
|
mut context: Local<Context>,
|
|
|
|
mut json_object: Local<Value>,
|
|
|
|
) -> Option<Local<String>> {
|
2019-12-09 17:11:31 -05:00
|
|
|
unsafe {
|
|
|
|
Local::from_raw(v8__JSON__Stringify(&mut *context, &mut *json_object))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|