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
12 class DVDToolbox(Screen):
14 <screen position="90,83" size="560,445" title="DVD media toolbox" >
15 <ePixmap pixmap="skin_default/buttons/red.png" position="0,0" size="140,40" alphatest="on" />
16 <ePixmap pixmap="skin_default/buttons/green.png" position="140,0" size="140,40" alphatest="on" />
17 <ePixmap pixmap="skin_default/buttons/yellow.png" position="280,0" size="140,40" alphatest="on" />
18 <ePixmap pixmap="skin_default/buttons/blue.png" position="420,0" size="140,40" alphatest="on" />
19 <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" />
20 <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" />
21 <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" />
22 <widget source="key_blue" render="Label" position="420,0" zPosition="1" size="140,40" font="Regular;20" halign="center" valign="center" backgroundColor="#18188b" 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, project = None):
30 Screen.__init__(self, session)
31 self.project = project
33 self["key_red"] = StaticText(_("Exit"))
34 self["key_green"] = StaticText(_("Update"))
35 self["key_yellow"] = StaticText()
36 self["key_blue"] = StaticText()
38 self["space_label"] = StaticText()
39 self["space_bar"] = Progress()
42 self.formattable = False
43 self["details"] = ScrollLabel()
44 self["info"] = StaticText()
46 self["toolboxactions"] = ActionMap(["ColorActions", "DVDToolbox"],
50 "yellow": self.format,
53 "pageUp": self.pageUp,
54 "pageDown": self.pageDown
59 self["details"].pageUp()
62 self["details"].pageDown()
65 self["space_label"].text = _("Please wait... Loading list...")
66 self["info"].text = ""
67 self["details"].setText("")
69 job = DVDinfoJob(self)
70 job_manager.AddJob(job)
72 def infoJobCB(self, in_background=False):
77 for line in self.mediuminfo:
78 if line.find("Mounted Media:") > -1:
79 mediatype = line.rsplit(',',1)[1][1:-1]
80 if mediatype.find("RW") > 0:
81 self.formattable = True
83 self.formattable = False
84 if line.find("Legacy lead-out at:") > -1:
85 used = int(line.rsplit('=',1)[1]) / 1048576.0
86 print "[lead out] used =", used
87 elif line.find("formatted:") > -1:
88 capacity = int(line.rsplit('=',1)[1]) / 1048576.0
89 print "[formatted] capacity =", capacity
90 elif capacity == 1 and line.find("READ CAPACITY:") > -1:
91 capacity = int(line.rsplit('=',1)[1]) / 1048576.0
92 print "[READ CAP] capacity =", capacity
93 elif line.find("Disc status:") > -1:
94 if line.find("blank") > -1:
95 print "[Disc status] capacity=%d, used=0" % (capacity)
98 elif line.find("Free Blocks:") > -1:
100 size = eval(line[14:].replace("KB","*1024"))
106 print "[free blocks] capacity=%d, used=%d" % (capacity, used)
108 self["details"].setText(infotext)
110 self["key_yellow"].text = _("Format")
112 self["key_yellow"].text = ""
113 percent = 100 * used / (capacity or 1)
115 self["space_label"].text = "%d / %d MB" % (used, capacity) + " (%.2f%% " % percent + _("of a DUAL layer medium used.") + ")"
116 self["space_bar"].value = int(percent)
118 self["space_label"].text = "%d / %d MB" % (used, capacity) + " (%.2f%% " % percent + _("of a SINGLE layer medium used.") + ")"
119 self["space_bar"].value = int(percent)
120 elif capacity == 1 and used > 0:
121 self["space_label"].text = "%d MB " % (used) + _("on READ ONLY medium.")
122 self["space_bar"].value = int(percent)
124 self["space_label"].text = _("Medium is not a writeable DVD!")
125 self["space_bar"].value = 0
129 self["info"].text = "Media-Type:\t\t%s\nFree capacity:\t\t%d MB" % (mediatype or "NO DVD", free)
133 job = DVDformatJob(self)
134 job_manager.AddJob(job)
135 from Screens.TaskView import JobView
136 self.session.openWithCallback(self.infoJobCB, JobView, job)
138 class DVDformatJob(Job):
139 def __init__(self, toolbox):
140 Job.__init__(self, _("DVD media toolbox"))
141 self.toolbox = toolbox
145 self.tasks[0].args += [ "-force" ]
148 class DVDformatTaskPostcondition(Condition):
150 def check(self, task):
151 return task.error is None
153 def getErrorMessage(self, task):
155 task.ERROR_ALREADYFORMATTED: _("This DVD RW medium is already formatted - reformatting will erase all content on the disc."),
156 task.ERROR_NOTWRITEABLE: _("Medium is not a writeable DVD!"),
157 task.ERROR_UNKNOWN: _("An unknown error occured!")
160 class DVDformatTask(Task):
161 ERROR_ALREADYFORMATTED, ERROR_NOTWRITEABLE, ERROR_UNKNOWN = range(3)
162 def __init__(self, job, extra_args=[]):
163 Task.__init__(self, job, ("RW medium format"))
164 self.toolbox = job.toolbox
165 self.postconditions.append(DVDformatTaskPostcondition())
166 self.setTool("/bin/dvd+rw-format")
167 self.args += [ harddiskmanager.getCD() ]
173 def processOutputLine(self, line):
174 if line.startswith("- media is already formatted"):
175 self.error = self.ERROR_ALREADYFORMATTED
177 if line.startswith(":-( mounted media doesn't appear to be"):
178 self.error = self.ERROR_NOTWRITEABLE
180 def processOutput(self, data):
181 print "[DVDformatTask processOutput] ", data
182 if data.endswith('%'):
183 data= data.replace('\x08','')
184 self.progress = int(float(data[:-1])*10)
186 Task.processOutput(self, data)
188 class DVDinfoJob(Job):
189 def __init__(self, toolbox):
190 Job.__init__(self, "DVD media toolbox")
191 self.toolbox = toolbox
194 class DVDinfoTaskPostcondition(Condition):
196 def check(self, task):
197 return task.error is None
199 def getErrorMessage(self, task):
201 task.ERROR_UNKNOWN: _("An unknown error occured!")
204 class DVDinfoTask(Task):
205 ERROR_UNKNOWN = range(1)
206 def __init__(self, job, extra_args=[]):
207 Task.__init__(self, job, ("mediainfo"))
208 self.toolbox = job.toolbox
209 self.postconditions.append(DVDinfoTaskPostcondition())
210 self.setTool("/bin/dvd+rw-mediainfo")
211 self.args += [ harddiskmanager.getCD() ]
216 def processOutputLine(self, line):
217 print "[DVDinfoTask]", line[:-1]
218 self.toolbox.mediuminfo.append(line)
220 def processFinished(self, returncode):
221 Task.processFinished(self, returncode)
222 self.toolbox.infoJobCB()