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
4e1bde1e
Commit
4e1bde1e
authored
Apr 03, 2014
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Catch when dbus is unavailable (#522)
parent
2f32c923
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
20 deletions
+31
-20
__init__.py
printrun/power/__init__.py
+31
-20
No files found.
printrun/power/__init__.py
View file @
4e1bde1e
...
...
@@ -35,28 +35,39 @@ elif platform.system() == "Windows":
else
:
import
dbus
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
try
:
bus
=
dbus
.
SessionBus
()
def
deinhibit_sleep
():
if
inhibit_sleep
.
handler
is
None
:
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
def
deinhibit_sleep
():
if
inhibit_sleep
.
handler
is
None
:
return
inhibit_sleep
.
handler
.
UnInhibit
(
inhibit_sleep
.
token
)
inhibit_sleep
.
token
=
None
except
dbus
.
DBusException
,
e
:
print
"dbus unavailable:"
,
e
.
message
def
inhibit_sleep
(
reason
):
return
def
deinhibit_sleep
():
return
inhibit_sleep
.
handler
.
UnInhibit
(
inhibit_sleep
.
token
)
inhibit_sleep
.
token
=
None
try
:
import
psutil
...
...
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