GH-1094 Refactor JSON string parsing

It appears that primitive way of checkong for {} amd [] did not play well with protobuf so this commit represnts alternative approach

Resolves #1094
This commit is contained in:
Oleg Zhurakousky
2024-03-27 22:53:04 +01:00
parent 9748b1b651
commit be45a47818
4 changed files with 119 additions and 23 deletions

View File

@@ -24,6 +24,7 @@ import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.google.gson.Gson;
@@ -221,6 +222,7 @@ public class ContextFunctionCatalogAutoConfiguration {
mapper = new ObjectMapper();
}
mapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);
mapper.configure(DeserializationFeature.FAIL_ON_TRAILING_TOKENS, true);
return new JacksonMapper(mapper);
}
}

View File

@@ -24,10 +24,17 @@ import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.springframework.cloud.function.context.catalog.FunctionTypeUtils;
/**
* @author Dave Syer
* @author Oleg Zhurakousky
@@ -36,6 +43,10 @@ public abstract class JsonMapper {
private static Log logger = LogFactory.getLog(JsonMapper.class);
// we need this just to validate is String is JSON
private static final ObjectMapper mapper = new ObjectMapper().enable(DeserializationFeature.FAIL_ON_TRAILING_TOKENS);
@SuppressWarnings("unchecked")
public <T> T fromJson(Object json, Type type) {
if (json instanceof Collection<?>) {
@@ -99,44 +110,61 @@ public abstract class JsonMapper {
* @return true if and object appears to be a valid JSON string, otherwise false.
*/
public static boolean isJsonString(Object value) {
boolean isJson = false;
if (value instanceof byte[]) {
value = new String((byte[]) value, StandardCharsets.UTF_8);
}
if (value instanceof String) {
String str = ((String) value).trim();
isJson = (str.startsWith("\"") && str.endsWith("\"")) ||
(str.startsWith("{") && str.endsWith("}")) ||
(str.startsWith("[") && str.endsWith("]"));
try {
mapper.readTree((String) value);
try {
Integer.parseInt((String) value);
return false;
}
catch (Exception e) {
return true;
}
}
catch (Exception e) {
return false;
}
}
return isJson;
return false;
}
public static boolean isJsonStringRepresentsCollection(Object value) {
boolean isJson = false;
if (value instanceof Collection && !value.getClass().getPackage().getName().startsWith("reactor.util.function")) {
if (value instanceof Collection
&& !value.getClass().getPackage().getName().startsWith("reactor.util.function")) {
return true;
}
if (value instanceof byte[]) {
value = new String((byte[]) value, StandardCharsets.UTF_8);
}
if (value instanceof String) {
String str = ((String) value).trim();
isJson = isJsonString(value) && str.startsWith("[") && str.endsWith("]");
try {
new JSONArray((String) value);
}
catch (JSONException e) {
return false;
}
return true;
}
return isJson;
return false;
}
public static boolean isJsonStringRepresentsMap(Object value) {
boolean isJson = false;
if (value instanceof byte[]) {
value = new String((byte[]) value, StandardCharsets.UTF_8);
}
if (value instanceof String) {
String str = ((String) value).trim();
isJson = isJsonString(value) && str.startsWith("{") && str.endsWith("}");
try {
new JSONObject(value);
}
catch (JSONException e) {
return false;
}
return true;
}
return isJson;
return false;
}
}