summaryrefslogtreecommitdiffstats
path: root/native/src/system
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2023-03-09 19:05:38 +0100
committerLibravatar GitHub <noreply@github.com>2023-03-09 19:05:38 +0100
commitcaf2836b1b15bff6e8a2ea72441d67f297eb8707 (patch)
tree0ffa0d1d604780999892b88de85ee93e3ed7d539 /native/src/system
parent11b2c3bbe31a43e73a61b9bd9f022233f302ae27 (diff)
parent424ac8177309440bbd8efe0dd9f7622cb10807ce (diff)
downloadiced-caf2836b1b15bff6e8a2ea72441d67f297eb8707.tar.gz
iced-caf2836b1b15bff6e8a2ea72441d67f297eb8707.tar.bz2
iced-caf2836b1b15bff6e8a2ea72441d67f297eb8707.zip
Merge pull request #1748 from iced-rs/feature/software-renderer
Software renderer, runtime renderer fallback, and core consolidation
Diffstat (limited to 'native/src/system')
-rw-r--r--native/src/system/action.rs39
-rw-r--r--native/src/system/information.rs29
2 files changed, 0 insertions, 68 deletions
diff --git a/native/src/system/action.rs b/native/src/system/action.rs
deleted file mode 100644
index dea9536f..00000000
--- a/native/src/system/action.rs
+++ /dev/null
@@ -1,39 +0,0 @@
-use crate::system;
-
-use iced_futures::MaybeSend;
-use std::fmt;
-
-/// An operation to be performed on the system.
-pub enum Action<T> {
- /// Query system information and produce `T` with the result.
- QueryInformation(Box<dyn Closure<T>>),
-}
-
-pub trait Closure<T>: Fn(system::Information) -> T + MaybeSend {}
-
-impl<T, O> Closure<O> for T where T: Fn(system::Information) -> O + MaybeSend {}
-
-impl<T> Action<T> {
- /// Maps the output of a system [`Action`] using the provided closure.
- pub fn map<A>(
- self,
- f: impl Fn(T) -> A + 'static + MaybeSend + Sync,
- ) -> Action<A>
- where
- T: 'static,
- {
- match self {
- Self::QueryInformation(o) => {
- Action::QueryInformation(Box::new(move |s| f(o(s))))
- }
- }
- }
-}
-
-impl<T> fmt::Debug for Action<T> {
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
- match self {
- Self::QueryInformation(_) => write!(f, "Action::QueryInformation"),
- }
- }
-}
diff --git a/native/src/system/information.rs b/native/src/system/information.rs
deleted file mode 100644
index 93e7a5a4..00000000
--- a/native/src/system/information.rs
+++ /dev/null
@@ -1,29 +0,0 @@
-/// Contains informations about the system (e.g. system name, processor, memory, graphics adapter).
-#[derive(Clone, Debug)]
-pub struct Information {
- /// The operating system name
- pub system_name: Option<String>,
- /// Operating system kernel version
- pub system_kernel: Option<String>,
- /// Long operating system version
- ///
- /// Examples:
- /// - MacOS 10.15 Catalina
- /// - Windows 10 Pro
- /// - Ubuntu 20.04 LTS (Focal Fossa)
- pub system_version: Option<String>,
- /// Short operating system version number
- pub system_short_version: Option<String>,
- /// Detailed processor model information
- pub cpu_brand: String,
- /// The number of physical cores on the processor
- pub cpu_cores: Option<usize>,
- /// Total RAM size, KB
- pub memory_total: u64,
- /// Memory used by this process, KB
- pub memory_used: Option<u64>,
- /// Underlying graphics backend for rendering
- pub graphics_backend: String,
- /// Model information for the active graphics adapter
- pub graphics_adapter: String,
-}