Skip to content

Commit

Permalink
Fixed according to PR
Browse files Browse the repository at this point in the history
  • Loading branch information
allenc3 committed Jul 14, 2020
1 parent 1ddabbb commit f601561
Showing 1 changed file with 83 additions and 86 deletions.
Expand Up @@ -15,6 +15,7 @@
*/
package com.google.cloud.bigquery.storage.v1alpha2;

import com.google.common.collect.ImmutableMap;
import com.google.protobuf.Descriptors.Descriptor;
import com.google.protobuf.Descriptors.FieldDescriptor;
import com.google.protobuf.DynamicMessage;
Expand All @@ -29,6 +30,16 @@

/** Converts Json data to protocol buffer messages given the protocol buffer descriptor. */
public class JsonToProtoMessage {
private static ImmutableMap<FieldDescriptor.Type, String> FieldTypeToDebugMessage =
new ImmutableMap.Builder<FieldDescriptor.Type, String>()
.put(FieldDescriptor.Type.BOOL, "boolean")
.put(FieldDescriptor.Type.BYTES, "string")
.put(FieldDescriptor.Type.INT32, "int32")
.put(FieldDescriptor.Type.DOUBLE, "double")
.put(FieldDescriptor.Type.INT64, "int64")
.put(FieldDescriptor.Type.STRING, "string")
.put(FieldDescriptor.Type.MESSAGE, "object")
.build();

/**
* Converts Json data to protocol buffer messages given the protocol buffer descriptor.
Expand All @@ -44,7 +55,8 @@ public static DynamicMessage convertJsonToProtoMessage(
if (json.length() == 0) {
throw new IllegalArgumentException("JSONObject is empty.");
}
return convertJsonToProtoMessageImpl(protoSchema, json, "root", true, allowUnknownFields);
return convertJsonToProtoMessageImpl(
protoSchema, json, "root", /*topLevel=*/ true, allowUnknownFields);
}

/**
Expand Down Expand Up @@ -73,21 +85,19 @@ private static DynamicMessage convertJsonToProtoMessageImpl(
protoFieldNames.add(field.getName());
}

HashMap<String, String> jsonLowercaseNameToName = new HashMap<String, String>();
HashMap<String, String> jsonLowercaseNameToJsonName = new HashMap<String, String>();
String[] jsonNames = JSONObject.getNames(json);
for (int i = 0; i < jsonNames.length; i++) {
jsonLowercaseNameToName.put(jsonNames[i].toLowerCase(), jsonNames[i]);
jsonLowercaseNameToJsonName.put(jsonNames[i].toLowerCase(), jsonNames[i]);
}

if (!allowUnknownFields) {
for (int i = 0; i < jsonNames.length; i++) {
if (!protoFieldNames.contains(jsonNames[i])) {
throw new IllegalArgumentException(
"JSONObject has fields unknown to BigQuery: "
+ jsonScope
+ "."
+ jsonNames[i]
+ ". Set allowUnknownFields to True to allow unknown fields.");
String.format(
"JSONObject has fields unknown to BigQuery: %s.%s. Set allowUnknownFields to True to allow unknown fields.",
jsonScope, jsonNames[i]));
}
}
}
Expand All @@ -97,7 +107,7 @@ private static DynamicMessage convertJsonToProtoMessageImpl(
String lowercaseFieldName = field.getName().toLowerCase();
String currentScope = jsonScope + "." + field.getName();

if (!jsonLowercaseNameToName.containsKey(lowercaseFieldName)) {
if (!jsonLowercaseNameToJsonName.containsKey(lowercaseFieldName)) {
if (field.isRequired()) {
throw new IllegalArgumentException(
"JSONObject does not have the required field " + currentScope + ".");
Expand All @@ -111,15 +121,15 @@ private static DynamicMessage convertJsonToProtoMessageImpl(
protoMsg,
field,
json,
jsonLowercaseNameToName.get(lowercaseFieldName),
jsonLowercaseNameToJsonName.get(lowercaseFieldName),
currentScope,
allowUnknownFields);
} else {
fillRepeatedField(
protoMsg,
field,
json,
jsonLowercaseNameToName.get(lowercaseFieldName),
jsonLowercaseNameToJsonName.get(lowercaseFieldName),
currentScope,
allowUnknownFields);
}
Expand Down Expand Up @@ -151,78 +161,63 @@ private static void fillField(
boolean allowUnknownFields)
throws IllegalArgumentException {
java.lang.Object val;
switch (fieldDescriptor.getType()) {
case BOOL:
try {
String error;
try {
switch (fieldDescriptor.getType()) {
case BOOL:
protoMsg.setField(fieldDescriptor, new Boolean(json.getBoolean(actualJsonKeyName)));
} catch (JSONException e) {
throw new IllegalArgumentException(
"JSONObject does not have a boolean field at " + currentScope + ".");
}
break;
case BYTES:
try {
break;
case BYTES:
protoMsg.setField(fieldDescriptor, json.getString(actualJsonKeyName).getBytes());
} catch (JSONException e) {
throw new IllegalArgumentException(
"JSONObject does not have a string field at " + currentScope + ".");
}
break;
case INT64:
val = json.get(actualJsonKeyName);
if (val instanceof Integer) {
protoMsg.setField(fieldDescriptor, new Long((Integer) val));
} else if (val instanceof Long) {
protoMsg.setField(fieldDescriptor, new Long((Long) val));
} else {
throw new IllegalArgumentException(
"JSONObject does not have a int64 field at " + currentScope + ".");
}
break;
case INT32:
val = json.get(actualJsonKeyName);
if (val instanceof Integer) {
protoMsg.setField(fieldDescriptor, new Integer((Integer) val));
} else {
throw new IllegalArgumentException(
"JSONObject does not have a int32 field at " + currentScope + ".");
}
break;
case STRING:
try {
break;
case INT64:
val = json.get(actualJsonKeyName);
if (val instanceof Integer) {
protoMsg.setField(fieldDescriptor, new Long((Integer) val));
} else if (val instanceof Long) {
protoMsg.setField(fieldDescriptor, new Long((Long) val));
} else {
throw new JSONException("");
}
break;
case INT32:
val = json.get(actualJsonKeyName);
if (val instanceof Integer) {
protoMsg.setField(fieldDescriptor, new Integer((Integer) val));
} else {
throw new JSONException("");
}
break;
case STRING:
protoMsg.setField(fieldDescriptor, json.getString(actualJsonKeyName));
} catch (JSONException e) {
throw new IllegalArgumentException(
"JSONObject does not have a string field at " + currentScope + ".");
}
break;
case DOUBLE:
val = json.get(actualJsonKeyName);
if (val instanceof Double) {
protoMsg.setField(fieldDescriptor, new Double((double) val));
} else if (val instanceof Float) {
protoMsg.setField(fieldDescriptor, new Double((float) val));
} else {
throw new IllegalArgumentException(
"JSONObject does not have a double field at " + currentScope + ".");
}
break;
case MESSAGE:
Message.Builder message = protoMsg.newBuilderForField(fieldDescriptor);
try {
break;
case DOUBLE:
val = json.get(actualJsonKeyName);
if (val instanceof Double) {
protoMsg.setField(fieldDescriptor, new Double((double) val));
} else if (val instanceof Float) {
protoMsg.setField(fieldDescriptor, new Double((float) val));
} else {
throw new JSONException("");
}
break;
case MESSAGE:
Message.Builder message = protoMsg.newBuilderForField(fieldDescriptor);
protoMsg.setField(
fieldDescriptor,
convertJsonToProtoMessageImpl(
fieldDescriptor.getMessageType(),
json.getJSONObject(actualJsonKeyName),
currentScope,
false,
/*topLevel =*/ false,
allowUnknownFields));
} catch (JSONException e) {
throw new IllegalArgumentException(
"JSONObject does not have a object field at " + currentScope + ".");
}
break;
break;
}
} catch (JSONException e) {
throw new IllegalArgumentException(
String.format(
"JSONObject does not have a %s field at %s.",
FieldTypeToDebugMessage.get(fieldDescriptor.getType()), currentScope));
}
}

Expand Down Expand Up @@ -261,12 +256,8 @@ private static void fillRepeatedField(
protoMsg.addRepeatedField(fieldDescriptor, new Boolean(jsonArray.getBoolean(i)));
} catch (JSONException e) {
throw new IllegalArgumentException(
"JSONObject does not have a boolean field at "
+ currentScope
+ "["
+ i
+ "]"
+ ".");
String.format(
"JSONObject does not have a boolean field at %s[%d].", currentScope, i));
}
}
break;
Expand All @@ -276,7 +267,8 @@ private static void fillRepeatedField(
protoMsg.addRepeatedField(fieldDescriptor, jsonArray.getString(i).getBytes());
} catch (JSONException e) {
throw new IllegalArgumentException(
"JSONObject does not have a string field at " + currentScope + "[" + i + "]" + ".");
String.format(
"JSONObject does not have a string field at %s[%d].", currentScope, i));
}
}
break;
Expand All @@ -289,7 +281,8 @@ private static void fillRepeatedField(
protoMsg.addRepeatedField(fieldDescriptor, new Long((Long) val));
} else {
throw new IllegalArgumentException(
"JSONObject does not have a int64 field at " + currentScope + "[" + i + "]" + ".");
String.format(
"JSONObject does not have a int64 field at %s[%d].", currentScope, i));
}
}
break;
Expand All @@ -300,7 +293,8 @@ private static void fillRepeatedField(
protoMsg.addRepeatedField(fieldDescriptor, new Integer((Integer) val));
} else {
throw new IllegalArgumentException(
"JSONObject does not have a int32 field at " + currentScope + "[" + i + "]" + ".");
String.format(
"JSONObject does not have a int32 field at %s[%d].", currentScope, i));
}
}
break;
Expand All @@ -310,7 +304,8 @@ private static void fillRepeatedField(
protoMsg.addRepeatedField(fieldDescriptor, jsonArray.getString(i));
} catch (JSONException e) {
throw new IllegalArgumentException(
"JSONObject does not have a string field at " + currentScope + "[" + i + "]" + ".");
String.format(
"JSONObject does not have a string field at %s[%d].", currentScope, i));
}
}
break;
Expand All @@ -323,7 +318,8 @@ private static void fillRepeatedField(
protoMsg.addRepeatedField(fieldDescriptor, new Double((float) val));
} else {
throw new IllegalArgumentException(
"JSONObject does not have a double field at " + currentScope + "[" + i + "]" + ".");
String.format(
"JSONObject does not have a double field at %s[%d].", currentScope, i));
}
}
break;
Expand All @@ -337,11 +333,12 @@ private static void fillRepeatedField(
fieldDescriptor.getMessageType(),
jsonArray.getJSONObject(i),
currentScope,
false,
/*topLevel =*/ false,
allowUnknownFields));
} catch (JSONException e) {
throw new IllegalArgumentException(
"JSONObject does not have a object field at " + currentScope + "[" + i + "]" + ".");
String.format(
"JSONObject does not have a object field at %s[%d].", currentScope, i));
}
}
break;
Expand Down

0 comments on commit f601561

Please sign in to comment.