package async

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file lock_file_async.ml

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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
open! Core
open! Async

let create ?message ?close_on_exec ?unlink_on_exit path =
  In_thread.run (fun () ->
    Lock_file_blocking.create ?message ?close_on_exec ?unlink_on_exit path)
;;

let create_exn ?message ?close_on_exec ?unlink_on_exit path =
  let%map b = create ?message ?close_on_exec ?unlink_on_exit path in
  if not b then failwiths ~here:[%here] "Lock_file.create" path [%sexp_of: string]
;;

let random = lazy (Random.State.make_self_init ~allow_in_tests:true ())

let repeat_with_abort ~abort ~f =
  Deferred.repeat_until_finished () (fun () ->
    match%bind f () with
    | true -> return (`Finished `Ok)
    | false ->
      let delay = sec (Random.State.float (Lazy.force random) 0.3) in
      (match%map
         choose
           [ choice (after delay) (fun () -> `Repeat); choice abort (fun () -> `Abort) ]
       with
       | `Abort -> `Finished `Aborted
       | `Repeat -> `Repeat ()))
;;

let fail_on_abort path ~held_by = function
  | `Ok -> ()
  | `Aborted ->
    failwiths
      ~here:[%here]
      "Lock_file timed out waiting for existing lock"
      path
      (fun path ->
      match held_by with
      | None -> [%sexp (path : string)]
      | Some held_by -> [%sexp { lock : string = path; held_by : Sexp.t }])
;;

let waiting_create
  ?(abort = Deferred.never ())
  ?message
  ?close_on_exec
  ?unlink_on_exit
  path
  =
  repeat_with_abort ~abort ~f:(fun () ->
    create ?message ?close_on_exec ?unlink_on_exit path)
  >>| fail_on_abort path ~held_by:None
;;

let is_locked path = In_thread.run (fun () -> Lock_file_blocking.is_locked path)

module Nfs = struct
  let get_hostname_and_pid path =
    In_thread.run (fun () -> Lock_file_blocking.Nfs.get_hostname_and_pid path)
  ;;

  let get_message path = In_thread.run (fun () -> Lock_file_blocking.Nfs.get_message path)
  let unlock_exn path = In_thread.run (fun () -> Lock_file_blocking.Nfs.unlock_exn path)
  let unlock path = In_thread.run (fun () -> Lock_file_blocking.Nfs.unlock path)

  let create ?message path =
    In_thread.run (fun () -> Lock_file_blocking.Nfs.create ?message path)
  ;;

  let create_exn ?message path =
    In_thread.run (fun () -> Lock_file_blocking.Nfs.create_exn ?message path)
  ;;

  let waiting_create ?(abort = Deferred.never ()) ?message path =
    repeat_with_abort ~abort ~f:(fun () ->
      match%map create ?message path with
      | Ok () -> true
      | Error _ -> false)
    >>| fail_on_abort path ~held_by:None
  ;;

  let critical_section ?message path ~abort ~f =
    let%bind () = waiting_create ~abort ?message path in
    Monitor.protect
      ~rest:`Log
        (* `Log for compatibility. Ideally, we'd forward a ?rest argument, and push the
         ~rest:`Log into the callers *)
      ~finally:(fun () -> unlock_exn path)
      f
  ;;
end

module Flock = struct
  type t = Lock_file_blocking.Flock.t

  let lock_exn ?lock_owner_uid ?exclusive ?close_on_exec ~lock_path () =
    In_thread.run (fun () ->
      Lock_file_blocking.Flock.lock_exn
        ?lock_owner_uid
        ?exclusive
        ?close_on_exec
        ()
        ~lock_path)
  ;;

  let lock ?lock_owner_uid ?exclusive ?close_on_exec ~lock_path () =
    Monitor.try_with_or_error ~extract_exn:true (fun () ->
      lock_exn ?lock_owner_uid ?exclusive ?close_on_exec () ~lock_path)
  ;;

  let unlock_exn t = In_thread.run (fun () -> Lock_file_blocking.Flock.unlock_exn t)
  let unlock t = Monitor.try_with_or_error ~extract_exn:true (fun () -> unlock_exn t)

  let wait_for_lock_exn
    ?(abort = Deferred.never ())
    ?lock_owner_uid
    ?exclusive
    ?close_on_exec
    ~lock_path
    ()
    =
    let lock_handle = Set_once.create () in
    let%map () =
      repeat_with_abort ~abort ~f:(fun () ->
        match%map lock_exn ?lock_owner_uid ?exclusive ?close_on_exec () ~lock_path with
        | `We_took_it t ->
          Set_once.set_exn lock_handle [%here] t;
          true
        | `Somebody_else_took_it -> false)
      >>| fail_on_abort lock_path ~held_by:None
    in
    Set_once.get_exn lock_handle [%here]
  ;;

  let wait_for_lock ?abort ?lock_owner_uid ?exclusive ?close_on_exec ~lock_path () =
    Monitor.try_with_or_error ~extract_exn:true (fun () ->
      wait_for_lock_exn ?abort ?lock_owner_uid ?exclusive ?close_on_exec ~lock_path ())
  ;;
end

module Symlink = struct
  type t = Lock_file_blocking.Symlink.t

  let lock_exn ~lock_path ~metadata =
    In_thread.run (fun () -> Lock_file_blocking.Symlink.lock_exn ~lock_path ~metadata)
  ;;

  let lock ~lock_path ~metadata =
    Monitor.try_with_or_error ~extract_exn:true (fun () -> lock_exn ~lock_path ~metadata)
  ;;

  let unlock_exn t = In_thread.run (fun () -> Lock_file_blocking.Symlink.unlock_exn t)
  let unlock t = Monitor.try_with_or_error ~extract_exn:true (fun () -> unlock_exn t)

  let wait_for_lock_exn ?(abort = Deferred.never ()) ~lock_path ~metadata () =
    let lock_handle = Set_once.create () in
    let last_lock_holder = ref None in
    let%map () =
      repeat_with_abort ~abort ~f:(fun () ->
        match%map lock_exn ~lock_path ~metadata with
        | `We_took_it t ->
          Set_once.set_exn lock_handle [%here] t;
          true
        | `Somebody_else_took_it other_party_info ->
          last_lock_holder := Some other_party_info;
          false)
      >>| fail_on_abort
            lock_path
            ~held_by:
              (Option.map !last_lock_holder ~f:(function
                | Ok s -> Sexp.Atom s
                | Error e -> [%sexp Error (e : Error.t)]))
    in
    Set_once.get_exn lock_handle [%here]
  ;;

  let wait_for_lock ?abort ~lock_path ~metadata () =
    Monitor.try_with_or_error ~extract_exn:true (fun () ->
      wait_for_lock_exn ?abort ~lock_path ~metadata ())
  ;;
end
OCaml

Innovation. Community. Security.