Skip to content

Latest commit

 

History

History
132 lines (87 loc) · 7.06 KB

README.md

File metadata and controls

132 lines (87 loc) · 7.06 KB

qfacedotnet

A minimal dbus framework which generates bindings for Tmds.DBus based on interface-definition-language qface.

Architecture

Based on qface interface definitions qfacedotnet generates glue bindings for Tmds.DBus, effectively leaving only concrete implementation of methods open.

There are four main components in qfacedotnet architecture.

  • Interface declares methods and contains properties and events(signals) defined in qface files
  • InterfaceDBus adapts the Interface to the one expected by Tmds.DBus
  • DBusAdapter exports methods, properties and signals to dbus from service process
  • DBusProxy represents the DBusAdapter on the client process

Class hierarchy

Initialization

DBusAdapter exposes an object on bus via RegisterObject from given connection. DBusProxy attempts to connect to a remote object via ConnectProxy and tries to fetch all properties, given the bus name of the service is known (should be achieved automatically by Object Management). Afterward the status of the connection to the service can be checked by the conventional ready property]. On successful connection the DBusProxy is able to call DBusAdapter methods besides it will watch the signals and invoke corresponding events.

Initial Sequence

Ready Property

ready is a conventional auxiliary property to be checked to ensure that the connection to remote-object was successful and the remote-object DBusAdapter is actually ready to handle method calls.

Properties

Properties are available as defined in qface interface both in Interface and DBusProxy. DBusProxy fetches all properties (given a successful connection) on CreateProxy call. Properties are always in sync between DBusProxy and DBusAdapter by the mean of PropertiesChanged signal.

Given a property is not defined readonly in qface, its value might be changed by DBusProxy. See Properties Checks on how to optionally verify the assigned value on DBusAdapter.

Property get set

Methods

Remote method calls are initiated by DBusProxy and invoke the corresponding DBusAdapter function. Beside normal code path exceptions can be handled as well.

Signals

Signals defined in qface interface may be invoked from DBusAdapter by calling the corresponding function. In turn signals are received by the DBusProxy side and registered Observers are informed.

Exceptions

methods could throw exception of type DBusExceptions on unexpected states. DBusExceptions are caught by Tmds.DBus and are transfered into error replies over dbus.

Equivalently on client process those error replies will be caught and Tmds.DBus will throw a DBusException with same error name and message.

NOTE: It is important to make sure ErrorName is in right format. *.*

throw new DBusException("DBus.Error.InvalidValue", "Error Message")

Generation

A python script is the code-generator for qfacedotnet. It is possible to integrate the code-generation in your csproj configuration.

<Target Name="Generate" BeforeTargets="BeforeBuild;BeforeRebuild">
<Message Text="Generate files..." Importance="High" />
<Exec Command="python3 $(Pkgqfacedotnet)/content/generator/codegen.py --input <LIST_OF_INPUTS> --dependency <LIST_OF_DEPENDENCIES>  Outputs="<OUTPUT_PATH>/*.cs">
  <Output ItemName="Generated" TaskParameter="Outputs" />
</Exec>
<ItemGroup>
  <Compile Remove="@(Generated)" />
  <Compile Include="@(Generated)" />
  <FileWrites Include="@(Generated)" />
</ItemGroup>
</Target>
<ItemGroup>
<PackageReference Include="qfacedotnet" Version="<VERSION>" GeneratePathProperty="true" />
</ItemGroup>

--input list of all qface input files to generate bindings for.

--dependency argument is important for qfacedotnet to locate the module interdependencies otherwise current directory (where go generator file located) is taken.

--output optional output path of generated files otherwise module name will be used as path.

Dependencies

The qfacedotnet python dependency are defined in requirement.txt file. These dependencies needs to be installed once but nevertheless you can integrate this step as well into project configuration.

<Target Name="Generate" BeforeTargets="BeforeBuild;BeforeRebuild">
<Exec Command="pip3 install -r $(Pkgqfacedotnet)/content/generator/requirements.txt" />
<ItemGroup>
<PackageReference Include="qfacedotnet" Version="<VERSION>" GeneratePathProperty="true" />
</ItemGroup>

Module Interdependency

Modules may import other modules via import keyword followed by the imported module name and version.

Object Management

Object management in qfacedotnet follows the dbus specification of org.freedesktop.DBus.ObjectManager. The root object / implements the ObjectManager interface which can be used to query list of objects in this service.

Besides Object Manager monitors all related objects on bus in order to figure out to which service a DBusProxy needs to connect to. See also related services. As long as prerequisite are in place this is a seamless operation.

Prerequisite

  • DBusAdapter and DBusProxy have the same interface name and object path (see dbus-definition)
  • Bus name of DBusAdapter is in expected format (see also related services)
  • Service of DBusAdpater has a valid object manager under the root object /

Related Services

A predefined name pattern of bus name makes detection of related services possible. So that all related services and their objects life-cycle can be monitored.

NOTE: The "qface.registry." pattern is used in case "DBUS_SERVICE_NAME_PATTERN" environment variable not defined

Service Lifetime

Individual services can be disposed by respective DBusAdapter. Given object management governs service-client relation it would lead into connected DBusProxys ready property] to be set to false.

DBusAdapter.Dispose();

Limitation

There are some limitation with regards to qface:

  • keyword Model is not supported
  • keyword Flag is not supported
  • extends keyword is not supported