15
15
from logging import getLogger
16
16
from re import compile
17
17
from types import MappingProxyType
18
- from typing import Mapping , Optional
18
+ from typing import Dict , Mapping , Optional
19
19
20
20
from opentelemetry .context import create_key , get_value , set_value
21
21
from opentelemetry .context .context import Context
@@ -44,10 +44,7 @@ def get_all(
44
44
Returns:
45
45
The name/value pairs in the Baggage
46
46
"""
47
- baggage = get_value (_BAGGAGE_KEY , context = context )
48
- if isinstance (baggage , dict ):
49
- return MappingProxyType (baggage )
50
- return MappingProxyType ({})
47
+ return MappingProxyType (_get_baggage_value (context = context ))
51
48
52
49
53
50
def get_baggage (
@@ -64,7 +61,7 @@ def get_baggage(
64
61
The value associated with the given name, or null if the given name is
65
62
not present.
66
63
"""
67
- return get_all (context = context ).get (name )
64
+ return _get_baggage_value (context = context ).get (name )
68
65
69
66
70
67
def set_baggage (
@@ -80,7 +77,7 @@ def set_baggage(
80
77
Returns:
81
78
A Context with the value updated
82
79
"""
83
- baggage = dict ( get_all ( context = context ))
80
+ baggage = _get_baggage_value ( context = context ). copy ( )
84
81
baggage [name ] = value
85
82
return set_value (_BAGGAGE_KEY , baggage , context = context )
86
83
@@ -95,7 +92,7 @@ def remove_baggage(name: str, context: Optional[Context] = None) -> Context:
95
92
Returns:
96
93
A Context with the name/value removed
97
94
"""
98
- baggage = dict ( get_all ( context = context ))
95
+ baggage = _get_baggage_value ( context = context ). copy ( )
99
96
baggage .pop (name , None )
100
97
101
98
return set_value (_BAGGAGE_KEY , baggage , context = context )
@@ -113,6 +110,13 @@ def clear(context: Optional[Context] = None) -> Context:
113
110
return set_value (_BAGGAGE_KEY , {}, context = context )
114
111
115
112
113
+ def _get_baggage_value (context : Optional [Context ] = None ) -> Dict [str , object ]:
114
+ baggage = get_value (_BAGGAGE_KEY , context = context )
115
+ if isinstance (baggage , dict ):
116
+ return baggage
117
+ return {}
118
+
119
+
116
120
def _is_valid_key (name : str ) -> bool :
117
121
return _KEY_PATTERN .fullmatch (str (name )) is not None
118
122
0 commit comments