Plasma GitLab Archive
Projects Blog Knowledge

Module Rpc_client


module Rpc_client: sig .. end
RPC clients


This module implements an RPC client, i.e. provides means to connect to an RPC service and call remote procedures. In general, this module works in an asynchronous way and is implemented event-driven. All events are handled by an event queue of type Unixqueue.t that must already exist and to which this module adds its own event handlers and event resources. This means that this module can co-exist with other services and share the same event queue with them.

You can push several procedure calls on the event queue at once. The queue serves then as a pipeline; the calls are sent to the server as long as the server accepts new calls. Replies are received in any order, and the return values of the remote procedures are delivered using a callback function.

You can set timeouts and force automatic retransmission if you want this; these features are enabled by default if the underlying transport mechanism is UDP. Timeouts and other exceptions are delivered to the callback functions, too.

The whole mechanism is designed to allow maximum parallelism without needing to use the multi-threading features of O'Caml. Especially, the following parallelisms can be done:

  • Call several procedures of the same server in parallel. Note that this does not necessarily mean that the procedures are run in parallel since the server is free to decide whether to work in a synchronous or asynchronous way.
  • Call several procedures of different servers in parallel. To do so, simply add several RPC clients to the same event queue.
  • Call a procedure and do something completely different in the background; this works well as long as the other task can be programmed using file descriptor events, too.
However, there are still some restrictions concerning asynchronous calls. Some of them will be removed in the future, but others are difficult to tackle:
  • Authentication methods requiring RPC calls or other network services are performed in an synchronous way, too.
  • Name service lookups are synchronous, too.

exception Message_lost
got EOF when some pending procedure calls were not replied or even sent
exception Message_timeout
After all retransmissions, there was still no reply
exception Communication_error of exn
an I/O error happened
exception Client_is_down
The RPC call cannot be performed because the client has been shut down in the meantime. You can get this exception if you begin a new call, but the connection is closed now.
exception Keep_call
This exception can be raised by the callback function that is invoked when the server response arrives. It causes that the RPC call record is kept in the housekeeping structure of the client. If the server sends another response, the callback function will be invoked again. I.e. one call can be replied several times (batching).
exception Unbound_exception of exn
This exception can be raised by the callback function that is invoked when the server response arrives. It simply causes that the inner exception bypasses the exception handler, and falls through to the caller of Unixqueue.run. This is useful to jump out of the running RPC routines.
type t 
The type of RPC clients

type connector =
| Inet of (string * int) (*Hostname or IP address, port*)
| Internet of (Unix.inet_addr * int) (*The address plus port*)
| Unix of string (*Path to unix dom sock*)
| Descriptor of Unix.file_descr (*Pass an already open socket descriptor. The descriptor will not be closed when the client is done!*)
| Dynamic_descriptor of (unit -> Unix.file_descr) (*The function is called to get the socket descriptor. Unlike Descriptor, the descriptor will be closed when the client is done*)
| Portmapped of string (*The portmapper on this host is queried to get address information*)
val shutdown_connector : t -> Rpc_transport.rpc_multiplex_controller -> unit
The default implementation to shut down the connector. For Descriptor this is a no-op, for the other connector types the socket is closed.
val create : ?program_number:Rtypes.uint4 ->
?version_number:Rtypes.uint4 ->
?initial_xid:int ->
?shutdown:(t -> Rpc_transport.rpc_multiplex_controller -> unit) ->
Unixqueue.event_system ->
connector -> Rpc.protocol -> Rpc_program.t -> t
Opens a connection to the server specified by the connector. The server is assumed to implement an RPC program as specified by the Rpc_program.t argument. (You can override the program and version numbers stored in this argument by the optional parameters program_number and version_number.)

All communication to the server is handled using the given queue Unixqueue.event_system.

If the protocol is Tcp, the communication will be handled stream- oriented. In this case, no timeout is detected and no retransmissions are done.

If the protocol is Udp, a datagram-oriented communication style is used. This works only for Internet UDP sockets because these are bidirectional (Unix domain sockets are unidirectional and do not work). For Udp, there is a timeout of 15 seconds and a maximum of 3 retransmissions (i.e. a total of 4 transmission trials).

Unlike create2, servers made with create always use blocking connect for backwards compatibility.


program_number : Overrides the program number in Rpc_program.t
version_number : Overrides the version number in Rpc_program.t
initial_xid : The initial value for the session identifier.
shutdown : This function is called when the client is shut down to close the client socket. By default, shutdown_connector is called.
class type socket_config = object .. end
Configuration for `Socket (see below).
val default_socket_config : socket_config
Default configuration with non_blocking_connect = true
class default_socket_config : socket_config
Default configuration as class
val blocking_socket_config : socket_config
Configuration with non_blocking_connect = false
class blocking_socket_config : socket_config
blocking connect configuration as class
type mode2 = [ `Multiplexer_endpoint of Rpc_transport.rpc_multiplex_controller
| `Socket of Rpc.protocol * connector * socket_config
| `Socket_endpoint of Rpc.protocol * Unix.file_descr ]
Determines the type of the client for create2:

  • `Socket_endpoint(proto,fd): Socket fd is a connected socket descriptor used for communication. proto determines the encapsulation; should be Tcp for stream sockets and Udp for datagram sockets. The descriptor will be closed when the client terminates.
  • `Multiplexer_endpoint m: m is an RPC multiplex controller.
  • `Socket(proto, conn, config): Creates and connect a client socket according to conn. proto determines the encapsulation; should be Tcp for stream sockets and Udp for datagram sockets. config specifies configuration details.

val create2 : ?program_number:Rtypes.uint4 ->
?version_number:Rtypes.uint4 ->
?initial_xid:int ->
?shutdown:(t -> Rpc_transport.rpc_multiplex_controller -> unit) ->
mode2 -> Rpc_program.t -> Unixqueue.event_system -> t
Creates a new style client. See create and mode2 for explanations.
val configure : t -> int -> float -> unit
configure client retransmissions timeout: sets the number of retransmissions and the timeout for the next calls. (These values are defaults; the actual values are stored with each call.)

Values of retransmissions > 0 are semantically only valid if the called procedures are idempotent, i.e. invoking them several times with the same values has the same effect as only one invocation. Positive values for retransmissions should only be used for Udp-style communication.

The timeout value determines how long the client waits until the next retransmission is done, or, if no more retransmissions are permitted, a Message_timeout exception is delivered to the receiving callback function. A timeout value of 0.0 means immediate timeout (see next paragraph). A negative timeout value means 'no timeout'. Positive timeout values are possible for both Udp and Tcp connections. Timeout values are measured in seconds.

There is a special application for the timeout value 0.0: If you don't expect an answer from the server at all ("batch mode"), this timeout value will cause that the message handler will get a Message_timeout exception immediately. You should ignore this exception for batch mode. The positive effect from the timeout is that the internal management routines will remove the remote call from the list of pending calls such that this list will not become too long.

Note that the meaning of timeouts for TCP connections is unclear. The TCP stream may be in an undefined state. Because of this, the client does not make any attempt to clean the state up for TCP. The user is advised to shut down the client, and reconnect.

There is another subtle difference between UDP and TCP. For UDP, the timer is started when the packet is sent. For TCP, however, the timer is already started when the RPC call is added to the queue, i.e. much earlier. This means that the time for connecting to the remote service is also bound by the timeout. The rationale is that TCP timeouts are usually set to catch total service failures rather than packet losses, and this behaviour is best for this purpose.

val set_dgram_destination : t -> Unix.sockaddr option -> unit
set_dgram_destination client addr_opt: This function is required for using the client in conjunction with unconnected UDP sockets. For connected sockets, the destination of datagrams is implicitly given. For unconnected sockets, one has to set the destination explicitly. Do so by calling set_dgram_destination with Some addr as addr_opt argument before doing the next call. Passing None as addr_opt removes the explicit destination again. Note that unconnected sockets differ from connected sockets also in the relaxation that they can receive messages from any IP address, and not only the one they are connected to.
val set_exception_handler : t -> (exn -> unit) -> unit
sets an exception handler (the default prints the exception to stderr). Only exceptions resulting from invocations of a callback function are forwarded to this handler (unless wrapped by Unbound_exception).

Exceptions occuring in the handler itself are not caught, and will fall through.

val add_call : ?when_sent:(unit -> bool) ->
t ->
string -> Xdr.xdr_value -> ((unit -> Xdr.xdr_value) -> unit) -> unit
add_call client proc_name arg f: add the call to the procedure name with argument arg to the queue of unprocessed calls.

When the reply has arrived or an error situation is detected, the function f is called back. The argument of f is another function that will return the result or raise an exception:

 let my_f get_result =
      try
        let result = get_result() in
        ...
      with
         exn -> ...
    in
    add_call client name arg my_f
 

If f does not catch the exception, the pluggable exception handler of the client is called (see set_exception_handler). Exceptions are either Message_lost, Message_timeout, or Communication_error.

The function f can raise the exception Keep_call to indicate the special handling that a further reply of the call is expected (batching).

when_sent: This function is called when the call has been fully sent to the server, but before the reply arrives. The function returns whether to continue the call. By returning false the call is removed from the internal bookkeeping. The function f is not called in this case.

val event_system : t -> Unixqueue.event_system
Returns the unixqueue to which the client is attached
val program : t -> Rpc_program.t
Returns the program the client represents
val get_socket_name : t -> Unix.sockaddr
val get_peer_name : t -> Unix.sockaddr
Return the addresses of the client socket and the server socket, resp. Note that these are only available when the client is already connected. The function calls fail in this case. It is also possible that the underlying transport mechanism does not know these data.
val get_sender_of_last_response : t -> Unix.sockaddr
Return the address of the sender of the last received response.
val get_protocol : t -> Rpc.protocol
Get the protocol flavour
val sync_call : t -> string -> Xdr.xdr_value -> Xdr.xdr_value

Calls the procedure synchronously. Note that this implies that the underlying unixqueue is started and that all events are processed regardless of whether they have something to do with this call or not.
val shut_down : t -> unit
Shuts down the connection. Any unprocessed calls get the exception Message_lost.
class type auth_session = object .. end
An auth_session object is normally created for every client instance.
class type auth_method = object .. end
An auth_method object represents a method of authentication.
val auth_none : auth_method
The authentication method that does not perform authentication.
val set_auth_methods : t -> auth_method list -> unit
Set the authentication methods for this client. The passed methods are tried in turn until a method is accepted by the server. The default is auth_none
val verbose : bool -> unit
set whether you want debug messages or not
This web site is published by Informatikbüro Gerd Stolpmann
Powered by Caml