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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
#if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
import SwiftFoundation
#else
import Foundation
#endif
@_implementationOnly import _CFXMLInterface
// Input options
// NSXMLNodeOptionsNone
// NSXMLNodePreserveAll
// NSXMLNodePreserveNamespaceOrder
// NSXMLNodePreserveAttributeOrder
// NSXMLNodePreserveEntities
// NSXMLNodePreservePrefixes
// NSXMLNodePreserveCDATA
// NSXMLNodePreserveEmptyElements
// NSXMLNodePreserveQuotes
// NSXMLNodePreserveWhitespace
// NSXMLNodeLoadExternalEntities
// NSXMLNodeLoadExternalEntitiesSameOriginOnly
// NSXMLDocumentTidyHTML
// NSXMLDocumentTidyXML
// NSXMLDocumentValidate
// Output options
// NSXMLNodePrettyPrint
// NSXMLDocumentIncludeContentTypeDeclaration
extension XMLDocument {
/*!
@typedef XMLDocument.ContentKind
@abstract Define what type of document this is.
@constant XMLDocument.ContentKind.xml The default document type
@constant XMLDocument.ContentKind.xhtml Set if XMLNode.Options.documentTidyHTML is set and HTML is detected
@constant XMLDocument.ContentKind.html Outputs empty tags without a close tag, eg <br>
@constant XMLDocument.ContentKind.text Output the string value of the document
*/
public enum ContentKind : UInt, Sendable {
case xml
case xhtml
case html
case text
}
}
/*!
@class XMLDocument
@abstract An XML Document
@discussion Note: if the application of a method would result in more than one element in the children array, an exception is thrown. Trying to add a document, namespace, attribute, or node with a parent also throws an exception. To add a node with a parent first detach or create a copy of it.
*/
open class XMLDocument : XMLNode {
private var _xmlDoc: _CFXMLDocPtr {
return _CFXMLDocPtr(_xmlNode)
}
public convenience init() {
self.init(rootElement: nil)
}
/*!
@method initWithXMLString:options:error:
@abstract Returns a document created from either XML or HTML, if the HTMLTidy option is set. Parse errors are returned in <tt>error</tt>.
*/
public convenience init(xmlString string: String, options mask: XMLNode.Options = []) throws {
setupXMLParsing()
guard let data = string.data(using: .utf8) else {
// TODO: Throw an error
fatalError("String: '\(string)' could not be converted to NSData using UTF-8 encoding")
}
try self.init(data: data, options: mask)
}
/*!
@method initWithContentsOfURL:options:error:
@abstract Returns a document created from the contents of an XML or HTML URL. Connection problems such as 404, parse errors are returned in <tt>error</tt>.
*/
public convenience init(contentsOf url: URL, options mask: XMLNode.Options = []) throws {
setupXMLParsing()
let data = try Data(contentsOf: url, options: .mappedIfSafe)
try self.init(data: data, options: mask)
}
/*!
@method initWithData:options:error:
@abstract Returns a document created from data. Parse errors are returned in <tt>error</tt>.
*/
public init(data: Data, options mask: XMLNode.Options = []) throws {
setupXMLParsing()
let docPtr = _CFXMLDocPtrFromDataWithOptions(unsafeBitCast(data._bridgeToObjectiveC(), to: CFData.self), UInt32(mask.rawValue))
super.init(ptr: _CFXMLNodePtr(docPtr))
if mask.contains(.documentValidate) {
try validate()
}
}
/*!
@method initWithRootElement:
@abstract Returns a document with a single child, the root element.
*/
public init(rootElement element: XMLElement?) {
setupXMLParsing()
precondition(element?.parent == nil)
super.init(kind: .document, options: [])
if let element = element {
_CFXMLDocSetRootElement(_xmlDoc, element._xmlNode)
_childNodes.insert(element)
}
}
/*!
@method characterEncoding
@abstract Sets the character encoding to an IANA type.
*/
open var characterEncoding: String? {
get {
let returned = _CFXMLDocCopyCharacterEncoding(_xmlDoc)
return returned == nil ? nil : unsafeBitCast(returned!, to: NSString.self) as String
}
set {
if let value = newValue {
_CFXMLDocSetCharacterEncoding(_xmlDoc, value)
} else {
_CFXMLDocSetCharacterEncoding(_xmlDoc, nil)
}
}
}
/*!
@method version
@abstract Sets the XML version. Should be 1.0 or 1.1.
*/
open var version: String? {
get {
let returned = _CFXMLDocCopyVersion(_xmlDoc)
return returned == nil ? nil : unsafeBitCast(returned!, to: NSString.self) as String
}
set {
if let value = newValue {
precondition(value == "1.0" || value == "1.1")
_CFXMLDocSetVersion(_xmlDoc, value)
} else {
_CFXMLDocSetVersion(_xmlDoc, nil)
}
}
}
/*!
@method standalone
@abstract Set whether this document depends on an external DTD. If this option is set the standalone declaration will appear on output.
*/
open var isStandalone: Bool {
get {
return _CFXMLDocStandalone(_xmlDoc)
}
set {
_CFXMLDocSetStandalone(_xmlDoc, newValue)
}
}//primitive
/*!
@method documentContentKind
@abstract The kind of document.
*/
open var documentContentKind: XMLDocument.ContentKind {
get {
let properties = _CFXMLDocProperties(_xmlDoc)
if properties & Int32(_kCFXMLDocTypeHTML) != 0 {
return .html
}
return .xml
}
set {
var properties = _CFXMLDocProperties(_xmlDoc)
switch newValue {
case .html:
properties |= Int32(_kCFXMLDocTypeHTML)
default:
properties &= ~Int32(_kCFXMLDocTypeHTML)
}
_CFXMLDocSetProperties(_xmlDoc, properties)
}
}//primitive
/*!
@method MIMEType
@abstract Set the MIME type, eg text/xml.
*/
open var mimeType: String?
/*!
@method DTD
@abstract Set the associated DTD. This DTD will be output with the document.
*/
/*@NSCopying*/ open var dtd: XMLDTD? {
get {
return XMLDTD._objectNodeForNode(_CFXMLDocDTD(_xmlDoc)!)
}
set {
if let currDTD = _CFXMLDocDTD(_xmlDoc) {
if _CFXMLNodeGetPrivateData(currDTD) != nil {
let DTD = XMLDTD._objectNodeForNode(currDTD)
_CFXMLUnlinkNode(currDTD)
_childNodes.remove(DTD)
} else {
_CFXMLFreeDTD(currDTD)
}
}
if let value = newValue {
guard let dtd = value.copy() as? XMLDTD else {
fatalError("Failed to copy DTD")
}
_CFXMLDocSetDTD(_xmlDoc, dtd._xmlDTD)
_childNodes.insert(dtd)
} else {
_CFXMLDocSetDTD(_xmlDoc, nil)
}
}
}//primitive
/*!
@method setRootElement:
@abstract Set the root element. Removes all other children including comments and processing-instructions.
*/
open func setRootElement(_ root: XMLElement) {
precondition(root.parent == nil)
for child in _childNodes {
child.detach()
}
_CFXMLDocSetRootElement(_xmlDoc, root._xmlNode)
_childNodes.insert(root)
}
/*!
@method rootElement
@abstract The root element.
*/
open func rootElement() -> XMLElement? {
guard let rootPtr = _CFXMLDocRootElement(_xmlDoc) else {
return nil
}
return XMLNode._objectNodeForNode(rootPtr) as? XMLElement
}
open override var childCount: Int {
return _CFXMLNodeGetElementChildCount(_xmlNode)
}
/*!
@method insertChild:atIndex:
@abstract Inserts a child at a particular index.
*/
open func insertChild(_ child: XMLNode, at index: Int) {
_insertChild(child, atIndex: index)
}
/*!
@method insertChildren:atIndex:
@abstract Insert several children at a particular index.
*/
open func insertChildren(_ children: [XMLNode], at index: Int) {
_insertChildren(children, atIndex: index)
}
/*!
@method removeChildAtIndex:atIndex:
@abstract Removes a child at a particular index.
*/
open func removeChild(at index: Int) {
_removeChildAtIndex(index)
}
/*!
@method setChildren:
@abstract Removes all existing children and replaces them with the new children. Set children to nil to simply remove all children.
*/
open func setChildren(_ children: [XMLNode]?) {
_setChildren(children)
}
/*!
@method addChild:
@abstract Adds a child to the end of the existing children.
*/
open func addChild(_ child: XMLNode) {
_addChild(child)
}
/*!
@method replaceChildAtIndex:withNode:
@abstract Replaces a child at a particular index with another child.
*/
open func replaceChild(at index: Int, with node: XMLNode) {
_replaceChildAtIndex(index, withNode: node)
}
/*!
@method XMLData
@abstract Invokes XMLDataWithOptions with XMLNode.Options.none.
*/
/*@NSCopying*/ open var xmlData: Data { return xmlData() }
/*!
@method XMLDataWithOptions:
@abstract The representation of this node as it would appear in an XML document, encoded based on characterEncoding.
*/
open func xmlData(options: XMLNode.Options = []) -> Data {
let string = xmlString(options: options)
// TODO: support encodings other than UTF-8
return string.data(using: .utf8) ?? Data()
}
/*!
@method objectByApplyingXSLT:arguments:error:
@abstract Applies XSLT with arguments (NSString key/value pairs) to this document, returning a new document.
*/
@available(*, unavailable, message: "XSLT application is not currently supported in swift-corelibs-foundation")
open func object(byApplyingXSLT xslt: Data, arguments: [String : String]?) throws -> Any {
NSUnimplemented()
}
/*!
@method objectByApplyingXSLTString:arguments:error:
@abstract Applies XSLT as expressed by a string with arguments (NSString key/value pairs) to this document, returning a new document.
*/
@available(*, unavailable, message: "XSLT application is not currently supported in swift-corelibs-foundation")
open func object(byApplyingXSLTString xslt: String, arguments: [String : String]?) throws -> Any {
NSUnimplemented()
}
/*!
@method objectByApplyingXSLTAtURL:arguments:error:
@abstract Applies the XSLT at a URL with arguments (NSString key/value pairs) to this document, returning a new document. Error may contain a connection error from the URL.
*/
@available(*, unavailable, message: "XSLT application is not currently supported in swift-corelibs-foundation")
open func objectByApplyingXSLT(at xsltURL: URL, arguments argument: [String : String]?) throws -> Any {
NSUnimplemented()
}
open func validate() throws {
var unmanagedError: Unmanaged<CFError>? = nil
let result = _CFXMLDocValidate(_xmlDoc, &unmanagedError)
if !result,
let unmanagedError = unmanagedError {
let error = unmanagedError.takeRetainedValue()
throw _CFErrorSPIForFoundationXMLUseOnly(unsafelyAssumingIsCFError: error)._nsObject
}
}
internal override class func _objectNodeForNode(_ node: _CFXMLNodePtr) -> XMLDocument {
precondition(_CFXMLNodeGetType(node) == _kCFXMLTypeDocument)
if let privateData = _CFXMLNodeGetPrivateData(node) {
return unsafeBitCast(privateData, to: XMLDocument.self)
}
return XMLDocument(ptr: node)
}
internal override init(ptr: _CFXMLNodePtr) {
super.init(ptr: ptr)
}
}
|