2020-01-02 13:57:00 -05:00
|
|
|
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license.
|
2019-12-20 08:47:20 -05:00
|
|
|
//! A JSON Parser and Stringifier.
|
2019-12-09 17:11:31 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-12-20 08:47:20 -05:00
|
|
|
/// Tries to parse the string `json_string` and returns it as value if
|
|
|
|
/// successful.
|
2019-12-20 10:01:45 -05:00
|
|
|
pub fn parse<'sc>(
|
|
|
|
mut context: Local<'sc, Context>,
|
|
|
|
mut json_string: Local<'sc, String>,
|
|
|
|
) -> Option<Local<'sc, Value>> {
|
2019-12-25 06:39:42 -05:00
|
|
|
unsafe { Local::from_raw(v8__JSON__Parse(&mut *context, &mut *json_string)) }
|
2019-12-20 08:47:20 -05:00
|
|
|
}
|
2019-12-09 17:11:31 -05:00
|
|
|
|
2019-12-20 08:47:20 -05:00
|
|
|
/// Tries to stringify the JSON-serializable object `json_object` and returns
|
|
|
|
/// it as string if successful.
|
2019-12-20 10:01:45 -05:00
|
|
|
pub fn stringify<'sc>(
|
|
|
|
mut context: Local<'sc, Context>,
|
|
|
|
mut json_object: Local<'sc, Value>,
|
|
|
|
) -> Option<Local<'sc, String>> {
|
2019-12-20 08:47:20 -05:00
|
|
|
unsafe {
|
2019-12-25 06:39:42 -05:00
|
|
|
Local::from_raw(v8__JSON__Stringify(&mut *context, &mut *json_object))
|
2019-12-09 17:11:31 -05:00
|
|
|
}
|
|
|
|
}
|