usbinstall/src/usbinstall.py

404 lines
13 KiB
Python
Raw Normal View History

2012-01-07 20:52:28 +01:00
#!/usr/bin/python
2011-11-09 22:51:07 +01:00
# -*- coding: utf-8 -*-
2011-11-13 18:04:35 +01:00
# Copyright 2011 michiamophil (openmamba user :-)
# ChangeLog:
# (michiamophil on 11/11/11) Rewrited all the graphic code and removed gui.py
2011-11-09 22:51:07 +01:00
2011-11-13 18:04:35 +01:00
from PyQt4 import QtGui, QtCore
2011-11-09 22:51:07 +01:00
from subprocess import Popen
2012-02-20 20:06:52 +01:00
import signal
2011-11-13 18:04:35 +01:00
import gettext # To translate
2011-11-09 22:51:07 +01:00
import gobject
import dbus
import dbus.service
from dbus.mainloop.glib import DBusGMainLoop
if getattr(dbus, 'version', (0,0,0)) >= (0,41,0):
import dbus.glib
2011-11-13 18:04:35 +01:00
#=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
#1)-------------------------------(VARIABILI)----------------------------------------
#=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
# Icons
img_help = "/usr/share/icons/gnome/24x24/status/dialog-question.png"
img_fOpen = "/usr/share/icons/gnome/32x32/actions/document-open.png"
img_refresh = "/usr/share/icons/gnome/24x24/actions/view-refresh.png"
img_pach1 = "/usr/share/openmamba/usbinstall/img/pach1.png"
img_cloud = "/usr/share/openmamba/usbinstall/img/nuvola.png"
img_exit = "/usr/share/openmamba/usbinstall/img/exit.png"
window_icon = "/usr/share/icons/hicolor/32x32/apps/mamba.png"
# Global path
path_cpio = ""
path_iso = ""
path_dev = ""
# General vars
dev_model = ""
a_path_dev = [] # Array of choosen devices
a_dev_model = [] # Their models.
step = 1
2011-11-13 18:04:35 +01:00
choose_type = "" # Type of dialog in choose_file()
#1)###############################(VARIABILI)########################################
#=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
#2)-------------------------------(WINDOW CODE)--------------------------------------
#=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
# Contains program's graphic
class create_window(QtGui.QDialog):
# Call when is called create_window()
def __init__(self):
super(create_window, self).__init__() # Register eventClose()
self.add_elements()
# Write window and objects
def add_elements(self):
# Window proprieties
self.resize(500, 405)
self.setWindowIcon(QtGui.QIcon(window_icon))
# Background image
self.i_back = QtGui.QLabel(self)
self.i_back.setGeometry(QtCore.QRect(10, 10, 480, 300))
# Description label
self.l_descr = QtGui.QLabel(self)
2012-02-21 00:17:51 +01:00
self.l_descr.setGeometry(QtCore.QRect(10, 317, 351, 31))
2011-11-13 18:04:35 +01:00
# Orizontal line
self.line = QtGui.QFrame(self)
self.line.setGeometry(QtCore.QRect(10, 350, 481, 20))
self.line.setFrameShape(QtGui.QFrame.HLine)
self.line.setFrameShadow(QtGui.QFrame.Sunken)
# "Next" button
self.b_next = QtGui.QPushButton(self)
self.b_next.setGeometry(QtCore.QRect(400, 370, 90, 29))
self.b_next.setText(_("Go on"))
# "Go Back" button
self.b_back = QtGui.QPushButton(self)
self.b_back.setGeometry(QtCore.QRect(300, 370, 90, 29))
# "Help" button
self.b_help = QtGui.QPushButton(QtGui.QIcon(img_help), "", self)
self.b_help.setGeometry(QtCore.QRect(464, 320, 26, 26))
self.b_help.setIconSize(QtCore.QSize(24, 24))
self.b_help.setFlat(True)
# Path line edit
self.t_file = QtGui.QLineEdit(self)
self.t_file.setGeometry(QtCore.QRect(212, 321, 222, 25))
# Pach line edit
self.pach1 = QtGui.QLabel(self)
self.pach1.setGeometry(QtCore.QRect(430, 320, 32, 27))
self.pach1.setPixmap(QtGui.QPixmap(img_pach1))
# Open file button
self.b_open_file = QtGui.QPushButton(QtGui.QIcon(img_fOpen), "", self)
self.b_open_file.setGeometry(QtCore.QRect(431, 320, 31, 27))
self.b_open_file.setFlat(True)
# Help dialog image
self.i_cloud = QtGui.QLabel(self)
self.i_cloud.setGeometry(QtCore.QRect(289, 200, 211, 121))
self.i_cloud.setPixmap(QtGui.QPixmap(img_cloud))
self.i_cloud.hide()
# Help dialog text
self.l_cloud = QtGui.QLabel(self)
self.l_cloud.setGeometry(QtCore.QRect(298, 200, 181, 101))
self.l_cloud.setOpenExternalLinks(True)
self.l_cloud.setWordWrap(True)
self.l_cloud.hide()
# Help dialog exit
self.b_cloud = QtGui.QPushButton(QtGui.QIcon(img_exit), "", self)
self.b_cloud.setGeometry(QtCore.QRect(471, 202, 14, 14))
self.b_cloud.setFlat(True)
self.b_cloud.hide()
# Refresh button
self.b_refresh = QtGui.QPushButton(QtGui.QIcon(img_refresh), "", self)
self.b_refresh.setGeometry(QtCore.QRect(435, 320, 26, 26))
self.b_refresh.setIconSize(QtCore.QSize(24, 24))
self.b_refresh.setFlat(True)
# List of usb (combobox)
self.c_usb = QtGui.QComboBox(self)
self.c_usb.setGeometry(QtCore.QRect(158, 320, 271, 25))
# Progressbar
self.p_install = QtGui.QProgressBar(self)
self.p_install.setGeometry(QtCore.QRect(10, 354, 480, 36))
self.p_install.hide()
# Show the window
self.show()
# Intercept close event
def closeEvent(self, event):
2012-02-20 20:06:52 +01:00
msg = QtGui.QMessageBox.question(window, _("Attention"), _("Are you sure to abort?"), QtGui.QMessageBox.Yes | QtGui.QMessageBox.No, QtGui.QMessageBox.No)
# Exit if was pressed yes button
if msg == QtGui.QMessageBox.Yes:
end_forced()
else:
event.ignore()
2011-11-13 18:04:35 +01:00
#2)###############################(WINDOW CODE)######################################
#=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
#3)-----------------------------(EVENTS HANDLER)-------------------------------------
#=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
2012-02-20 20:06:52 +01:00
# Add SIGNINT event
#signal.signal(signal.SIGINT, zz)
2011-11-13 18:04:35 +01:00
def add_events():
app.connect(window.b_next, QtCore.SIGNAL('clicked()'), go_on) # Event n°1
app.connect(window.b_back, QtCore.SIGNAL('clicked()'), go_back) # Event n°2
app.connect(window.b_open_file, QtCore.SIGNAL('clicked()'), choose_file) # Event n°3
app.connect(window.b_help, QtCore.SIGNAL('clicked()'), manage_cloud) # Event n°4
app.connect(window.b_cloud, QtCore.SIGNAL('clicked()'), close_cloud) # Event n°5
app.connect(window.b_refresh, QtCore.SIGNAL('clicked()'), get_list) # Event n°6
app.connect(window.c_usb, QtCore.SIGNAL("activated(int)"), set_usb) # Event n°7
# Event n°1
def go_on():
global step, path_cpio, path_iso, path_dev, dev_model
cloud_hide()
# Step 1 to 2
2011-11-13 18:04:35 +01:00
if step == 1:
if path_iso == "":
2011-11-09 22:51:07 +01:00
msg_warn(_("An openmamba's iso is required"))
return
else:
2011-11-13 18:04:35 +01:00
step += 1
step2()
# Step 2 to 3
elif step == 2:
2011-11-13 18:04:35 +01:00
if path_dev == "":
2011-11-09 22:51:07 +01:00
msg_warn(_("You must choose a usb key"))
return
else:
2011-11-13 18:04:35 +01:00
msg = QtGui.QMessageBox.question(window, _("Attention"), _("All data on the key ") + dev_model + _(" will be lost. \n")+ _("Are you sure to continue?"),
QtGui.QMessageBox.Yes | QtGui.QMessageBox.No, QtGui.QMessageBox.No)
# Go on only if was pressed yes button
2011-11-09 22:51:07 +01:00
if msg == QtGui.QMessageBox.Yes:
2011-11-13 18:04:35 +01:00
step += 1
step3()
2011-11-09 22:51:07 +01:00
else:
return
2011-11-13 18:04:35 +01:00
# Event n°2
def go_back():
global step
step -= 1
cloud_hide()
obj_chang_hide()
# Step 1 to 0 -> exit
2011-11-13 18:04:35 +01:00
if step == 0:
2011-11-09 22:51:07 +01:00
app.exit(1)
print _("Application terminated by pressing \"cancel\" button")
# Step 2 to 1
2011-11-13 18:04:35 +01:00
elif step == 1:
step1()
# Step 3 to 2
2011-11-13 18:04:35 +01:00
elif step == 2:
step2()
# Event n°3
def choose_file():
global path_cpio, path_iso, choose_type
# if step is 1
if choose_type == "iso":
2011-11-13 18:04:35 +01:00
nfileName = QtGui.QFileDialog.getOpenFileName(window, _("Choose the iso file"), "/home", "File .iso (*.iso)", "iso *.iso")
path_iso = nfileName
window.t_file.setText(nfileName)
# Event n°4
def manage_cloud():
global step
if step == 1:
2011-11-09 22:51:07 +01:00
aiuto = _("The file .iso contains the operating system. You can download it from <a style=\"color: green; \"href=\"http://www.openmamba.org/distribution/download.html?lang=en\">here</a>")
elif step == 2:
2011-11-09 22:51:07 +01:00
aiuto = _("Choose an usb key for the installation. <span style=\"color:red;\">All data will be lost</span>")
2011-11-13 18:04:35 +01:00
window.l_cloud.setText(aiuto)
cloud_show()
# Event n°5
def close_cloud():
cloud_hide()
# Event n°6
def get_list():
global a_path_dev, a_dev_model
2011-11-09 22:51:07 +01:00
2011-11-13 18:04:35 +01:00
# Clear array and comboBox
a_path_dev = []
a_dev_model = []
window.c_usb.clear()
2011-11-09 22:51:07 +01:00
i = 0
2011-11-13 18:04:35 +01:00
# Get list form dbus
2011-11-09 22:51:07 +01:00
bus = dbus.SystemBus()
ud_manager_obj = bus.get_object('org.freedesktop.UDisks', '/org/freedesktop/UDisks')
ud_manager = dbus.Interface(ud_manager_obj, 'org.freedesktop.UDisks')
for dev in ud_manager.EnumerateDevices():
device_obj = bus.get_object('org.freedesktop.UDisks', dev)
device_props = dbus.Interface(device_obj, dbus.PROPERTIES_IFACE)
# If dev.space > 850 MB
if(device_props.Get('org.freedesktop.UDisks.Device', 'PartitionSize')) > 891289600:
2011-11-13 18:04:35 +01:00
# If dev is removable
2011-11-09 22:51:07 +01:00
if(device_props.Get('org.freedesktop.UDisks.Device', 'DeviceIsRemovable')):
2011-11-13 18:04:35 +01:00
# Populate the arrays
a_path_dev.append(device_props.Get('org.freedesktop.UDisks.Device', 'DeviceFile'))
a_dev_model.append(device_props.Get('org.freedesktop.UDisks.Device', 'DriveModel'))
# And add element to comboBox
window.c_usb.addItem(a_path_dev[i] + " " + a_dev_model[i])
2011-11-09 22:51:07 +01:00
i += 1
2011-11-13 18:04:35 +01:00
# First dev is default
if len(a_path_dev) != 0:
set_usb(0)
2011-11-09 22:51:07 +01:00
else:
print _("No usb available > 1 Gb")
2011-11-13 18:04:35 +01:00
# Event n°7
def set_usb(i):
global path_dev, dev_model, a_path_dev, a_dev_model
path_dev = a_path_dev[i]
dev_model = a_dev_model[i]
#3)#############################(EVENTS HANDLER)#####################################
2011-11-09 22:51:07 +01:00
2011-11-13 18:04:35 +01:00
#=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
#4)-------------------------------(DBUS CODE)----------------------------------------
#=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
# Class for dbus_start()
class set_dbus(dbus.service.Object):
def __init__(self, bus_name, object_path='/org/openmamba/usbinstall'):
dbus.service.Object.__init__(self, bus_name, object_path)
2011-11-09 22:51:07 +01:00
2011-11-13 18:04:35 +01:00
@dbus.service.method('org.openmamba.usbinstall')
def Set_progressBar(self, p):
window.p_install.setProperty("value", int(p))
2012-02-20 20:06:52 +01:00
return 0
@dbus.service.method('org.openmamba.usbinstall')
def Exit(self, errMsg):
if errMsg == "":
2011-11-13 18:04:35 +01:00
end_with_success()
2012-02-20 20:06:52 +01:00
else:
msg = QtGui.QMessageBox.critical(window, _("Script Error"), _(errMsg))
end_forced()
2011-11-13 18:04:35 +01:00
return 0
2011-11-09 22:51:07 +01:00
2011-11-13 18:04:35 +01:00
@dbus.service.method('org.openmamba.usbinstall')
def Set_description(self, descr):
window.l_descr.setText(descr)
return 0
2011-11-09 22:51:07 +01:00
2011-11-13 18:04:35 +01:00
def dbus_start():
bus_name = dbus.service.BusName('org.openmamba.usbinstall', bus=dbus.SystemBus())
2011-11-13 18:04:35 +01:00
dbus_loop = set_dbus(bus_name)
bus = dbus.SystemBus(mainloop=dbus_loop)
2011-11-13 18:04:35 +01:00
#4)###############################(DBUS CODE)########################################
2011-11-09 22:51:07 +01:00
2011-11-13 18:04:35 +01:00
#=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
#5)------------------------------(PROGRAM CODE)--------------------------------------
#=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
# Show all cloud objects
def cloud_show():
window.i_cloud.show()
window.b_cloud.show()
window.l_cloud.show()
2011-11-09 22:51:07 +01:00
2011-11-13 18:04:35 +01:00
# Hide all cloud objects
def cloud_hide():
window.i_cloud.hide()
window.b_cloud.hide()
window.l_cloud.hide()
# Warning dialog abbreviation
def msg_warn(txt):
msg = QtGui.QMessageBox.warning(window, _("Attention"), txt)
# Called when b_next was pressed
def set_objs(i_back, title, descr):
window.i_back.setPixmap(QtGui.QPixmap(i_back))
window.setWindowTitle(title)
window.l_descr.setText(descr)
def step1():
global choose_type, path_iso
choose_type = "iso"
path_iso = ""
window.t_file.setText(path_iso) # Clean path box
window.b_back.setText(_("Cancel"))
set_objs("/usr/share/openmamba/usbinstall/img/back1.png", _("Step 1/3 - choice of ISO file"), _("Choose the openmamba ISO file")+":")
2011-11-13 18:04:35 +01:00
obj_chang_hide()
list_obj1() # Show a set of object
2011-11-09 22:51:07 +01:00
def step2():
set_objs("/usr/share/openmamba/usbinstall/img/back2.png", _("Step 2/3 - choice of USB key"), _("Choose the USB key")+":")
2011-11-13 18:04:35 +01:00
obj_chang_hide()
list_obj2()
get_list() # Get available devices
2011-11-09 22:51:07 +01:00
def step3():
2011-11-13 18:04:35 +01:00
global process_sh
set_objs("/usr/share/openmamba/usbinstall/img/back3.png", _("Step 3/3 - installation of openmamba to USB"), _("Installation in progress..."))
2011-11-13 18:04:35 +01:00
# Hide all unnecessary objects
obj_chang_hide()
window.b_help.hide()
window.line.hide()
window.b_back.hide()
window.b_next.hide()
# Show the progressBar
window.p_install.show()
dbus_start()
process_sh = Popen(["pkexec", "/usr/sbin/usbinstall", path_dev, path_iso, "-d"])
2011-11-09 22:51:07 +01:00
# Show a list of object (step 1)
2011-11-13 18:04:35 +01:00
def list_obj1():
window.t_file.show()
window.pach1.show()
window.b_open_file.show()
# Show a list of object (step 2)
2011-11-13 18:04:35 +01:00
def list_obj2():
window.c_usb.show()
window.b_refresh.show()
# Hide all object that when b_next or b_back was pressed are changing
def obj_chang_hide():
window.t_file.hide()
window.pach1.hide()
window.b_open_file.hide()
window.c_usb.hide()
window.b_refresh.hide()
def end_with_success():
global process_sh, mainloop
msg = QtGui.QMessageBox.information(window, _("Information"), _("Installation process completed"))
2011-11-09 22:51:07 +01:00
mainloop.quit()
2011-11-13 18:04:35 +01:00
app.exit(0)
print _("Installation process completed")
2012-02-20 20:06:52 +01:00
def end_forced():
2011-11-13 18:04:35 +01:00
global process_sh, mainloop
2012-02-20 20:06:52 +01:00
mainloop.quit()
2012-02-21 00:17:51 +01:00
#print _("Installation aborted")
2012-02-20 20:06:52 +01:00
app.exit(1)
2011-11-09 22:51:07 +01:00
2011-11-13 18:04:35 +01:00
# Program start
2012-02-20 20:06:52 +01:00
app = QtGui.QApplication(['usbinstall'])
2011-11-13 18:04:35 +01:00
gettext.install('usbinstall', '/usr/share/locale', unicode=1)
window = create_window()
2011-11-09 22:51:07 +01:00
mainloop = gobject.MainLoop()
def run():
2011-11-13 18:04:35 +01:00
add_events()
step1()
2011-11-09 22:51:07 +01:00
return app.exec_()
if __name__ == "__main__":
run()
2011-11-13 18:04:35 +01:00
#5)##############################(PROGRAM CODE)######################################