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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files.git)
// from webkit2gtk-gir-files
// DO NOT EDIT
use crate::Context;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
glib::wrapper! {
/// JSCException represents a JavaScript exception.
///
/// # Implements
///
/// [`ExceptionExt`][trait@crate::prelude::ExceptionExt]
#[doc(alias = "JSCException")]
pub struct Exception(Object<ffi::JSCException, ffi::JSCExceptionClass>);
match fn {
type_ => || ffi::jsc_exception_get_type(),
}
}
impl Exception {
pub const NONE: Option<&'static Exception> = None;
/// Create a new [`Exception`][crate::Exception] in `context` with `message`.
/// ## `context`
/// a [`Context`][crate::Context]
/// ## `message`
/// the error message
///
/// # Returns
///
/// a new [`Exception`][crate::Exception].
#[doc(alias = "jsc_exception_new")]
pub fn new(context: &impl IsA<Context>, message: &str) -> Exception {
unsafe {
from_glib_full(ffi::jsc_exception_new(
context.as_ref().to_glib_none().0,
message.to_glib_none().0,
))
}
}
//#[doc(alias = "jsc_exception_new_printf")]
//pub fn new_printf(context: &impl IsA<Context>, format: &str, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs) -> Exception {
// unsafe { TODO: call ffi:jsc_exception_new_printf() }
//}
//#[doc(alias = "jsc_exception_new_vprintf")]
//pub fn new_vprintf(context: &impl IsA<Context>, format: &str, args: /*Unknown conversion*//*Unimplemented*/Unsupported) -> Exception {
// unsafe { TODO: call ffi:jsc_exception_new_vprintf() }
//}
/// Create a new [`Exception`][crate::Exception] in `context` with `name` and `message`.
/// ## `context`
/// a [`Context`][crate::Context]
/// ## `name`
/// the error name
/// ## `message`
/// the error message
///
/// # Returns
///
/// a new [`Exception`][crate::Exception].
#[doc(alias = "jsc_exception_new_with_name")]
#[doc(alias = "new_with_name")]
pub fn with_name(context: &impl IsA<Context>, name: &str, message: &str) -> Exception {
unsafe {
from_glib_full(ffi::jsc_exception_new_with_name(
context.as_ref().to_glib_none().0,
name.to_glib_none().0,
message.to_glib_none().0,
))
}
}
//#[doc(alias = "jsc_exception_new_with_name_printf")]
//#[doc(alias = "new_with_name_printf")]
//pub fn with_name_printf(context: &impl IsA<Context>, name: &str, format: &str, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs) -> Exception {
// unsafe { TODO: call ffi:jsc_exception_new_with_name_printf() }
//}
//#[doc(alias = "jsc_exception_new_with_name_vprintf")]
//#[doc(alias = "new_with_name_vprintf")]
//pub fn with_name_vprintf(context: &impl IsA<Context>, name: &str, format: &str, args: /*Unknown conversion*//*Unimplemented*/Unsupported) -> Exception {
// unsafe { TODO: call ffi:jsc_exception_new_with_name_vprintf() }
//}
}
impl fmt::Display for Exception {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str(&ExceptionExt::to_str(self))
}
}
/// Trait containing all [`struct@Exception`] methods.
///
/// # Implementors
///
/// [`Exception`][struct@crate::Exception]
pub trait ExceptionExt: 'static {
/// Get a string with the exception backtrace.
///
/// # Returns
///
/// the exception backtrace string or [`None`].
#[doc(alias = "jsc_exception_get_backtrace_string")]
#[doc(alias = "get_backtrace_string")]
fn backtrace_string(&self) -> Option<glib::GString>;
/// Get the column number at which `self` happened.
///
/// # Returns
///
/// the column number of `self`.
#[doc(alias = "jsc_exception_get_column_number")]
#[doc(alias = "get_column_number")]
fn column_number(&self) -> u32;
/// Get the line number at which `self` happened.
///
/// # Returns
///
/// the line number of `self`.
#[doc(alias = "jsc_exception_get_line_number")]
#[doc(alias = "get_line_number")]
fn line_number(&self) -> u32;
/// Get the error message of `self`.
///
/// # Returns
///
/// the `self` error message.
#[doc(alias = "jsc_exception_get_message")]
#[doc(alias = "get_message")]
fn message(&self) -> Option<glib::GString>;
/// Get the error name of `self`
///
/// # Returns
///
/// the `self` error name.
#[doc(alias = "jsc_exception_get_name")]
#[doc(alias = "get_name")]
fn name(&self) -> Option<glib::GString>;
/// Get the source URI of `self`.
///
/// # Returns
///
/// the the source URI of `self`, or [`None`].
#[doc(alias = "jsc_exception_get_source_uri")]
#[doc(alias = "get_source_uri")]
fn source_uri(&self) -> Option<glib::GString>;
/// Return a report message of `self`, containing all the possible details such us
/// source URI, line, column and backtrace, and formatted to be printed.
///
/// # Returns
///
/// a new string with the exception report
#[doc(alias = "jsc_exception_report")]
fn report(&self) -> Option<glib::GString>;
/// Get the string representation of `self` error.
///
/// # Returns
///
/// the string representation of `self`.
#[doc(alias = "jsc_exception_to_string")]
#[doc(alias = "to_string")]
fn to_str(&self) -> glib::GString;
}
impl<O: IsA<Exception>> ExceptionExt for O {
fn backtrace_string(&self) -> Option<glib::GString> {
unsafe {
from_glib_none(ffi::jsc_exception_get_backtrace_string(
self.as_ref().to_glib_none().0,
))
}
}
fn column_number(&self) -> u32 {
unsafe { ffi::jsc_exception_get_column_number(self.as_ref().to_glib_none().0) }
}
fn line_number(&self) -> u32 {
unsafe { ffi::jsc_exception_get_line_number(self.as_ref().to_glib_none().0) }
}
fn message(&self) -> Option<glib::GString> {
unsafe {
from_glib_none(ffi::jsc_exception_get_message(
self.as_ref().to_glib_none().0,
))
}
}
fn name(&self) -> Option<glib::GString> {
unsafe { from_glib_none(ffi::jsc_exception_get_name(self.as_ref().to_glib_none().0)) }
}
fn source_uri(&self) -> Option<glib::GString> {
unsafe {
from_glib_none(ffi::jsc_exception_get_source_uri(
self.as_ref().to_glib_none().0,
))
}
}
fn report(&self) -> Option<glib::GString> {
unsafe { from_glib_full(ffi::jsc_exception_report(self.as_ref().to_glib_none().0)) }
}
fn to_str(&self) -> glib::GString {
unsafe { from_glib_full(ffi::jsc_exception_to_string(self.as_ref().to_glib_none().0)) }
}
}