Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implement Display trait for most error types #513

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions src/fs.rs
Original file line number Diff line number Diff line change
@@ -12,19 +12,25 @@ pub enum Error {
IOSAssetNoData,
}

impl From<std::io::Error> for Error {
fn from(e: std::io::Error) -> Error {
Error::IOError(e)
}
}

impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match *self {
_ => write!(f, "Error: {:?}", self),
match self {
Self::IOError(e) => write!(f, "I/O error: {e}"),
Self::DownloadFailed => write!(f, "Download failed"),
Self::AndroidAssetLoadingError => write!(f, "[android] Failed to load asset"),
Self::IOSAssetNoSuchFile => write!(f, "[ios] No such asset file"),
Self::IOSAssetNoData => write!(f, "[ios] No data in asset file"),
}
}
}

impl From<std::io::Error> for Error {
fn from(e: std::io::Error) -> Error {
Error::IOError(e)
}
}
impl std::error::Error for Error {}

pub type Response = Result<Vec<u8>, Error>;

24 changes: 18 additions & 6 deletions src/graphics.rs
Original file line number Diff line number Diff line change
@@ -278,6 +278,15 @@ pub enum ShaderType {
Fragment,
}

impl Display for ShaderType {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Vertex => write!(f, "Vertex"),
Self::Fragment => write!(f, "Fragment"),
}
}
}

#[derive(Clone, Debug)]
pub enum ShaderError {
CompilationError {
@@ -297,15 +306,18 @@ impl From<std::ffi::NulError> for ShaderError {

impl Display for ShaderError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self) // Display the same way as Debug
match self {
Self::CompilationError {
shader_type,
error_message,
} => write!(f, "{shader_type} shader error:\n{error_message}"),
Self::LinkError(msg) => write!(f, "Link shader error:\n{msg}"),
Self::FFINulError(e) => write!(f, "{e}"),
}
}
}

impl Error for ShaderError {
fn source(&self) -> Option<&(dyn Error + 'static)> {
None
}
}
impl Error for ShaderError {}

/// List of all the possible formats of input data when uploading to texture.
/// The list is built by intersection of texture formats supported by 3.3 core profile and webgl1.
13 changes: 13 additions & 0 deletions src/native/egl.rs
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@ pub type EGLNativePixmapType = ::core::ffi::c_ulong;
pub type EGLNativeWindowType = ::core::ffi::c_ulong;

pub use core::ptr::null_mut;
use std::fmt::Display;

pub const EGL_SUCCESS: u32 = 12288;

@@ -256,6 +257,18 @@ pub enum EglError {
CreateContextFailed,
}

impl Display for EglError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::NoDisplay => write!(f, "No display"),
Self::InitializeFailed => write!(f, "Failed to initialize context"),
Self::CreateContextFailed => write!(f, "Faild to create context"),
}
}
}

impl std::error::Error for EglError {}

pub struct Egl {}

pub unsafe fn create_egl_context(
5 changes: 4 additions & 1 deletion src/native/linux_x11.rs
Original file line number Diff line number Diff line change
@@ -25,7 +25,10 @@ pub enum X11Error {
}
impl std::fmt::Display for X11Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self)
match self {
Self::LibraryNotFound(e) => write!(f, "Library not found error: {e}"),
Self::GLXError(msg) => write!(f, "GLX error:\n{msg}"),
}
}
}
impl From<module::Error> for X11Error {
11 changes: 11 additions & 0 deletions src/native/module.rs
Original file line number Diff line number Diff line change
@@ -4,6 +4,15 @@ pub enum Error {
DlSymError(String),
}

impl Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::DlOpenError(msg) => write!(f, "Shared library open error:\n{msg}"),
Self::DlSymError(msg) => write!(f, "Shared library symlink error:\n{msg}"),
}
}
}

#[cfg(any(target_os = "linux", target_os = "android"))]
pub mod linux {
use super::Error;
@@ -79,6 +88,8 @@ mod windows {
}
}

use std::fmt::Display;

#[cfg(any(target_os = "linux", target_os = "android"))]
pub use linux::*;


Unchanged files with check annotations Beta

unsafe {
let view = crate::window::apple_view();
assert!(!view.is_null());
let device: ObjcId = msg_send![view, device];

Check warning on line 289 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 289 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, aarch64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 289 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-darwin)

unexpected `cfg` condition value: `cargo-clippy`
assert!(!device.is_null());
let command_queue: ObjcId = msg_send![device, newCommandQueue];

Check warning on line 291 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 291 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, aarch64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 291 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-darwin)

unexpected `cfg` condition value: `cargo-clippy`
if false {
let capture_manager = msg_send_![class![MTLCaptureManager], sharedCaptureManager];

Check warning on line 294 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 294 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 294 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, aarch64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 294 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, aarch64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 294 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-darwin)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 294 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-darwin)

unexpected `cfg` condition value: `cargo-clippy`
assert!(!capture_manager.is_null());
let MTLCaptureDestinationGPUTraceDocument = 2u64;
if !msg_send![

Check warning on line 298 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 298 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, aarch64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 298 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-darwin)

unexpected `cfg` condition value: `cargo-clippy`
capture_manager,
supportsDestination: MTLCaptureDestinationGPUTraceDocument
] {
}
let capture_descriptor =
msg_send_![msg_send_![class![MTLCaptureDescriptor], alloc], init];

Check warning on line 317 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 317 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 317 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 317 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, aarch64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 317 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, aarch64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 317 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, aarch64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 317 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-darwin)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 317 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-darwin)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 317 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-darwin)

unexpected `cfg` condition value: `cargo-clippy`
msg_send_![capture_descriptor, setCaptureObject: device];

Check warning on line 318 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 318 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, aarch64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 318 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-darwin)

unexpected `cfg` condition value: `cargo-clippy`
msg_send_![

Check warning on line 319 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 319 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, aarch64-apple-ios)

unexpected `cfg` condition value: `cargo-clippy`

Check warning on line 319 in src/graphics/metal.rs

GitHub Actions / Build (macos-latest, x86_64-apple-darwin)

unexpected `cfg` condition value: `cargo-clippy`
capture_descriptor,
setDestination: MTLCaptureDestinationGPUTraceDocument
];
assert!((*event).type_0 == 30); // is it really SelectionRequest
let empty_message = String::new();
let message = MESSAGE.as_ref().unwrap_or(&empty_message);

Check warning on line 135 in src/native/linux_x11/clipboard.rs

GitHub Actions / Build (ubuntu-latest, x86_64-unknown-linux-gnu)

creating a shared reference to mutable static is discouraged

Check warning on line 135 in src/native/linux_x11/clipboard.rs

GitHub Actions / Build (ubuntu-latest, armv7-unknown-linux-gnueabihf)

creating a shared reference to mutable static is discouraged

Check warning on line 135 in src/native/linux_x11/clipboard.rs

GitHub Actions / Build (ubuntu-latest, aarch64-unknown-linux-gnu)

creating a shared reference to mutable static is discouraged
let UTF8 = (libx11.XInternAtom)(
display,
unsafe {
#[cfg(target_arch = "x86_64")]
SetWindowLongPtrA(self.wnd, GWL_STYLE, win_style as _);
#[cfg(target_arch = "i686")]

Check warning on line 163 in src/native/windows.rs

GitHub Actions / Build (windows-latest, x86_64-pc-windows-msvc)

unexpected `cfg` condition value: `i686`

Check warning on line 163 in src/native/windows.rs

GitHub Actions / Build (ubuntu-latest, x86_64-pc-windows-gnu)

unexpected `cfg` condition value: `i686`
SetWindowLong(self.wnd, GWL_STYLE, win_style as _);
if self.fullscreen {
fn process_request(&mut self, request: Request) {
use Request::*;
unsafe {

Check warning on line 827 in src/native/windows.rs

GitHub Actions / Build (windows-latest, x86_64-pc-windows-msvc)

unnecessary `unsafe` block

Check warning on line 827 in src/native/windows.rs

GitHub Actions / Build (ubuntu-latest, x86_64-pc-windows-gnu)

unnecessary `unsafe` block
match request {
ScheduleUpdate => {
self.update_requested = true;
} => self.set_window_size(new_width as _, new_height as _),
SetWindowPosition { new_x, new_y } => self.set_window_position(new_x, new_y),
SetFullscreen(fullscreen) => self.set_fullscreen(fullscreen),
ShowKeyboard(show) => {

Check warning on line 841 in src/native/windows.rs

GitHub Actions / Build (windows-latest, x86_64-pc-windows-msvc)

unused variable: `show`

Check warning on line 841 in src/native/windows.rs

GitHub Actions / Build (ubuntu-latest, x86_64-pc-windows-gnu)

unused variable: `show`
eprintln!("Not implemented for windows")
}
}
#[cfg(target_arch = "x86_64")]
SetWindowLongPtrA(wnd, GWLP_USERDATA, &mut display as *mut _ as isize);
#[cfg(target_arch = "i686")]

Check warning on line 920 in src/native/windows.rs

GitHub Actions / Build (windows-latest, x86_64-pc-windows-msvc)

unexpected `cfg` condition value: `i686`

Check warning on line 920 in src/native/windows.rs

GitHub Actions / Build (ubuntu-latest, x86_64-pc-windows-gnu)

unexpected `cfg` condition value: `i686`
SetWindowLong(wnd, GWLP_USERDATA, &mut display as *mut _ as isize);
let mut done = false;