-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathintrospect.rb
274 lines (240 loc) · 7.7 KB
/
introspect.rb
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
# frozen_string_literal: true
# dbus/introspection.rb - module containing a low-level D-Bus introspection implementation
#
# This file is part of the ruby-dbus project
# Copyright (C) 2007 Arnaud Cornet and Paul van Tilburg
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License, version 2.1 as published by the Free Software Foundation.
# See the file "COPYING" for the exact licensing terms.
module DBus
# Regular expressions that should match all method names.
METHOD_SIGNAL_RE = /^[A-Za-z][A-Za-z0-9_]*$/.freeze
# Regular expressions that should match all interface names.
INTERFACE_ELEMENT_RE = /^[A-Za-z][A-Za-z0-9_]*$/.freeze
# Exception raised when an invalid class definition is encountered.
class InvalidClassDefinition < Exception
end
# = D-Bus interface class
#
# This class is the interface descriptor. In most cases, the Introspect()
# method call instantiates and configures this class for us.
#
# It also is the local definition of interface exported by the program.
# At the client side, see ProxyObjectInterface
class Interface
# @return [String] The name of the interface.
attr_reader :name
# @return [Hash{Symbol => DBus::Method}] The methods that are part of the interface.
attr_reader :methods
# @return [Hash{Symbol => Signal}] The signals that are part of the interface.
attr_reader :signals
# @return [Hash{Symbol => Property}]
attr_reader :properties
# Creates a new interface with a given _name_.
def initialize(name)
validate_name(name)
@name = name
@methods = {}
@signals = {}
@properties = {}
end
# Validates a service _name_.
def validate_name(name)
raise InvalidIntrospectionData if name.bytesize > 255
raise InvalidIntrospectionData if name =~ /^\./ || name =~ /\.$/
raise InvalidIntrospectionData if name =~ /\.\./
raise InvalidIntrospectionData if name !~ /\./
name.split(".").each do |element|
raise InvalidIntrospectionData if element !~ INTERFACE_ELEMENT_RE
end
end
# Add _ifc_el_ as a known {Method}, {Signal} or {Property}
# @param ifc_el [InterfaceElement]
def define(ifc_el)
name = ifc_el.name.to_sym
category = case ifc_el
when Method
@methods
when Signal
@signals
when Property
@properties
end
category[name] = ifc_el
end
alias declare define
alias << define
# Defines a method with name _id_ and a given _prototype_ in the
# interface.
# Better name: declare_method
def define_method(id, prototype)
m = Method.new(id)
m.from_prototype(prototype)
define(m)
end
alias declare_method define_method
end
# = A formal parameter has a name and a type
class FormalParameter
# @return [#to_s]
attr_reader :name
# @return [SingleCompleteType]
attr_reader :type
def initialize(name, type)
@name = name
@type = type
end
# backward compatibility, deprecated
def [](index)
case index
when 0 then name
when 1 then type
end
end
end
# = D-Bus interface element class
#
# This is a generic class for entities that are part of the interface
# such as methods and signals.
class InterfaceElement
# @return [Symbol] The name of the interface element
attr_reader :name
# @return [Array<FormalParameter>] The parameters of the interface element
attr_reader :params
# Validates element _name_.
def validate_name(name)
return if (name =~ METHOD_SIGNAL_RE) && (name.bytesize <= 255)
raise InvalidMethodName, name
end
# Creates a new element with the given _name_.
def initialize(name)
validate_name(name.to_s)
@name = name
@params = []
end
# Adds a formal parameter with _name_ and _signature_
# (See also Message#add_param which takes signature+value)
def add_fparam(name, signature)
@params << FormalParameter.new(name, signature)
end
# Deprecated, for backward compatibility
def add_param(name_signature_pair)
add_fparam(*name_signature_pair)
end
end
# = D-Bus interface method class
#
# This is a class representing methods that are part of an interface.
class Method < InterfaceElement
# @return [Array<FormalParameter>] The list of return values for the method
attr_reader :rets
# Creates a new method interface element with the given _name_.
def initialize(name)
super(name)
@rets = []
end
# Add a return value _name_ and _signature_.
# @param name [#to_s]
# @param signature [SingleCompleteType]
def add_return(name, signature)
@rets << FormalParameter.new(name, signature)
end
# Add parameter types by parsing the given _prototype_.
# @param prototype [Prototype]
def from_prototype(prototype)
prototype.split(/, */).each do |arg|
arg = arg.split(" ")
raise InvalidClassDefinition if arg.size != 2
dir, arg = arg
if arg =~ /:/
arg = arg.split(":")
name, sig = arg
else
sig = arg
end
case dir
when "in"
add_fparam(name, sig)
when "out"
add_return(name, sig)
end
end
self
end
# Return an XML string representation of the method interface elment.
def to_xml
xml = " <method name=\"#{@name}\">\n"
@params.each do |param|
name = param.name ? "name=\"#{param.name}\" " : ""
xml += " <arg #{name}direction=\"in\" type=\"#{param.type}\"/>\n"
end
@rets.each do |param|
name = param.name ? "name=\"#{param.name}\" " : ""
xml += " <arg #{name}direction=\"out\" type=\"#{param.type}\"/>\n"
end
xml += " </method>\n"
xml
end
end
# = D-Bus interface signal class
#
# This is a class representing signals that are part of an interface.
class Signal < InterfaceElement
# Add parameter types based on the given _prototype_.
def from_prototype(prototype)
prototype.split(/, */).each do |arg|
if arg =~ /:/
arg = arg.split(":")
name, sig = arg
else
sig = arg
end
add_fparam(name, sig)
end
self
end
# Return an XML string representation of the signal interface elment.
def to_xml
xml = " <signal name=\"#{@name}\">\n"
@params.each do |param|
name = param.name ? "name=\"#{param.name}\" " : ""
xml += " <arg #{name}type=\"#{param.type}\"/>\n"
end
xml += " </signal>\n"
xml
end
end
# An (exported) property
# https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-properties
class Property
# @return [String] The name of the property, for example FooBar.
attr_reader :name
# @return [SingleCompleteType]
attr_reader :type
# @return [Symbol] :read :write or :readwrite
attr_reader :access
# @return [Symbol] What to call at Ruby side.
# (Always without the trailing `=`)
attr_reader :ruby_name
def initialize(name, type, access, ruby_name:)
@name = name
@type = type
@access = access
@ruby_name = ruby_name
end
# @return [Boolean]
def readable?
access == :read || access == :readwrite
end
# @return [Boolean]
def writable?
access == :write || access == :readwrite
end
# Return introspection XML string representation of the property.
def to_xml
" <property type=\"#{@type}\" name=\"#{@name}\" access=\"#{@access}\"/>\n"
end
end
end