123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # systemctl-mqtt - MQTT client triggering & reporting shutdown on systemd-based systems
- #
- # Copyright (C) 2024 Fabian Peter Hammerle <fabian@hammerle.me>
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <https://www.gnu.org/licenses/>.
- import jeepney
- import systemctl_mqtt._dbus
- class ServiceManager(jeepney.MessageGenerator):
- """
- https://www.freedesktop.org/software/systemd/man/latest/org.freedesktop.systemd1.html
- """
- # pylint: disable=too-few-public-methods
- interface = "org.freedesktop.systemd1.Manager"
- def __init__(self):
- super().__init__(
- object_path="/org/freedesktop/systemd1", bus_name="org.freedesktop.systemd1"
- )
- # pylint: disable=invalid-name
- def GetUnit(self, name: str) -> jeepney.low_level.Message:
- return jeepney.new_method_call(
- remote_obj=self, method="GetUnit", signature="s", body=(name,)
- )
- class Unit(systemctl_mqtt._dbus.Properties): # pylint: disable=protected-access
- """
- https://www.freedesktop.org/software/systemd/man/latest/org.freedesktop.systemd1.html#Unit%20Objects
- """
- # pylint: disable=too-few-public-methods
- interface = "org.freedesktop.systemd1.Unit"
- def __init__(self, *, object_path: str):
- super().__init__(object_path=object_path, bus_name="org.freedesktop.systemd1")
- # pylint: disable=invalid-name
|