Class: DBus::Method

Inherits:
InterfaceElement show all
Defined in:
lib/dbus/introspect.rb

Overview

D-Bus interface method class

This is a class representing methods that are part of an interface.

Instance Attribute Summary collapse

Attributes inherited from InterfaceElement

#name, #params

Instance Method Summary collapse

Methods inherited from InterfaceElement

#add_fparam, #add_param, #validate_name

Constructor Details

#initialize(name) ⇒ Method

Creates a new method interface element with the given name.



136
137
138
139
# File 'lib/dbus/introspect.rb', line 136

def initialize(name)
  super(name)
  @rets = []
end

Instance Attribute Details

#retsObject (readonly)

The list of return values for the method. Array: FormalParameter



133
134
135
# File 'lib/dbus/introspect.rb', line 133

def rets
  @rets
end

Instance Method Details

#add_return(name, signature) ⇒ Object

Add a return value name and signature.



142
143
144
# File 'lib/dbus/introspect.rb', line 142

def add_return(name, signature)
  @rets << FormalParameter.new(name, signature)
end

#from_prototype(prototype) ⇒ Object

Add parameter types by parsing the given prototype.



147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/dbus/introspect.rb', line 147

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

#to_xmlObject

Return an XML string representation of the method interface elment.



169
170
171
172
173
174
175
176
177
178
179
180
181
# File 'lib/dbus/introspect.rb', line 169

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