Skip to content

Commit 960e0e5

Browse files
committed
Strip comments
1 parent f9dccbb commit 960e0e5

File tree

4 files changed

+44
-2
lines changed

4 files changed

+44
-2
lines changed

Sources/JSONPatcher/JSONCParser.swift

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
class JSONCParser {
22
private let scanner: JSONCScanner
3+
private(set) var comments: [Token] = []
34

4-
init(jsoncString: String) throws {
5+
init(jsoncString: String) {
56
scanner = .init(jsoncString: jsoncString)
67
}
78

89
func parse() throws -> Value {
910
try scanNext()
10-
return try parseValue()
11+
let value = try parseValue()
12+
guard scanner.token.kind == .eof else {
13+
throw ParsingError.eofExpected(loc: scanner.token.loc)
14+
}
15+
return value
1116
}
1217

1318
@discardableResult
@@ -16,6 +21,7 @@ class JSONCParser {
1621
let token = try scanner.scanToken()
1722
switch token.kind {
1823
case .lineComment, .blockComment:
24+
comments.append(token)
1925
break
2026
default:
2127
return token

Sources/JSONPatcher/JSONPatcher.swift

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
public class JSONPatcher {
2+
private let parser: JSONCParser
3+
private let original: String
4+
private let originalValue: JSONCParser.Value
5+
6+
init(original: String) throws {
7+
self.parser = JSONCParser(jsoncString: original)
8+
self.original = original
9+
originalValue = try parser.parse()
10+
}
11+
12+
/**
13+
Strips comments and returns valid JSON.
14+
*/
15+
func json() -> String {
16+
var stripped = original
17+
for token in parser.comments.reversed() {
18+
stripped.removeSubrange(token.loc)
19+
}
20+
return stripped
21+
}
22+
}

Sources/JSONPatcher/Scanner.swift

+1
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,5 @@ enum ParsingError: Error {
6969
case colonExpected(loc: Loc)
7070
case rightBraceExpected(loc: Loc)
7171
case rightBracketExpected(loc: Loc)
72+
case eofExpected(loc: Loc)
7273
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@testable import JSONPatcher
2+
import XCTest
3+
4+
final class JSONPatcherTests: XCTestCase {
5+
override func setUp() {
6+
continueAfterFailure = false
7+
}
8+
9+
func testStripComments() throws {
10+
let patcher = try JSONPatcher(original: "//comment\n[1, 42.0, /*\"Hello\", */\"World\"\n\t]")
11+
XCTAssertEqual(patcher.json(), "\n[1, 42.0, \"World\"\n\t]")
12+
}
13+
}

0 commit comments

Comments
 (0)