31
31
import java .util .HashMap ;
32
32
import java .util .Iterator ;
33
33
import java .util .Map ;
34
+ import org .slf4j .Logger ;
35
+ import org .slf4j .LoggerFactory ;
34
36
import org .slf4j .MDC ;
35
37
36
38
/** Support for OpenTracing spans */
37
39
public class OpenTracingContextPropagator implements ContextPropagator {
38
40
41
+ private static final Logger log = LoggerFactory .getLogger (OpenTracingContextPropagator .class );
42
+
39
43
private static ThreadLocal <SpanContext > currentOpenTracingSpanContext = new ThreadLocal <>();
40
44
private static ThreadLocal <Span > currentOpenTracingSpan = new ThreadLocal <>();
41
45
private static ThreadLocal <Scope > currentOpenTracingScope = new ThreadLocal <>();
@@ -59,8 +63,10 @@ public String getName() {
59
63
public Map <String , byte []> serializeContext (Object context ) {
60
64
Map <String , byte []> serializedContext = new HashMap <>();
61
65
Map <String , String > contextMap = (Map <String , String >) context ;
62
- for (Map .Entry <String , String > entry : contextMap .entrySet ()) {
63
- serializedContext .put (entry .getKey (), entry .getValue ().getBytes (Charset .defaultCharset ()));
66
+ if (contextMap != null ) {
67
+ for (Map .Entry <String , String > entry : contextMap .entrySet ()) {
68
+ serializedContext .put (entry .getKey (), entry .getValue ().getBytes (Charset .defaultCharset ()));
69
+ }
64
70
}
65
71
return serializedContext ;
66
72
}
@@ -76,11 +82,14 @@ public Object deserializeContext(Map<String, byte[]> context) {
76
82
77
83
@ Override
78
84
public Object getCurrentContext () {
85
+ log .debug ("Getting current context" );
79
86
Tracer currentTracer = GlobalTracer .get ();
80
87
Span currentSpan = currentTracer .scopeManager ().activeSpan ();
81
88
if (currentSpan != null ) {
82
89
HashMapTextMap contextTextMap = new HashMapTextMap ();
83
90
currentTracer .inject (currentSpan .context (), Format .Builtin .TEXT_MAP , contextTextMap );
91
+ log .debug (
92
+ "Retrieving current span data as current context: " + contextTextMap .getBackingMap ());
84
93
return contextTextMap .getBackingMap ();
85
94
} else {
86
95
return null ;
@@ -89,9 +98,11 @@ public Object getCurrentContext() {
89
98
90
99
@ Override
91
100
public void setCurrentContext (Object context ) {
101
+ log .debug ("Setting current context" );
92
102
Tracer currentTracer = GlobalTracer .get ();
93
103
Map <String , String > contextAsMap = (Map <String , String >) context ;
94
104
if (contextAsMap != null ) {
105
+ log .debug ("setting current context to " + contextAsMap );
95
106
HashMapTextMap contextTextMap = new HashMapTextMap (contextAsMap );
96
107
setCurrentOpenTracingSpanContext (
97
108
currentTracer .extract (Format .Builtin .TEXT_MAP , contextTextMap ));
@@ -100,6 +111,7 @@ public void setCurrentContext(Object context) {
100
111
101
112
@ Override
102
113
public void setUp () {
114
+ log .debug ("Starting a new opentracing span" );
103
115
Tracer openTracingTracer = GlobalTracer .get ();
104
116
Tracer .SpanBuilder builder =
105
117
openTracingTracer
@@ -111,6 +123,7 @@ public void setUp() {
111
123
}
112
124
113
125
Span span = builder .start ();
126
+ log .debug ("New span: " + span );
114
127
openTracingTracer .activateSpan (span );
115
128
currentOpenTracingSpan .set (span );
116
129
Scope scope = openTracingTracer .activateSpan (span );
@@ -134,8 +147,36 @@ public void onError(Throwable t) {
134
147
public void finish (boolean successful ) {
135
148
Scope currentScope = currentOpenTracingScope .get ();
136
149
Span currentSpan = currentOpenTracingSpan .get ();
150
+
151
+ log .debug ("Closing currently open span " + currentSpan .context ().toSpanId ());
137
152
currentScope .close ();
138
153
currentSpan .finish ();
154
+ currentOpenTracingScope .remove ();
155
+ currentOpenTracingSpan .remove ();
156
+ currentOpenTracingSpanContext .remove ();
157
+ }
158
+
159
+ /** Just check for other instances of the same class */
160
+ @ Override
161
+ public boolean equals (Object obj ) {
162
+ if (obj == null ) {
163
+ return false ;
164
+ }
165
+
166
+ if (this == obj ) {
167
+ return true ;
168
+ }
169
+
170
+ if (this .getClass ().equals (obj .getClass ())) {
171
+ return true ;
172
+ }
173
+
174
+ return false ;
175
+ }
176
+
177
+ @ Override
178
+ public int hashCode () {
179
+ return this .getClass ().hashCode ();
139
180
}
140
181
141
182
private class HashMapTextMap implements TextMap {
0 commit comments