1 from Screens.Screen import Screen
2 from Screens.MessageBox import MessageBox
3 from Screens.HelpMenu import HelpableScreen
4 from Components.ActionMap import HelpableActionMap, ActionMap
5 from Components.Sources.List import List
6 from Components.Sources.StaticText import StaticText
7 from Components.Sources.Progress import Progress
8 from Components.Task import Task, Job, job_manager, Condition
9 from Components.ScrollLabel import ScrollLabel
10 from Components.Harddisk import harddiskmanager
11 from Components.Console import Console
12 from Plugins.SystemPlugins.Hotplug.plugin import hotplugNotifier
14 class DVDToolbox(Screen):
16 <screen name="DVDToolbox" position="center,center" size="560,445" title="DVD media toolbox" >
17 <ePixmap pixmap="skin_default/buttons/red.png" position="0,0" size="140,40" alphatest="on" />
18 <ePixmap pixmap="skin_default/buttons/green.png" position="140,0" size="140,40" alphatest="on" />
19 <ePixmap pixmap="skin_default/buttons/yellow.png" position="280,0" size="140,40" alphatest="on" />
20 <widget source="key_red" render="Label" position="0,0" zPosition="1" size="140,40" font="Regular;20" halign="center" valign="center" backgroundColor="#9f1313" transparent="1" />
21 <widget source="key_green" render="Label" position="140,0" zPosition="1" size="140,40" font="Regular;20" halign="center" valign="center" backgroundColor="#1f771f" transparent="1" />
22 <widget source="key_yellow" render="Label" position="280,0" zPosition="1" size="140,40" font="Regular;20" halign="center" valign="center" backgroundColor="#a08500" transparent="1" />
23 <widget source="info" render="Label" position="20,60" size="520,100" font="Regular;20" />
24 <widget name="details" position="20,200" size="520,200" font="Regular;16" />
25 <widget source="space_bar" render="Progress" position="10,410" size="540,26" borderWidth="1" backgroundColor="#254f7497" />
26 <widget source="space_label" render="Label" position="20,414" size="520,22" zPosition="2" font="Regular;18" halign="center" transparent="1" foregroundColor="#000000" />
29 def __init__(self, session):
30 Screen.__init__(self, session)
32 self["key_red"] = StaticText(_("Exit"))
33 self["key_green"] = StaticText(_("Update"))
34 self["key_yellow"] = StaticText()
36 self["space_label"] = StaticText()
37 self["space_bar"] = Progress()
40 self.formattable = False
41 self["details"] = ScrollLabel()
42 self["info"] = StaticText()
44 self["toolboxactions"] = ActionMap(["ColorActions", "DVDToolbox", "OkCancelActions"],
48 "yellow": self.format,
50 "pageUp": self.pageUp,
51 "pageDown": self.pageDown
54 hotplugNotifier.append(self.update)
55 self.onLayoutFinish.append(self.layoutFinished)
57 def layoutFinished(self):
58 self.setTitle(_("DVD media toolbox"))
61 self["details"].pageUp()
64 self["details"].pageDown()
66 def update(self, dev="", action=""):
67 self["space_label"].text = _("Please wait... Loading list...")
68 self["info"].text = ""
69 self["details"].setText("")
70 self.Console = Console()
71 cmd = "dvd+rw-mediainfo /dev/" + harddiskmanager.getCD()
72 self.Console.ePopen(cmd, self.mediainfoCB)
76 job = DVDformatJob(self)
77 job_manager.AddJob(job)
78 from Screens.TaskView import JobView
79 self.session.openWithCallback(self.formatCB, JobView, job)
81 def formatCB(self, in_background):
84 def mediainfoCB(self, mediuminfo, retval, extra_args):
85 formatted_capacity = 0
91 for line in mediuminfo.splitlines():
92 if line.find("Mounted Media:") > -1:
93 mediatype = line.rsplit(',',1)[1][1:]
94 if mediatype.find("RW") > 0 or mediatype.find("RAM") > 0:
95 self.formattable = True
97 self.formattable = False
98 elif line.find("Legacy lead-out at:") > -1:
99 used = int(line.rsplit('=',1)[1]) / 1048576.0
100 print "[dvd+rw-mediainfo] lead out used =", used
101 elif line.find("formatted:") > -1:
102 formatted_capacity = int(line.rsplit('=',1)[1]) / 1048576.0
103 print "[dvd+rw-mediainfo] formatted capacity =", formatted_capacity
104 elif formatted_capacity == 0 and line.find("READ CAPACITY:") > -1:
105 read_capacity = int(line.rsplit('=',1)[1]) / 1048576.0
106 print "[dvd+rw-mediainfo] READ CAPACITY =", read_capacity
107 for line in mediuminfo.splitlines():
108 if line.find("Free Blocks:") > -1:
110 size = eval(line[14:].replace("KB","*1024"))
114 capacity = size / 1048576
117 print "[dvd+rw-mediainfo] free blocks capacity=%d, used=%d" % (capacity, used)
118 elif line.find("Disc status:") > -1:
119 if line.find("blank") > -1:
120 print "[dvd+rw-mediainfo] Disc status blank capacity=%d, used=0" % (capacity)
123 elif line.find("complete") > -1 and formatted_capacity == 0:
124 print "[dvd+rw-mediainfo] Disc status complete capacity=0, used=%d" % (capacity)
128 capacity = formatted_capacity
129 infotext += line+'\n'
130 if capacity and used > capacity:
131 used = read_capacity or capacity
132 capacity = formatted_capacity or capacity
133 self["details"].setText(infotext)
135 self["key_yellow"].text = _("Format")
137 self["key_yellow"].text = ""
138 percent = 100 * used / (capacity or 1)
140 self["space_label"].text = "%d / %d MB" % (used, capacity) + " (%.2f%% " % percent + _("of a DUAL layer medium used.") + ")"
141 self["space_bar"].value = int(percent)
143 self["space_label"].text = "%d / %d MB" % (used, capacity) + " (%.2f%% " % percent + _("of a SINGLE layer medium used.") + ")"
144 self["space_bar"].value = int(percent)
145 elif capacity == 1 and used > 0:
146 self["space_label"].text = "%d MB " % (used) + _("on READ ONLY medium.")
147 self["space_bar"].value = int(percent)
149 self["space_label"].text = _("Medium is not a writeable DVD!")
150 self["space_bar"].value = 0
154 self["info"].text = "Media-Type:\t\t%s\nFree capacity:\t\t%d MB" % (mediatype or "NO DVD", free)
158 hotplugNotifier.remove(self.update)
161 class DVDformatJob(Job):
162 def __init__(self, toolbox):
163 Job.__init__(self, _("DVD media toolbox"))
164 self.toolbox = toolbox
168 self.tasks[0].args += self.tasks[0].retryargs
171 class DVDformatTaskPostcondition(Condition):
173 def check(self, task):
174 return task.error is None
176 def getErrorMessage(self, task):
178 task.ERROR_ALREADYFORMATTED: _("This DVD RW medium is already formatted - reformatting will erase all content on the disc."),
179 task.ERROR_NOTWRITEABLE: _("Medium is not a writeable DVD!"),
180 task.ERROR_UNKNOWN: _("An unknown error occured!")
183 class DVDformatTask(Task):
184 ERROR_ALREADYFORMATTED, ERROR_NOTWRITEABLE, ERROR_UNKNOWN = range(3)
185 def __init__(self, job, extra_args=[]):
186 Task.__init__(self, job, ("RW medium format"))
187 self.toolbox = job.toolbox
188 self.postconditions.append(DVDformatTaskPostcondition())
189 self.setTool("dvd+rw-format")
190 self.args += [ "/dev/" + harddiskmanager.getCD() ]
197 def processOutputLine(self, line):
198 if line.startswith("- media is already formatted"):
199 self.error = self.ERROR_ALREADYFORMATTED
200 self.retryargs = [ "-force" ]
201 if line.startswith("- media is not blank") or line.startswith(" -format=full to perform full (lengthy) reformat;"):
202 self.error = self.ERROR_ALREADYFORMATTED
203 self.retryargs = [ "-blank" ]
204 if line.startswith(":-( mounted media doesn't appear to be"):
205 self.error = self.ERROR_NOTWRITEABLE
207 def processOutput(self, data):
208 print "[DVDformatTask processOutput] ", data
209 if data.endswith('%'):
210 data= data.replace('\x08','')
211 self.progress = int(float(data[:-1])*10)
213 Task.processOutput(self, data)