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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233
|
# Copyright 2016-2019 Red Hat, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice (including the next
# paragraph) shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
import os
import sys
import hashlib
from enum import IntEnum
from evdev import ecodes
from gettext import gettext as _
from gi.repository import Gio, GLib, GObject
from typing import List, Optional, Tuple, Union
# Deferred translations, see https://docs.python.org/3/library/gettext.html#deferred-translations
def N_(x):
return x
def evcode_to_str(evcode: int) -> str:
# Values in ecodes.keys are stored as either a str or list[str].
value = ecodes.keys[evcode]
if isinstance(value, list):
return value[0]
return value
class RatbagErrorCode(IntEnum):
SUCCESS = 0
"""An error occurred on the device. Either the device is not a libratbag
device or communication with the device failed."""
DEVICE = -1000
"""Insufficient capabilities. This error occurs when a requested change is
beyond the device's capabilities."""
CAPABILITY = -1001
"""Invalid value or value range. The provided value or value range is
outside of the legal or supported range."""
VALUE = -1002
"""A low-level system error has occurred, e.g. a failure to access files
that should be there. This error is usually unrecoverable and libratbag will
print a log message with details about the error."""
SYSTEM = -1003
"""Implementation bug, either in libratbag or in the caller. This error is
usually unrecoverable and libratbag will print a log message with details
about the error."""
IMPLEMENTATION = -1004
class RatbagDeviceType(IntEnum):
"""DeviceType property specified in the .device files"""
"""There was no DeviceType specified for this device"""
UNSPECIFIED = 0
"""Device is specified as anything other than a mouse or a keyboard"""
OTHER = 1
"""Device is specified as a mouse"""
MOUSE = 2
"""Device is specified as a keyboard"""
KEYBOARD = 3
class RatbagdIncompatibleError(Exception):
"""ratbagd is incompatible with this client"""
def __init__(self, ratbagd_version, required_version):
super().__init__()
self.ratbagd_version = ratbagd_version
self.required_version = required_version
self.message = f"ratbagd API version is {ratbagd_version} but we require {required_version}"
def __str__(self):
return self.message
class RatbagdUnavailableError(Exception):
"""Signals DBus is unavailable or the ratbagd daemon is not available."""
class RatbagdDBusTimeoutError(Exception):
"""Signals that a timeout occurred during a DBus method call."""
class RatbagError(Exception):
"""A common base exception to catch any ratbag exception."""
class RatbagDeviceError(RatbagError):
"""An exception corresponding to RatbagErrorCode.DEVICE."""
class RatbagCapabilityError(RatbagError):
"""An exception corresponding to RatbagErrorCode.CAPABILITY."""
class RatbagValueError(RatbagError):
"""An exception corresponding to RatbagErrorCode.VALUE."""
class RatbagSystemError(RatbagError):
"""An exception corresponding to RatbagErrorCode.SYSTEM."""
class RatbagImplementationError(RatbagError):
"""An exception corresponding to RatbagErrorCode.IMPLEMENTATION."""
"""A table mapping RatbagErrorCode values to RatbagError* exceptions."""
EXCEPTION_TABLE = {
RatbagErrorCode.DEVICE: RatbagDeviceError,
RatbagErrorCode.CAPABILITY: RatbagCapabilityError,
RatbagErrorCode.VALUE: RatbagValueError,
RatbagErrorCode.SYSTEM: RatbagSystemError,
RatbagErrorCode.IMPLEMENTATION: RatbagImplementationError,
}
class _RatbagdDBus(GObject.GObject):
_dbus = None
def __init__(self, interface, object_path):
super().__init__()
if _RatbagdDBus._dbus is None:
try:
_RatbagdDBus._dbus = Gio.bus_get_sync(Gio.BusType.SYSTEM, None)
except GLib.Error as e:
raise RatbagdUnavailableError(e.message) from e
ratbag1 = "org.freedesktop.ratbag1"
if os.environ.get("RATBAG_TEST"):
ratbag1 = "org.freedesktop.ratbag_devel1"
if object_path is None:
object_path = "/" + ratbag1.replace(".", "/")
self._object_path = object_path
self._interface = f"{ratbag1}.{interface}"
try:
self._proxy = Gio.DBusProxy.new_sync(
_RatbagdDBus._dbus,
Gio.DBusProxyFlags.NONE,
None,
ratbag1,
object_path,
self._interface,
None,
)
except GLib.Error as e:
raise RatbagdUnavailableError(e.message) from e
if self._proxy.get_name_owner() is None:
raise RatbagdUnavailableError(f"No one currently owns {ratbag1}")
self._proxy.connect("g-properties-changed", self._on_properties_changed)
self._proxy.connect("g-signal", self._on_signal_received)
def _on_properties_changed(self, proxy, changed_props, invalidated_props):
# Implement this in derived classes to respond to property changes.
pass
def _on_signal_received(self, proxy, sender_name, signal_name, parameters):
# Implement this in derived classes to respond to signals.
pass
def _find_object_with_path(self, iterable, object_path):
# Find the index of an object in an iterable that whose object path
# matches the given object path.
for index, obj in enumerate(iterable):
if obj._object_path == object_path:
return index
return -1
def _get_dbus_property(self, property):
# Retrieves a cached property from the bus, or None.
p = self._proxy.get_cached_property(property)
if p is not None:
return p.unpack()
return p
def _get_dbus_property_nonnull(self, property: str):
p = self._get_dbus_property(property)
if p is None:
raise ValueError(f"D-Bus API returned `None` for property {property}")
return p
def _set_dbus_property(self, property, type, value, readwrite=True):
# Sets a cached property on the bus.
# Take our real value and wrap it into a variant. To call
# org.freedesktop.DBus.Properties.Set we need to wrap that again
# into a (ssv), where v is our value's variant.
# args to .Set are "interface name", "function name", value-variant
val = GLib.Variant(f"{type}", value)
if readwrite:
pval = GLib.Variant("(ssv)", (self._interface, property, val))
self._proxy.call_sync(
"org.freedesktop.DBus.Properties.Set",
pval,
Gio.DBusCallFlags.NO_AUTO_START,
2000,
None,
)
# This is our local copy, so we don't have to wait for the async
# update
self._proxy.set_cached_property(property, val)
def _dbus_call(self, method, type, *value):
# Calls a method synchronously on the bus, using the given method name,
# type signature and values.
#
# If the result is valid, it is returned. Invalid results raise the
# appropriate RatbagError* or RatbagdDBus* exception, or GLib.Error if
# it is an unexpected exception that probably shouldn't be passed up to
# the UI.
val = GLib.Variant(f"({type})", value)
try:
res = self._proxy.call_sync(
method, val, Gio.DBusCallFlags.NO_AUTO_START, 2000, None
)
if res in EXCEPTION_TABLE:
raise EXCEPTION_TABLE[res]
return res.unpack()[0] # Result is always a tuple
except GLib.Error as e:
if e.code == Gio.IOErrorEnum.TIMED_OUT:
raise RatbagdDBusTimeoutError(e.message) from e
# Unrecognized error code.
print(e.message, file=sys.stderr)
raise
def __eq__(self, other):
return other and self._object_path == other._object_path
class Ratbagd(_RatbagdDBus):
"""The ratbagd top-level object. Provides a list of devices available
through ratbagd; actual interaction with the devices is via the
RatbagdDevice, RatbagdProfile, RatbagdResolution and RatbagdButton objects.
Throws RatbagdUnavailableError when the DBus service is not available.
"""
__gsignals__ = {
"device-added": (GObject.SignalFlags.RUN_FIRST, None, (GObject.TYPE_PYOBJECT,)),
"device-removed": (
GObject.SignalFlags.RUN_FIRST,
None,
(GObject.TYPE_PYOBJECT,),
),
"daemon-disappeared": (GObject.SignalFlags.RUN_FIRST, None, ()),
}
def __init__(self, api_version):
super().__init__("Manager", None)
result = self._get_dbus_property("Devices")
if result is None and not self._proxy.get_cached_property_names():
raise RatbagdUnavailableError(
"Make sure it is running and your user is in the required groups."
)
if self.api_version != api_version:
raise RatbagdIncompatibleError(self.api_version or -1, api_version)
self._devices = [RatbagdDevice(objpath) for objpath in result or []]
self._proxy.connect("notify::g-name-owner", self._on_name_owner_changed)
def _on_name_owner_changed(self, *kwargs):
self.emit("daemon-disappeared")
def _on_properties_changed(self, proxy, changed_props, invalidated_props):
try:
new_device_object_paths = changed_props["Devices"]
except KeyError:
# Different property changed, skip.
pass
else:
object_paths = [d._object_path for d in self._devices]
for object_path in new_device_object_paths:
if object_path not in object_paths:
device = RatbagdDevice(object_path)
self._devices.append(device)
self.emit("device-added", device)
for device in self.devices:
if device._object_path not in new_device_object_paths:
self._devices.remove(device)
self.emit("device-removed", device)
self.notify("devices")
@GObject.Property
def api_version(self):
return self._get_dbus_property("APIVersion")
@GObject.Property
def devices(self):
"""A list of RatbagdDevice objects supported by ratbagd."""
return self._devices
def __getitem__(self, id):
"""Returns the requested device, or None."""
for d in self.devices:
if d.id == id:
return d
return None
def __enter__(self):
return self
def __exit__(self, exc_type, exc_val, exc_tb):
pass
class RatbagdDevice(_RatbagdDBus):
"""Represents a ratbagd device."""
__gsignals__ = {
"active-profile-changed": (
GObject.SignalFlags.RUN_FIRST,
None,
(GObject.TYPE_PYOBJECT,),
),
"resync": (GObject.SignalFlags.RUN_FIRST, None, ()),
}
def __init__(self, object_path):
super().__init__("Device", object_path)
# FIXME: if we start adding and removing objects from this list,
# things will break!
result = self._get_dbus_property("Profiles") or []
self._profiles = [RatbagdProfile(objpath) for objpath in result]
for profile in self._profiles:
profile.connect("notify::is-active", self._on_active_profile_changed)
# Use a SHA1 of our object path as our device's ID
self._id = hashlib.sha1(object_path.encode("utf-8")).hexdigest()
def _on_signal_received(self, proxy, sender_name, signal_name, parameters):
if signal_name == "Resync":
self.emit("resync")
def _on_active_profile_changed(self, profile, pspec):
if profile.is_active:
self.emit("active-profile-changed", self._profiles[profile.index])
@GObject.Property
def id(self):
return self._id
@id.setter
def id(self, id):
self._id = id
@GObject.Property
def model(self):
"""The unique identifier for this device model."""
return self._get_dbus_property("Model")
@GObject.Property
def name(self):
"""The device name, usually provided by the kernel."""
return self._get_dbus_property("Name")
@GObject.Property
def device_type(self):
"""The device type, see RatbagDeviceType"""
return RatbagDeviceType(self._get_dbus_property("DeviceType"))
@GObject.Property
def firmware_version(self):
"""The firmware version of the device."""
return self._get_dbus_property("FirmwareVersion")
@GObject.Property
def profiles(self):
"""A list of RatbagdProfile objects provided by this device."""
return self._profiles
@GObject.Property
def active_profile(self):
"""The currently active profile. This is a non-DBus property computed
over the cached list of profiles. In the unlikely case that your device
driver is misconfigured and there is no active profile, this returns
`None`."""
for profile in self._profiles:
if profile.is_active:
return profile
print(
"No active profile. Please report this bug to the libratbag developers",
file=sys.stderr,
)
return None
def commit(self):
"""Commits all changes made to the device.
This is implemented asynchronously inside ratbagd. Hence, we just call
this method and always succeed. Any failure is handled inside ratbagd
by emitting the Resync signal, which automatically resynchronizes the
device. No further interaction is required by the client.
"""
self._dbus_call("Commit", "")
class RatbagdProfile(_RatbagdDBus):
"""Represents a ratbagd profile."""
CAP_WRITABLE_NAME = 100
CAP_SET_DEFAULT = 101
CAP_DISABLE = 102
CAP_WRITE_ONLY = 103
def __init__(self, object_path):
super().__init__("Profile", object_path)
self._active = self._get_dbus_property("IsActive")
self._angle_snapping = self._get_dbus_property("AngleSnapping")
self._debounce = self._get_dbus_property("Debounce")
self._dirty = self._get_dbus_property("IsDirty")
self._disabled = self._get_dbus_property("Disabled")
self._report_rate = self._get_dbus_property("ReportRate")
# FIXME: if we start adding and removing objects from any of these
# lists, things will break!
result = self._get_dbus_property("Resolutions") or []
self._resolutions = [RatbagdResolution(objpath) for objpath in result]
self._subscribe_dirty(self._resolutions)
result = self._get_dbus_property("Buttons") or []
self._buttons = [RatbagdButton(objpath) for objpath in result]
self._subscribe_dirty(self._buttons)
result = self._get_dbus_property("Leds") or []
self._leds = [RatbagdLed(objpath) for objpath in result]
self._subscribe_dirty(self._leds)
def _subscribe_dirty(self, objects: List[GObject.GObject]):
for obj in objects:
obj.connect("notify", self._on_obj_notify)
def _on_obj_notify(self, obj: GObject.GObject, pspec: Optional[GObject.ParamSpec]):
if not self._dirty:
self._dirty = True
self.notify("dirty")
def _on_properties_changed(self, proxy, changed_props, invalidated_props):
try:
angle_snapping = changed_props["AngleSnapping"]
except KeyError:
# Different property changed, skip.
pass
else:
if angle_snapping != self._angle_snapping:
self._angle_snapping = angle_snapping
self.notify("angle-snapping")
try:
debounce = changed_props["Debounce"]
except KeyError:
# Different property changed, skip.
pass
else:
if debounce != self._debounce:
self._debounce = debounce
self.notify("debounce")
try:
disabled = changed_props["Disabled"]
except KeyError:
# Different property changed, skip.
pass
else:
if disabled != self._disabled:
self._disabled = disabled
self.notify("disabled")
try:
active = changed_props["IsActive"]
except KeyError:
# Different property changed, skip.
pass
else:
if active != self._active:
self._active = active
self.notify("is-active")
try:
dirty = changed_props["IsDirty"]
except KeyError:
# Different property changed, skip.
pass
else:
if dirty != self._dirty:
self._dirty = dirty
self.notify("dirty")
try:
report_rate = changed_props["ReportRate"]
except KeyError:
# Different property changed, skip.
pass
else:
if report_rate != self._report_rate:
self._report_rate = report_rate
self.notify("report-rate")
@GObject.Property
def capabilities(self):
"""The capabilities of this profile as an array. Capabilities not
present on the profile are not in the list. Thus use e.g.
if RatbagdProfile.CAP_WRITABLE_NAME in profile.capabilities:
do something
"""
return self._get_dbus_property("Capabilities") or []
@GObject.Property
def name(self):
"""The name of the profile"""
return self._get_dbus_property("Name")
@name.setter
def name(self, name):
"""Set the name of this profile.
@param name The new name, as str"""
self._set_dbus_property("Name", "s", name)
@GObject.Property
def index(self):
"""The index of this profile."""
return self._get_dbus_property("Index")
@GObject.Property
def dirty(self):
"""Whether this profile is dirty."""
return self._dirty
@GObject.Property
def disabled(self):
"""tells if the profile is disabled."""
return self._disabled
@disabled.setter
def disabled(self, disabled):
"""Enable/Disable this profile.
@param disabled The new state, as boolean"""
self._set_dbus_property("Disabled", "b", disabled)
@GObject.Property
def report_rate(self) -> int:
"""The report rate in Hz."""
return self._report_rate
@report_rate.setter
def report_rate(self, rate):
"""Set the report rate in Hz.
@param rate The new report rate, as int
"""
self._set_dbus_property("ReportRate", "u", rate)
@GObject.Property
def report_rates(self):
"""The list of supported report rates"""
return self._get_dbus_property("ReportRates") or []
@GObject.Property
def angle_snapping(self):
"""The angle snapping option."""
return self._angle_snapping
@angle_snapping.setter
def angle_snapping(self, value):
"""Set the angle snapping option.
@param value The angle snapping option as int
"""
self._set_dbus_property("AngleSnapping", "i", value)
@GObject.Property
def debounce(self):
"""The button debounce time in ms."""
return self._debounce
@debounce.setter
def debounce(self, value):
"""Set the button debounce time in ms.
@param value The button debounce time, as int
"""
self._set_dbus_property("Debounce", "i", value)
@GObject.Property
def debounces(self):
"""The list of supported debounce times"""
return self._get_dbus_property("Debounces") or []
@GObject.Property
def resolutions(self):
"""A list of RatbagdResolution objects with this profile's resolutions.
Note that the list of resolutions differs between profiles but the number
of resolutions is identical across profiles."""
return self._resolutions
@GObject.Property
def active_resolution(self):
"""The currently active resolution of this profile. This is a non-DBus
property computed over the cached list of resolutions. In the unlikely
case that your device driver is misconfigured and there is no active
resolution, this returns `None`."""
for resolution in self._resolutions:
if resolution.is_active:
return resolution
print(
"No active resolution. Please report this bug to the libratbag developers",
file=sys.stderr,
)
return None
@GObject.Property
def buttons(self):
"""A list of RatbagdButton objects with this profile's button mappings.
Note that the list of buttons differs between profiles but the number
of buttons is identical across profiles."""
return self._buttons
@GObject.Property
def leds(self):
"""A list of RatbagdLed objects with this profile's leds. Note that the
list of leds differs between profiles but the number of leds is
identical across profiles."""
return self._leds
@GObject.Property
def is_active(self):
"""Returns True if the profile is currently active, false otherwise."""
return self._active
def set_active(self):
"""Set this profile to be the active profile."""
ret = self._dbus_call("SetActive", "")
self._set_dbus_property("IsActive", "b", True, readwrite=False)
return ret
class RatbagdResolution(_RatbagdDBus):
"""Represents a ratbagd resolution."""
CAP_SEPARATE_XY_RESOLUTION = 1
CAP_DISABLE = 2
def __init__(self, object_path):
super().__init__("Resolution", object_path)
self._active = self._get_dbus_property("IsActive")
self._default = self._get_dbus_property("IsDefault")
self._disabled = self._get_dbus_property("IsDisabled")
self._resolution = self._convert_resolution_from_dbus(
self._get_dbus_property_nonnull("Resolution")
)
def _on_properties_changed(self, proxy, changed_props, invalidated_props):
try:
resolution = self._convert_resolution_from_dbus(changed_props["Resolution"])
except KeyError:
# Different property changed, skip.
pass
else:
if resolution != self._resolution:
self._resolution = resolution
self.notify("resolution")
try:
active = changed_props["IsActive"]
except KeyError:
# Different property changed, skip.
pass
else:
if active != self._active:
self._active = active
self.notify("is-active")
try:
default = changed_props["IsDefault"]
except KeyError:
# Different property changed, skip.
pass
else:
if default != self._default:
self._default = default
self.notify("is-default")
try:
disabled = changed_props["IsDisabled"]
except KeyError:
# Different property changed, skip.
pass
else:
if disabled != self._disabled:
self._disabled = disabled
self.notify("is-disabled")
@GObject.Property
def capabilities(self):
"""The capabilities of this resolution as an array. Capabilities not
present on the resolution are not in the list. Thus use e.g.
if resolution.CAP_DISABLE in resolution.capabilities:
do something
"""
return self._get_dbus_property("Capabilities") or []
@GObject.Property
def index(self):
"""The index of this resolution."""
return self._get_dbus_property("Index")
@staticmethod
def _convert_resolution_from_dbus(
res: Union[int, Tuple[int, int]]
) -> Union[Tuple[int], Tuple[int, int]]:
"""
Convert resolution from what D-Bus API retuns - either an int or a tuple of two ints, to a tuple of either one or two ints.
"""
if isinstance(res, int):
return (res,)
return res
@GObject.Property
def resolution(self):
"""The resolution in DPI, either as single value tuple ``(res, )``
or as tuple ``(xres, yres)``.
"""
return self._resolution
@resolution.setter
def resolution(self, resolution):
"""Set the x- and y-resolution using the given (xres, yres) tuple.
@param res The new resolution, as (int, int)
"""
res = self.resolution
if len(res) != len(resolution) or len(res) > 2:
raise ValueError("invalid resolution precision")
if len(res) == 1:
variant = GLib.Variant("u", resolution[0])
else:
variant = GLib.Variant("(uu)", resolution)
self._set_dbus_property("Resolution", "v", variant)
@GObject.Property
def resolutions(self):
"""The list of supported DPI values"""
return self._get_dbus_property("Resolutions") or []
@GObject.Property
def is_active(self):
"""True if this is the currently active resolution, False
otherwise"""
return self._active
@GObject.Property
def is_default(self):
"""True if this is the currently default resolution, False
otherwise"""
return self._default
@GObject.Property
def is_disabled(self):
"""True if this is currently disabled, False otherwise"""
return self._disabled
def set_active(self):
"""Set this resolution to be the active one."""
ret = self._dbus_call("SetActive", "")
self._set_dbus_property("IsActive", "b", True, readwrite=False)
return ret
def set_default(self):
"""Set this resolution to be the default."""
ret = self._dbus_call("SetDefault", "")
self._set_dbus_property("IsDefault", "b", True, readwrite=False)
return ret
def set_disabled(self, disable):
"""Set this resolution to be disabled."""
return self._set_dbus_property("IsDisabled", "b", disable)
class RatbagdButton(_RatbagdDBus):
"""Represents a ratbagd button."""
class ActionType(IntEnum):
NONE = 0
BUTTON = 1
SPECIAL = 2
KEY = 3
MACRO = 4
class ActionSpecial(IntEnum):
INVALID = -1
UNKNOWN = 1 << 30
DOUBLECLICK = (1 << 30) + 1
WHEEL_LEFT = (1 << 30) + 2
WHEEL_RIGHT = (1 << 30) + 3
WHEEL_UP = (1 << 30) + 4
WHEEL_DOWN = (1 << 30) + 5
RATCHET_MODE_SWITCH = (1 << 30) + 6
RESOLUTION_CYCLE_UP = (1 << 30) + 7
RESOLUTION_CYCLE_DOWN = (1 << 30) + 8
RESOLUTION_UP = (1 << 30) + 9
RESOLUTION_DOWN = (1 << 30) + 10
RESOLUTION_ALTERNATE = (1 << 30) + 11
RESOLUTION_DEFAULT = (1 << 30) + 12
PROFILE_CYCLE_UP = (1 << 30) + 13
PROFILE_CYCLE_DOWN = (1 << 30) + 14
PROFILE_UP = (1 << 30) + 15
PROFILE_DOWN = (1 << 30) + 16
SECOND_MODE = (1 << 30) + 17
BATTERY_LEVEL = (1 << 30) + 18
class Macro(IntEnum):
NONE = 0
KEY_PRESS = 1
KEY_RELEASE = 2
WAIT = 3
"""A table mapping a button's index to its usual function as defined by X
and the common desktop environments."""
BUTTON_DESCRIPTION = {
0: N_("Left mouse button click"),
1: N_("Right mouse button click"),
2: N_("Middle mouse button click"),
3: N_("Backward"),
4: N_("Forward"),
}
"""A table mapping a special function to its human-readable description."""
SPECIAL_DESCRIPTION = {
ActionSpecial.INVALID: N_("Invalid"),
ActionSpecial.UNKNOWN: N_("Unknown"),
ActionSpecial.DOUBLECLICK: N_("Doubleclick"),
ActionSpecial.WHEEL_LEFT: N_("Wheel Left"),
ActionSpecial.WHEEL_RIGHT: N_("Wheel Right"),
ActionSpecial.WHEEL_UP: N_("Wheel Up"),
ActionSpecial.WHEEL_DOWN: N_("Wheel Down"),
ActionSpecial.RATCHET_MODE_SWITCH: N_("Ratchet Mode"),
ActionSpecial.RESOLUTION_CYCLE_UP: N_("Cycle Resolution Up"),
ActionSpecial.RESOLUTION_CYCLE_DOWN: N_("Cycle Resolution Down"),
ActionSpecial.RESOLUTION_UP: N_("Resolution Up"),
ActionSpecial.RESOLUTION_DOWN: N_("Resolution Down"),
ActionSpecial.RESOLUTION_ALTERNATE: N_("Resolution Switch"),
ActionSpecial.RESOLUTION_DEFAULT: N_("Default Resolution"),
ActionSpecial.PROFILE_CYCLE_UP: N_("Cycle Profile Up"),
ActionSpecial.PROFILE_CYCLE_DOWN: N_("Cycle Profile Down"),
ActionSpecial.PROFILE_UP: N_("Profile Up"),
ActionSpecial.PROFILE_DOWN: N_("Profile Down"),
ActionSpecial.SECOND_MODE: N_("Second Mode"),
ActionSpecial.BATTERY_LEVEL: N_("Battery Level"),
}
def __init__(self, object_path):
super().__init__("Button", object_path)
def _on_properties_changed(self, proxy, changed_props, invalidated_props):
if "Mapping" in changed_props.keys():
self.notify("action-type")
def _mapping(self):
return self._get_dbus_property("Mapping")
@GObject.Property
def index(self):
"""The index of this button."""
return self._get_dbus_property("Index")
@GObject.Property
def mapping(self):
"""An integer of the current button mapping, if mapping to a button
or None otherwise."""
type, button = self._mapping()
if type != RatbagdButton.ActionType.BUTTON:
return None
return button
@mapping.setter
def mapping(self, button):
"""Set the button mapping to the given button.
@param button The button to map to, as int
"""
button = GLib.Variant("u", button)
self._set_dbus_property(
"Mapping", "(uv)", (RatbagdButton.ActionType.BUTTON, button)
)
@GObject.Property
def macro(self):
"""A RatbagdMacro object representing the currently set macro or
None otherwise."""
type, macro = self._mapping()
if type != RatbagdButton.ActionType.MACRO:
return None
return RatbagdMacro.from_ratbag(macro)
@macro.setter
def macro(self, macro):
"""Set the macro to the macro represented by the given RatbagdMacro
object.
@param macro A RatbagdMacro object representing the macro to apply to
the button, as RatbagdMacro.
"""
macro = GLib.Variant("a(uu)", macro.keys)
self._set_dbus_property(
"Mapping", "(uv)", (RatbagdButton.ActionType.MACRO, macro)
)
@GObject.Property
def special(self):
"""An enum describing the current special mapping, if mapped to
special or None otherwise."""
type, special = self._mapping()
if type != RatbagdButton.ActionType.SPECIAL:
return None
return special
@special.setter
def special(self, special):
"""Set the button mapping to the given special entry.
@param special The special entry, as one of RatbagdButton.ActionSpecial
"""
special = GLib.Variant("u", special)
self._set_dbus_property(
"Mapping", "(uv)", (RatbagdButton.ActionType.SPECIAL, special)
)
@GObject.Property
def key(self):
type, key = self._mapping()
if type != RatbagdButton.ActionType.KEY:
return None
return key
@key.setter
def key(self, key):
key = GLib.Variant("u", key)
self._set_dbus_property("Mapping", "(uv)", (RatbagdButton.ActionType.KEY, key))
@GObject.Property
def action_type(self):
"""An enum describing the action type of the button. One of
ActionType.NONE, ActionType.BUTTON, ActionType.SPECIAL,
ActionType.MACRO. This decides which
*Mapping property has a value.
"""
type, mapping = self._mapping()
return type
@GObject.Property
def action_types(self):
"""An array of possible values for ActionType."""
return self._get_dbus_property("ActionTypes")
@GObject.Property
def disabled(self):
type, unused = self._mapping()
return type == RatbagdButton.ActionType.NONE
def disable(self):
"""Disables this button."""
zero = GLib.Variant("u", 0)
self._set_dbus_property(
"Mapping", "(uv)", (RatbagdButton.ActionType.NONE, zero)
)
class RatbagdMacro(GObject.Object):
"""Represents a button macro. Note that it uses keycodes as defined by
linux/input.h and not those used by X.Org or any other higher layer such as
Gdk."""
# Both a key press and release.
_MACRO_KEY = 1000
_MACRO_DESCRIPTION = {
RatbagdButton.Macro.KEY_PRESS: lambda key: f"↓{evcode_to_str(key)}",
RatbagdButton.Macro.KEY_RELEASE: lambda key: f"↑{evcode_to_str(key)}",
RatbagdButton.Macro.WAIT: lambda val: f"{val}ms",
_MACRO_KEY: lambda key: f"↕{evcode_to_str(key)}",
}
__gsignals__ = {
"macro-set": (GObject.SignalFlags.RUN_FIRST, None, ()),
}
def __init__(self, **kwargs):
super().__init__(**kwargs)
self._macro = []
def __str__(self):
if not self._macro:
# Translators: this is used when there is no macro to preview.
return _("None")
keys = []
idx = 0
while idx < len(self._macro):
t, v = self._macro[idx]
try:
if t == RatbagdButton.Macro.KEY_PRESS:
# Check for a paired press/release event
t2, v2 = self._macro[idx + 1]
if t2 == RatbagdButton.Macro.KEY_RELEASE and v == v2:
t = self._MACRO_KEY
idx += 1
except IndexError:
pass
keys.append(self._MACRO_DESCRIPTION[t](v))
idx += 1
return " ".join(keys)
@GObject.Property
def keys(self):
"""A list of (RatbagdButton.Macro.*, value) tuples representing the
current macro."""
return self._macro
@staticmethod
def from_ratbag(macro):
"""Instantiates a new RatbagdMacro instance from the given macro in
libratbag format.
@param macro The macro in libratbag format, as
[(RatbagdButton.Macro.*, value)].
"""
ratbagd_macro = RatbagdMacro()
# Do not emit notify::keys for every key that we add.
with ratbagd_macro.freeze_notify():
for type, value in macro:
ratbagd_macro.append(type, value)
return ratbagd_macro
def accept(self):
"""Applies the currently cached macro."""
self.emit("macro-set")
def append(self, type, value):
"""Appends the given event to the current macro.
@param type The type of event, as one of RatbagdButton.Macro.*.
@param value If the type denotes a key event, the X.Org or Gdk keycode
of the event, as int. Otherwise, the value of the timeout
in milliseconds, as int.
"""
# Only append if the entry isn't identical to the last one, as we cannot
# e.g. have two identical key presses in a row.
if len(self._macro) == 0 or (type, value) != self._macro[-1]:
self._macro.append((type, value))
self.notify("keys")
class RatbagdLed(_RatbagdDBus):
"""Represents a ratbagd led."""
class Mode(IntEnum):
OFF = 0
ON = 1
CYCLE = 2
BREATHING = 3
class ColorDepth(IntEnum):
MONOCHROME = 0
RGB_888 = 1
RGB_111 = 2
LED_DESCRIPTION = {
# Translators: the LED is off.
Mode.OFF: N_("Off"),
# Translators: the LED has a single, solid color.
Mode.ON: N_("Solid"),
# Translators: the LED is cycling between red, green and blue.
Mode.CYCLE: N_("Cycle"),
# Translators: the LED's is pulsating a single color on different
# brightnesses.
Mode.BREATHING: N_("Breathing"),
}
def __init__(self, object_path):
super().__init__("Led", object_path)
self._brightness = self._get_dbus_property("Brightness")
self._color = self._get_dbus_property("Color")
self._effect_duration = self._get_dbus_property("EffectDuration")
self._mode: RatbagdLed.Mode = self._get_dbus_property_nonnull("Mode")
@GObject.Property
def index(self):
"""The index of this led."""
return self._get_dbus_property("Index")
@GObject.Property
def mode(self):
"""This led's mode, one of Mode.OFF, Mode.ON, Mode.CYCLE and
Mode.BREATHING."""
return self._mode
@mode.setter
def mode(self, mode):
"""Set the led's mode to the given mode.
@param mode The new mode, as one of Mode.OFF, Mode.ON, Mode.CYCLE and
Mode.BREATHING.
"""
self._set_dbus_property("Mode", "u", mode)
@GObject.Property
def modes(self):
"""The supported modes as a list"""
return self._get_dbus_property("Modes")
@GObject.Property
def color(self):
"""An integer triple of the current LED color."""
return self._color
@color.setter
def color(self, color):
"""Set the led color to the given color.
@param color An RGB color, as an integer triplet with values 0-255.
"""
self._set_dbus_property("Color", "(uuu)", color)
@GObject.Property
def colordepth(self):
"""An enum describing this led's colordepth, one of
RatbagdLed.ColorDepth.MONOCHROME, RatbagdLed.ColorDepth.RGB"""
return self._get_dbus_property("ColorDepth")
@GObject.Property
def effect_duration(self):
"""The LED's effect duration in ms, values range from 0 to 10000."""
return self._effect_duration
@effect_duration.setter
def effect_duration(self, effect_duration):
"""Set the effect duration in ms. Allowed values range from 0 to 10000.
@param effect_duration The new effect duration, as int
"""
self._set_dbus_property("EffectDuration", "u", effect_duration)
@GObject.Property
def brightness(self):
"""The LED's brightness, values range from 0 to 255."""
return self._brightness
@brightness.setter
def brightness(self, brightness):
"""Set the brightness. Allowed values range from 0 to 255.
@param brightness The new brightness, as int
"""
self._set_dbus_property("Brightness", "u", brightness)
def _on_properties_changed(self, proxy, changed_props, invalidated_props):
try:
brightness = changed_props["Brightness"]
except KeyError:
# Different property changed, skip.
pass
else:
if brightness != self._brightness:
self._brightness = brightness
self.notify("brightness")
try:
color = changed_props["Color"]
except KeyError:
# Different property changed, skip.
pass
else:
if color != self._color:
self._color = color
self.notify("color")
try:
effect_duration = changed_props["EffectDuration"]
except KeyError:
# Different property changed, skip.
pass
else:
if effect_duration != self._effect_duration:
self._effect_duration = effect_duration
self.notify("effect-duration")
try:
mode = changed_props["Mode"]
except KeyError:
# Different property changed, skip.
pass
else:
if mode != self._mode:
self._mode = mode
self.notify("mode")
|