Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Improved Json class #28

Merged
merged 1 commit into from
Apr 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 20 additions & 32 deletions src/main/java/com/github/underscore/Json.kt
Original file line number Diff line number Diff line change
Expand Up @@ -402,9 +402,7 @@ object Json {
}

private fun escape(s: String, sb: StringBuilder) {
val len = s.length
for (i in 0 until len) {
val ch = s[i]
s.forEach { ch ->
when (ch) {
'"' -> sb.append("\\\"")
'\\' -> sb.append("\\\\")
Expand All @@ -414,15 +412,8 @@ object Json {
'\r' -> sb.append("\\r")
'\t' -> sb.append("\\t")
'€' -> sb.append('€')
else -> if (ch <= '\u001F' || ch >= '\u007F' && ch <= '\u009F' || ch >= '\u2000' && ch <= '\u20FF') {
val ss = Integer.toHexString(ch.code)
sb.append("\\u")
var k = 0
while (k < 4 - ss.length) {
sb.append("0")
k++
}
sb.append(ss.uppercase(Locale.getDefault()))
else -> if (ch <= '\u001F' || ch in '\u007F'..'\u009F' || ch in '\u2000'..'\u20FF') {
sb.append("\\u${ch.code.toString(16).padStart(4, '0').uppercase()}")
} else {
sb.append(ch)
}
Expand All @@ -444,7 +435,7 @@ object Json {
private var line = 1
private var lineOffset = 0
private var current = 0
private var captureBuffer: StringBuilder? = null
private var captureBuffer: StringBuilder = StringBuilder()
private var captureStart: Int

init {
Expand Down Expand Up @@ -577,12 +568,12 @@ object Json {
private fun readEscape() {
read()
when (current.toChar()) {
'"', '/', '\\' -> captureBuffer!!.append(current.toChar())
'b' -> captureBuffer!!.append('\b')
'f' -> captureBuffer!!.append('\u000c')
'n' -> captureBuffer!!.append('\n')
'r' -> captureBuffer!!.append('\r')
't' -> captureBuffer!!.append('\t')
'"', '/', '\\' -> captureBuffer.append(current.toChar())
'b' -> captureBuffer.append('\b')
'f' -> captureBuffer.append('\u000c')
'n' -> captureBuffer.append('\n')
'r' -> captureBuffer.append('\r')
't' -> captureBuffer.append('\t')
'u' -> {
val hexChars = CharArray(4)
var isHexCharsDigits = true
Expand All @@ -596,14 +587,14 @@ object Json {
i++
}
if (isHexCharsDigits) {
captureBuffer!!.append(String(hexChars).toInt(16).toChar())
captureBuffer.append(String(hexChars).toInt(16).toChar())
} else {
captureBuffer
?.append("\\u")
?.append(hexChars[0])
?.append(hexChars[1])
?.append(hexChars[2])
?.append(hexChars[3])
.append("\\u")
.append(hexChars[0])
.append(hexChars[1])
.append(hexChars[2])
.append(hexChars[3])
}
}

Expand Down Expand Up @@ -710,24 +701,21 @@ object Json {
}

private fun startCapture() {
if (captureBuffer == null) {
captureBuffer = StringBuilder()
}
captureStart = index - 1
}

private fun pauseCapture() {
captureBuffer!!.append(json, captureStart, index - 1)
captureBuffer.append(json, captureStart, index - 1)
captureStart = -1
}

private fun endCapture(): String {
val end = if (current == -1) index else index - 1
val captured: String
if (captureBuffer!!.isNotEmpty()) {
captureBuffer!!.append(json, captureStart, end)
if (captureBuffer.isNotEmpty()) {
captureBuffer.append(json, captureStart, end)
captured = captureBuffer.toString()
captureBuffer!!.setLength(0)
captureBuffer.setLength(0)
} else {
captured = json.substring(captureStart, end)
}
Expand Down