package obus
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=3bf0aeb00bf90cd4111483b37cefcb39af38ad6db1aeb6949a2fbecc13ff9a90
md5=7dd48f9bde3e069898fa08e9972596b5
doc/obus/OBus_wire/index.html
Module OBus_wire
Message serialization/deserialization
Exception raised when a message can not be sent. The parameter is an error message.
Possible reasons are: the message is too big or contains arrays that are too big.
Exception raised when a received message is not valid.
Possible reasons are:
- a size limit is exceeded
- a name/string/object-path is not valid
- a boolean value is other than 0 or 1
- ...
val read_message : Lwt_io.input_channel -> OBus_message.t Lwt.tread_message ic deserializes a message from a channel. It fails if the message contains file descriptors.
val write_message :
Lwt_io.output_channel ->
?byte_order:Lwt_io.byte_order ->
OBus_message.t ->
unit Lwt.twrite_message oc ?byte_order message serializes a message to a channel. It fails if the message contains file descriptors.
val message_of_string : string -> Unix.file_descr array -> OBus_message.tmessage_of_string buf fds returns a message from a string. fds is used to resolv file descriptors the message may contains.
val string_of_message :
?byte_order:Lwt_io.byte_order ->
OBus_message.t ->
string * Unix.file_descr arrayMarshal a message into a string. Returns also the list of file descriptors that must be sent with the message.
val reader : Lwt_unix.file_descr -> readerreader unix_socket creates a reader from a unix socket
val read_message_with_fds : reader -> OBus_message.t Lwt.tRead a message with its file descriptors from the given reader
close_reader reader closes the given reader.
Note: this does not close the underlying file descriptor.
val writer : Lwt_unix.file_descr -> writerwriter unix_socket creates a writer from a unix socket
val write_message_with_fds :
writer ->
?byte_order:Lwt_io.byte_order ->
OBus_message.t ->
unit Lwt.tWrite a message with its file descriptors on the given writer