web-dev-qa-db-ja.com

pythonアプリで、DBusまたは類似のシステムを介してシステムがサスペンドから復帰したことを検出するにはどうすればよいですか?

バックグラウンドPythonスクリプトでは、システムがサスペンドから復帰したときを検出する必要があります。 ルートスクリプト に依存せず、DBusなどのpythonモジュールに依存する良い方法は何ですか?

私はdbusが初めてなので、実際にサンプルコードを使用できます。私が読んだことから、それはに関連しています

org.freedesktop.UPower /org/freedesktop/UPower org.freedesktop.UPower.Resuming

誰かが再開信号をコールバックに接続するコードで助けてくれますか?

6
con-f-use

これが私の質問に答えるコードの例です:

#!/usr/bin/python
# This is some example code on howto use dbus to detect when the system returns
#+from hibernation or suspend.

import dbus      # for dbus communication (obviously)
import gobject   # main loop
from dbus.mainloop.glib import DBusGMainLoop # integration into the main loop

def handle_resume_callback():
    print "System just resumed from hibernate or suspend"

DBusGMainLoop(set_as_default=True) # integrate into main loob
bus = dbus.SystemBus()             # connect to dbus system wide
bus.add_signal_receiver(           # defince the signal to listen to
    handle_resume_callback,            # name of callback function
    'Resuming',                        # singal name
    'org.freedesktop.UPower',          # interface
    'org.freedesktop.UPower'           # bus name
)

loop = gobject.MainLoop()          # define mainloop
loop.run()                         # run main loop

dbus-python tutorial をご覧ください。

9
con-f-use

これで、login1インターフェイスがシグナルを提供します。変更されたコードは次のとおりです。

#!/usr/bin/python
# slightly different code for handling suspend resume
# using login1 interface signals
#
import dbus      # for dbus communication (obviously)
import gobject   # main loop
from dbus.mainloop.glib import DBusGMainLoop # integration into the main loop

def handle_sleep_callback(sleeping):
  if sleeping:
    print "System going to hibernate or sleep"
  else:
    print "System just resumed from hibernate or suspend"

DBusGMainLoop(set_as_default=True) # integrate into main loob
bus = dbus.SystemBus()             # connect to dbus system wide
bus.add_signal_receiver(           # defince the signal to listen to
    handle_sleep_callback,            # name of callback function
    'PrepareForSleep',                 # signal name
    'org.freedesktop.login1.Manager',   # interface
    'org.freedesktop.login1'            # bus name
)

loop = gobject.MainLoop()          # define mainloop
loop.run()                         # run main loop
6
Nimar