Skip to content

Commit 5a0a1e9

Browse files
authored
Remove a bunch of unwrap() (#4285)
The fewer unwraps, the fewer panics
1 parent 2ee9d30 commit 5a0a1e9

File tree

3 files changed

+40
-29
lines changed

3 files changed

+40
-29
lines changed

crates/eframe/src/native/glow_integration.rs

+25-15
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
#![allow(clippy::arc_with_non_send_sync)] // glow::Context was accidentally non-Sync in glow 0.13, but that will be fixed in future releases of glow: https://github.com/grovesNL/glow/commit/c4a5f7151b9b4bbb380faa06ec27415235d1bf7e
99

10-
use std::{cell::RefCell, rc::Rc, sync::Arc, time::Instant};
10+
use std::{cell::RefCell, num::NonZeroU32, rc::Rc, sync::Arc, time::Instant};
1111

1212
use glutin::{
1313
config::GlConfig,
@@ -22,9 +22,9 @@ use winit::{
2222
};
2323

2424
use egui::{
25-
epaint::ahash::HashMap, DeferredViewportUiCallback, ImmediateViewport, NumExt as _,
26-
ViewportBuilder, ViewportClass, ViewportId, ViewportIdMap, ViewportIdPair, ViewportIdSet,
27-
ViewportInfo, ViewportOutput,
25+
epaint::ahash::HashMap, DeferredViewportUiCallback, ImmediateViewport, ViewportBuilder,
26+
ViewportClass, ViewportId, ViewportIdMap, ViewportIdPair, ViewportIdSet, ViewportInfo,
27+
ViewportOutput,
2828
};
2929
#[cfg(feature = "accesskit")]
3030
use egui_winit::accesskit_winit;
@@ -257,7 +257,7 @@ impl GlowWinitApp {
257257
#[cfg(feature = "accesskit")]
258258
{
259259
let event_loop_proxy = self.repaint_proxy.lock().clone();
260-
let viewport = glutin.viewports.get_mut(&ViewportId::ROOT).unwrap();
260+
let viewport = glutin.viewports.get_mut(&ViewportId::ROOT).unwrap(); // we always have a root
261261
if let Viewport {
262262
window: Some(window),
263263
egui_winit: Some(egui_winit),
@@ -548,13 +548,17 @@ impl GlowWinitRunning {
548548
let (raw_input, viewport_ui_cb) = {
549549
let mut glutin = self.glutin.borrow_mut();
550550
let egui_ctx = glutin.egui_ctx.clone();
551-
let viewport = glutin.viewports.get_mut(&viewport_id).unwrap();
551+
let Some(viewport) = glutin.viewports.get_mut(&viewport_id) else {
552+
return EventResult::Wait;
553+
};
552554
let Some(window) = viewport.window.as_ref() else {
553555
return EventResult::Wait;
554556
};
555557
egui_winit::update_viewport_info(&mut viewport.info, &egui_ctx, window);
556558

557-
let egui_winit = viewport.egui_winit.as_mut().unwrap();
559+
let Some(egui_winit) = viewport.egui_winit.as_mut() else {
560+
return EventResult::Wait;
561+
};
558562
let mut raw_input = egui_winit.take_egui_input(window);
559563
let viewport_ui_cb = viewport.viewport_ui_cb.clone();
560564

@@ -587,8 +591,12 @@ impl GlowWinitRunning {
587591
..
588592
} = &mut *glutin;
589593
let viewport = &viewports[&viewport_id];
590-
let window = viewport.window.as_ref().unwrap();
591-
let gl_surface = viewport.gl_surface.as_ref().unwrap();
594+
let Some(window) = viewport.window.as_ref() else {
595+
return EventResult::Wait;
596+
};
597+
let Some(gl_surface) = viewport.gl_surface.as_ref() else {
598+
return EventResult::Wait;
599+
};
592600

593601
let screen_size_in_pixels: [u32; 2] = window.inner_size().into();
594602

@@ -638,7 +646,9 @@ impl GlowWinitRunning {
638646
..
639647
} = &mut *glutin;
640648

641-
let viewport = viewports.get_mut(&viewport_id).unwrap();
649+
let Some(viewport) = viewports.get_mut(&viewport_id) else {
650+
return EventResult::Wait;
651+
};
642652
viewport.info.events.clear(); // they should have been processed
643653
let window = viewport.window.clone().unwrap();
644654
let gl_surface = viewport.gl_surface.as_ref().unwrap();
@@ -877,7 +887,7 @@ impl GlutinWindowContext {
877887
crate::HardwareAcceleration::Off => Some(false),
878888
};
879889
let swap_interval = if native_options.vsync {
880-
glutin::surface::SwapInterval::Wait(std::num::NonZeroU32::new(1).unwrap())
890+
glutin::surface::SwapInterval::Wait(NonZeroU32::MIN)
881891
} else {
882892
glutin::surface::SwapInterval::DontWait
883893
};
@@ -1101,8 +1111,8 @@ impl GlutinWindowContext {
11011111

11021112
// surface attributes
11031113
let (width_px, height_px): (u32, u32) = window.inner_size().into();
1104-
let width_px = std::num::NonZeroU32::new(width_px.at_least(1)).unwrap();
1105-
let height_px = std::num::NonZeroU32::new(height_px.at_least(1)).unwrap();
1114+
let width_px = NonZeroU32::new(width_px).unwrap_or(NonZeroU32::MIN);
1115+
let height_px = NonZeroU32::new(height_px).unwrap_or(NonZeroU32::MIN);
11061116
let surface_attributes = {
11071117
use rwh_05::HasRawWindowHandle as _; // glutin stuck on old version of raw-window-handle
11081118
glutin::surface::SurfaceAttributesBuilder::<glutin::surface::WindowSurface>::new()
@@ -1181,8 +1191,8 @@ impl GlutinWindowContext {
11811191
}
11821192

11831193
fn resize(&mut self, viewport_id: ViewportId, physical_size: winit::dpi::PhysicalSize<u32>) {
1184-
let width_px = std::num::NonZeroU32::new(physical_size.width.at_least(1)).unwrap();
1185-
let height_px = std::num::NonZeroU32::new(physical_size.height.at_least(1)).unwrap();
1194+
let width_px = NonZeroU32::new(physical_size.width).unwrap_or(NonZeroU32::MIN);
1195+
let height_px = NonZeroU32::new(physical_size.height).unwrap_or(NonZeroU32::MIN);
11861196

11871197
if let Some(viewport) = self.viewports.get(&viewport_id) {
11881198
if let Some(gl_surface) = &viewport.gl_surface {

crates/eframe/src/native/wgpu_integration.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//! There is a bunch of improvements we could do,
66
//! like removing a bunch of `unwraps`.
77
8-
use std::{cell::RefCell, rc::Rc, sync::Arc, time::Instant};
8+
use std::{cell::RefCell, num::NonZeroU32, rc::Rc, sync::Arc, time::Instant};
99

1010
use parking_lot::Mutex;
1111
use raw_window_handle::{HasDisplayHandle as _, HasWindowHandle as _};
@@ -437,13 +437,12 @@ impl WinitApp for WgpuWinitApp {
437437
self.init_run_state(egui_ctx, event_loop, storage, window, builder)?
438438
};
439439

440-
EventResult::RepaintNow(
441-
running.shared.borrow().viewports[&ViewportId::ROOT]
442-
.window
443-
.as_ref()
444-
.unwrap()
445-
.id(),
446-
)
440+
let viewport = &running.shared.borrow().viewports[&ViewportId::ROOT];
441+
if let Some(window) = &viewport.window {
442+
EventResult::RepaintNow(window.id())
443+
} else {
444+
EventResult::Wait
445+
}
447446
}
448447

449448
winit::event::Event::Suspended => {
@@ -615,7 +614,9 @@ impl WgpuWinitRunning {
615614
}
616615
}
617616

618-
let egui_winit = egui_winit.as_mut().unwrap();
617+
let Some(egui_winit) = egui_winit.as_mut() else {
618+
return EventResult::Wait;
619+
};
619620
let mut raw_input = egui_winit.take_egui_input(window);
620621

621622
integration.pre_update();
@@ -775,7 +776,6 @@ impl WgpuWinitRunning {
775776
// See: https://github.com/rust-windowing/winit/issues/208
776777
// This solves an issue where the app would panic when minimizing on Windows.
777778
if let Some(viewport_id) = viewport_id {
778-
use std::num::NonZeroU32;
779779
if let (Some(width), Some(height)) = (
780780
NonZeroU32::new(physical_size.width),
781781
NonZeroU32::new(physical_size.height),

crates/egui_glow/examples/pure_glow.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
#![allow(unsafe_code)]
55
#![allow(clippy::arc_with_non_send_sync)] // glow::Context was accidentally non-Sync in glow 0.13, but that will be fixed in future releases of glow: https://github.com/grovesNL/glow/commit/c4a5f7151b9b4bbb380faa06ec27415235d1bf7e
66

7+
use std::num::NonZeroU32;
8+
79
use egui_winit::winit;
810

911
/// The majority of `GlutinWindowContext` is taken from `eframe`
@@ -19,7 +21,6 @@ impl GlutinWindowContext {
1921
// preferably add android support at the same time.
2022
#[allow(unsafe_code)]
2123
unsafe fn new(event_loop: &winit::event_loop::EventLoopWindowTarget<UserEvent>) -> Self {
22-
use egui::NumExt;
2324
use glutin::context::NotCurrentGlContext;
2425
use glutin::display::GetGlDisplay;
2526
use glutin::display::GlDisplay;
@@ -87,8 +88,8 @@ impl GlutinWindowContext {
8788
.expect("failed to finalize glutin window")
8889
});
8990
let (width, height): (u32, u32) = window.inner_size().into();
90-
let width = std::num::NonZeroU32::new(width.at_least(1)).unwrap();
91-
let height = std::num::NonZeroU32::new(height.at_least(1)).unwrap();
91+
let width = NonZeroU32::new(width).unwrap_or(NonZeroU32::MIN);
92+
let height = NonZeroU32::new(height).unwrap_or(NonZeroU32::MIN);
9293
let surface_attributes =
9394
glutin::surface::SurfaceAttributesBuilder::<glutin::surface::WindowSurface>::new()
9495
.build(window.raw_window_handle(), width, height);
@@ -107,7 +108,7 @@ impl GlutinWindowContext {
107108
gl_surface
108109
.set_swap_interval(
109110
&gl_context,
110-
glutin::surface::SwapInterval::Wait(std::num::NonZeroU32::new(1).unwrap()),
111+
glutin::surface::SwapInterval::Wait(NonZeroU32::MIN),
111112
)
112113
.unwrap();
113114

0 commit comments

Comments
 (0)