-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathParseJSONUtils.java
65 lines (59 loc) · 1.93 KB
/
ParseJSONUtils.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
/*
* Copyright (c) 2015-present, Parse, LLC.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
package com.parse;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
/**
* Static utility methods pertaining to org.json classes.
*/
class ParseJSONUtils {
/**
* Creates a copy of {@code copyFrom}, excluding the keys from {@code excludes}.
*/
public static JSONObject create(JSONObject copyFrom, Collection<String> excludes) {
JSONObject json = new JSONObject();
Iterator<String> iterator = copyFrom.keys();
while (iterator.hasNext()) {
String name = iterator.next();
if (excludes.contains(name)) {
continue;
}
try {
json.put(name, copyFrom.opt(name));
} catch (JSONException e) {
// This shouldn't ever happen since it'll only throw if `name` is null
throw new RuntimeException(e);
}
}
return json;
}
/**
* A helper for nonugly iterating over JSONObject keys.
*/
public static Iterable<String> keys(JSONObject object) {
final JSONObject finalObject = object;
return () -> finalObject.keys();
}
/**
* A helper for returning the value mapped by a list of keys, ordered by priority.
*/
public static int getInt(JSONObject object, List<String> keys) throws JSONException {
for (String key : keys) {
try {
return object.getInt(key);
} catch (JSONException e) {
// do nothing
}
}
throw new JSONException("No value for " + keys);
}
}