Class: DBus::ProxyObjectFactory

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

Overview

D-Bus proxy object factory class

Class that generates and sets up a proxy object based on introspection data.

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(xml, bus, dest, path) ⇒ ProxyObjectFactory

Creates a new proxy object factory for the given introspection XML xml, bus, destination dest, and path.



499
500
501
# File 'lib/dbus/introspect.rb', line 499

def initialize(xml, bus, dest, path)
  @xml, @bus, @path, @dest = xml, bus, path, dest
end

Class Method Details

.introspect_into(po, xml) ⇒ Object

Investigates the sub-nodes of the proxy object po based on the introspection XML data xml and sets them up recursively.



505
506
507
508
509
510
511
512
513
514
# File 'lib/dbus/introspect.rb', line 505

def ProxyObjectFactory.introspect_into(po, xml)
  intfs, po.subnodes = IntrospectXMLParser.new(xml).parse
  intfs.each do |i|
    poi = ProxyObjectInterface.new(po, i.name)
    i.methods.each_value { |m| poi.define(m) }
    i.signals.each_value { |s| poi.define(s) }
    po[i.name] = poi
  end
  po.introspected = true
end

Instance Method Details

#buildObject

Generates, sets up and returns the proxy object.



517
518
519
520
521
# File 'lib/dbus/introspect.rb', line 517

def build
  po = ProxyObject.new(@bus, @dest, @path)
  ProxyObjectFactory.introspect_into(po, @xml)
  po
end