Skip to content

Commit c63bd11

Browse files
authored
Merge pull request #304 from lake-of-fire/master
Various optimizations
2 parents 37e81c9 + 3e9b0d9 commit c63bd11

6 files changed

+332
-209
lines changed

Sources/Attributes.swift

+12-1
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,22 @@ open class Attributes: NSCopying {
233233
@return HTML
234234
@throws SerializationException if the HTML representation of the attributes cannot be constructed.
235235
*/
236-
open func html()throws -> String {
236+
open func html() throws -> String {
237237
let accum = StringBuilder()
238238
try html(accum: accum, out: Document([]).outputSettings()) // output settings a bit funky, but this html() seldom used
239239
return accum.toString()
240240
}
241+
242+
/**
243+
Get the HTML representation of these attributes.
244+
@return HTML
245+
@throws SerializationException if the HTML representation of the attributes cannot be constructed.
246+
*/
247+
open func htmlUTF8() throws -> [UInt8] {
248+
let accum = StringBuilder()
249+
try html(accum: accum, out: Document([]).outputSettings()) // output settings a bit funky, but this html() seldom used
250+
return accum.buffer
251+
}
241252

242253
@inlinable
243254
public func html(accum: StringBuilder, out: OutputSettings ) throws {

Sources/Element.swift

+47-5
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ open class Element: Node {
3232
public init(_ tag: Tag, _ baseUri: [UInt8], _ attributes: Attributes) {
3333
self._tag = tag
3434
super.init(baseUri, attributes)
35+
childNodes.reserveCapacity(8)
3536
}
3637
/**
3738
* Create a new Element from a tag and a base URI.
@@ -48,6 +49,7 @@ open class Element: Node {
4849
public init(_ tag: Tag, _ baseUri: [UInt8]) {
4950
self._tag = tag
5051
super.init(baseUri, Attributes())
52+
childNodes.reserveCapacity(8)
5153
}
5254

5355
public override func nodeNameUTF8() -> [UInt8] {
@@ -1015,6 +1017,16 @@ open class Element: Node {
10151017
}
10161018
return text
10171019
}
1020+
1021+
public func textUTF8(trimAndNormaliseWhitespace: Bool = true) throws -> [UInt8] {
1022+
let accum: StringBuilder = StringBuilder()
1023+
try NodeTraversor(TextNodeVisitor(accum, trimAndNormaliseWhitespace: trimAndNormaliseWhitespace)).traverse(self)
1024+
let text = accum.buffer
1025+
if trimAndNormaliseWhitespace {
1026+
return text.trim()
1027+
}
1028+
return text
1029+
}
10181030

10191031
/**
10201032
* Gets the text owned by this element only; does not get the combined text of all children.
@@ -1032,6 +1044,23 @@ open class Element: Node {
10321044
ownText(sb)
10331045
return sb.toString().trim()
10341046
}
1047+
1048+
/**
1049+
* Gets the text owned by this element only; does not get the combined text of all children.
1050+
* <p>
1051+
* For example, given HTML {@code <p>Hello <b>there</b> now!</p>}, {@code p.ownText()} returns {@code "Hello now!"},
1052+
* whereas {@code p.text()} returns {@code "Hello there now!"}.
1053+
* Note that the text within the {@code b} element is not returned, as it is not a direct child of the {@code p} element.
1054+
*
1055+
* @return unencoded text, or empty string if none.
1056+
* @see #text()
1057+
* @see #textNodes()
1058+
*/
1059+
public func ownTextUTF8() -> [UInt8] {
1060+
let sb: StringBuilder = StringBuilder()
1061+
ownText(sb)
1062+
return sb.buffer.trim()
1063+
}
10351064

10361065
private func ownText(_ accum: StringBuilder) {
10371066
for child: Node in childNodes {
@@ -1244,7 +1273,7 @@ open class Element: Node {
12441273
@return this element
12451274
*/
12461275
@discardableResult
1247-
public func addClass(_ className: String)throws->Element {
1276+
public func addClass(_ className: String) throws -> Element {
12481277
let classes: OrderedSet<String> = try classNames()
12491278
classes.append(className)
12501279
try classNames(classes)
@@ -1257,7 +1286,7 @@ open class Element: Node {
12571286
@return this element
12581287
*/
12591288
@discardableResult
1260-
public func removeClass(_ className: String)throws->Element {
1289+
public func removeClass(_ className: String) throws -> Element {
12611290
let classes: OrderedSet<String> = try classNames()
12621291
classes.remove(className)
12631292
try classNames(classes)
@@ -1270,7 +1299,7 @@ open class Element: Node {
12701299
@return this element
12711300
*/
12721301
@discardableResult
1273-
public func toggleClass(_ className: String)throws->Element {
1302+
public func toggleClass(_ className: String) throws -> Element {
12741303
let classes: OrderedSet<String> = try classNames()
12751304
if (classes.contains(className)) {classes.remove(className)
12761305
} else {
@@ -1354,6 +1383,19 @@ open class Element: Node {
13541383
try html2(accum)
13551384
return getOutputSettings().prettyPrint() ? accum.toString().trim() : accum.toString()
13561385
}
1386+
1387+
/**
1388+
* Retrieves the element's inner HTML. E.g. on a {@code <div>} with one empty {@code <p>}, would return
1389+
* {@code <p></p>}. (Whereas {@link #outerHtml()} would return {@code <div><p></p></div>}.)
1390+
*
1391+
* @return String of HTML.
1392+
* @see #outerHtml()
1393+
*/
1394+
public func htmlUTF8() throws -> [UInt8] {
1395+
let accum: StringBuilder = StringBuilder()
1396+
try html2(accum)
1397+
return getOutputSettings().prettyPrint() ? accum.buffer.trim() : accum.buffer
1398+
}
13571399

13581400
private func html2(_ accum: StringBuilder) throws {
13591401
for node in childNodes {
@@ -1364,7 +1406,7 @@ open class Element: Node {
13641406
/**
13651407
* {@inheritDoc}
13661408
*/
1367-
open override func html(_ appendable: StringBuilder)throws->StringBuilder {
1409+
open override func html(_ appendable: StringBuilder) throws -> StringBuilder {
13681410
for node in childNodes {
13691411
try node.outerHtml(appendable)
13701412
}
@@ -1378,7 +1420,7 @@ open class Element: Node {
13781420
* @see #append(String)
13791421
*/
13801422
@discardableResult
1381-
public func html(_ html: String)throws->Element {
1423+
public func html(_ html: String) throws -> Element {
13821424
empty()
13831425
try append(html)
13841426
return self

0 commit comments

Comments
 (0)