Update iced, prepare to use libcosmic

This commit is contained in:
Jeremy Soller
2024-06-15 18:56:38 -06:00
parent fe5d3d11a5
commit 8d7a3a5588
3 changed files with 3947 additions and 705 deletions
Generated
+3687 -495
View File
File diff suppressed because it is too large Load Diff
+4 -8
View File
@@ -11,14 +11,10 @@ pkgar-keys = "0.1.0"
redox_installer = "0.2.17"
toml = "0.5.6"
[dependencies.iced]
git = "https://gitlab.redox-os.org/redox-os/iced.git"
branch = "redox"
[dependencies.iced_winit]
git = "https://gitlab.redox-os.org/redox-os/iced.git"
branch = "redox"
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
default-features = false
features = ["multi-window", "tokio", "winit"]
[patch.crates-io]
ring = { git = "https://gitlab.redox-os.org/redox-os/ring.git", branch = "redox-unix-0.13.5" }
winit = { git = "https://gitlab.redox-os.org/redox-os/winit.git", branch = "master" }
+256 -202
View File
@@ -1,25 +1,25 @@
use cosmic::iced::{
self, executor, theme,
widget::{button, column, horizontal_space, progress_bar, radio, row, text, vertical_space},
window, Alignment, Application, Command, Element, Length, Settings, Size, Subscription, Theme,
};
use failure::format_err;
use iced::executor;
use iced::theme;
use iced::widget::{button, column, horizontal_space, progress_bar, radio, row, text, vertical_space};
use iced::{Alignment, Application, Command, Element, Length, Settings, Subscription, Theme};
use iced_winit::window;
use pkgar::{PackageHead, ext::EntryExt};
use pkgar::{ext::EntryExt, PackageHead};
use pkgar_core::PackageSrc;
use pkgar_keys::PublicKeyFile;
use redox_installer::{Config, DiskOption, with_whole_disk};
use redox_installer::{with_whole_disk, Config, DiskOption};
use std::{
ffi::OsStr,
fs,
io::{self, Read, Write},
os::unix::fs::{MetadataExt, OpenOptionsExt, symlink},
os::unix::fs::{symlink, MetadataExt, OpenOptionsExt},
path::Path,
sync::Arc,
};
fn main() -> iced::Result {
let mut settings = Settings::default();
settings.window.size = (608, 416);
settings.window.size = Size::new(608.0, 416.0);
settings.exit_on_close_request = false;
Window::run(settings)
}
@@ -27,22 +27,24 @@ fn main() -> iced::Result {
fn disk_paths() -> Result<Vec<(String, u64)>, String> {
let mut schemes = Vec::new();
match fs::read_dir(":") {
Ok(entries) => for entry_res in entries {
if let Ok(entry) = entry_res {
let path = entry.path();
if let Ok(path_str) = path.into_os_string().into_string() {
let scheme = path_str.trim_start_matches(':').trim_matches('/');
if scheme.starts_with("disk") {
if scheme == "disk/live" {
// Skip live disks
continue;
}
Ok(entries) => {
for entry_res in entries {
if let Ok(entry) = entry_res {
let path = entry.path();
if let Ok(path_str) = path.into_os_string().into_string() {
let scheme = path_str.trim_start_matches(':').trim_matches('/');
if scheme.starts_with("disk") {
if scheme == "disk/live" {
// Skip live disks
continue;
}
schemes.push(format!("{}:", scheme));
schemes.push(format!("{}:", scheme));
}
}
}
}
},
}
Err(err) => {
return Err(format!("failed to list schemes: {}", err));
}
@@ -50,30 +52,30 @@ fn disk_paths() -> Result<Vec<(String, u64)>, String> {
let mut paths = Vec::new();
for scheme in schemes {
let is_dir = fs::metadata(&scheme)
.map(|x| x.is_dir())
.unwrap_or(false);
let is_dir = fs::metadata(&scheme).map(|x| x.is_dir()).unwrap_or(false);
if is_dir {
match fs::read_dir(&scheme) {
Ok(entries) => for entry_res in entries {
if let Ok(entry) = entry_res {
if let Ok(file_name) = entry.file_name().into_string() {
if file_name.contains('p') {
// Skip partitions
continue;
}
Ok(entries) => {
for entry_res in entries {
if let Ok(entry) = entry_res {
if let Ok(file_name) = entry.file_name().into_string() {
if file_name.contains('p') {
// Skip partitions
continue;
}
if let Ok(path) = entry.path().into_os_string().into_string() {
if let Ok(metadata) = entry.metadata() {
let size = metadata.len();
if size > 0 {
paths.push((path, size));
if let Ok(path) = entry.path().into_os_string().into_string() {
if let Ok(metadata) = entry.metadata() {
let size = metadata.len();
if size > 0 {
paths.push((path, size));
}
}
}
}
}
}
},
}
Err(err) => {
return Err(format!("failed to list '{}': {}", scheme, err));
}
@@ -108,7 +110,11 @@ fn copy_file(src: &Path, dest: &Path, buf: &mut [u8]) -> Result<(), failure::Err
match fs::create_dir_all(&parent) {
Ok(()) => (),
Err(err) => {
return Err(format_err!("failed to create directory {}: {}", parent.display(), err));
return Err(format_err!(
"failed to create directory {}: {}",
parent.display(),
err
));
}
}
}
@@ -116,36 +122,63 @@ fn copy_file(src: &Path, dest: &Path, buf: &mut [u8]) -> Result<(), failure::Err
let metadata = match fs::symlink_metadata(&src) {
Ok(ok) => ok,
Err(err) => {
return Err(format_err!("failed to read metadata of {}: {}", src.display(), err));
},
return Err(format_err!(
"failed to read metadata of {}: {}",
src.display(),
err
));
}
};
if metadata.file_type().is_symlink() {
let real_src = match fs::read_link(&src) {
Ok(ok) => ok,
Err(err) => {
return Err(format_err!("failed to read link {}: {}", src.display(), err));
return Err(format_err!(
"failed to read link {}: {}",
src.display(),
err
));
}
};
match symlink(&real_src, &dest) {
Ok(()) => (),
Err(err) => {
return Err(format_err!("failed to copy link {} ({}) to {}: {}", src.display(), real_src.display(), dest.display(), err));
},
return Err(format_err!(
"failed to copy link {} ({}) to {}: {}",
src.display(),
real_src.display(),
dest.display(),
err
));
}
}
} else {
let mut src_file = match fs::File::open(&src) {
Ok(ok) => ok,
Err(err) => {
return Err(format_err!("failed to open file {}: {}", src.display(), err));
return Err(format_err!(
"failed to open file {}: {}",
src.display(),
err
));
}
};
let mut dest_file = match fs::OpenOptions::new().write(true).create_new(true).mode(metadata.mode()).open(&dest) {
let mut dest_file = match fs::OpenOptions::new()
.write(true)
.create_new(true)
.mode(metadata.mode())
.open(&dest)
{
Ok(ok) => ok,
Err(err) => {
return Err(format_err!("failed to create file {}: {}", dest.display(), err));
return Err(format_err!(
"failed to create file {}: {}",
dest.display(),
err
));
}
};
@@ -153,7 +186,11 @@ fn copy_file(src: &Path, dest: &Path, buf: &mut [u8]) -> Result<(), failure::Err
let count = match src_file.read(buf) {
Ok(ok) => ok,
Err(err) => {
return Err(format_err!("failed to read file {}: {}", src.display(), err));
return Err(format_err!(
"failed to read file {}: {}",
src.display(),
err
));
}
};
@@ -164,7 +201,11 @@ fn copy_file(src: &Path, dest: &Path, buf: &mut [u8]) -> Result<(), failure::Err
match dest_file.write_all(&buf[..count]) {
Ok(()) => (),
Err(err) => {
return Err(format_err!("failed to write file {}: {}", dest.display(), err));
return Err(format_err!(
"failed to write file {}: {}",
dest.display(),
err
));
}
}
}
@@ -173,7 +214,11 @@ fn copy_file(src: &Path, dest: &Path, buf: &mut [u8]) -> Result<(), failure::Err
Ok(())
}
fn package_files(root_path: &Path, config: &mut Config, files: &mut Vec<String>) -> Result<(), pkgar::Error> {
fn package_files(
root_path: &Path,
config: &mut Config,
files: &mut Vec<String>,
) -> Result<(), pkgar::Error> {
//TODO: Remove packages from config where all files are located (and have valid shasum?)
config.packages.clear();
@@ -187,18 +232,15 @@ fn package_files(root_path: &Path, config: &mut Config, files: &mut Vec<String>)
if pkg_path.extension() == Some(OsStr::new("pkgar_head")) {
let mut pkg = PackageHead::new(&pkg_path, &root_path, &pkey)?;
for entry in pkg.read_entries()? {
files.push(
entry
.check_path()?
.to_str().unwrap()
.to_string()
);
files.push(entry.check_path()?.to_str().unwrap().to_string());
}
files.push(
pkg_path
.strip_prefix(root_path).unwrap()
.to_str().unwrap()
.to_string()
.strip_prefix(root_path)
.unwrap()
.to_str()
.unwrap()
.to_string(),
);
}
}
@@ -230,9 +272,11 @@ fn install<F: FnMut(Message)>(disk_path: String, password_opt: Option<String>, m
match fs::read(&path) {
Ok(ok) => ok,
Err(err) => {
f(Message::Error(
format!("{}: failed to read: {}", path.display(), err)
));
f(Message::Error(format!(
"{}: failed to read: {}",
path.display(),
err
)));
return;
}
}
@@ -248,9 +292,11 @@ fn install<F: FnMut(Message)>(disk_path: String, password_opt: Option<String>, m
match fs::read(&path) {
Ok(ok) => ok,
Err(err) => {
f(Message::Error(
format!("{}: failed to read: {}", path.display(), err)
));
f(Message::Error(format!(
"{}: failed to read: {}",
path.display(),
err
)));
return;
}
}
@@ -266,76 +312,73 @@ fn install<F: FnMut(Message)>(disk_path: String, password_opt: Option<String>, m
password_opt: password_opt.as_ref().map(|x| x.as_bytes()),
efi_partition_size: None,
};
let res = with_whole_disk(&disk_path, &disk_option, |mount_path| -> Result<(), failure::Error> {
message!("Loading filesystem.toml");
let mut config: Config = {
let path = root_path.join("filesystem.toml");
match fs::read_to_string(&path) {
Ok(config_data) => {
match toml::from_str(&config_data) {
Ok(config) => {
config
},
let res = with_whole_disk(
&disk_path,
&disk_option,
|mount_path| -> Result<(), failure::Error> {
message!("Loading filesystem.toml");
let mut config: Config = {
let path = root_path.join("filesystem.toml");
match fs::read_to_string(&path) {
Ok(config_data) => match toml::from_str(&config_data) {
Ok(config) => config,
Err(err) => {
return Err(format_err!("{}: failed to decode: {}", path.display(), err));
return Err(format_err!(
"{}: failed to decode: {}",
path.display(),
err
));
}
},
Err(err) => {
return Err(format_err!("{}: failed to read: {}", path.display(), err));
}
},
Err(err) => {
return Err(format_err!("{}: failed to read: {}", path.display(), err));
}
};
// Copy filesystem.toml, which is not packaged
let mut files = vec!["filesystem.toml".to_string()];
// Copy files from locally installed packages
message!("Loading package files");
if let Err(err) = package_files(&root_path, &mut config, &mut files) {
return Err(format_err!("failed to read package files: {}", err));
}
};
// Copy filesystem.toml, which is not packaged
let mut files = vec![
"filesystem.toml".to_string(),
];
// Sort and remove duplicates
files.sort();
files.dedup();
// Copy files from locally installed packages
message!("Loading package files");
if let Err(err) = package_files(&root_path, &mut config, &mut files) {
return Err(format_err!("failed to read package files: {}", err));
}
let mut buf = vec![0; 4 * MIB as usize];
for (i, name) in files.iter().enumerate() {
progress = (i * 100) / files.len();
message!("Copy {} [{}/{}]", name, i, files.len());
// Sort and remove duplicates
files.sort();
files.dedup();
let src = root_path.join(name);
let dest = mount_path.join(name);
copy_file(&src, &dest, &mut buf)?;
}
let mut buf = vec![0; 4 * MIB as usize];
for (i, name) in files.iter().enumerate() {
progress = (i * 100) / files.len();
message!("Copy {} [{}/{}]", name, i, files.len());
message!("Configuring system");
let cookbook: Option<&'static str> = None;
redox_installer::install_dir(config, mount_path, cookbook)
.map_err(|err| io::Error::new(io::ErrorKind::Other, err))?;
let src = root_path.join(name);
let dest = mount_path.join(name);
copy_file(&src, &dest, &mut buf)?;
}
message!("Configuring system");
let cookbook: Option<&'static str> = None;
redox_installer::install_dir(config, mount_path, cookbook).map_err(|err| {
io::Error::new(
io::ErrorKind::Other,
err
)
})?;
progress = 100;
message!("Finished installing, unmounting filesystem");
Ok(())
});
progress = 100;
message!("Finished installing, unmounting filesystem");
Ok(())
},
);
match res {
Ok(()) => {
f(Message::Success(
format!("Finished installing in {:?}, ready to reboot", start.elapsed())
));
},
f(Message::Success(format!(
"Finished installing in {:?}, ready to reboot",
start.elapsed()
)));
}
Err(err) => {
f(Message::Error(
format!("Failed to install: {}", err)
));
f(Message::Error(format!("Failed to install: {}", err)));
}
}
}
@@ -356,6 +399,7 @@ struct Worker {
#[derive(Clone, Debug)]
enum Message {
None,
Worker(Worker),
DiskChoose(usize),
DiskConfirm(usize),
@@ -400,41 +444,38 @@ impl Application for Window {
fn update(&mut self, message: Message) -> Command<Message> {
match message {
Message::None => {}
Message::Worker(worker) => {
self.worker_opt = Some(worker);
},
}
Message::DiskChoose(disk_i) => {
self.page = Page::Disk(Some(disk_i));
},
Message::DiskConfirm(disk_i) => {
match self.disk_paths.get(disk_i) {
Some((disk_path, _disk_size)) => match &self.worker_opt {
Some(worker) => {
match worker.command_sender.send((disk_path.clone(), None)) {
Ok(()) => self.page = Page::Install(0, format!("Starting install...")),
Err(err) => {
self.page = Page::Error(format!("failed to send command: {}", err));
},
}
},
None => {
self.page = Page::Error(format!("command sender not found"));
}
Message::DiskConfirm(disk_i) => match self.disk_paths.get(disk_i) {
Some((disk_path, _disk_size)) => match &self.worker_opt {
Some(worker) => match worker.command_sender.send((disk_path.clone(), None)) {
Ok(()) => self.page = Page::Install(0, format!("Starting install...")),
Err(err) => {
self.page = Page::Error(format!("failed to send command: {}", err));
}
},
None => {
self.page = Page::Error(format!("invalid disk number {} chosen", disk_i));
},
self.page = Page::Error(format!("command sender not found"));
}
},
None => {
self.page = Page::Error(format!("invalid disk number {} chosen", disk_i));
}
},
Message::Install(progress, description) => {
self.page = Page::Install(progress, description);
},
}
Message::Success(description) => {
self.page = Page::Success(description);
},
}
Message::Error(err) => {
self.page = Page::Error(err);
},
}
Message::Exit => {
if let Some(worker) = self.worker_opt.take() {
drop(worker.command_sender);
@@ -450,56 +491,64 @@ impl Application for Window {
fn view(&self) -> Element<Message> {
let mut widgets = Vec::new();
match &self.page {
Page::Disk(disk_i_opt) => if ! self.disk_paths.is_empty() {
widgets.push(text("Choose a drive:").size(24).into());
Page::Disk(disk_i_opt) => {
if !self.disk_paths.is_empty() {
widgets.push(text("Choose a drive:").size(24).into());
for (disk_i, (disk_path, disk_size)) in self.disk_paths.iter().enumerate() {
widgets.push(
row![
radio(disk_path, disk_i, *disk_i_opt, Message::DiskChoose),
horizontal_space(Length::Fill),
text(format_size(*disk_size)),
]
.into()
);
}
for (disk_i, (disk_path, disk_size)) in self.disk_paths.iter().enumerate() {
widgets.push(
row![
radio(disk_path, disk_i, *disk_i_opt, Message::DiskChoose),
horizontal_space(Length::Fill),
text(format_size(*disk_size)),
]
.into(),
);
}
if let Some(disk_i) = *disk_i_opt {
widgets.push(vertical_space(Length::Fill).into());
widgets.push(row![
horizontal_space(Length::Fill),
button("Confirm")
.style(theme::Button::Destructive)
.on_press(Message::DiskConfirm(disk_i)),
].into());
if let Some(disk_i) = *disk_i_opt {
widgets.push(vertical_space(Length::Fill).into());
widgets.push(
row![
horizontal_space(Length::Fill),
button("Confirm")
.style(theme::Button::Destructive)
.on_press(Message::DiskConfirm(disk_i)),
]
.into(),
);
}
} else {
widgets.push(text("No drives found").into());
}
} else {
widgets.push(text("No drives found").into());
},
}
Page::Install(progress, description) => {
widgets.push(text("Installation progress:").size(24).into());
widgets.push(progress_bar(0.0..=100.0, *progress as f32).into());
widgets.push(text(description).into());
},
}
Page::Success(description) => {
widgets.push(text("Installation complete!").size(24).into());
widgets.push(text(description).into());
widgets.push(vertical_space(Length::Fill).into());
widgets.push(row![
horizontal_space(Length::Fill),
button("Exit").on_press(Message::Exit),
].into());
},
widgets.push(
row![
horizontal_space(Length::Fill),
button("Exit").on_press(Message::Exit),
]
.into(),
);
}
Page::Error(err) => {
widgets.push(text(format!("{}", err)).into());
}
};
column(widgets)
.spacing(8)
.padding(24)
.align_items(Alignment::Start)
.into()
.spacing(8)
.padding(24)
.align_items(Alignment::Start)
.into()
}
fn theme(&self) -> Theme {
@@ -513,39 +562,44 @@ impl Application for Window {
Finished,
}
iced::subscription::unfold(std::any::TypeId::of::<Worker>(), State::Ready, |state| async move {
match state {
State::Ready => {
let (command_sender, command_receiver) = std::sync::mpsc::channel();
iced::subscription::unfold(
std::any::TypeId::of::<Worker>(),
State::Ready,
|state| async move {
match state {
State::Ready => {
let (command_sender, command_receiver) = std::sync::mpsc::channel();
let (message_sender, message_receiver) = iced::futures::channel::mpsc::unbounded();
let (message_sender, message_receiver) =
iced::futures::channel::mpsc::unbounded();
//TODO: kill worker thread?
let join_handle = std::thread::spawn(move || {
while let Ok((disk_path, password_opt)) = command_receiver.recv() {
println!("Installing to {:?}", disk_path);
install(disk_path, password_opt, |message| {
message_sender.unbounded_send(message).unwrap();
});
}
});
//TODO: kill worker thread?
let join_handle = std::thread::spawn(move || {
while let Ok((disk_path, password_opt)) = command_receiver.recv() {
println!("Installing to {:?}", disk_path);
install(disk_path, password_opt, |message| {
message_sender.unbounded_send(message).unwrap();
});
}
});
let worker = Worker {
command_sender,
join_handle: Arc::new(join_handle)
};
let worker = Worker {
command_sender,
join_handle: Arc::new(join_handle),
};
(Some(Message::Worker(worker)), State::Waiting(message_receiver))
},
State::Waiting(mut message_receiver) => {
use iced::futures::StreamExt;
match message_receiver.next().await {
Some(message) => (Some(message), State::Waiting(message_receiver)),
None => (None, State::Finished),
(Message::Worker(worker), State::Waiting(message_receiver))
}
},
State::Finished => iced::futures::future::pending().await,
}
})
State::Waiting(mut message_receiver) => {
use iced::futures::StreamExt;
match message_receiver.next().await {
Some(message) => (message, State::Waiting(message_receiver)),
None => (Message::None, State::Finished),
}
}
State::Finished => iced::futures::future::pending().await,
}
},
)
}
}