obus
Pure Ocaml implementation of the D-Bus protocol
1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
back to documentation root
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Library obus.udisks
include OBus_peer.Private
type t = private OBus_peer.peer
val of_peer : OBus_peer.peer -> t
val to_peer : t -> OBus_peer.peer
Exceptions
val busy : OBus_error.name
val cancelled : OBus_error.name
val failed : OBus_error.name
val filesystem_driver_missing : OBus_error.name
val filesystem_tools_missing : OBus_error.name
val inhibited : OBus_error.name
val invalid_option : OBus_error.name
val not_found : OBus_error.name
val not_supported : OBus_error.name
val permission_denied : OBus_error.name
Methods
val inhibit : t -> inhibit_cookie Lwt.t
val uninhibit : t -> cookie:inhibit_cookie -> unit Lwt.t
val linux_md_create :
t ->
components:UDisks_device.t list ->
level:string ->
stripe_size:int64 ->
name:string ->
options:string list ->
UDisks_device.t Lwt.t
val linux_md_start :
t ->
components:UDisks_device.t list ->
options:string list ->
UDisks_device.t Lwt.t
val linux_lvm2_lvcreate :
t ->
group_uuid:string ->
name:string ->
size:int64 ->
num_stripes:int ->
stripe_size:int64 ->
num_mirrors:int ->
options:string list ->
fstype:string ->
fsoptions:string list ->
UDisks_device.t Lwt.t
val linux_lvm2_vgadd_pv :
t ->
uuid:string ->
physical_volume:UDisks_device.t ->
options:string list ->
unit Lwt.t
val drive_set_all_spindown_timeouts :
t ->
timeout_seconds:int ->
options:string list ->
all_spindown_timeouts_cookie Lwt.t
val drive_unset_all_spindown_timeouts :
t ->
cookie:all_spindown_timeouts_cookie ->
unit Lwt.t
val drive_inhibit_all_polling :
t ->
options:string list ->
inhibit_all_polling_cookie Lwt.t
val drive_uninhibit_all_polling :
t ->
cookie:inhibit_all_polling_cookie ->
unit Lwt.t
val find_device_by_major_minor :
t ->
device_major:int64 ->
device_minor:int64 ->
UDisks_device.t Lwt.t
val find_device_by_device_file :
t ->
device_file:string ->
UDisks_device.t Lwt.t
val enumerate_devices : t -> UDisks_device.t list Lwt.t
val enumerate_ports : t -> UDisks_port.t list Lwt.t
val enumerate_expanders : t -> UDisks_expander.t list Lwt.t
val enumerate_adapters : t -> UDisks_adapter.t list Lwt.t
Signals
val port_changed : t -> UDisks_port.t OBus_signal.t
val port_removed : t -> UDisks_port.t OBus_signal.t
val port_added : t -> UDisks_port.t OBus_signal.t
val expander_changed : t -> UDisks_expander.t OBus_signal.t
val expander_removed : t -> UDisks_expander.t OBus_signal.t
val expander_added : t -> UDisks_expander.t OBus_signal.t
val adapter_changed : t -> UDisks_adapter.t OBus_signal.t
val adapter_removed : t -> UDisks_adapter.t OBus_signal.t
val adapter_added : t -> UDisks_adapter.t OBus_signal.t
val device_changed : t -> UDisks_device.t OBus_signal.t
val device_removed : t -> UDisks_device.t OBus_signal.t
val device_added : t -> UDisks_device.t OBus_signal.t
type job = {
job_device : UDisks_device.t; | |
job_in_progress : bool; | (* Whether a job is currently in progress.</doc:summary *) |
job_is_cancellable : bool; | (* Whether the job is cancellable *) |
job_id : string; | (* The identifier of the job *) |
job_num_tasks : int; | (* Number of tasks in the job *) |
job_cur_task : int; | (* Current task number (zero-based offset) *) |
job_cur_task_id : string; | (* Task identifier for current task *) |
job_cur_task_percentage : float; | (* Percentage completed of current task (between 0 and 100, negative if unknown) *) |
}
val device_job_changed : t -> job OBus_signal.t
Properties
type fs = {
}
File-system informations
val known_filesystems : t -> fs list OBus_property.r
val supports_luks_devices : t -> bool OBus_property.r
val daemon_is_inhibited : t -> bool OBus_property.r
val daemon_version : t -> string OBus_property.r
val properties : t -> OBus_property.group