2
0
mirror of https://github.com/mbusb/multibootusb synced 2024-11-01 15:40:16 +00:00
multibootusb/scripts/mbusb_gui.py

766 lines
35 KiB
Python
Raw Normal View History

2016-11-06 11:18:53 +00:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Name: mbusb_gui.py
# Purpose: Module to handle multibootusb through gui
# Authors: Sundar
# Licence: This file is a part of multibootusb package. You can redistribute it or modify
# under the terms of GNU General Public License, v.2 or above
import os
import platform
import sys
import signal
from PyQt5 import QtCore, QtGui, QtWidgets
import subprocess
import time
2017-04-13 07:39:25 +00:00
from scripts.gui.ui_multibootusb import Ui_MainWindow
from scripts.gui.ui_about import Ui_About
2016-11-06 11:18:53 +00:00
from . import usb
from .gen import *
from .install import *
from .uninstall_distro import *
from .syslinux import *
from .distro import *
2017-04-13 07:39:25 +00:00
from .qemu import *
2016-11-06 11:18:53 +00:00
from .iso import *
2017-04-13 07:39:25 +00:00
#from .imager import *
2016-11-06 11:18:53 +00:00
from .imager import Imager, dd_linux, dd_win
from . import persistence
from . import config
from . import admin
from . import qemu
from .update_cfg_file import update_distro_cfg_files
2017-04-13 07:39:25 +00:00
class AppGui(qemu.Qemu, Imager, QtWidgets.QMainWindow, Ui_MainWindow):
2016-11-06 11:18:53 +00:00
"""
Main multibootusb GUI manipulation class.
"""
def __init__(self):
2017-04-13 07:39:25 +00:00
QtWidgets.QMainWindow.__init__(self)
self.ui = Ui_MainWindow()
2016-11-06 11:18:53 +00:00
self.ui.setupUi(self)
self.ui.tabWidget.setCurrentIndex(0)
2017-04-13 07:39:25 +00:00
# self.qemu = Qemu()
self.ui.label_persistence_value.setVisible(False)
self.ui.label_persistence.setVisible(False)
self.ui.slider_persistence.setVisible(False)
2017-04-13 07:39:25 +00:00
config.usb_disk = None
config.image_path = None
2016-11-06 11:18:53 +00:00
# Main Tab
2017-04-16 21:06:38 +00:00
self.ui.checkbox_all_drives.clicked.connect(self.onAllDrivesClicked)
2017-04-13 07:39:25 +00:00
self.ui.button_detect_drives.clicked.connect(self.onRefreshClick)
self.ui.action_Quit.triggered.connect(self.on_close_Click)
self.ui.action_About.triggered.connect(self.onAboutClick)
self.ui.button_browse_image.clicked.connect(self.browse_iso)
# self.ui.combo_drives.activated[str].connect(self.onComboChange)
self.ui.combo_drives.currentIndexChanged.connect(self.onComboChange)
self.ui.button_install_distro.clicked.connect(self.onCreateClick)
self.ui.button_uninstall_distro.clicked.connect(self.OnUninstallClick)
2016-11-06 11:18:53 +00:00
self.ui.slider_persistence.valueChanged.connect(self.update_slider_text)
2017-04-14 10:56:11 +00:00
# self.ui.slider_persistence.sliderReleased.connect(self.ui_update_persistence)
2016-11-06 11:18:53 +00:00
# ISO Imager Tab
2017-04-13 07:39:25 +00:00
self.ui.button_write_image_to_disk.clicked.connect(self.dd_write)
2016-11-06 11:18:53 +00:00
# Syslinux Tab
2017-04-13 07:39:25 +00:00
self.ui.button_install_syslinux.clicked.connect(self.onInstall_syslinuxClick)
self.ui.button_edit_syslinux.clicked.connect(self.onedit_syslinux)
2016-11-06 11:18:53 +00:00
# QEMU Tab
self.ui.boot_iso_qemu.clicked.connect(self.on_Qemu_Boot_iso_Click)
2017-04-13 07:39:25 +00:00
self.ui.boot_usb_qemu.clicked.connect(self.on_Qemu_Boot_usb_Click)
# self.ui.combo_iso_boot_ram.activated[str].connect(self.qemu_iso_ram)
# self.ui.combo_usb_boot_ram.activated[str].connect(self.qemu_usb_ram)
# self.ui.boot_usb_qemu.clicked.connect(lambda: self.on_Qemu_Boot_usb_Click(str(self.ui.combo_drives.currentText())))
2016-11-06 11:18:53 +00:00
# Update progressbar and status (Main ISO install)
self.progress_thread_install = GuiInstallProgress()
self.progress_thread_install.finished.connect(self.install_syslinux)
2017-04-13 07:39:25 +00:00
self.progress_thread_install.update.connect(self.ui.progressbar.setValue)
self.progress_thread_install.status.connect(self.ui.statusbar.showMessage)
2016-11-06 11:18:53 +00:00
# Update progressbar and status (Uninstall from previous install)
self.progress_thread_uninstall = GuiUninstallProgress()
self.progress_thread_uninstall.finished.connect(self.uninstall_sys_file_update)
2017-04-13 07:39:25 +00:00
self.progress_thread_uninstall.update.connect(self.ui.progressbar.setValue)
self.progress_thread_uninstall.status.connect(self.ui.statusbar.showMessage)
2016-11-06 11:18:53 +00:00
# Update progressbar and status (dd ISO)
self.progress_thread_dd = DD_Progress()
2017-04-13 07:39:25 +00:00
self.progress_thread_dd.update.connect(self.ui.progressbar.setValue)
2016-11-06 11:18:53 +00:00
self.progress_thread_dd.finished.connect(self.dd_finished)
2017-04-13 07:39:25 +00:00
self.progress_thread_dd.status.connect(self.ui.statusbar.showMessage)
2016-11-06 11:18:53 +00:00
prepare_mbusb_host_dir()
self.onRefreshClick()
2016-11-06 11:18:53 +00:00
2017-04-16 21:06:38 +00:00
def onAllDrivesClicked(self):
"""
Include fixed drives to available USB devices.
:return:
"""
if self.ui.checkbox_all_drives.isChecked() is False:
return
reply = QtWidgets.QMessageBox.warning(self, "WARNING!",
"This option enables working with fixed drives\n\
and is potentially VERY DANGEROUS\n\n\
Are you SURE you want to enable it?",
QtWidgets.QMessageBox.Yes|QtWidgets.QMessageBox.No, QtWidgets.QMessageBox.No)
if reply == QtWidgets.QMessageBox.No:
self.ui.checkbox_all_drives.setChecked(False)
elif reply == QtWidgets.QMessageBox.Yes:
self.ui.checkbox_all_drives.setChecked(True)
2017-04-13 07:39:25 +00:00
def onAboutClick(self):
about = QtWidgets.QDialog()
about.ui = Ui_About()
about.ui.setupUi(about)
about.setAttribute(QtCore.Qt.WA_DeleteOnClose)
about.setWindowTitle("About MultiBootUSB - " + mbusb_version())
about.setWindowIcon(QtGui.QIcon(resource_path(os.path.join("data", "tools", "multibootusb.png"))))
about.ui.button_close.clicked.connect(about.close)
about.exec_()
2016-11-06 11:18:53 +00:00
def onComboChange(self):
"""
Detects and updates GUI with populated USB device details.
:return:
"""
2017-04-13 07:39:25 +00:00
self.ui.installed_distros.clear()
config.usb_disk = str(self.ui.combo_drives.currentText())
config.imager_usb_disk = str(self.ui.combo_drives.currentText())
if config.usb_disk:
log("Selected device " + config.usb_disk)
2017-04-14 10:56:11 +00:00
config.persistence_max_size = persistence.max_disk_persistence(config.usb_disk)
2017-04-13 07:39:25 +00:00
self.usb_details = usb.details(config.usb_disk)
2017-04-17 14:03:54 +00:00
# print(self.usb_details)
2017-04-13 07:39:25 +00:00
config.usb_mount = self.usb_details['mount_point']
self.ui.usb_dev.setText(config.usb_disk)
2017-04-17 14:03:54 +00:00
# if platform.system() == 'Windows':
# self.ui.label_usb_vendor.setText("FileSystem:")
# self.ui.usb_vendor.setText(self.usb_details['file_system'])
# self.ui.label_usb_model.setText("Label: ")
# self.ui.usb_model.setText(self.usb_details['label'])
# else:
# self.ui.usb_vendor.setText(self.usb_details['vendor'])
# self.ui.usb_model.setText(self.usb_details['model'])
self.ui.usb_vendor.setText(self.usb_details['vendor'])
self.ui.usb_model.setText(self.usb_details['model'])
2017-04-13 07:39:25 +00:00
self.ui.usb_size.setText(str(usb.bytes2human(self.usb_details['size_total'])))
self.ui.usb_mount.setText(self.usb_details['mount_point'])
2017-04-17 14:03:54 +00:00
self.ui.usb_type.setText(self.usb_details['devtype'])
self.ui.usb_fs.setText(self.usb_details['file_system'])
2017-04-13 07:39:25 +00:00
self.update_list_box(config.usb_disk)
2017-04-14 10:56:11 +00:00
self.ui_update_persistence()
2016-11-06 11:18:53 +00:00
else:
2017-04-13 07:39:25 +00:00
self.ui.usb_dev.clear()
self.ui.usb_vendor.clear()
self.ui.usb_model.clear()
self.ui.usb_size.clear()
self.ui.usb_mount.clear()
2017-04-17 14:03:54 +00:00
self.ui.usb_type.clear()
self.ui.usb_fs.clear()
2017-04-13 07:39:25 +00:00
2016-12-26 17:53:21 +00:00
log("No USB disk found...")
2016-11-06 11:18:53 +00:00
2017-04-13 07:39:25 +00:00
def onRefreshClick(self):
2016-11-06 11:18:53 +00:00
"""
Calls function to detect USB devices.
:return:
"""
2017-04-13 07:39:25 +00:00
self.ui.combo_drives.clear()
# self.ui.imager_disk_label.clear()
# self.ui.label_imager_disk_label.setVisible(False)
# self.ui.imager_total_size.clear()
# self.ui.label_imager_total_size.setVisible(False)
# self.ui.imager_uuid.clear()
# self.ui.label_imager_uuid.setVisible(False)
# self.ui.usb_dev.clear()
# self.ui.label_usb_dev.setVisible(False)
# self.ui.usb_vendor.clear()
# self.ui.label_usb_vendor.setVisible(False)
# self.ui.usb_model.clear()
# self.ui.label_usb_model.setVisible(False)
# self.ui.usb_size.clear()
# self.ui.label_usb_size.setVisible(False)
# self.ui.usb_mount.clear()
# self.ui.label_usb_mount.setVisible(False)
self.ui.combo_drives.clear()
if self.ui.checkbox_all_drives.isChecked():
detected_devices = usb.list_devices(partition=1, fixed=True)
else:
2017-04-13 07:39:25 +00:00
detected_devices = usb.list_devices()
2017-04-16 21:06:38 +00:00
2017-04-13 07:39:25 +00:00
if detected_devices:
for device in detected_devices:
self.ui.combo_drives.addItem(str(device))
2017-04-13 07:39:25 +00:00
self.ui.combo_drives.setCurrentIndex(0)
2016-11-06 11:18:53 +00:00
def update_list_box(self, usb_disk):
"""
Updates listbox with installed distros on selected USB disk.
:param usb_mount: Selected USB disk from combobox.
:return:
"""
distro_list = install_distro_list()
#sys_cfg_file = os.path.join(str(usb_mount), "multibootusb", "syslinux.cfg")
if distro_list is not None:
2017-04-13 07:39:25 +00:00
self.ui.installed_distros.clear()
2016-11-06 11:18:53 +00:00
for name in distro_list:
2017-04-13 07:39:25 +00:00
self.ui.installed_distros.addItem(name)
2016-11-06 11:18:53 +00:00
else:
if config.usb_mount == 'No_Mount':
2017-04-13 07:39:25 +00:00
log("USB disk is not mounted and can't update list widget...")
2016-11-06 11:18:53 +00:00
#QtWidgets.QMessageBox.information(self, 'No Install...',
# 'syslinux.cfg does not exist for updating list widget.')
def browse_iso(self):
2017-04-13 07:39:25 +00:00
if str(self.ui.image_path.text()):
self.ui.image_path.clear()
preference_file_path = os.path.join(multibootusb_host_dir(), "preference", "iso_dir.txt")
dir_path = ''
if os.path.exists(preference_file_path):
dir_path = open(preference_file_path, 'r').read()
config.image_path = QtWidgets.QFileDialog.getOpenFileName(self, 'Select an iso...', dir_path, 'ISO Files (*.iso)')[0]
2017-04-13 07:39:25 +00:00
if config.image_path:
default_dir_path = os.path.dirname(config.image_path)
gen.write_to_file(preference_file_path, default_dir_path)
2016-11-06 11:18:53 +00:00
if platform.system() == "Windows":
2017-04-13 07:39:25 +00:00
if "/" in config.image_path:
config.image_path = config.image_path.strip().replace("/", "\\")
self.ui.image_path.insert(str(config.image_path))
self.ui.label_image_size_value.setText(str(bytes2human(iso_size(config.image_path))))
self.ui.label_image_size_value.setVisible(True)
self.ui.label_image_bootable_value.setText(str(is_bootable(config.image_path)))
self.ui.label_image_bootable_value.setVisible(True)
if os.path.exists(config.image_path):
2016-11-20 10:58:02 +00:00
clean_iso_cfg_ext_dir(os.path.join(multibootusb_host_dir(), "iso_cfg_ext_dir")) # Need to be cleaned.
2017-04-13 07:39:25 +00:00
extract_cfg_file(config.image_path)
config.distro = distro(iso_cfg_ext_dir(), config.image_path) # Detect supported distro
self.ui.label_image_type_value.setText(str(config.distro))
self.ui.label_image_type_value.setVisible(True)
2016-11-06 11:18:53 +00:00
if config.distro:
2017-04-14 10:56:11 +00:00
per_availability = persistence.persistence_distro(config.distro, config.image_path)
2016-11-06 11:18:53 +00:00
if per_availability is not None:
2017-04-14 10:56:11 +00:00
config.persistence_available = True
if config.usb_disk:
per_max_size = persistence.max_disk_persistence(config.usb_disk)
config.persistence_max_size = per_max_size
log('Persistence Max Size: ' + str(bytes2human(per_max_size)))
2016-11-06 11:18:53 +00:00
else:
2017-04-14 10:56:11 +00:00
config.persistence_available = False
2017-04-13 07:39:25 +00:00
log('Persistence is not available for ' + iso_name(config.image_path))
2017-04-14 10:56:11 +00:00
self.ui_update_persistence()
2016-11-06 11:18:53 +00:00
else:
2016-12-26 17:53:21 +00:00
log("File not selected...")
2016-11-06 11:18:53 +00:00
2017-04-14 10:56:11 +00:00
def ui_update_persistence(self):
log("===== config.persistence_available = " + str(config.persistence_available))
log("===== config.persistence_max_size = " + str(config.persistence_max_size))
log("===== config.persistence = " + str(config.persistence))
if config.persistence_available and config.persistence_max_size:
self.ui.label_persistence_value.setVisible(True)
self.ui.label_persistence.setVisible(True)
self.ui.slider_persistence.setVisible(True)
self.ui.label_persistence_value.setEnabled(True)
self.ui.label_persistence.setEnabled(True)
self.ui.slider_persistence.setEnabled(True)
self.ui.slider_persistence.setTickInterval(10)
self.ui.slider_persistence.setSingleStep(10)
self.ui.slider_persistence.setMaximum(config.persistence_max_size / 1024 / 1024)
# log("===== getMaximum = " + self.ui.slider_persistence.getMaximum()
else:
self.ui.label_persistence_value.setEnabled(False)
self.ui.label_persistence.setEnabled(False)
self.ui.slider_persistence.setEnabled(False)
self.ui.label_persistence_value.setVisible(False)
self.ui.label_persistence.setVisible(False)
self.ui.slider_persistence.setVisible(False)
def ui_disable_persistence(self):
self.ui.label_persistence_value.setEnabled(False)
self.ui.label_persistence.setEnabled(False)
self.ui.slider_persistence.setEnabled(False)
self.ui.label_persistence_value.setVisible(False)
self.ui.label_persistence.setVisible(False)
self.ui.slider_persistence.setVisible(False)
2017-04-14 10:56:11 +00:00
2016-11-06 11:18:53 +00:00
def update_slider_text(self):
slide_value = self.ui.slider_persistence.value() * 1024 * 1024
self.ui.label_persistence_value.setText(bytes2human(slide_value))
config.persistence = slide_value
def install_syslinux(self):
"""
Function to install syslinux on distro directory and on selected USB disks.
:return:
"""
2017-04-13 07:39:25 +00:00
self.ui.statusbar.showMessage(str("Status: Installing Syslinux..."))
syslinux_distro_dir(config.usb_disk, config.image_path, config.distro)
2016-11-06 11:18:53 +00:00
syslinux_default(config.usb_disk)
2017-04-13 07:39:25 +00:00
update_distro_cfg_files(config.image_path, config.usb_disk, config.distro, config.persistence)
2016-11-06 11:18:53 +00:00
self.update_list_box(config.usb_disk)
if sys.platform.startswith("linux"):
2017-04-13 07:39:25 +00:00
self.ui.statusbar.showMessage("Status: Sync is in progress...")
2016-11-06 11:18:53 +00:00
os.system('sync')
2017-04-13 07:39:25 +00:00
self.ui.statusbar.showMessage("Status: Idle")
self.ui_disable_persistence()
log(iso_name(config.image_path) + ' has been successfully installed.')
2017-04-13 07:39:25 +00:00
QtWidgets.QMessageBox.information(self, 'Finished...', iso_name(config.image_path) + ' has been successfully installed.')
config.process_exist = None
2016-11-06 11:18:53 +00:00
def onInstall_syslinuxClick(self):
"""
Function to install syslinux/extlinux on selected USB disk.
:return:
"""
if platform.system() == "Linux" or platform.system() == "Windows":
if self.ui.install_sys_all.isChecked() or self.ui.install_sys_only.isChecked():
2016-12-26 17:53:21 +00:00
log("Installing default syslinux on ", config.usb_disk)
2016-11-06 11:18:53 +00:00
ret = syslinux_default(config.usb_disk)
if ret is True:
if self.ui.install_sys_all.isChecked():
2016-12-26 17:53:21 +00:00
log("Copying multibootusb directory to " + config.usb_mount)
2016-11-06 11:18:53 +00:00
for dirpath, dirnames, filenames in os.walk(resource_path(os.path.join("tools", "multibootusb"))):
for f in filenames:
2016-12-26 17:53:21 +00:00
log("Copying " + f)
2016-11-06 11:18:53 +00:00
shutil.copy(resource_path(os.path.join(dirpath, f)), os.path.join(self.usb.get_usb(config.usb_disk).mount, "multibootusb"))
QtWidgets.QMessageBox.information(self, 'Install Success...',
'Syslinux installed successfully on ' + config.usb_disk)
elif ret is False:
QtWidgets.QMessageBox.information(self, 'Install error...',
'Sorry. Syslinux failed to install on ' + config.usb_disk)
else:
QtWidgets.QMessageBox.information(self, 'No selection...',
'Please select one of the option from above.')
def onedit_syslinux(self):
"""
Function to edit main syslinux.cfg file.
:return:
"""
# Function to edit syslinux.cfg file on editors like gedit, notepad etc.
# Suggest me more editor which can be included in to this function.
sys_cfg_file = os.path.join(config.usb_mount, "multibootusb", "syslinux.cfg")
2016-12-26 17:53:21 +00:00
log("Locating " + sys_cfg_file)
2016-11-06 11:18:53 +00:00
editor = ''
if not os.path.exists(sys_cfg_file):
2016-12-26 17:53:21 +00:00
log("syslinux.cfg file not found...")
2016-11-06 11:18:53 +00:00
QtWidgets.QMessageBox.information(self, 'File not found...', 'Sorry. Unable to locate syslinux.cfg file.\n'
'You can only edit syslinux.cfg file generated by multibootusb.')
else:
if platform.system() == "Linux":
for e in config.editors_linux:
if subprocess.call('which ' + e, shell=True) == 0:
2016-12-26 17:53:21 +00:00
log("Editor found is " + e)
2016-11-06 11:18:53 +00:00
editor = e
break
elif platform.system() == "Windows":
for e in config.editors_win:
if not shutil.which(e) is None:
2016-12-26 17:53:21 +00:00
log("Editor found is " + e)
2016-11-06 11:18:53 +00:00
editor = e
break
if not editor:
QtWidgets.QMessageBox.information(self, 'Editor not found...',
'Sorry. Installed editor is not supported by multibootusb\n'
'Edit ' + sys_cfg_file + ' manually.\n')
else:
try:
subprocess.Popen(editor + " '" + sys_cfg_file + "'", shell=True).pid
except OSError:
QtWidgets.QMessageBox.warning(self, 'Error...',
'Failed to open syslinux.cfg file.\n'
'Edit syslinux.cfg file manually.\n')
def OnUninstallClick(self):
"""
Triggers a function to uninstall a selected distro.
:return:
"""
2017-04-13 07:39:25 +00:00
if self.ui.installed_distros.currentItem() is None:
2016-12-26 17:53:21 +00:00
log("Please select a distro from the list.")
2016-11-06 11:18:53 +00:00
QtWidgets.QMessageBox.information(self, 'No selection.', 'Please select a distro from the list.')
else:
2017-04-13 07:39:25 +00:00
config.uninstall_distro_dir_name = str(self.ui.installed_distros.currentItem().text()).strip()
2016-11-06 11:18:53 +00:00
reply = QtWidgets.QMessageBox.question(self, "Review selection...",
"Are you sure to uninstall " + config.uninstall_distro_dir_name,
QtWidgets.QMessageBox.Yes|QtWidgets.QMessageBox.No, QtWidgets.QMessageBox.No)
2016-11-06 11:18:53 +00:00
if reply == QtWidgets.QMessageBox.Yes:
if not os.path.exists(os.path.join(config.usb_mount, 'multibootusb', config.uninstall_distro_dir_name)):
2016-12-26 17:53:21 +00:00
log("Distro install directory not found. Just updating syslinux.cfg file.")
2016-11-06 11:18:53 +00:00
update_sys_cfg_file()
#self.uninstall.update_sys_cfg_file()
else:
self.progress_thread_uninstall.start()
def uninstall_sys_file_update(self):
"""
Function to remove and update uninstall distro text.
:return:
"""
update_sys_cfg_file()
self.update_list_box(config.usb_mount)
if sys.platform.startswith("linux"):
2017-04-13 07:39:25 +00:00
self.ui.statusbar.showMessage("Status: Sync in progress...")
2016-11-06 11:18:53 +00:00
os.system('sync')
2017-04-13 07:39:25 +00:00
self.ui.statusbar.showMessage("Status: Idle")
2016-11-06 11:18:53 +00:00
QtWidgets.QMessageBox.information(self, 'Uninstall Complete...',
config.uninstall_distro_dir_name + ' has been successfully removed.')
def onCreateClick(self):
"""
Main function to create bootable USB disk.
:param usb_disk: ComboBox text as detected USB disk.
:param iso_link: LineEdit text as selected ISO link.
:return:
"""
if not config.usb_disk:
2017-04-13 07:39:25 +00:00
log("ERROR: No USB device found.")
2016-11-06 11:18:53 +00:00
QtWidgets.QMessageBox.information(self, "No Device...",
"No USB device found.\n\nInsert USB and use Refresh USB button to detect USB.")
2017-04-13 07:39:25 +00:00
elif not config.image_path:
log("No ISO selected.")
QtWidgets.QMessageBox.information(self, "No ISO...", "No ISO found.\n\nPlease select an ISO.")
2016-11-06 11:18:53 +00:00
elif usb.details(config.usb_disk)['mount_point'] == 'No_Mount':
2017-04-13 07:39:25 +00:00
log("ERROR: USB disk is not mounted.")
2016-11-06 11:18:53 +00:00
QtWidgets.QMessageBox.information(self, "No Mount...", "USB disk is not mounted.\n"
"Please mount USB disk and press refresh USB button.")
else:
2016-11-20 10:58:02 +00:00
# clean_iso_cfg_ext_dir(os.path.join(multibootusb_host_dir(), "iso_cfg_ext_dir")) # Need to be cleaned.
2017-04-13 07:39:25 +00:00
# extract_cfg_file(config.image_path) # Extract files from ISO
# config.distro = distro(iso_cfg_ext_dir(), config.image_path) # Detect supported distro
2016-12-26 17:53:21 +00:00
usb_details = usb.details(config.usb_disk)
2017-04-13 07:39:25 +00:00
log("MultiBoot Install: USB Disk is " + config.usb_disk)
log("MultiBoot Install: USB Label is " + config.usb_label)
log("MultiBoot Install: USB UUID is " + config.usb_uuid)
log("MultiBoot Install: USB Mount path is " + config.usb_mount)
log("MultiBoot Install: Total size of the disk is " + str(usb.bytes2human(usb_details['size_total'])))
log("MultiBoot Install: Total used size is " + str(usb.bytes2human(usb_details['size_used'])))
log("MultiBoot Install: Total size left on the disk is " + str(usb.bytes2human(usb_details['size_free'])))
log("MultiBoot Install: FileSystem is " + usb_details['file_system'])
log("MultiBoot Install: Vendor is " + usb_details['vendor'])
log("MultiBoot Install: Model is " + usb_details['model'])
log("MultiBoot Install: Name of the ISO file is " + iso_name(config.image_path))
if os.path.exists(config.image_path):
self.ui.image_path.clear()
2016-11-20 10:58:02 +00:00
if config.distro:
2017-04-13 07:39:25 +00:00
log("MultiBoot Install: Distro type detected: " + config.distro)
2016-11-20 10:58:02 +00:00
copy_mbusb_dir_usb(config.usb_disk)
2017-04-13 07:39:25 +00:00
if not os.path.exists(os.path.join(config.usb_mount, "multibootusb", iso_basename(config.image_path))):
2016-12-26 17:53:21 +00:00
config.persistence = self.ui.slider_persistence.value() * 1024 * 1024
2017-04-14 10:56:11 +00:00
log("Persistence chosen is " + str(bytes2human(config.persistence)) + " MB")
2017-04-13 07:39:25 +00:00
install_size = iso_size(config.image_path) + config.persistence
2016-11-20 10:58:02 +00:00
if install_size >= disk_usage(config.usb_mount).free:
2017-04-13 07:39:25 +00:00
log("ERROR: Not enough space available on " + config.usb_disk)
QtWidgets.QMessageBox.information(self, "No Space.", "No space available on " + config.usb_disk)
2016-11-06 11:18:53 +00:00
else:
2016-11-20 10:58:02 +00:00
reply = QtWidgets.QMessageBox.question(self, 'Review selection...',
'Selected USB disk: %s\n' % config.usb_disk +
'USB mount point: %s\n' % config.usb_mount +
2017-04-13 07:39:25 +00:00
'Selected distro: %s\n\n' % iso_name(config.image_path) +
'Proceed with installation?',
QtWidgets.QMessageBox.Yes|QtWidgets.QMessageBox.No, QtWidgets.QMessageBox.No)
2016-11-20 10:58:02 +00:00
if reply == QtWidgets.QMessageBox.Yes:
self.ui.slider_persistence.setEnabled(False)
config.process_exist = True
2016-11-20 10:58:02 +00:00
self.progress_thread_install.start()
2016-11-06 11:18:53 +00:00
else:
QtWidgets.QMessageBox.information(self, 'Already exists...',
2017-04-13 07:39:25 +00:00
os.path.basename(config.image_path) + ' is already installed.')
2016-11-20 10:58:02 +00:00
else:
QtWidgets.QMessageBox.information(self, 'No support...',
2017-04-13 07:39:25 +00:00
'Sorry.\n' + os.path.basename(config.image_path) +
2016-12-26 17:53:21 +00:00
' is not supported at the moment.\n'
2016-11-20 10:58:02 +00:00
'Please email this issue to feedback.multibootusb@gmail.com')
2016-11-06 11:18:53 +00:00
# Added to refresh usb disk remaining size after distro installation
# self.update_gui_usb_info()
def dd_finished(self):
"""
Re-enable the blocked widgets for newer use.
:return:
"""
2017-04-13 07:39:25 +00:00
self.ui.progressbar.setValue(0)
self.ui.statusbar.showMessage("Status: Idle")
self.ui.combo_drives.setEnabled(True)
self.ui.button_browse_image.setEnabled(True)
# self.ui.pushbtn_imager_refreshusb.setEnabled(True)
# self.ui.imager_bootable.setText("Bootable ISO: ")
# self.ui.imager_iso_size.setText("Image Size: ")
config.process_exist = None
msgBox = QtWidgets.QMessageBox()
msgBox.setText("Image succesfully written to USB disk.")
msgBox.setInformativeText("Reboot to boot from USB or test it from <b>Boot ISO/USB</b> tab.");
msgBox.setStandardButtons(QtWidgets.QMessageBox.Ok)
msgBox.setIcon(QtWidgets.QMessageBox.Information)
msgBox.exec()
2016-11-06 11:18:53 +00:00
def dd_start(self):
"""
Function to block the widgets under ISO Imager tab...
:return:
"""
2017-04-13 07:39:25 +00:00
self.ui.progressbar.setValue(0)
self.ui.statusbar.showMessage("Status: Idle")
# FIXME self.ui.lineEdit_3.clear()
self.ui.button_browse_image.setEnabled(False)
self.ui.combo_drives.setEnabled(False)
# FIXME self.ui.pushbtn_imager_refreshusb.setEnabled(False)
status_text = ("Status: Writing " + os.path.basename(config.image_path) + " to " + config.usb_disk)
self.ui.statusbar.showMessage(status_text)
2016-11-06 11:18:53 +00:00
def dd_quit(self):
2017-04-13 07:39:25 +00:00
self.ui.progressbar.setValue(0)
self.ui.statusbar.showMessage("Status: Idle")
self.ui.combo_drives.setEnabled(True)
self.ui.button_browse_image.setEnabled(True)
QtWidgets.QMessageBox.information(self, 'Failed!', 'Failed writing image.')
2016-11-06 11:18:53 +00:00
def dd_write(self):
2017-04-13 07:39:25 +00:00
if not config.usb_disk:
2016-11-06 11:18:53 +00:00
QtWidgets.QMessageBox.information(self, 'No USB...', 'Please Insert USB disk and rerun multibootusb.')
2017-04-13 07:39:25 +00:00
elif not config.image_path:
2016-11-06 11:18:53 +00:00
QtWidgets.QMessageBox.information(self, 'No ISO...', 'Please select an ISO.')
else:
2017-04-13 07:39:25 +00:00
imager = Imager()
usb_disk_size = int(imager.imager_usb_detail(config.usb_disk, partition=0).total_size)
self.iso_size = os.path.getsize(config.image_path)
2016-11-06 11:18:53 +00:00
if self.iso_size >= usb_disk_size:
2017-04-13 07:39:25 +00:00
QtWidgets.QMessageBox.information(self, "No enough space on disk.", os.path.basename(config.image_path) +
" size is larger than the size of " + config.usb_disk)
elif gen.process_exist('explorer.exe') is not False:
# Check if windows explorer is running and inform user to close it.
QtWidgets.QMessageBox.information(self, "Windows Explorer", "Windows Explorer is running\n"
"You need to close it before writing ISO "
"image to disk...")
2016-11-06 11:18:53 +00:00
else:
reply = QtWidgets.QMessageBox.question \
(self, 'Review selection',
2017-04-13 07:39:25 +00:00
'Selected disk: %s\n' % config.usb_disk +
'Selected image: %s\n\n' % os.path.basename(config.image_path) +
'Proceed with writing image to disk?',
QtWidgets.QMessageBox.Yes|QtWidgets.QMessageBox.No, QtWidgets.QMessageBox.No)
2016-11-06 11:18:53 +00:00
if reply == QtWidgets.QMessageBox.Yes:
self.dd_start()
config.process_exist = True
2016-11-06 11:18:53 +00:00
self.progress_thread_dd.start()
def on_close_Click(self):
"""
Closes main GUI.
:return:
"""
self.close()
def closeEvent(self, event):
"""
To capture the main close event.
:param event: Close event.
:return:
"""
if config.process_exist == None:
2016-11-06 11:18:53 +00:00
event.accept()
else:
reply = QtWidgets.QMessageBox.question(self, 'Exit MultiBootUSB...',
"A process is still running.\n"
"Do you really want to quit multibootusb?", QtWidgets.QMessageBox.Yes,
QtWidgets.QMessageBox.No)
if reply == QtWidgets.QMessageBox.Yes:
2016-12-26 17:53:21 +00:00
log("Closing multibootusb...")
event.accept()
sys.exit(0)
else:
2016-12-26 17:53:21 +00:00
log("Close event cancelled.")
event.ignore()
2016-11-06 11:18:53 +00:00
class GuiInstallProgress(QtCore.QThread):
"""
Update GUI thread during install.
"""
update = QtCore.pyqtSignal(int)
status = QtCore.pyqtSignal(str)
finished = QtCore.pyqtSignal()
def __init__(self):
QtCore.QThread.__init__(self)
def __del__(self):
self.wait()
def run(self):
2017-04-13 07:39:25 +00:00
install_dir = os.path.join(config.usb_mount, "multibootusb", iso_basename(config.image_path))
2016-11-06 11:18:53 +00:00
self.thread = GenericThread(install_progress)
2017-04-13 07:39:25 +00:00
status_text = "Status: "
2016-11-06 11:18:53 +00:00
self.thread.start()
while self.thread.isRunning():
if config.status_text.strip():
config.status_text = config.status_text.replace(install_dir + "/", "Extracting ")
self.update.emit(config.percentage)
self.status.emit(config.status_text)
if not self.thread.isFinished() and config.percentage == 100:
2017-04-13 07:39:25 +00:00
config.status_text = "Status: Please wait..."
self.status.emit("Status: Please wait...")
2016-11-06 11:18:53 +00:00
self.update.emit(100)
self.update.emit(0)
2017-04-13 07:39:25 +00:00
self.status.emit("Status: Installing boot loader...")
2016-11-06 11:18:53 +00:00
if self.thread.isFinished():
config.status_text = ""
self.finished.emit()
2016-12-26 17:53:21 +00:00
log("Distro extraction completed...")
2016-11-06 11:18:53 +00:00
return
class GuiUninstallProgress(QtCore.QThread):
"""
Update GUI thread during uninstall.
"""
update = QtCore.pyqtSignal(int)
status = QtCore.pyqtSignal(str)
finished = QtCore.pyqtSignal()
def __init__(self):
QtCore.QThread.__init__(self)
self.thread = GenericThread(uninstall_progress)
def __del__(self):
self.wait()
def run(self):
self.thread.start()
while self.thread.isRunning():
self.update.emit(config.percentage)
self.status.emit(config.status_text)
if not self.thread.isFinished() and config.percentage == 100:
config.status_text = "Please wait..."
self.update.emit(100)
self.update.emit(0)
config.percentage = 0
self.status.emit("Updating syslinux.cfg file...")
if self.thread.isFinished():
config.status_text = ""
self.finished.emit()
2016-12-26 17:53:21 +00:00
log("Distro uninstall is complete...")
2016-11-06 11:18:53 +00:00
return
class DD_Progress(QtCore.QThread):
"""
Update GUI progress bar without blocking rest of GUI element when dd process is in progress.
"""
update = QtCore.pyqtSignal(int)
status = QtCore.pyqtSignal(str)
finished = QtCore.pyqtSignal()
def __init__(self):
QtCore.QThread.__init__(self)
if platform.system() == 'Linux':
self.thread = GenericThread(dd_linux)
elif platform.system() == 'Windows':
self.thread = GenericThread(dd_win)
def __del__(self):
self.wait()
def run(self):
self.thread.start()
while self.thread.isRunning():
if config.imager_percentage:
self.update.emit(config.imager_percentage)
if not self.thread.isFinished() and config.percentage == 100:
config.imager_status_text = ""
self.status.emit("Please wait...")
self.update.emit(100)
self.update.emit(0)
if self.thread.isFinished():
config.status_text = ""
self.finished.emit()
return
class GenericThread(QtCore.QThread):
def __init__(self, function, *args, **kwargs):
QtCore.QThread.__init__(self)
self.function = function
self.args = args
self.kwargs = kwargs
def __del__(self):
self.wait()
def run(self):
self.function(*self.args, **self.kwargs)
return
def show_admin_info():
"""
Show simple information box reminding user to run the software with admin/root privilege.
Only required under Linux as the windows executable always will start with admin privilege.
:return:
"""
msg = QtWidgets.QMessageBox()
msg.setIcon(QtWidgets.QMessageBox.Information)
msg.setText('Admin privilege is required to run multibootusb.\n If you are running from source try '
'\'sudo python3 ./multibootusb\'\n or you can try \'multibootusb-pkexec\' (post install)')
msg.exec_()
2016-11-06 11:18:53 +00:00
def main_gui():
app = QtWidgets.QApplication(sys.argv)
2017-04-13 07:39:25 +00:00
# ui_about = Ui_About()
# ui = Ui_MainWindow()
2016-11-06 11:18:53 +00:00
window = AppGui()
window.show()
window.setWindowTitle("MultiBootUSB - " + mbusb_version())
window.setWindowIcon(QtGui.QIcon(resource_path(os.path.join("data", "tools", "multibootusb.png"))))
2017-04-13 07:39:25 +00:00
if platform.system() == 'Linux':
if os.getuid() != 0:
show_admin_info()
2016-11-06 11:18:53 +00:00
sys.exit(app.exec_())