refactor: move the Mutex.protect backport into Util_mutex

This commit is contained in:
Simon Cruanes 2025-11-19 12:20:13 -05:00
parent 1a8f66b49e
commit e31f5f6aba
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
6 changed files with 25 additions and 28 deletions

View file

@ -1,3 +1,5 @@
open Opentelemetry.Util_mutex
type 'a t = {
mutex: Mutex.t;
cond: Condition.t;
@ -7,19 +9,6 @@ type 'a t = {
exception Closed
(* Mutex.protect was added in OCaml 5.1, but we want support back to 4.08 *)
(* cannot inline, otherwise flambda might move code around. (as per Stdlib) *)
let[@inline never] protect m f =
Mutex.lock m;
match f () with
| x ->
Mutex.unlock m;
x
| exception e ->
(* NOTE: [unlock] does not poll for asynchronous exceptions *)
Mutex.unlock m;
Printexc.raise_with_backtrace e (Printexc.get_raw_backtrace ())
let create () : _ t =
{
mutex = Mutex.create ();

View file

@ -1,3 +1,5 @@
module Otel = Opentelemetry
type 'a t = {
mutable size: int;
mutable q: 'a list;
@ -9,19 +11,6 @@ type 'a t = {
mutex: Mutex.t;
}
(* Mutex.protect was added in OCaml 5.1, but we want support back to 4.08 *)
(* cannot inline, otherwise flambda might move code around. (as per Stdlib) *)
let[@inline never] protect_mutex m f =
Mutex.lock m;
match f () with
| x ->
Mutex.unlock m;
x
| exception e ->
(* NOTE: [unlock] does not poll for asynchronous exceptions *)
Mutex.unlock m;
Printexc.raise_with_backtrace e (Printexc.get_raw_backtrace ())
let default_high_watermark batch_size =
if batch_size = 1 then
100
@ -58,7 +47,7 @@ let ready_to_pop ~force ~now self =
let pop_if_ready ?(force = false) ~now (self : _ t) : _ list option =
let rev_batch_opt =
protect_mutex self.mutex @@ fun () ->
Otel.Util_mutex.protect self.mutex @@ fun () ->
if ready_to_pop ~force ~now self then (
assert (self.q <> []);
let batch = self.q in
@ -83,7 +72,7 @@ let rec push_unprotected (self : _ t) ~(elems : _ list) : unit =
push_unprotected self ~elems:xs
let push (self : _ t) elems : [ `Dropped | `Ok ] =
protect_mutex self.mutex @@ fun () ->
Otel.Util_mutex.protect self.mutex @@ fun () ->
if self.size >= self.high_watermark then
(* drop this to prevent queue from growing too fast *)
`Dropped

View file

@ -1,3 +1,5 @@
(** A global lock, modifiable by the user *)
val set_mutex : lock:(unit -> unit) -> unlock:(unit -> unit) -> unit
(** Set a pair of lock/unlock functions that are used to protect access to
global state, if needed. By default these do nothing. *)

View file

@ -17,6 +17,10 @@ module AList = AList
(** Atomic list, for internal usage
@since 0.7 *)
module Util_mutex = Util_mutex
(** Utilities for internal usage.
@since NEXT_RELEASE *)
(** {2 Wire format} *)
module Proto = Opentelemetry_proto

12
src/core/util_mutex.ml Normal file
View file

@ -0,0 +1,12 @@
(* Mutex.protect was added in OCaml 5.1, but we want support back to 4.08 *)
(* cannot inline, otherwise flambda might move code around. (as per Stdlib) *)
let[@inline never] protect m f =
Mutex.lock m;
match f () with
| x ->
Mutex.unlock m;
x
| exception e ->
(* NOTE: [unlock] does not poll for asynchronous exceptions *)
Mutex.unlock m;
Printexc.raise_with_backtrace e (Printexc.get_raw_backtrace ())

1
src/core/util_mutex.mli Normal file
View file

@ -0,0 +1 @@
val protect : Mutex.t -> (unit -> 'a) -> 'a