Linux/Python:无需轮询即可监视 /proc/acpi 文件?
有什么方法可以监视 /proc
文件,例如
/proc/acpi/battery/BAT0/state
/proc/acpi/ac_adapter/ADP0/state
以非轮询方式,类似于普通文件系统上的 inotify ?
我想在 PyGTK 应用程序中执行此操作,因此我尝试使用 PyGObject 的 gio.FileMonitor,但没有骰子。与 gtk.main() 配合良好的 Python 解决方案将是理想的选择。
Is there any way to monitor /proc
files, such as
/proc/acpi/battery/BAT0/state
/proc/acpi/ac_adapter/ADP0/state
in a non-polling fashion, similar to inotify on a normal filesystem?
I want to do this in a PyGTK app, so I tried using PyGObject's gio.FileMonitor, but no dice. A Python solution that plays well with gtk.main()
would be ideal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您可以通过监听 ACPI 事件来获取您想要的信息。最好不直接(/proc/acpi/event),而是通过 acpid 或其他高级接口。
更新:另一个更高级别的接口是DeviceKit-power / UPower 提供的DBus 接口。
/proc 中的文件不是常规文件,而是内核状态的简单接口,因此常规文件的许多功能在那里不起作用。
Probably you can get the information you want by listening to the ACPI events. Preferably not directly (/proc/acpi/event), but via acpid or other high-level interface.
Update: the other, higher level interface is the DBus interface provided by DeviceKit-power / UPower.
Files in /proc are not regular files, rather a simple interface to kernel state, so many facilities for regular files won't work there.