2019-12-09 02:26:58 +01:00
|
|
|
#![allow(non_snake_case)]
|
|
|
|
|
2019-12-19 19:15:52 -05:00
|
|
|
use crate::isolate::Isolate;
|
2019-12-09 02:26:58 +01:00
|
|
|
use crate::support::int;
|
|
|
|
use crate::support::Opaque;
|
|
|
|
use crate::Local;
|
|
|
|
use crate::String;
|
|
|
|
use crate::Value;
|
|
|
|
|
|
|
|
extern "C" {
|
2019-12-19 21:34:07 -05:00
|
|
|
fn v8__Message__Get(message: *const Message) -> *mut String;
|
|
|
|
fn v8__Message__GetIsolate(message: &Message) -> &mut Isolate;
|
|
|
|
|
2019-12-09 02:26:58 +01:00
|
|
|
fn v8__StackTrace__GetFrameCount(stack_trace: *mut StackTrace) -> int;
|
|
|
|
|
|
|
|
fn v8__Exception__RangeError(message: *mut String) -> *mut Value;
|
|
|
|
fn v8__Exception__ReferenceError(message: *mut String) -> *mut Value;
|
|
|
|
fn v8__Exception__SyntaxError(message: *mut String) -> *mut Value;
|
|
|
|
fn v8__Exception__TypeError(message: *mut String) -> *mut Value;
|
|
|
|
fn v8__Exception__Error(message: *mut String) -> *mut Value;
|
|
|
|
|
|
|
|
fn v8__Exception__CreateMessage(
|
2019-12-19 20:11:22 -05:00
|
|
|
isolate: &Isolate,
|
2019-12-09 02:26:58 +01:00
|
|
|
exception: *mut Value,
|
|
|
|
) -> *mut Message;
|
|
|
|
|
|
|
|
fn v8__Exception__GetStackTrace(exception: *mut Value) -> *mut StackTrace;
|
|
|
|
}
|
|
|
|
|
2019-12-19 14:14:19 +01:00
|
|
|
/// Representation of a JavaScript stack trace. The information collected is a
|
|
|
|
/// snapshot of the execution stack and the information remains valid after
|
|
|
|
/// execution continues.
|
2019-12-09 02:26:58 +01:00
|
|
|
#[repr(C)]
|
|
|
|
pub struct StackTrace(Opaque);
|
|
|
|
|
|
|
|
impl StackTrace {
|
2019-12-19 14:14:19 +01:00
|
|
|
/// Returns the number of StackFrames.
|
2019-12-09 02:26:58 +01:00
|
|
|
pub fn get_frame_count(&mut self) -> usize {
|
|
|
|
unsafe { v8__StackTrace__GetFrameCount(self) as usize }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-19 14:14:19 +01:00
|
|
|
/// An error message.
|
2019-12-09 02:26:58 +01:00
|
|
|
#[repr(C)]
|
|
|
|
pub struct Message(Opaque);
|
|
|
|
|
|
|
|
impl Message {
|
2019-12-19 23:36:29 -05:00
|
|
|
pub fn get(&self) -> Local<String> {
|
2019-12-09 02:26:58 +01:00
|
|
|
unsafe { Local::from_raw(v8__Message__Get(self)) }.unwrap()
|
|
|
|
}
|
2019-12-19 21:34:07 -05:00
|
|
|
|
|
|
|
pub fn get_isolate(&self) -> &Isolate {
|
|
|
|
unsafe { v8__Message__GetIsolate(self) }
|
|
|
|
}
|
2019-12-09 02:26:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Create new error objects by calling the corresponding error object
|
|
|
|
/// constructor with the message.
|
|
|
|
pub mod Exception {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
/// Creates an error message for the given exception.
|
|
|
|
/// Will try to reconstruct the original stack trace from the exception value,
|
|
|
|
/// or capture the current stack trace if not available.
|
2019-12-19 23:36:29 -05:00
|
|
|
pub fn CreateMessage(
|
2019-12-19 20:11:22 -05:00
|
|
|
isolate: &Isolate,
|
2019-12-19 23:36:29 -05:00
|
|
|
mut exception: Local<Value>,
|
|
|
|
) -> Local<Message> {
|
2019-12-09 02:26:58 +01:00
|
|
|
unsafe {
|
2019-12-19 20:11:22 -05:00
|
|
|
Local::from_raw(v8__Exception__CreateMessage(isolate, &mut *exception))
|
2019-12-09 02:26:58 +01:00
|
|
|
}
|
|
|
|
.unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the original stack trace that was captured at the creation time
|
|
|
|
/// of a given exception, or an empty handle if not available.
|
|
|
|
pub fn GetStackTrace(
|
2019-12-19 23:36:29 -05:00
|
|
|
mut exception: Local<Value>,
|
|
|
|
) -> Option<Local<StackTrace>> {
|
2019-12-09 02:26:58 +01:00
|
|
|
unsafe { Local::from_raw(v8__Exception__GetStackTrace(&mut *exception)) }
|
|
|
|
}
|
|
|
|
|
2019-12-19 23:36:29 -05:00
|
|
|
pub fn RangeError(mut message: Local<String>) -> Local<Value> {
|
2019-12-09 02:26:58 +01:00
|
|
|
unsafe { Local::from_raw(v8__Exception__RangeError(&mut *message)) }
|
|
|
|
.unwrap()
|
|
|
|
}
|
|
|
|
|
2019-12-19 23:36:29 -05:00
|
|
|
pub fn ReferenceError(mut message: Local<String>) -> Local<Value> {
|
2019-12-09 02:26:58 +01:00
|
|
|
unsafe { Local::from_raw(v8__Exception__ReferenceError(&mut *message)) }
|
|
|
|
.unwrap()
|
|
|
|
}
|
|
|
|
|
2019-12-19 23:36:29 -05:00
|
|
|
pub fn SyntaxError(mut message: Local<String>) -> Local<Value> {
|
2019-12-09 02:26:58 +01:00
|
|
|
unsafe { Local::from_raw(v8__Exception__SyntaxError(&mut *message)) }
|
|
|
|
.unwrap()
|
|
|
|
}
|
|
|
|
|
2019-12-19 23:36:29 -05:00
|
|
|
pub fn TypeError(mut message: Local<String>) -> Local<Value> {
|
2019-12-09 02:26:58 +01:00
|
|
|
unsafe { Local::from_raw(v8__Exception__TypeError(&mut *message)) }.unwrap()
|
|
|
|
}
|
|
|
|
|
2019-12-19 23:36:29 -05:00
|
|
|
pub fn Error(mut message: Local<String>) -> Local<Value> {
|
2019-12-09 02:26:58 +01:00
|
|
|
unsafe { Local::from_raw(v8__Exception__Error(&mut *message)) }.unwrap()
|
|
|
|
}
|
|
|
|
}
|