// // XMLReporter.swift // SwiftFormat // // Created by Saeid Rezaei on 13/04/2024. // Copyright © 2024 Nick Lockwood. All rights reserved. // // // Distributed under the permissive MIT license // Get the latest version from here: // // https://github.com/nicklockwood/SwiftFormat // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. // import Foundation /// Reports changes as XML conforming to the Checkstyle specification, as defined here: /// https://www.jetbrains.com/help/teamcity/xml-report-processing.html final class XMLReporter: Reporter { static let name = "xml" static let fileExtension: String? = "xml" private var changes: [Formatter.Change] = [] init(environment _: [String: String]) {} func report(_ changes: [Formatter.Change]) { self.changes.append(contentsOf: changes) } func write() throws -> Data? { let fileChanges = Dictionary(grouping: changes, by: { $0.filePath ?? "" }) let report = [ "\n", fileChanges .sorted(by: { $0.key < $1.key }) .map(generateChangeForFile).joined(), "\n", ].joined() return Data(report.utf8) } } private extension XMLReporter { func escapeXML(_ string: String) -> String { string .replacingOccurrences(of: "&", with: "&") .replacingOccurrences(of: "<", with: "<") .replacingOccurrences(of: ">", with: ">") .replacingOccurrences(of: "\"", with: """) .replacingOccurrences(of: "'", with: "'") } func generateChangeForFile(_ file: String, fileChanges: [Formatter.Change]) -> String { [ "\n\t\n", fileChanges.map(generateChange).joined(), "\t", ].joined() } func generateChange(_ change: Formatter.Change) -> String { let line = change.line let col = 0 let severity = "warning" let reason = escapeXML(change.help) let rule = escapeXML(change.rule.name) return [ "\t\t\n", ].joined() } }