1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
from Plugins.Plugin import PluginDescriptor
from Components.Scanner import scanDevice
def execute(option):
print "execute", option
if option is None:
return
(_, scanner, files, session) = option
scanner.open(files, session)
def mountpoint_choosen(option):
if option is None:
return
from Screens.ChoiceBox import ChoiceBox
(description, mountpoint, session) = option
res = scanDevice(mountpoint)
list = [ (r.description, r, res[r], session) for r in res ]
if list == [ ]:
print "nothing found"
from Screens.MessageBox import MessageBox
session.open(MessageBox, "No displayable files on this medium found!", MessageBox.TYPE_ERROR)
return
session.openWithCallback(execute, ChoiceBox,
title = "The following files were found...",
list = list)
def scan(session):
from Screens.ChoiceBox import ChoiceBox
from Components.Harddisk import harddiskmanager
parts = [ (r.description, r.mountpoint, session) for r in harddiskmanager.getMountedPartitions(onlyhotplug = False)]
if len(parts):
session.openWithCallback(mountpoint_choosen, ChoiceBox, title = _("Please Select Medium to be Scanned"), list = parts)
def main(session, **kwargs):
scan(session)
def menuEntry(*args):
mountpoint_choosen(args)
def menuHook(menuid):
if menuid != "mainmenu":
return [ ]
from Components.Harddisk import harddiskmanager
from Tools.BoundFunction import boundFunction
return [(("%s (files)") % r.description, boundFunction(menuEntry, r.description, r.mountpoint), "hotplug_%s" % r.mountpoint, None) for r in harddiskmanager.getMountedPartitions(onlyhotplug = True)]
def Plugins(**kwargs):
return [ PluginDescriptor(name="MediaScanner", description="Scan Files...", where = PluginDescriptor.WHERE_PLUGINMENU, fnc=main),
PluginDescriptor(where = PluginDescriptor.WHERE_MENU, fnc=menuHook)]
|