List of usage examples for com.google.gson JsonParser parse
@Deprecated public JsonElement parse(JsonReader json) throws JsonIOException, JsonSyntaxException
From source file:com.facebook.ads.sdk.AndroidAppLink.java
License:Open Source License
public static APINodeList<AndroidAppLink> parseResponse(String json, APIContext context, APIRequest request) throws MalformedResponseException { APINodeList<AndroidAppLink> androidAppLinks = new APINodeList<AndroidAppLink>(request, json); JsonArray arr;/*w w w. ja va2 s . c o m*/ JsonObject obj; JsonParser parser = new JsonParser(); Exception exception = null; try { JsonElement result = parser.parse(json); if (result.isJsonArray()) { // First, check if it's a pure JSON Array arr = result.getAsJsonArray(); for (int i = 0; i < arr.size(); i++) { androidAppLinks.add(loadJSON(arr.get(i).getAsJsonObject().toString(), context)); } ; return androidAppLinks; } else if (result.isJsonObject()) { obj = result.getAsJsonObject(); if (obj.has("data")) { if (obj.has("paging")) { JsonObject paging = obj.get("paging").getAsJsonObject().get("cursors").getAsJsonObject(); String before = paging.has("before") ? paging.get("before").getAsString() : null; String after = paging.has("after") ? paging.get("after").getAsString() : null; androidAppLinks.setPaging(before, after); } if (obj.get("data").isJsonArray()) { // Second, check if it's a JSON array with "data" arr = obj.get("data").getAsJsonArray(); for (int i = 0; i < arr.size(); i++) { androidAppLinks.add(loadJSON(arr.get(i).getAsJsonObject().toString(), context)); } ; } else if (obj.get("data").isJsonObject()) { // Third, check if it's a JSON object with "data" obj = obj.get("data").getAsJsonObject(); boolean isRedownload = false; for (String s : new String[] { "campaigns", "adsets", "ads" }) { if (obj.has(s)) { isRedownload = true; obj = obj.getAsJsonObject(s); for (Map.Entry<String, JsonElement> entry : obj.entrySet()) { androidAppLinks.add(loadJSON(entry.getValue().toString(), context)); } break; } } if (!isRedownload) { androidAppLinks.add(loadJSON(obj.toString(), context)); } } return androidAppLinks; } else if (obj.has("images")) { // Fourth, check if it's a map of image objects obj = obj.get("images").getAsJsonObject(); for (Map.Entry<String, JsonElement> entry : obj.entrySet()) { androidAppLinks.add(loadJSON(entry.getValue().toString(), context)); } return androidAppLinks; } else { // Fifth, check if it's an array of objects indexed by id boolean isIdIndexedArray = true; for (Map.Entry entry : obj.entrySet()) { String key = (String) entry.getKey(); if (key.equals("__fb_trace_id__")) { continue; } JsonElement value = (JsonElement) entry.getValue(); if (value != null && value.isJsonObject() && value.getAsJsonObject().has("id") && value.getAsJsonObject().get("id") != null && value.getAsJsonObject().get("id").getAsString().equals(key)) { androidAppLinks.add(loadJSON(value.toString(), context)); } else { isIdIndexedArray = false; break; } } if (isIdIndexedArray) { return androidAppLinks; } // Sixth, check if it's pure JsonObject androidAppLinks.clear(); androidAppLinks.add(loadJSON(json, context)); return androidAppLinks; } } } catch (Exception e) { exception = e; } throw new MalformedResponseException("Invalid response string: " + json, exception); }
From source file:com.facebook.ads.sdk.APIException.java
License:Open Source License
@Override public JsonObject getRawResponseAsJsonObject() { JsonParser parser = new JsonParser(); return parser.parse(this.getMessage()).getAsJsonObject(); }
From source file:com.facebook.ads.sdk.APINode.java
License:Open Source License
public String getId() { try {/*ww w. j a v a 2 s . c om*/ JsonParser parser = new JsonParser(); return parser.parse(rawValue).getAsJsonObject().get("id").getAsString(); } catch (Exception e) { return null; } }
From source file:com.facebook.ads.sdk.APINode.java
License:Open Source License
@Override public JsonObject getRawResponseAsJsonObject() { JsonParser parser = new JsonParser(); try {//from ww w . ja v a 2s . c o m return parser.parse(rawValue).getAsJsonObject(); } catch (Exception e) { return null; } }
From source file:com.facebook.ads.sdk.APINode.java
License:Open Source License
public static APINodeList parseResponse(String json, APIContext context, APIRequest<APINode> request) throws MalformedResponseException { APINodeList<APINode> nodes = new APINodeList<APINode>(request, json); JsonArray arr;/*from w w w . j av a2s . c om*/ JsonObject obj; JsonParser parser = new JsonParser(); Exception exception = null; try { JsonElement result = parser.parse(json); if (result.isJsonArray()) { // First, check if it's a pure JSON Array arr = result.getAsJsonArray(); for (int i = 0; i < arr.size(); i++) { nodes.add(loadJSON(arr.get(i).getAsJsonObject().toString(), context)); } ; return nodes; } else if (result.isJsonObject()) { obj = result.getAsJsonObject(); if (obj.has("data")) { if (obj.has("paging")) { JsonObject paging = obj.get("paging").getAsJsonObject().get("cursors").getAsJsonObject(); nodes.setPaging(paging.get("before").getAsString(), paging.get("after").getAsString()); } if (obj.get("data").isJsonArray()) { // Second, check if it's a JSON array with "data" arr = obj.get("data").getAsJsonArray(); for (int i = 0; i < arr.size(); i++) { nodes.add(loadJSON(arr.get(i).getAsJsonObject().toString(), context)); } ; } else if (obj.get("data").isJsonObject()) { // Third, check if it's a JSON object with "data" obj = obj.get("data").getAsJsonObject(); nodes.add(loadJSON(obj.toString(), context)); } return nodes; } else if (obj.has("images")) { // Fourth, check if it's a map of image objects obj = obj.get("images").getAsJsonObject(); for (Map.Entry<String, JsonElement> entry : obj.entrySet()) { nodes.add(loadJSON(entry.getValue().toString(), context)); } return nodes; } else { // Fifth, check if it's an array of objects indexed by id boolean isIdIndexedArray = true; for (Map.Entry entry : obj.entrySet()) { String key = (String) entry.getKey(); if (key.equals("__fb_trace_id__")) { continue; } JsonElement value = (JsonElement) entry.getValue(); if (value != null && value.isJsonObject() && value.getAsJsonObject().has("id") && value.getAsJsonObject().get("id") != null && value.getAsJsonObject().get("id").getAsString().equals(key)) { nodes.add(loadJSON(value.toString(), context)); } else { isIdIndexedArray = false; break; } } if (isIdIndexedArray) { return nodes; } // Sixth, check if it's pure JsonObject nodes.clear(); nodes.add(loadJSON(json, context)); return nodes; } } } catch (Exception e) { exception = e; } throw new MalformedResponseException("Invalid response string: " + json, exception); }
From source file:com.facebook.ads.sdk.APINodeList.java
License:Open Source License
@Override public JsonObject getRawResponseAsJsonObject() { JsonParser parser = new JsonParser(); return parser.parse(rawValue).getAsJsonObject(); }
From source file:com.facebook.ads.sdk.AppLinks.java
License:Open Source License
public static AppLinks loadJSON(String json, APIContext context) { AppLinks appLinks = getGson().fromJson(json, AppLinks.class); if (context.isDebug()) { JsonParser parser = new JsonParser(); JsonElement o1 = parser.parse(json); JsonElement o2 = parser.parse(appLinks.toString()); if (o1.getAsJsonObject().get("__fb_trace_id__") != null) { o2.getAsJsonObject().add("__fb_trace_id__", o1.getAsJsonObject().get("__fb_trace_id__")); }/*from www . j a va 2s . co m*/ if (!o1.equals(o2)) { context.log("[Warning] When parsing response, object is not consistent with JSON:"); context.log("[JSON]" + o1); context.log("[Object]" + o2); } ; } appLinks.context = context; appLinks.rawValue = json; return appLinks; }
From source file:com.facebook.ads.sdk.AppLinks.java
License:Open Source License
public static APINodeList<AppLinks> parseResponse(String json, APIContext context, APIRequest request) throws MalformedResponseException { APINodeList<AppLinks> appLinkss = new APINodeList<AppLinks>(request, json); JsonArray arr;// w w w. j a v a2 s.c om JsonObject obj; JsonParser parser = new JsonParser(); Exception exception = null; try { JsonElement result = parser.parse(json); if (result.isJsonArray()) { // First, check if it's a pure JSON Array arr = result.getAsJsonArray(); for (int i = 0; i < arr.size(); i++) { appLinkss.add(loadJSON(arr.get(i).getAsJsonObject().toString(), context)); } ; return appLinkss; } else if (result.isJsonObject()) { obj = result.getAsJsonObject(); if (obj.has("data")) { if (obj.has("paging")) { JsonObject paging = obj.get("paging").getAsJsonObject().get("cursors").getAsJsonObject(); String before = paging.has("before") ? paging.get("before").getAsString() : null; String after = paging.has("after") ? paging.get("after").getAsString() : null; appLinkss.setPaging(before, after); } if (obj.get("data").isJsonArray()) { // Second, check if it's a JSON array with "data" arr = obj.get("data").getAsJsonArray(); for (int i = 0; i < arr.size(); i++) { appLinkss.add(loadJSON(arr.get(i).getAsJsonObject().toString(), context)); } ; } else if (obj.get("data").isJsonObject()) { // Third, check if it's a JSON object with "data" obj = obj.get("data").getAsJsonObject(); boolean isRedownload = false; for (String s : new String[] { "campaigns", "adsets", "ads" }) { if (obj.has(s)) { isRedownload = true; obj = obj.getAsJsonObject(s); for (Map.Entry<String, JsonElement> entry : obj.entrySet()) { appLinkss.add(loadJSON(entry.getValue().toString(), context)); } break; } } if (!isRedownload) { appLinkss.add(loadJSON(obj.toString(), context)); } } return appLinkss; } else if (obj.has("images")) { // Fourth, check if it's a map of image objects obj = obj.get("images").getAsJsonObject(); for (Map.Entry<String, JsonElement> entry : obj.entrySet()) { appLinkss.add(loadJSON(entry.getValue().toString(), context)); } return appLinkss; } else { // Fifth, check if it's an array of objects indexed by id boolean isIdIndexedArray = true; for (Map.Entry entry : obj.entrySet()) { String key = (String) entry.getKey(); if (key.equals("__fb_trace_id__")) { continue; } JsonElement value = (JsonElement) entry.getValue(); if (value != null && value.isJsonObject() && value.getAsJsonObject().has("id") && value.getAsJsonObject().get("id") != null && value.getAsJsonObject().get("id").getAsString().equals(key)) { appLinkss.add(loadJSON(value.toString(), context)); } else { isIdIndexedArray = false; break; } } if (isIdIndexedArray) { return appLinkss; } // Sixth, check if it's pure JsonObject appLinkss.clear(); appLinkss.add(loadJSON(json, context)); return appLinkss; } } } catch (Exception e) { exception = e; } throw new MalformedResponseException("Invalid response string: " + json, exception); }
From source file:com.facebook.ads.sdk.BroadTargetingCategories.java
License:Open Source License
public static BroadTargetingCategories loadJSON(String json, APIContext context) { BroadTargetingCategories broadTargetingCategories = getGson().fromJson(json, BroadTargetingCategories.class); if (context.isDebug()) { JsonParser parser = new JsonParser(); JsonElement o1 = parser.parse(json); JsonElement o2 = parser.parse(broadTargetingCategories.toString()); if (o1.getAsJsonObject().get("__fb_trace_id__") != null) { o2.getAsJsonObject().add("__fb_trace_id__", o1.getAsJsonObject().get("__fb_trace_id__")); }//from www. ja v a2s. c o m if (!o1.equals(o2)) { context.log("[Warning] When parsing response, object is not consistent with JSON:"); context.log("[JSON]" + o1); context.log("[Object]" + o2); } ; } broadTargetingCategories.context = context; broadTargetingCategories.rawValue = json; return broadTargetingCategories; }
From source file:com.facebook.ads.sdk.BroadTargetingCategories.java
License:Open Source License
public static APINodeList<BroadTargetingCategories> parseResponse(String json, APIContext context, APIRequest request) throws MalformedResponseException { APINodeList<BroadTargetingCategories> broadTargetingCategoriess = new APINodeList<BroadTargetingCategories>( request, json);//from w ww . j a v a2s . co m JsonArray arr; JsonObject obj; JsonParser parser = new JsonParser(); Exception exception = null; try { JsonElement result = parser.parse(json); if (result.isJsonArray()) { // First, check if it's a pure JSON Array arr = result.getAsJsonArray(); for (int i = 0; i < arr.size(); i++) { broadTargetingCategoriess.add(loadJSON(arr.get(i).getAsJsonObject().toString(), context)); } ; return broadTargetingCategoriess; } else if (result.isJsonObject()) { obj = result.getAsJsonObject(); if (obj.has("data")) { if (obj.has("paging")) { JsonObject paging = obj.get("paging").getAsJsonObject().get("cursors").getAsJsonObject(); String before = paging.has("before") ? paging.get("before").getAsString() : null; String after = paging.has("after") ? paging.get("after").getAsString() : null; broadTargetingCategoriess.setPaging(before, after); } if (obj.get("data").isJsonArray()) { // Second, check if it's a JSON array with "data" arr = obj.get("data").getAsJsonArray(); for (int i = 0; i < arr.size(); i++) { broadTargetingCategoriess .add(loadJSON(arr.get(i).getAsJsonObject().toString(), context)); } ; } else if (obj.get("data").isJsonObject()) { // Third, check if it's a JSON object with "data" obj = obj.get("data").getAsJsonObject(); boolean isRedownload = false; for (String s : new String[] { "campaigns", "adsets", "ads" }) { if (obj.has(s)) { isRedownload = true; obj = obj.getAsJsonObject(s); for (Map.Entry<String, JsonElement> entry : obj.entrySet()) { broadTargetingCategoriess.add(loadJSON(entry.getValue().toString(), context)); } break; } } if (!isRedownload) { broadTargetingCategoriess.add(loadJSON(obj.toString(), context)); } } return broadTargetingCategoriess; } else if (obj.has("images")) { // Fourth, check if it's a map of image objects obj = obj.get("images").getAsJsonObject(); for (Map.Entry<String, JsonElement> entry : obj.entrySet()) { broadTargetingCategoriess.add(loadJSON(entry.getValue().toString(), context)); } return broadTargetingCategoriess; } else { // Fifth, check if it's an array of objects indexed by id boolean isIdIndexedArray = true; for (Map.Entry entry : obj.entrySet()) { String key = (String) entry.getKey(); if (key.equals("__fb_trace_id__")) { continue; } JsonElement value = (JsonElement) entry.getValue(); if (value != null && value.isJsonObject() && value.getAsJsonObject().has("id") && value.getAsJsonObject().get("id") != null && value.getAsJsonObject().get("id").getAsString().equals(key)) { broadTargetingCategoriess.add(loadJSON(value.toString(), context)); } else { isIdIndexedArray = false; break; } } if (isIdIndexedArray) { return broadTargetingCategoriess; } // Sixth, check if it's pure JsonObject broadTargetingCategoriess.clear(); broadTargetingCategoriess.add(loadJSON(json, context)); return broadTargetingCategoriess; } } } catch (Exception e) { exception = e; } throw new MalformedResponseException("Invalid response string: " + json, exception); }