~ubuntu-branches/ubuntu/natty/miro/natty

« back to all changes in this revision

Viewing changes to platform/gtk-x11/plat/screensaver.py

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2011-01-22 02:46:33 UTC
  • mfrom: (1.4.10 upstream) (1.7.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20110122024633-kjme8u93y2il5nmf
Tags: 3.5.1-1ubuntu1
* Merge from debian.  Remaining ubuntu changes:
  - Use python 2.7 instead of python 2.6
  - Relax dependency on python-dbus to >= 0.83.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Miro - an RSS based video player application
2
 
# Copyright (C) 2005-2010 Participatory Culture Foundation
3
 
#
4
 
# This program is free software; you can redistribute it and/or modify
5
 
# it under the terms of the GNU General Public License as published by
6
 
# the Free Software Foundation; either version 2 of the License, or
7
 
# (at your option) any later version.
8
 
#
9
 
# This program is distributed in the hope that it will be useful,
10
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
# GNU General Public License for more details.
13
 
#
14
 
# You should have received a copy of the GNU General Public License
15
 
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17
 
#
18
 
# In addition, as a special exception, the copyright holders give
19
 
# permission to link the code of portions of this program with the OpenSSL
20
 
# library.
21
 
#
22
 
# You must obey the GNU General Public License in all respects for all of
23
 
# the code used other than OpenSSL. If you modify file(s) with this
24
 
# exception, you may extend this exception to your version of the file(s),
25
 
# but you are not obligated to do so. If you do not wish to do so, delete
26
 
# this exception statement from your version. If you delete this exception
27
 
# statement from all source files in the program, then also delete it here.
28
 
 
29
 
"""screensaver.py -- Enable/Disable the screensaver."""
30
 
 
31
 
import os
32
 
import dbus
33
 
import gobject
34
 
import subprocess
35
 
 
36
 
class GnomeScreenSaverManager(object):
37
 
    def __init__(self):
38
 
        self.cookie = None
39
 
 
40
 
    def should_use(self):
41
 
        bus = dbus.SessionBus()
42
 
        return bus.name_has_owner('org.gnome.ScreenSaver')
43
 
 
44
 
    def disable(self):
45
 
        bus = dbus.SessionBus()
46
 
        obj = bus.get_object('org.gnome.ScreenSaver',
47
 
                             '/org/gnome/ScreenSaver')
48
 
 
49
 
        prog = "Miro"
50
 
        reason = "Playing a video"
51
 
        self.cookie = obj.Inhibit(prog, reason)
52
 
 
53
 
    def enable(self):
54
 
        if self.cookie is None:
55
 
            raise AssertionError("disable() must be called before enable()")
56
 
        bus = dbus.SessionBus()
57
 
        obj = bus.get_object('org.gnome.ScreenSaver',
58
 
                             '/org/gnome/ScreenSaver')
59
 
 
60
 
        obj.UnInhibit(self.cookie)
61
 
        self.cookie = None
62
 
 
63
 
class XScreenSaverManager(object):
64
 
    def __init__(self):
65
 
        self.timer = None
66
 
 
67
 
    def call_xss(self, command):
68
 
        rc = None
69
 
        devnull = open(os.devnull, 'w')
70
 
        try:
71
 
            rc = subprocess.call(['xscreensaver-command', command],
72
 
                                 stdout=devnull, stderr=devnull)
73
 
        except OSError:
74
 
            pass
75
 
        devnull.close()
76
 
        return rc == 0
77
 
 
78
 
    def should_use(self):
79
 
        return self.call_xss('-time')
80
 
 
81
 
    def deactivate(self):
82
 
        return self.call_xss('-deactivate')
83
 
 
84
 
    def disable(self):
85
 
        self.timer = gobject.timeout_add(1000, self.deactivate)
86
 
 
87
 
    def enable(self):
88
 
        if self.timer is None:
89
 
            raise AssertionError("disable() must be called before enable()")
90
 
        gobject.source_remove(self.timer)
91
 
        self.timer = None
92
 
 
93
 
managers = [
94
 
    GnomeScreenSaverManager(),
95
 
    XScreenSaverManager(),
96
 
    # TODO: make a KDE3 version?
97
 
]
98
 
 
99
 
def create_manager():
100
 
    """Return an object that can disable/enable the screensaver."""
101
 
    for manager in managers:
102
 
        if manager.should_use():
103
 
            return manager
104
 
    return None