-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
59 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
(library | ||
(name opentelemetry_ambient_context_lwt) | ||
(public_name opentelemetry.ambient-context.lwt) | ||
(optional) ; lwt | ||
(synopsis | ||
"Storage backend for ambient-context using Lwt's sequence-associated storage") | ||
(libraries lwt opentelemetry.ambient-context thread-local-storage)) |
This file was deleted.
Oops, something went wrong.
37 changes: 37 additions & 0 deletions
37
src/ambient-context/lwt/opentelemetry_ambient_context_lwt.ml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
open struct | ||
let _internal_key : Hmap.t Lwt.key = Lwt.new_key () | ||
|
||
let ( let* ) = Option.bind | ||
end | ||
|
||
module M = struct | ||
let name = "Storage_lwt" | ||
|
||
let[@inline] get_map () = Lwt.get _internal_key | ||
|
||
let[@inline] with_map m cb = Lwt.with_value _internal_key (Some m) cb | ||
|
||
let create_key = Hmap.Key.create | ||
|
||
let get k = | ||
let* context = get_map () in | ||
Hmap.find k context | ||
|
||
let with_binding k v cb = | ||
let new_context = | ||
match get_map () with | ||
| None -> Hmap.singleton k v | ||
| Some old_context -> Hmap.add k v old_context | ||
in | ||
with_map new_context cb | ||
|
||
let without_binding k cb = | ||
let new_context = | ||
match get_map () with | ||
| None -> Hmap.empty | ||
| Some old_context -> Hmap.rem k old_context | ||
in | ||
with_map new_context cb | ||
end | ||
|
||
let storage () : Opentelemetry_ambient_context.storage = (module M) |
2 changes: 2 additions & 0 deletions
2
src/ambient-context/lwt/opentelemetry_ambient_context_lwt.mli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
val storage : unit -> Opentelemetry_ambient_context.storage | ||
(** Storage using Lwt keys *) |