#![allow(non_snake_case)]
use crate::isolate::Isolate;
use crate::support::int;
use crate::Context;
use crate::Local;
use crate::Message;
use crate::StackFrame;
use crate::StackTrace;
use crate::String;
use crate::ToLocal;
use crate::Value;
extern "C" {
fn v8__Message__Get(message: *const Message) -> *mut String;
fn v8__Message__GetSourceLine(
message: &Message,
context: *mut Context,
) -> *mut String;
fn v8__Message__GetScriptResourceName(message: &Message) -> *mut Value;
fn v8__Message__GetLineNumber(
message: &Message,
context: *mut Context,
) -> int;
fn v8__Message__GetStartPosition(message: &Message) -> int;
fn v8__Message__GetEndPosition(message: &Message) -> int;
fn v8__Message__GetWasmFunctionIndex(message: &Message) -> int;
fn v8__Message__ErrorLevel(message: &Message) -> int;
fn v8__Message__GetStartColumn(message: &Message) -> int;
fn v8__Message__GetEndColumn(message: &Message) -> int;
fn v8__Message__IsSharedCrossOrigin(message: &Message) -> bool;
fn v8__Message__IsOpaque(message: &Message) -> bool;
fn v8__Message__GetStackTrace(message: &Message) -> *mut StackTrace;
fn v8__StackTrace__GetFrameCount(self_: &StackTrace) -> int;
fn v8__StackTrace__GetFrame(
self_: &StackTrace,
isolate: *mut Isolate,
index: u32,
) -> *mut StackFrame;
fn v8__StackFrame__GetLineNumber(self_: &StackFrame) -> int;
fn v8__StackFrame__GetColumn(self_: &StackFrame) -> int;
fn v8__StackFrame__GetScriptId(self_: &StackFrame) -> int;
fn v8__StackFrame__GetScriptName(self_: &StackFrame) -> *mut String;
fn v8__StackFrame__GetScriptNameOrSourceURL(
self_: &StackFrame,
) -> *mut String;
fn v8__StackFrame__GetFunctionName(self_: &StackFrame) -> *mut String;
fn v8__StackFrame__IsEval(self_: &StackFrame) -> bool;
fn v8__StackFrame__IsConstructor(self_: &StackFrame) -> bool;
fn v8__StackFrame__IsWasm(self_: &StackFrame) -> bool;
fn v8__StackFrame__IsUserJavaScript(self_: &StackFrame) -> bool;
fn v8__Exception__Error(message: Local<String>) -> *mut Value;
fn v8__Exception__RangeError(message: Local<String>) -> *mut Value;
fn v8__Exception__ReferenceError(message: Local<String>) -> *mut Value;
fn v8__Exception__SyntaxError(message: Local<String>) -> *mut Value;
fn v8__Exception__TypeError(message: Local<String>) -> *mut Value;
fn v8__Exception__CreateMessage(
isolate: &Isolate,
exception: Local<Value>,
) -> *mut Message;
fn v8__Exception__GetStackTrace(exception: Local<Value>) -> *mut StackTrace;
}
impl StackTrace {
pub fn get_frame_count(&self) -> usize {
unsafe { v8__StackTrace__GetFrameCount(self) as usize }
}
pub fn get_frame<'sc>(
&self,
scope: &mut impl ToLocal<'sc>,
index: usize,
) -> Option<Local<'sc, StackFrame>> {
let isolate = scope.isolate();
unsafe {
Local::from_raw(v8__StackTrace__GetFrame(self, isolate, index as u32))
}
}
}
impl StackFrame {
pub fn get_line_number(&self) -> usize {
unsafe { v8__StackFrame__GetLineNumber(self) as usize }
}
pub fn get_column(&self) -> usize {
unsafe { v8__StackFrame__GetColumn(self) as usize }
}
pub fn get_script_id(&self) -> usize {
unsafe { v8__StackFrame__GetScriptId(self) as usize }
}
pub fn get_script_name<'sc>(
&self,
scope: &mut impl ToLocal<'sc>,
) -> Option<Local<'sc, String>> {
unsafe { scope.to_local(v8__StackFrame__GetScriptName(self)) }
}
pub fn get_script_name_or_source_url<'sc>(
&self,
scope: &mut impl ToLocal<'sc>,
) -> Option<Local<'sc, String>> {
unsafe { scope.to_local(v8__StackFrame__GetScriptNameOrSourceURL(self)) }
}
pub fn get_function_name<'sc>(
&self,
scope: &mut impl ToLocal<'sc>,
) -> Option<Local<'sc, String>> {
unsafe { scope.to_local(v8__StackFrame__GetFunctionName(self)) }
}
pub fn is_eval(&self) -> bool {
unsafe { v8__StackFrame__IsEval(self) }
}
pub fn is_constructor(&self) -> bool {
unsafe { v8__StackFrame__IsConstructor(self) }
}
pub fn is_wasm(&self) -> bool {
unsafe { v8__StackFrame__IsWasm(self) }
}
pub fn is_user_javascript(&self) -> bool {
unsafe { v8__StackFrame__IsUserJavaScript(self) }
}
}
impl Message {
pub fn get<'sc>(&self, scope: &mut impl ToLocal<'sc>) -> Local<'sc, String> {
unsafe { scope.to_local(v8__Message__Get(self)) }.unwrap()
}
pub fn get_stack_trace<'sc>(
&self,
scope: &mut impl ToLocal<'sc>,
) -> Option<Local<'sc, StackTrace>> {
unsafe { scope.to_local(v8__Message__GetStackTrace(self)) }
}
pub fn get_source_line<'s>(
&self,
scope: &mut impl ToLocal<'s>,
mut context: Local<Context>,
) -> Option<Local<'s, String>> {
unsafe { scope.to_local(v8__Message__GetSourceLine(self, &mut *context)) }
}
pub fn get_script_resource_name<'s>(
&self,
scope: &mut impl ToLocal<'s>,
) -> Option<Local<'s, Value>> {
unsafe { scope.to_local(v8__Message__GetScriptResourceName(self)) }
}
pub fn get_line_number(&self, mut context: Local<Context>) -> Option<usize> {
let i = unsafe { v8__Message__GetLineNumber(self, &mut *context) };
if i < 0 {
None
} else {
Some(i as usize)
}
}
pub fn get_start_position(&self) -> int {
unsafe { v8__Message__GetStartPosition(self) }
}
pub fn get_end_position(&self) -> int {
unsafe { v8__Message__GetEndPosition(self) }
}
pub fn get_wasm_function_index(&self) -> int {
unsafe { v8__Message__GetWasmFunctionIndex(self) }
}
pub fn error_level(&self) -> int {
unsafe { v8__Message__ErrorLevel(self) }
}
pub fn get_start_column(&self) -> usize {
unsafe { v8__Message__GetStartColumn(self) as usize }
}
pub fn get_end_column(&self) -> usize {
unsafe { v8__Message__GetEndColumn(self) as usize }
}
pub fn is_shared_cross_origin(&self) -> bool {
unsafe { v8__Message__IsSharedCrossOrigin(self) }
}
pub fn is_opaque(&self) -> bool {
unsafe { v8__Message__IsOpaque(self) }
}
}
pub struct Exception;
impl Exception {
pub fn error<'sc>(
scope: &mut impl ToLocal<'sc>,
message: Local<String>,
) -> Local<'sc, Value> {
let isolate = scope.isolate();
isolate.enter();
let e = unsafe { v8__Exception__Error(message) };
isolate.exit();
unsafe { scope.to_local(e) }.unwrap()
}
pub fn range_error<'sc>(
scope: &mut impl ToLocal<'sc>,
message: Local<String>,
) -> Local<'sc, Value> {
let isolate = scope.isolate();
isolate.enter();
let e = unsafe { v8__Exception__RangeError(message) };
isolate.exit();
unsafe { scope.to_local(e) }.unwrap()
}
pub fn reference_error<'sc>(
scope: &mut impl ToLocal<'sc>,
message: Local<String>,
) -> Local<'sc, Value> {
let isolate = scope.isolate();
isolate.enter();
let e = unsafe { v8__Exception__ReferenceError(message) };
isolate.exit();
unsafe { scope.to_local(e) }.unwrap()
}
pub fn syntax_error<'sc>(
scope: &mut impl ToLocal<'sc>,
message: Local<String>,
) -> Local<'sc, Value> {
let isolate = scope.isolate();
isolate.enter();
let e = unsafe { v8__Exception__SyntaxError(message) };
isolate.exit();
unsafe { scope.to_local(e) }.unwrap()
}
pub fn type_error<'sc>(
scope: &mut impl ToLocal<'sc>,
message: Local<String>,
) -> Local<'sc, Value> {
let isolate = scope.isolate();
isolate.enter();
let e = unsafe { v8__Exception__TypeError(message) };
isolate.exit();
unsafe { scope.to_local(e) }.unwrap()
}
pub fn create_message<'sc>(
scope: &mut impl ToLocal<'sc>,
exception: Local<Value>,
) -> Local<'sc, Message> {
let isolate = scope.isolate();
let ptr = unsafe { v8__Exception__CreateMessage(isolate, exception) };
unsafe { scope.to_local(ptr) }.unwrap()
}
pub fn get_stack_trace<'sc>(
scope: &mut impl ToLocal<'sc>,
exception: Local<Value>,
) -> Option<Local<'sc, StackTrace>> {
unsafe { scope.to_local(v8__Exception__GetStackTrace(exception)) }
}
}