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
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license.
//! A JSON Parser and Stringifier.
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;
}

/// Tries to parse the string `json_string` and returns it as value if
/// successful.
pub fn parse<'sc>(
  mut context: Local<'sc, Context>,
  mut json_string: Local<'sc, String>,
) -> Option<Local<'sc, Value>> {
  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.
pub fn stringify<'sc>(
  mut context: Local<'sc, Context>,
  mut json_object: Local<'sc, Value>,
) -> Option<Local<'sc, String>> {
  unsafe {
    Local::from_raw(v8__JSON__Stringify(&mut *context, &mut *json_object))
  }
}