Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
02de13cf
Commit
02de13cf
authored
Apr 05, 2014
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor inhibit_sleep handling on linux to catch errors earlier
parent
20c7ef70
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
17 deletions
+17
-17
__init__.py
printrun/power/__init__.py
+17
-17
No files found.
printrun/power/__init__.py
View file @
02de13cf
...
...
@@ -36,29 +36,29 @@ else:
import
dbus
try
:
inhibit_sleep_handler
=
None
bus
=
dbus
.
SessionBus
()
try
:
# GNOME uses the right object path, try it first
service_name
=
"org.freedesktop.ScreenSaver"
proxy
=
bus
.
get_object
(
service_name
,
"/org/freedesktop/ScreenSaver"
)
inhibit_sleep_handler
=
dbus
.
Interface
(
proxy
,
service_name
)
except
dbus
.
DBusException
:
# KDE uses /ScreenSaver object path, let's try it as well
proxy
=
bus
.
get_object
(
service_name
,
"/ScreenSaver"
)
inhibit_sleep_handler
=
dbus
.
Interface
(
proxy
,
service_name
)
def
inhibit_sleep
(
reason
):
if
inhibit_sleep
.
handler
is
None
:
bus
=
dbus
.
SessionBus
()
try
:
# GNOME uses the right object path, try it first
service_name
=
"org.freedesktop.ScreenSaver"
proxy
=
bus
.
get_object
(
service_name
,
"/org/freedesktop/ScreenSaver"
)
inhibit_sleep
.
handler
=
dbus
.
Interface
(
proxy
,
service_name
)
except
dbus
.
DBusException
:
# KDE uses /ScreenSaver object path, let's try it as well
proxy
=
bus
.
get_object
(
service_name
,
"/ScreenSaver"
)
inhibit_sleep
.
handler
=
dbus
.
Interface
(
proxy
,
service_name
)
inhibit_sleep
.
token
=
inhibit_sleep
.
handler
.
Inhibit
(
"printrun"
,
reason
)
inhibit_sleep
.
handler
=
None
global
inhibit_sleep_handler
inhibit_sleep
.
token
=
inhibit_sleep_handler
.
Inhibit
(
"printrun"
,
reason
)
def
deinhibit_sleep
():
if
inhibit_sleep
.
handler
is
None
:
global
inhibit_sleep_handler
if
inhibit_sleep_handler
is
None
:
return
inhibit_sleep
.
handler
.
UnInhibit
(
inhibit_sleep
.
token
)
inhibit_sleep
_
handler
.
UnInhibit
(
inhibit_sleep
.
token
)
inhibit_sleep
.
token
=
None
except
dbus
.
DBusException
,
e
:
print
"dbus unavailable:"
,
e
.
message
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment