23
23
import com .google .gson .reflect .TypeToken ;
24
24
import com .google .gson .stream .JsonReader ;
25
25
import com .google .gson .stream .JsonWriter ;
26
+ import com .uber .m3 .tally .Scope ;
26
27
import java .io .IOException ;
27
28
import java .nio .charset .StandardCharsets ;
28
29
import org .apache .thrift .TBase ;
29
30
import org .apache .thrift .TDeserializer ;
30
31
import org .apache .thrift .TException ;
31
32
import org .apache .thrift .TSerializer ;
32
33
import org .apache .thrift .protocol .TJSONProtocol ;
34
+ import org .slf4j .Logger ;
35
+ import org .slf4j .LoggerFactory ;
33
36
34
37
/**
35
38
* Special handling of TBase message serialization and deserialization. This is to support for
36
39
* inline Thrift fields in Java class.
37
40
*/
38
41
public class TBaseTypeAdapterFactory implements TypeAdapterFactory {
39
42
43
+ private static final Logger logger = LoggerFactory .getLogger (TBaseTypeAdapterFactory .class );
44
+ private final Scope metricsScope ;
45
+
46
+ public TBaseTypeAdapterFactory (Scope metricsScope ) {
47
+ this .metricsScope = metricsScope ;
48
+ }
49
+
40
50
@ Override
41
51
public <T > TypeAdapter <T > create (Gson gson , TypeToken <T > typeToken ) {
42
52
// this class only serializes 'TBase' and its subtypes
@@ -47,19 +57,31 @@ public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> typeToken) {
47
57
new TypeAdapter <T >() {
48
58
@ Override
49
59
public void write (JsonWriter jsonWriter , T value ) throws IOException {
60
+ if (metricsScope != null ) {
61
+ metricsScope .counter ("tbase_message_write" ).inc (1 );
62
+ }
50
63
try {
51
64
String result =
52
65
newThriftSerializer ().toString ((TBase ) value , StandardCharsets .UTF_8 .name ());
53
66
jsonWriter .value (result );
67
+ logger .warn (
68
+ "TBase message will no longer be support in cadence-java-client V4, payload {}" ,
69
+ result );
54
70
} catch (TException e ) {
55
71
throw new DataConverterException ("Failed to serialize TBase" , e );
56
72
}
57
73
}
58
74
59
75
@ Override
60
76
public T read (JsonReader jsonReader ) throws IOException {
77
+ if (metricsScope != null ) {
78
+ metricsScope .counter ("tbase_message_read" ).inc (1 );
79
+ }
61
80
String value = jsonReader .nextString ();
62
81
try {
82
+ logger .warn (
83
+ "TBase message will no longer be support in cadence-java-client V4, payload {}" ,
84
+ value );
63
85
@ SuppressWarnings ("unchecked" )
64
86
T instance = (T ) typeToken .getRawType ().getConstructor ().newInstance ();
65
87
newThriftDeserializer ()
0 commit comments