package obus
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=3bf0aeb00bf90cd4111483b37cefcb39af38ad6db1aeb6949a2fbecc13ff9a90
md5=7dd48f9bde3e069898fa08e9972596b5
doc/obus.internals/OBus_name/index.html
Module OBus_name
D-Bus names
For specific restrictions on D-Bus names, see
General restrictions include:
- names must not be empty
- names must contains only ascii characters
type bus = OBus_string.t
Bus names
example: "org.freedesktop.DBus", ":1.1"
val validate_bus : OBus_string.validator
val is_unique : bus -> bool
Tell wether a bus name is a unique connection name or not.
type interface = OBus_string.t
Interface names
example: "org.freedesktop.DBus.Introspectable"
val validate_interface : OBus_string.validator
type member = OBus_string.t
Methods/signals/properties names
example: "StartServiceByName"
val validate_member : OBus_string.validator
type error = OBus_string.t
Error names
example: "org.freedesktop.Error.UnknownMethod"
val validate_error : OBus_string.validator
D-Bus name translation
Split a name into longest blocks matched by the regular expression "A-Z
*^A-Z.
*":
split "SetCPUFreqGovernor" = ["Set"; "CPUFreq"; "Governor"]
, split "org.freedesktop.DBus" = ["org"; "freedesktop"; "DBus"]
Translate a D-Bus name into an ocaml-style lower-identifier:
caml_lid "SetCPUFreqGovernor" = "set_cpufreq_governor"
Translate a D-Bus name into an ocaml-style upper-identifier:
caml_uid "org.freedesktop.DBus" = "Org_freedesktop_dbus"
Translate a D-Bus name into an haskell-style lower-identifier:
haskell_lid "SetCPUFreqGovernor" = "setCPUFreqGovernor"