blob: 3eea6a577b7a2fe66075cc630d1b14d9a6f0e408 [file] [log] [blame]
Brad Bishop8ffe1e42016-02-11 16:15:40 -05001# Contributors Listed Below - COPYRIGHT 2016
2# [+] International Business Machines Corp.
3#
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14# implied. See the License for the specific language governing
15# permissions and limitations under the License.
16
17import dbus
Brad Bishop84ed6e12016-09-08 21:39:34 -040018import dbus.service
19import dbus.exceptions
Brad Bishop8ffe1e42016-02-11 16:15:40 -050020
Brad Bishopc88b0952017-07-29 23:03:30 -040021OBJ_PREFIX = '/xyz/openbmc_project'
Brad Bishop8ffe1e42016-02-11 16:15:40 -050022
23
24def is_unique(connection):
25 return connection[0] == ':'
26
27
Brad Bishop8ffe1e42016-02-11 16:15:40 -050028def get_dbus():
Brad Bishop93d0cf02016-09-08 21:37:27 -040029 return dbus.SystemBus()
Brad Bishop8ffe1e42016-02-11 16:15:40 -050030
31
32class DbusProperties(dbus.service.Object):
Brad Bishopd874f0b2016-09-08 22:16:58 -040033 def __init__(self, **kw):
Patrick Williams4fed8682016-09-28 13:19:14 -050034 self.validator = kw.pop('validator', None)
Brad Bishopd874f0b2016-09-08 22:16:58 -040035 super(DbusProperties, self).__init__(**kw)
Brad Bishop8ffe1e42016-02-11 16:15:40 -050036 self.properties = {}
Brad Bishop6835b672016-06-27 21:55:29 -040037 self._export = False
38
39 def unmask_signals(self):
40 self._export = True
41 inst = super(DbusProperties, self)
42 if hasattr(inst, 'unmask_signals'):
43 inst.unmask_signals()
44
45 def mask_signals(self):
46 self._export = False
47 inst = super(DbusProperties, self)
48 if hasattr(inst, 'mask_signals'):
49 inst.mask_signals()
Brad Bishop8ffe1e42016-02-11 16:15:40 -050050
51 @dbus.service.method(
52 dbus.PROPERTIES_IFACE,
53 in_signature='ss', out_signature='v')
54 def Get(self, interface_name, property_name):
55 d = self.GetAll(interface_name)
56 try:
57 v = d[property_name]
58 return v
59 except:
60 raise dbus.exceptions.DBusException(
Adriana Kobylakdc7f0672017-12-13 10:36:53 -060061 "Unknown property: '{}'".format(property_name),
62 name="org.freedesktop.DBus.Error.UnknownProperty")
Brad Bishop8ffe1e42016-02-11 16:15:40 -050063
64 @dbus.service.method(
65 dbus.PROPERTIES_IFACE,
66 in_signature='s', out_signature='a{sv}')
67 def GetAll(self, interface_name):
68 try:
69 d = self.properties[interface_name]
70 return d
71 except:
72 raise dbus.exceptions.DBusException(
Adriana Kobylakdc7f0672017-12-13 10:36:53 -060073 "Unknown interface: '{}'".format(interface_name),
74 name="org.freedesktop.DBus.Error.UnknownInterface")
Brad Bishop8ffe1e42016-02-11 16:15:40 -050075
76 @dbus.service.method(
77 dbus.PROPERTIES_IFACE,
78 in_signature='ssv')
79 def Set(self, interface_name, property_name, new_value):
80 if (interface_name not in self.properties):
81 self.properties[interface_name] = {}
Vishwanatha Subbanna07225642016-09-20 20:41:15 +053082
83 if self.validator:
84 self.validator(interface_name, property_name, new_value)
85
Brad Bishop8ffe1e42016-02-11 16:15:40 -050086 try:
87 old_value = self.properties[interface_name][property_name]
88 if (old_value != new_value):
89 self.properties[interface_name][property_name] = new_value
Brad Bishop6835b672016-06-27 21:55:29 -040090 if self._export:
91 self.PropertiesChanged(
92 interface_name, {property_name: new_value}, [])
Brad Bishop8ffe1e42016-02-11 16:15:40 -050093
94 except:
95 self.properties[interface_name][property_name] = new_value
Brad Bishop6835b672016-06-27 21:55:29 -040096 if self._export:
97 self.PropertiesChanged(
98 interface_name, {property_name: new_value}, [])
Brad Bishop8ffe1e42016-02-11 16:15:40 -050099
100 @dbus.service.method(
101 "org.openbmc.Object.Properties", in_signature='sa{sv}')
102 def SetMultiple(self, interface_name, prop_dict):
Brad Bishopd0827b12016-05-12 16:48:57 -0400103 if (interface_name not in self.properties):
Brad Bishop8ffe1e42016-02-11 16:15:40 -0500104 self.properties[interface_name] = {}
105
106 value_changed = False
107 for property_name in prop_dict:
108 new_value = prop_dict[property_name]
109 try:
110 old_value = self.properties[interface_name][property_name]
111 if (old_value != new_value):
112 self.properties[interface_name][property_name] = new_value
113 value_changed = True
114
115 except:
116 self.properties[interface_name][property_name] = new_value
117 value_changed = True
Brad Bishop6835b672016-06-27 21:55:29 -0400118 if (value_changed is True and self._export):
Brad Bishop8ffe1e42016-02-11 16:15:40 -0500119 self.PropertiesChanged(interface_name, prop_dict, [])
120
121 @dbus.service.signal(
122 dbus.PROPERTIES_IFACE, signature='sa{sv}as')
123 def PropertiesChanged(
124 self, interface_name, changed_properties, invalidated_properties):
125 pass
126
127
Brad Bishop2b054342017-10-27 15:33:02 -0400128def add_interfaces_to_class(cls, ifaces):
129 """
130 The built-in Introspect method in dbus-python doesn't find
131 interfaces if the @method or @signal decorators aren't used
132 (property-only interfaces). Use this method on a class
133 derived from dbus.service.Object to help the dbus-python provided
134 Introspect method find these interfaces.
135
136 Arguments:
137 cls -- The dbus.service.Object superclass to add interfaces to.
138 ifaces -- The property-only interfaces to add to the class.
139 """
140
141 for iface in ifaces:
142 class_table_key = '{}.{}'.format(cls.__module__, cls.__name__)
143 cls._dbus_class_table[class_table_key].setdefault(iface, {})
144
145
146def add_interfaces(ifaces):
147 """
148 A class decorator for add_interfaces_to_class.
149 """
150
151 def decorator(cls):
152 undecorated = cls.__init__
153
154 def ctor(obj, *a, **kw):
155 undecorated(obj, *a, **kw)
156 add_interfaces_to_class(cls, ifaces)
157
158 cls.__init__ = ctor
159 return cls
160 return decorator
161
162
Brad Bishop8ffe1e42016-02-11 16:15:40 -0500163class DbusObjectManager(dbus.service.Object):
Brad Bishopd874f0b2016-09-08 22:16:58 -0400164 def __init__(self, **kw):
165 super(DbusObjectManager, self).__init__(**kw)
Brad Bishop8ffe1e42016-02-11 16:15:40 -0500166 self.objects = {}
Brad Bishop6835b672016-06-27 21:55:29 -0400167 self._export = False
168
169 def unmask_signals(self):
170 self._export = True
171 inst = super(DbusObjectManager, self)
172 if hasattr(inst, 'unmask_signals'):
173 inst.unmask_signals()
174
175 def mask_signals(self):
176 self._export = False
177 inst = super(DbusObjectManager, self)
178 if hasattr(inst, 'mask_signals'):
179 inst.mask_signals()
Brad Bishop8ffe1e42016-02-11 16:15:40 -0500180
181 def add(self, object_path, obj):
182 self.objects[object_path] = obj
Brad Bishop6835b672016-06-27 21:55:29 -0400183 if self._export:
184 self.InterfacesAdded(object_path, obj.properties)
Brad Bishop8ffe1e42016-02-11 16:15:40 -0500185
186 def remove(self, object_path):
187 obj = self.objects.pop(object_path, None)
188 obj.remove_from_connection()
Brad Bishop6835b672016-06-27 21:55:29 -0400189 if self._export:
Brad Bishopd641c082018-01-31 15:55:58 -0500190 self.InterfacesRemoved(object_path, obj.properties.keys())
Brad Bishop8ffe1e42016-02-11 16:15:40 -0500191
192 def get(self, object_path, default=None):
193 return self.objects.get(object_path, default)
194
195 @dbus.service.method(
196 "org.freedesktop.DBus.ObjectManager",
197 in_signature='', out_signature='a{oa{sa{sv}}}')
198 def GetManagedObjects(self):
199 data = {}
Brad Bishopd641c082018-01-31 15:55:58 -0500200 for objpath in self.objects.keys():
Brad Bishop8ffe1e42016-02-11 16:15:40 -0500201 data[objpath] = self.objects[objpath].properties
202 return data
203
204 @dbus.service.signal(
205 "org.freedesktop.DBus.ObjectManager", signature='oa{sa{sv}}')
206 def InterfacesAdded(self, object_path, properties):
Brad Bishop0b30e972016-06-21 14:58:14 -0400207 pass
Brad Bishop8ffe1e42016-02-11 16:15:40 -0500208
209 @dbus.service.signal(
210 "org.freedesktop.DBus.ObjectManager", signature='oas')
211 def InterfacesRemoved(self, object_path, interfaces):
212 pass