blob: cc3dda044ecdcb7a4ab7074c4c5dd488fef63b85 (
plain)
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
|
package at.hannibal2.skyhanni.utils
import com.google.gson.Gson
import com.google.gson.JsonArray
import com.google.gson.JsonElement
import com.google.gson.JsonObject
import java.io.Reader
import kotlin.reflect.jvm.javaType
import kotlin.reflect.typeOf
inline fun <reified T : Any> Gson.fromJson(string: String): T = this.fromJson(string, typeOf<T>().javaType)
inline fun <reified T : Any> Gson.fromJson(jsonElement: JsonElement): T =
this.fromJson(jsonElement, typeOf<T>().javaType)
inline fun <reified T : Any> Gson.fromJson(reader: Reader): T = this.fromJson(reader, typeOf<T>().javaType)
/**
* Straight forward deep copy. This is included in gson as well, but different versions have it exposed privately instead of publicly,
* so this reimplementation is here as an always public alternative.
*/
fun JsonElement.shDeepCopy(): JsonElement {
return when (this) {
is JsonObject -> JsonObject().also {
for (entry in this.entrySet())
it.add(entry.key, entry.value.shDeepCopy())
}
is JsonArray -> JsonArray().also {
for (entry in this) {
it.add(entry.shDeepCopy())
}
}
else -> this
}
}
|