com.google.firebase.database.util.JsonMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firebase-admin Show documentation
Show all versions of firebase-admin Show documentation
This is the official Firebase Admin Java SDK. Build extraordinary native JVM apps in
minutes with Firebase. The Firebase platform can power your app’s backend, user
authentication, static hosting, and more.
/*
* Copyright 2017 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.firebase.database.util;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.json.JSONStringer;
import org.json.JSONTokener;
/**
* Helper class to convert from/to JSON strings. TODO: This class should ideally not live in
* firebase-database-connection, but it's required by both firebase-database and
* firebase-database-connection, so leave it here for now.
*/
public class JsonMapper {
public static String serializeJson(Map object) throws IOException {
return serializeJsonValue(object);
}
@SuppressWarnings("unchecked")
public static String serializeJsonValue(Object object) throws IOException {
if (object == null) {
return "null";
} else if (object instanceof String) {
return JSONObject.quote((String) object);
} else if (object instanceof Number) {
try {
return JSONObject.numberToString((Number) object);
} catch (JSONException e) {
throw new IOException("Could not serialize number", e);
}
} else if (object instanceof Boolean) {
return ((Boolean) object) ? "true" : "false";
} else {
try {
JSONStringer stringer = new JSONStringer();
serializeJsonValue(object, stringer);
return stringer.toString();
} catch (JSONException e) {
throw new IOException("Failed to serialize JSON", e);
}
}
}
private static void serializeJsonValue(Object object, JSONStringer stringer)
throws IOException, JSONException {
if (object instanceof Map) {
stringer.object();
@SuppressWarnings("unchecked")
Map map = (Map) object;
for (Map.Entry entry : map.entrySet()) {
stringer.key(entry.getKey());
serializeJsonValue(entry.getValue(), stringer);
}
stringer.endObject();
} else if (object instanceof Collection) {
Collection> collection = (Collection>) object;
stringer.array();
for (Object entry : collection) {
serializeJsonValue(entry, stringer);
}
stringer.endArray();
} else {
stringer.value(object);
}
}
public static Map parseJson(String json) throws IOException {
try {
return unwrapJsonObject(new JSONObject(json));
} catch (JSONException e) {
throw new IOException(e);
}
}
public static Object parseJsonValue(String json) throws IOException {
try {
return unwrapJson(new JSONTokener(json).nextValue());
} catch (JSONException e) {
throw new IOException(e);
}
}
@SuppressWarnings("unchecked")
private static Map unwrapJsonObject(JSONObject jsonObject) throws JSONException {
Map map = new HashMap<>(jsonObject.length());
Iterator keys = jsonObject.keys();
while (keys.hasNext()) {
String key = keys.next();
map.put(key, unwrapJson(jsonObject.get(key)));
}
return map;
}
private static List