package obus
Install
Dune Dependency
Authors
Maintainers
Sources
md5=81eb1034c6ef4421a2368a9b352199de
sha512=4b540497188a7d78f4f14f94c6b7fdff47dd06436a34e650ff378dd77bb3e2acb7afd45cd72daf4ddba06e732e9944d560c2882dc37862f1b1f1bb6df37e6205
doc/obus.internals/OBus_introspect_ext/index.html
Module OBus_introspect_ext
Source
OBus extended introspection
By default, introspection documents do not convey semantical information, such as enumerations or flags. However it is possible to attach information to interfaces and members.
This module implements an extended introspection format, which can be encoded into standard introspection documents by using annotations.
Annotations
The following annotations are used to encode additional informations into D-Bus introspection documents
The org.ocamlcore.forge.obus.Enum
annotation
The org.ocamlcore.forge.obus.Flag
annotation
The org.ocamlcore.forge.obus.Type
annotation
The org.ocamlcore.forge.obus.IType
annotation
The org.ocamlcore.forge.obus.OType
annotation
Extended types
type basic = private
| Byte
| Boolean
| Int16
| Int32
| Int64
| Uint16
| Uint32
| Uint64
| Double
| String
| Signature
| Object_path
| Unix_fd
| Enum of OBus_value.T.basic * (OBus_value.V.basic * string) list
(*An enumeration. The first argument is the real D-Bus type and the second is a list of
(constant, keyword)
.For example:
Enum(OBus_value.T.Uint32, [(OBus_value.V.Uint32 1l, "ok"); (OBus_value.V.Uint32 2l, "fail")])
Note that the real D-Bus type must be
*)OBus_value.T.basic.Byte
or an integer type.| Flag of OBus_value.T.basic * (OBus_value.V.basic * string) list
(*A flag. The first argument is the real type and the second is a list of
(bits, keyword)
.For example:
Flag(OBus_value.T.Uint32, [(OBus_value.V.Uint32 0x01l, "flag1"); (OBus_value.V.Uint32 0x02l, "flag2"); (OBus_value.V.Uint32 0x04l, "flag3")])
Note that the real D-Bus type must be
*)OBus_value.T.basic.Byte
or an integer type.
Constructors
Terms
type term = private
| Term of string * term list
(*A term. Arguments are
- the symbol name, which is either the name of a D-Bus type or a user defined type
- the arguments taken by the function associated to the symbol
| Tuple of term list
(*A list of terms, packed into a tuple. Tuples are always mapped to D-Bus structures. Moreover it is ensured that there is never a type of the form
*)Tuple[t]
.
A term represent a type, where symbols have not been resolved.
Construct a tuple. If the list is of length 1, the type itself is returned.
Symbols
type symbol = private
| Sym_enum of OBus_value.T.basic * (OBus_value.V.basic * string) list
| Sym_flag of OBus_value.T.basic * (OBus_value.V.basic * string) list
Type of user-definable symbols
Create an enumeration
Create a flag type
Conversions
Stripping
The following functions remove extension from types.
Projections
The following functions project standard D-Bus types into extended D-Bus types
Types to terms conversions
The following functions returns the term associated to a standard D-Bus type
Symbols resolution
Exception raised when the resolution of symbols of a type fails.
resolve env term
resolves symbols of term
using env
, and returns the extended type it denotes. It raises Resolve_error
if a symbol of term
is not found in env
.
Extended introspection ast
type member =
| Method of name * argument list * argument list * annotation list
| Signal of name * argument list * annotation list
| Property of name * term * access * annotation list
Encoding/decoding
Encode the given interface into a standard one by using annotations
Decode the given standard interface into an extended one by decoding annotations