Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Replace structure() by class() #393

Merged
merged 2 commits into from
Jun 29, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# xml2 (development version)

* Small speedup for `xml_find_all()` (@mgirlich, #393).

# xml2 1.3.4

* Fixes for R CMD check problems.
Expand Down
25 changes: 18 additions & 7 deletions R/classes.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ xml_node <- function(node = NULL, doc = NULL) {
if (inherits(node, "xml_node")) {
node
} else {
structure(list(node = node, doc = doc), class = "xml_node")
out <- list(node = node, doc = doc)
class(out) <- "xml_node"
out
}
}

Expand Down Expand Up @@ -38,7 +40,9 @@ xml_document <- function(doc) {
class(x) <- c("xml_document", class(x))
x
} else {
structure(list(doc = doc), class = "xml_document")
out <- list(doc = doc)
class(out) <- "xml_document"
out
}
}

Expand Down Expand Up @@ -75,7 +79,8 @@ xml_nodeset <- function(nodes = list(), deduplicate = TRUE) {
if (isTRUE(deduplicate)) {
nodes <- nodes[!.Call(nodes_duplicated, nodes)]
}
structure(nodes, class = "xml_nodeset")
class(nodes) <- "xml_nodeset"
nodes
}

#' @param nodes A list (possible nested) of external pointers to nodes
Expand Down Expand Up @@ -200,7 +205,9 @@ format_attributes <- function(x) {
#' @export
#' @keywords internal
xml_missing <- function() {
structure(list(), class = "xml_missing")
out <- list()
class(out) <- "xml_missing"
out
}

#' @export
Expand Down Expand Up @@ -243,7 +250,8 @@ as.character.xml_missing <- function(x, ...) {
#' as.character(x)
#' @export
xml_cdata <- function(content) {
structure(content, class = "xml_cdata")
class(content) <- "xml_cdata"
content
}

#' Construct a comment node
Expand All @@ -255,7 +263,8 @@ xml_cdata <- function(content) {
#' as.character(x)
#' @export
xml_comment <- function(content) {
structure(content, class = "xml_comment")
class(content) <- "xml_comment"
content
}

#' Construct a document type definition
Expand All @@ -281,5 +290,7 @@ xml_comment <- function(content) {
#' <doc>This is a valid document &foo; !</doc>')
#' @export
xml_dtd <- function(name = "", external_id = "", system_id = "") {
structure(list(name = name, external_id = external_id, system_id = system_id), class = "xml_dtd")
out <- list(name = name, external_id = external_id, system_id = system_id)
class(out) <- "xml_dtd"
out
}
9 changes: 6 additions & 3 deletions R/xml_modify.R
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,11 @@ create_node <- function(.value, ..., .parent, .copy) {
parts <- strsplit(.value, ":")[[1]]
if (length(parts) == 2 && !is.null(.parent$node)) {
namespace <- .Call(ns_lookup, .parent$doc, .parent$node, parts[[1]])
node <- structure(list(node = .Call(node_new_ns, parts[[2]], namespace), doc = .parent$doc), class = "xml_node")
node <- list(node = .Call(node_new_ns, parts[[2]], namespace), doc = .parent$doc)
} else {
node <- structure(list(node = .Call(node_new, .value), doc = .parent$doc), class = "xml_node")
node <- list(node = .Call(node_new, .value), doc = .parent$doc)
}
class(node) <- "xml_node"

args <- list(...)
named <- has_names(args)
Expand Down Expand Up @@ -296,7 +297,9 @@ xml_set_namespace <- function(.x, prefix = "", uri = "") {
# TODO: jimhester 2016-12-16 Deprecate this in the future?
xml_new_document <- function(version = "1.0", encoding = "UTF-8") {
doc <- .Call(doc_new, version, encoding)
structure(list(doc = doc), class = "xml_document")
out <- list(doc = doc)
class(out) <- "xml_document"
out
}

#' @param .version The version number of the document, passed to `xml_new_document(version)`.
Expand Down