blob: 018ac30e34038589562487ecc9350a5e5373404b (
plain) (
blame)
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use dom::bindings::error::Fallible;
use dom::bindings::error::Error::DataClone;
use js::jsapi::JSContext;
use js::jsapi::{JS_WriteStructuredClone, JS_ClearPendingException};
use js::jsval::JSVal;
use libc::size_t;
use std::ptr;
#[allow(raw_pointer_deriving)]
#[deriving(Copy)]
pub struct StructuredCloneData {
pub data: *mut u64,
pub nbytes: size_t,
}
impl StructuredCloneData {
pub fn write(cx: *mut JSContext, message: JSVal)
-> Fallible<StructuredCloneData> {
let mut data = ptr::null_mut();
let mut nbytes = 0;
let result = unsafe {
JS_WriteStructuredClone(cx, message, &mut data, &mut nbytes,
ptr::null(), ptr::null_mut())
};
if result == 0 {
unsafe { JS_ClearPendingException(cx); }
return Err(DataClone);
}
Ok(StructuredCloneData {
data: data,
nbytes: nbytes,
})
}
}
|