2024-08-17 00:15:03 +02:00
|
|
|
use adw::gio;
|
|
|
|
use crate::installer_stack_page;
|
|
|
|
use gtk::{prelude::*, glib as glib};
|
2024-08-18 00:17:57 +02:00
|
|
|
use crate::partitioning_page::{get_partitions, CrypttabEntry, FstabEntry, Partition};
|
|
|
|
use crate::drive_mount_row::{DriveMountRow};
|
2024-08-17 00:15:03 +02:00
|
|
|
use adw::{prelude::*};
|
|
|
|
use glib::{clone, closure_local, ffi::gboolean};
|
|
|
|
use std::{rc::Rc, cell::RefCell};
|
|
|
|
|
|
|
|
const MINIMUM_EFI_BYTE_SIZE: f64 = 500000000.0;
|
|
|
|
const MINIMUM_BOOT_BYTE_SIZE: f64 = 1000000000.0;
|
|
|
|
const MINIMUM_ROOT_BYTE_SIZE: f64 = 39000000000.0;
|
|
|
|
|
|
|
|
pub fn manual_partitioning_page(
|
|
|
|
partition_carousel: &adw::Carousel,
|
|
|
|
partition_method_type_refcell: &Rc<RefCell<String>>,
|
2024-08-18 00:17:57 +02:00
|
|
|
partition_method_manual_fstab_entry_array_refcell: &Rc<RefCell<Vec<FstabEntry>>>,
|
2024-08-17 00:15:03 +02:00
|
|
|
partition_method_manual_luks_enabled_refcell: &Rc<RefCell<bool>>,
|
2024-08-18 00:17:57 +02:00
|
|
|
partition_method_manual_crypttab_entry_array_refcell: &Rc<RefCell<Vec<CrypttabEntry>>>,
|
2024-08-17 00:15:03 +02:00
|
|
|
language_changed_action: &gio::SimpleAction
|
|
|
|
) {
|
|
|
|
let manual_partitioning_page = installer_stack_page::InstallerStackPage::new();
|
|
|
|
manual_partitioning_page.set_page_icon("emblem-system-symbolic");
|
|
|
|
manual_partitioning_page.set_back_visible(true);
|
|
|
|
manual_partitioning_page.set_next_visible(true);
|
|
|
|
manual_partitioning_page.set_back_sensitive(true);
|
|
|
|
manual_partitioning_page.set_next_sensitive(false);
|
|
|
|
|
2024-08-18 00:17:57 +02:00
|
|
|
let partition_array_refcell = Rc::new(RefCell::new(get_partitions()));
|
2024-08-18 18:56:31 +02:00
|
|
|
let used_partition_array_refcell: Rc<RefCell<Vec<String>>> = Rc::new(RefCell::default());
|
|
|
|
let do_used_part_check_refcell = Rc::new(RefCell::new(true));
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
let partition_changed_action = gio::SimpleAction::new("partition-changed", None);
|
2024-08-18 00:17:57 +02:00
|
|
|
|
2024-08-17 00:15:03 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
let content_box = gtk::Box::builder()
|
|
|
|
.orientation(gtk::Orientation::Vertical)
|
|
|
|
.hexpand(true)
|
|
|
|
.vexpand(true)
|
|
|
|
.build();
|
|
|
|
|
2024-08-18 18:56:31 +02:00
|
|
|
let drive_mounts_adw_listbox = gtk::ListBox::builder()
|
|
|
|
.selection_mode(gtk::SelectionMode::None)
|
|
|
|
.build();
|
2024-08-18 00:17:57 +02:00
|
|
|
drive_mounts_adw_listbox.add_css_class("boxed-list");
|
2024-08-18 18:56:31 +02:00
|
|
|
drive_mounts_adw_listbox.add_css_class("round-all-scroll");
|
|
|
|
|
|
|
|
let drive_mounts_viewport =
|
|
|
|
gtk::ScrolledWindow::builder()
|
2024-08-18 00:17:57 +02:00
|
|
|
.vexpand(true)
|
2024-08-18 18:56:31 +02:00
|
|
|
.hexpand(true)
|
|
|
|
.has_frame(true)
|
2024-08-18 00:17:57 +02:00
|
|
|
.child(&drive_mounts_adw_listbox)
|
|
|
|
.build();
|
|
|
|
|
2024-08-18 18:56:31 +02:00
|
|
|
drive_mounts_viewport.add_css_class("round-all-scroll");
|
|
|
|
|
|
|
|
let drive_mount_add_button = gtk::Button::builder()
|
2024-08-18 00:17:57 +02:00
|
|
|
.icon_name("list-add")
|
|
|
|
.vexpand(true)
|
|
|
|
.hexpand(true)
|
|
|
|
.build();
|
|
|
|
|
2024-08-18 18:56:31 +02:00
|
|
|
drive_mounts_adw_listbox.append(&drive_mount_add_button);
|
|
|
|
content_box.append(&drive_mounts_viewport);
|
2024-08-17 00:15:03 +02:00
|
|
|
|
2024-08-18 00:17:57 +02:00
|
|
|
|
2024-08-18 18:56:31 +02:00
|
|
|
drive_mount_add_button.connect_clicked(clone!(
|
|
|
|
#[weak]
|
|
|
|
drive_mounts_adw_listbox,
|
|
|
|
#[strong]
|
|
|
|
partition_array_refcell,
|
|
|
|
#[strong]
|
|
|
|
partition_method_manual_fstab_entry_array_refcell,
|
|
|
|
move |_|
|
|
|
|
{
|
|
|
|
drive_mounts_adw_listbox.append(&create_mount_row(&drive_mounts_adw_listbox, &partition_array_refcell.borrow(), &partition_changed_action, &used_partition_array_refcell, &do_used_part_check_refcell))
|
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
2024-08-18 00:17:57 +02:00
|
|
|
|
|
|
|
//
|
2024-08-17 00:15:03 +02:00
|
|
|
manual_partitioning_page.connect_closure(
|
|
|
|
"back-button-pressed",
|
|
|
|
false,
|
|
|
|
closure_local!(
|
|
|
|
#[weak]
|
|
|
|
partition_carousel,
|
|
|
|
move |_manual_partitioning_page: installer_stack_page::InstallerStackPage|
|
|
|
|
{
|
|
|
|
partition_carousel.scroll_to(&partition_carousel.nth_page(0), true)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
manual_partitioning_page.connect_closure(
|
|
|
|
"next-button-pressed",
|
|
|
|
false,
|
|
|
|
closure_local!(
|
|
|
|
#[weak]
|
|
|
|
partition_carousel,
|
|
|
|
#[strong]
|
|
|
|
partition_method_type_refcell,
|
|
|
|
#[strong]
|
2024-08-18 00:17:57 +02:00
|
|
|
partition_method_manual_fstab_entry_array_refcell,
|
2024-08-17 00:15:03 +02:00
|
|
|
#[strong]
|
|
|
|
partition_method_manual_luks_enabled_refcell,
|
|
|
|
#[strong]
|
2024-08-18 00:17:57 +02:00
|
|
|
partition_method_manual_crypttab_entry_array_refcell,
|
2024-08-17 00:15:03 +02:00
|
|
|
move |_automatic_partitioning_page: installer_stack_page::InstallerStackPage|
|
|
|
|
{
|
|
|
|
*partition_method_type_refcell.borrow_mut() = String::from("manual");
|
|
|
|
//partition_carousel.scroll_to(&partition_carousel.nth_page(5), true)
|
|
|
|
dbg!(partition_method_type_refcell.borrow());
|
2024-08-18 00:17:57 +02:00
|
|
|
//dbg!(partition_method_manual_fstab_entry_array_refcell.borrow());
|
2024-08-17 00:15:03 +02:00
|
|
|
dbg!(partition_method_manual_luks_enabled_refcell.borrow());
|
2024-08-18 00:17:57 +02:00
|
|
|
//dbg!(partition_method_manual_crypttab_entry_array_refcell.borrow());
|
2024-08-17 00:15:03 +02:00
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
manual_partitioning_page.set_child_widget(&content_box);
|
|
|
|
|
|
|
|
partition_carousel.append(&manual_partitioning_page);
|
|
|
|
|
2024-08-18 18:56:31 +02:00
|
|
|
//
|
|
|
|
language_changed_action.connect_activate(clone!(
|
|
|
|
#[weak]
|
|
|
|
manual_partitioning_page,
|
|
|
|
move |_, _| {
|
|
|
|
manual_partitioning_page.set_page_title(t!("manual_part_installer"));
|
|
|
|
manual_partitioning_page.set_page_subtitle(t!("manual_part_info"));
|
|
|
|
manual_partitioning_page.set_back_tooltip_label(t!("back"));
|
|
|
|
manual_partitioning_page.set_next_tooltip_label(t!("next"));
|
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
//
|
2024-08-18 00:17:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn create_mount_row(
|
|
|
|
listbox: >k::ListBox,
|
|
|
|
partition_array: &Vec<Partition>,
|
2024-08-18 18:56:31 +02:00
|
|
|
partition_changed_action: &gio::SimpleAction,
|
|
|
|
used_partition_array_refcell: &Rc<RefCell<Vec<String>>>,
|
|
|
|
do_used_part_check_refcell: &Rc<RefCell<bool>>,
|
2024-08-18 00:17:57 +02:00
|
|
|
) -> DriveMountRow {
|
2024-08-18 19:05:02 +02:00
|
|
|
let partition_scroll_child = gtk::ListBox::builder()
|
|
|
|
.selection_mode(gtk::SelectionMode::None)
|
|
|
|
.build();
|
2024-08-18 00:17:57 +02:00
|
|
|
|
|
|
|
let partitions_scroll = gtk::ScrolledWindow::builder()
|
|
|
|
.hexpand(true)
|
|
|
|
.vexpand(true)
|
|
|
|
.child(&partition_scroll_child)
|
|
|
|
.build();
|
|
|
|
|
|
|
|
// Create row
|
|
|
|
let row = DriveMountRow::new_with_scroll(&partitions_scroll);
|
|
|
|
|
2024-08-18 19:05:02 +02:00
|
|
|
row.set_deletable(true);
|
|
|
|
|
2024-08-18 00:17:57 +02:00
|
|
|
let null_checkbutton = gtk::CheckButton::builder().build();
|
|
|
|
|
|
|
|
for partition in partition_array {
|
|
|
|
let part_name = &partition.part_name.to_owned();
|
|
|
|
let partition_button = gtk::CheckButton::builder()
|
|
|
|
.valign(gtk::Align::Center)
|
|
|
|
.can_focus(false)
|
|
|
|
.build();
|
|
|
|
partition_button.set_group(Some(&null_checkbutton));
|
|
|
|
let partition_row: adw::ActionRow =
|
|
|
|
if partition.need_mapper {
|
|
|
|
let prow = adw::ActionRow::builder()
|
|
|
|
.activatable_widget(&partition_button)
|
|
|
|
.title(part_name)
|
|
|
|
.name(part_name)
|
2024-08-18 02:20:30 +02:00
|
|
|
.subtitle(t!("part_need_mapper").to_string() + " " + &pretty_bytes::converter::convert(partition.part_size))
|
|
|
|
.sensitive(false)
|
2024-08-18 00:17:57 +02:00
|
|
|
.build();
|
|
|
|
prow
|
2024-08-18 18:56:31 +02:00
|
|
|
}
|
|
|
|
else if used_partition_array_refcell.clone().borrow().iter().any(|e| part_name == e && part_name != &row.partition()) {
|
|
|
|
let prow = adw::ActionRow::builder()
|
|
|
|
.activatable_widget(&partition_button)
|
|
|
|
.title(part_name)
|
|
|
|
.name(part_name)
|
|
|
|
.subtitle(String::from(&partition.part_fs) + " " + &pretty_bytes::converter::convert(partition.part_size))
|
|
|
|
.sensitive(false)
|
|
|
|
.build();
|
|
|
|
prow
|
2024-08-18 00:17:57 +02:00
|
|
|
} else {
|
|
|
|
let prow = adw::ActionRow::builder()
|
|
|
|
.activatable_widget(&partition_button)
|
|
|
|
.title(part_name)
|
|
|
|
.name(part_name)
|
2024-08-18 02:20:30 +02:00
|
|
|
.subtitle(String::from(&partition.part_fs) + " " + &pretty_bytes::converter::convert(partition.part_size))
|
2024-08-18 00:17:57 +02:00
|
|
|
.build();
|
|
|
|
prow
|
|
|
|
};
|
|
|
|
partition_row.add_prefix(&partition_button);
|
|
|
|
partition_button.connect_toggled(clone!(
|
|
|
|
#[weak]
|
|
|
|
row,
|
|
|
|
#[weak]
|
|
|
|
partition_button,
|
|
|
|
#[strong]
|
2024-08-18 18:56:31 +02:00
|
|
|
partition_changed_action,
|
|
|
|
#[strong]
|
|
|
|
used_partition_array_refcell,
|
|
|
|
#[strong]
|
2024-08-18 00:17:57 +02:00
|
|
|
partition,
|
|
|
|
move |_|
|
|
|
|
{
|
|
|
|
if partition_button.is_active() == true {
|
|
|
|
let part_name = &partition.part_name;
|
2024-08-18 02:20:30 +02:00
|
|
|
row.set_partition(part_name.to_string());
|
2024-08-18 18:56:31 +02:00
|
|
|
(*used_partition_array_refcell.borrow_mut()).push(part_name.to_string());
|
|
|
|
} else {
|
|
|
|
(*used_partition_array_refcell.borrow_mut()).retain(|x| x != &partition.part_name);
|
|
|
|
}
|
|
|
|
partition_changed_action.activate(None);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
partition_changed_action.connect_activate(clone!(
|
|
|
|
#[strong]
|
|
|
|
partition_row,
|
|
|
|
#[strong]
|
|
|
|
row,
|
|
|
|
#[strong]
|
|
|
|
partition,
|
|
|
|
#[strong]
|
|
|
|
used_partition_array_refcell,
|
|
|
|
#[strong]
|
|
|
|
do_used_part_check_refcell,
|
|
|
|
move |_, _| {
|
|
|
|
if *do_used_part_check_refcell.borrow() == true {
|
|
|
|
let part_name = &partition.part_name;
|
|
|
|
let used_partition_array = used_partition_array_refcell.borrow();
|
|
|
|
if used_partition_array.iter().any(|e| part_name == e && part_name != &row.partition()) {
|
|
|
|
partition_row.set_sensitive(false);
|
|
|
|
} else {
|
|
|
|
partition_row.set_sensitive(true);
|
|
|
|
}
|
2024-08-18 00:17:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
partition_scroll_child.append(&partition_row);
|
|
|
|
}
|
|
|
|
|
|
|
|
let listbox_clone = listbox.clone();
|
|
|
|
row.connect_closure(
|
|
|
|
"row-deleted",
|
|
|
|
false,
|
|
|
|
closure_local!(
|
|
|
|
#[strong]
|
|
|
|
row,
|
2024-08-18 19:05:02 +02:00
|
|
|
#[strong]
|
|
|
|
used_partition_array_refcell,
|
|
|
|
#[strong]
|
|
|
|
partition_changed_action,
|
2024-08-18 00:17:57 +02:00
|
|
|
move |row: DriveMountRow|
|
|
|
|
{
|
|
|
|
listbox_clone.remove(&row);
|
2024-08-18 19:05:02 +02:00
|
|
|
(*used_partition_array_refcell.borrow_mut()).retain(|x| x != &row.partition());
|
|
|
|
partition_changed_action.activate(None);
|
2024-08-18 00:17:57 +02:00
|
|
|
}
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Return row
|
|
|
|
row
|
2024-08-17 00:15:03 +02:00
|
|
|
}
|