blob: 267b10eb7648b2c3a44f69d31586a80b78b1c217 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
include Vyconf_pb
include Vyconf_types
type t = {
sock: Lwt_unix.file_descr;
ic: Lwt_io.input Lwt_io.channel;
oc: Lwt_io.output Lwt_io.channel;
enc: Pbrt.Encoder.t;
session: string option;
conf_mode: bool;
closed: bool
}
let substitute_default d o=
match o with
| None -> d
| Some v -> v
let create sockfile =
let open Lwt_unix in
let sock = socket PF_UNIX SOCK_STREAM 0 in
let%lwt () = connect sock (ADDR_UNIX sockfile) in
let ic = Lwt_io.of_fd Lwt_io.Input sock in
let oc = Lwt_io.of_fd Lwt_io.Output sock in
Lwt.return {
sock=sock; ic=ic; oc=oc;
enc=(Pbrt.Encoder.create ()); closed=false;
session=None; conf_mode=false;
}
let shutdown client =
let%lwt () = Lwt_unix.close client.sock in
Lwt.return {client with closed=true}
let do_request client req =
let enc = Pbrt.Encoder.create () in
let () = encode_request_envelope {token=client.session; request=req} enc in
let msg = Pbrt.Encoder.to_bytes enc in
let%lwt () = Message.write client.oc msg in
let%lwt resp = Message.read client.ic in
decode_response (Pbrt.Decoder.of_bytes resp) |> Lwt.return
let get_status client =
let req = Status in
let%lwt resp = do_request client req in
Lwt.return resp
let setup_session ?(on_behalf_of=None) client client_app =
if BatOption.is_some client.session then Lwt.return (Error "Client is already associated with a session") else
let id = on_behalf_of |> (function None -> None | Some x -> (Some (Int32.of_int x))) in
let req = Setup_session {client_application=(Some client_app); on_behalf_of=id} in
let%lwt resp = do_request client req in
match resp.status with
| Success ->
(match resp.output with
| Some token -> Lwt.return (Ok {client with session=(Some token)})
| None -> failwith "setup_session did not return a session token!")
| _ -> Error (substitute_default "Unknown error" resp.error) |> Lwt.return
|