diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-06-24 18:29:34 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-06-24 18:29:34 +0000 |
| commit | f7d4b3e46c34d1ed7983c20577da833405f541f8 (patch) | |
| tree | 110fd0e4c23cd48be427494e3ad86686ac38d6f2 /lib/python/Plugins/Extensions/MediaScanner/plugin.py | |
| parent | 3b898971c9e352bec83dfcab5b9d6ae3534df719 (diff) | |
| download | enigma2-f7d4b3e46c34d1ed7983c20577da833405f541f8.tar.gz enigma2-f7d4b3e46c34d1ed7983c20577da833405f541f8.zip | |
auto start mediascanner on hotplug change (new device plugged or medium
injected) add mediascanner support to dvd player plugin
Diffstat (limited to 'lib/python/Plugins/Extensions/MediaScanner/plugin.py')
| -rw-r--r-- | lib/python/Plugins/Extensions/MediaScanner/plugin.py | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/lib/python/Plugins/Extensions/MediaScanner/plugin.py b/lib/python/Plugins/Extensions/MediaScanner/plugin.py index 1ee5f392..d2efea57 100644 --- a/lib/python/Plugins/Extensions/MediaScanner/plugin.py +++ b/lib/python/Plugins/Extensions/MediaScanner/plugin.py @@ -45,14 +45,40 @@ def main(session, **kwargs): def menuEntry(*args): mountpoint_choosen(args) +from Components.Harddisk import harddiskmanager + 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)] +global_session = None + +def partitionListChanged(action, device): + if action == 'add' and device.is_hotplug: + print "mountpoint", device.mountpoint + print "description", device.description + print "force_mounted", device.force_mounted + mountpoint_choosen((device.description, device.mountpoint, global_session)) + +def sessionstart(reason, session): + global global_session + global_session = session + +def autostart(reason, **kwargs): + global global_session + if reason == 0: + harddiskmanager.on_partition_list_change.append(partitionListChanged) + elif reason == 1: + harddiskmanager.on_partition_list_change.remove(partitionListChanged) + global_session = None + def Plugins(**kwargs): - return [ PluginDescriptor(name="MediaScanner", description="Scan Files...", where = PluginDescriptor.WHERE_PLUGINMENU, fnc=main), - PluginDescriptor(where = PluginDescriptor.WHERE_MENU, fnc=menuHook)] + return [ + PluginDescriptor(name="MediaScanner", description="Scan Files...", where = PluginDescriptor.WHERE_PLUGINMENU, fnc=main), +# PluginDescriptor(where = PluginDescriptor.WHERE_MENU, fnc=menuHook), + PluginDescriptor(where = PluginDescriptor.WHERE_SESSIONSTART, fnc = sessionstart), + PluginDescriptor(where = PluginDescriptor.WHERE_AUTOSTART, fnc = autostart) + ] |
