This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
/
ApiMessageHttpResponseParser.java
136 lines (119 loc) · 4.86 KB
/
ApiMessageHttpResponseParser.java
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
* Copyright 2018 Google LLC
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google LLC nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.google.api.gax.httpjson;
import com.google.auto.value.AutoValue;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonIOException;
import com.google.gson.JsonSyntaxException;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.google.protobuf.TypeRegistry;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.lang.reflect.Type;
import java.nio.charset.StandardCharsets;
/** Utility class to parse {@link ApiMessage}s from HTTP responses. */
@AutoValue
public abstract class ApiMessageHttpResponseParser<ResponseT extends ApiMessage>
implements HttpResponseParser<ResponseT> {
public abstract ResponseT getResponseInstance();
protected abstract Gson getResponseMarshaller();
/**
* Constructs an ApiMessageHttpResponseParser from an instance of the message type to be
* formatted.
*/
private static <ResponseT extends ApiMessage> ApiMessageHttpResponseParser<ResponseT> create(
final ResponseT responseInstance) {
final Gson baseGson = new GsonBuilder().create();
TypeAdapter responseTypeAdapter;
Gson responseMarshaller = null;
if (responseInstance != null) {
responseTypeAdapter =
new TypeAdapter<ResponseT>() {
@Override
public void write(JsonWriter out, ResponseT value) {
baseGson.toJson(value, responseInstance.getClass(), out);
}
@Override
public ResponseT read(JsonReader in) {
return baseGson.fromJson(in, responseInstance.getClass());
}
};
responseMarshaller =
new GsonBuilder()
.registerTypeAdapter(responseInstance.getClass(), responseTypeAdapter)
.create();
}
return new AutoValue_ApiMessageHttpResponseParser<>(responseInstance, responseMarshaller);
}
public static <ResponseT extends ApiMessage>
ApiMessageHttpResponseParser.Builder<ResponseT> newBuilder() {
return new ApiMessageHttpResponseParser.Builder<>();
}
@Override
public ResponseT parse(InputStream httpResponseBody) {
return parse(httpResponseBody, null);
}
@Override
public ResponseT parse(InputStream httpResponseBody, TypeRegistry registry) {
return parse(new InputStreamReader(httpResponseBody, StandardCharsets.UTF_8), registry);
}
@Override
public ResponseT parse(Reader httpResponseBody, TypeRegistry registry) {
if (getResponseInstance() == null) {
return null;
} else {
Type responseType = getResponseInstance().getClass();
try {
return getResponseMarshaller().fromJson(httpResponseBody, responseType);
} catch (JsonIOException | JsonSyntaxException e) {
throw new RestSerializationException(e);
}
}
}
@Override
public String serialize(ResponseT response) {
return getResponseMarshaller().toJson(response);
}
public static class Builder<ResponseT extends ApiMessage> {
private ResponseT responseInstance;
private Builder() {}
public Builder<ResponseT> setResponseInstance(ResponseT responseInstance) {
this.responseInstance = responseInstance;
return this;
}
public ApiMessageHttpResponseParser<ResponseT> build() {
return ApiMessageHttpResponseParser.create(responseInstance);
}
}
}