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
use crate::api::propagation::TextMapPropagator;
use crate::sdk::propagation::{
    BaggagePropagator, TextMapCompositePropagator, TraceContextPropagator,
};
use std::sync::RwLock;

lazy_static::lazy_static! {
    /// The current global `TextMapPropagator` propagator.
    static ref GLOBAL_TEXT_MAP_PROPAGATOR: RwLock<Box<dyn TextMapPropagator + Send + Sync>> = RwLock::new(Box::new(TextMapCompositePropagator::new(vec![Box::new(TraceContextPropagator::new()), Box::new(BaggagePropagator::new())])));
    /// The global default `TextMapPropagator` propagator.
    static ref DEFAULT_TEXT_MAP_PROPAGATOR: TextMapCompositePropagator = TextMapCompositePropagator::new(vec![Box::new(TraceContextPropagator::new()), Box::new(BaggagePropagator::new())]);
}

/// Sets the given [`TextMapPropagator`] propagator as the current global propagator.
///
/// [`TextMapPropagator`]: ../api/context/propagation/trait.TextMapPropagator.html
///
/// # Examples
///
/// ```
/// use opentelemetry::{global, sdk::propagation::TraceContextPropagator};
///
/// // create your text map propagator
/// let propagator = TraceContextPropagator::new();
///
/// // assign it as the global propagator
/// global::set_text_map_propagator(propagator);
/// ```
pub fn set_text_map_propagator<P: TextMapPropagator + Send + Sync + 'static>(propagator: P) {
    let _lock = GLOBAL_TEXT_MAP_PROPAGATOR
        .write()
        .map(|mut global_propagator| *global_propagator = Box::new(propagator));
}

/// Executes a closure with a reference to the current global [`TextMapPropagator`] propagator.
///
/// [`TextMapPropagator`]: ../api/context/propagation/trait.TextMapPropagator.html
///
/// # Examples
///
/// ```
/// use opentelemetry::{api::propagation::TextMapPropagator, global};
/// use opentelemetry::sdk::propagation::TraceContextPropagator;
/// use std::collections::HashMap;
///
/// let example_carrier = HashMap::new();
///
/// // create your text map propagator
/// let tc_propagator = TraceContextPropagator::new();
/// global::set_text_map_propagator(tc_propagator);
///
/// // use the global text map propagator to extract contexts
/// let _cx = global::get_text_map_propagator(|propagator| propagator.extract(&example_carrier));
/// ```
pub fn get_text_map_propagator<T, F>(mut f: F) -> T
where
    F: FnMut(&dyn TextMapPropagator) -> T,
{
    GLOBAL_TEXT_MAP_PROPAGATOR
        .read()
        .map(|propagator| f(&**propagator))
        .unwrap_or_else(|_| f(&*DEFAULT_TEXT_MAP_PROPAGATOR as &dyn TextMapPropagator))
}