File: gsd_rfkill.py

package info (click to toggle)
python-dbusmock 0.36.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 812 kB
  • sloc: python: 7,324; sh: 73; makefile: 4
file content (54 lines) | stat: -rw-r--r-- 2,126 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""gsd-rfkill mock template

This creates the expected properties of the GNOME Settings Daemon's
rfkill object. You can specify any property such as AirplaneMode in
"parameters".
"""

# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation; either version 3 of the License, or (at your option) any
# later version.  See http://www.gnu.org/copyleft/lgpl.html for the full text
# of the license.

__author__ = "Guido Günther"
__copyright__ = "2024 The Phosh Developers"

import dbus

from dbusmock import MOCK_IFACE

SYSTEM_BUS = False
BUS_NAME = "org.gnome.SettingsDaemon.Rfkill"
MAIN_OBJ = "/org/gnome/SettingsDaemon/Rfkill"
MAIN_IFACE = "org.gnome.SettingsDaemon.Rfkill"


def load(mock, parameters):
    props = dbus.Dictionary(
        {
            "AirplaneMode": parameters.get("AirplaneMode", False),
            "BluetoothAirplaneMode": parameters.get("BluetoothAirplaneMode", False),
            "BluetoothHardwareAirplaneMode": parameters.get("BluetoothHardwareAirplaneMode", False),
            "BluetoothHasAirplaneMode": parameters.get("BluetoothHasAirplanemode", True),
            "HardwareAirplaneMode": parameters.get("HardwareAirplaneMode", False),
            "HasAirplaneMode": parameters.get("HasAirplaneMode", True),
            "ShouldShowAirplaneMode": parameters.get("ShouldShowAirplaneMode", True),
            "WwanAirplaneMode": parameters.get("WwanAirplaneMode", False),
            "WwanHardwareAirplaneMode": parameters.get("WwanHardwareAirplaneMode", False),
            "WwanHasAirplaneMode": parameters.get("WwanHasAirplaneMode", True),
        },
        signature="sv",
    )
    mock.AddProperties(MAIN_IFACE, props)


@dbus.service.method(MOCK_IFACE, in_signature="b", out_signature="b")
def SetAirplaneMode(self, mode):
    """
    Convenience method to toggle airplane mode
    """
    self.props[MAIN_IFACE]["AirplaneMode"] = mode
    self.props[MAIN_IFACE]["BluetoothAirplaneMode"] = mode
    self.props[MAIN_IFACE]["WwanAirplaneMode"] = mode
    return mode