Skip to content
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: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ VignetteBuilder:
knitr
Config/Needs/build: roxygen2, devtools, irlba, pkgconfig, igraph/igraph.r2cdocs, moodymudskipper/devtag
Config/Needs/coverage: covr
Config/Needs/website: readr
Config/Needs/website: here, readr, tibble, xmlparsedata, xml2
Config/testthat/edition: 3
Config/testthat/parallel: true
Config/testthat/start-first: vs-es, scan, vs-operators, weakref,
Expand Down
115 changes: 115 additions & 0 deletions vignettes/articles/current-deprecations.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
---
title: "Improving igraph interface: current deprecations"
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```


To provide a more consistent interface, part of igraph functions or arguments are slowly but consistently being deprecated.
You can follow along the current level of deprecations in the table below.

Please update your codebases as soon as you can, be they packages or scripts.
To do that, run your code in a session where you installed the latest igraph version, possibly even the development version that you can install from R-universe:

```r
options(
repos = c(
igraph = 'https://igraph.r-universe.dev',
CRAN = 'https://cloud.r-project.org'
)
)
install.packages('igraph')
```

And pay attention to any message emitted through the lifecycle package.


Thank you for your cooperation!
Direct any question to us in the [igraph issue tracker](https://github.com/igraph/rigraph/issues).


```{r, echo=FALSE}
clean_arg <- function(arg) {
arg <- sub("^'", "", arg)
arg <- sub("'$", "", arg)
arg <- sub('^"', '', arg)
arg <- sub('"$', '', arg)
arg
}

link_new <- function(new) {
# downlit can't link something like "igraph::assortativity(values =)"
new_str <- sub("\\(.*", "", new)
url <- downlit::autolink_url(sprintf("igraph::%s", new_str))
if (is.na(url)) {
new
} else {
sprintf('<a href="%s">%s</a>', url, new)
}
}

parse_lifecycle_call <- function(symbol_function_call) {
level <- sub("deprecate_", "", xml2::xml_text(symbol_function_call))
level <- switch(
level,
soft = "1 -- soft",
warn = "2 -- warn",
stop = "3 -- stop"
)

args <- purrr::keep(
xml2::xml_siblings(xml2::xml_parent(symbol_function_call)),
\(x) xml2::xml_name(x) == "expr"
)
version <- xml2::xml_text(args[[1]])
old <- xml2::xml_text(args[[2]])
new <- if (length(args) > 2) xml2::xml_text(args[[3]]) else ""

new_text <- link_new(clean_arg(new))

if (!grepl("<a", new_text)) {
old_text <- link_new(clean_arg(old))
} else {
old_text <- clean_arg(old)
}

tibble::tibble(
level = level,
version = clean_arg(version),
old = old_text,
new = new_text
)
}

parse_script <- function(path) {
lifecycle_calls <- path |>
parse(keep.source = TRUE) |>
xmlparsedata::xml_parse_data(pretty = TRUE) |>
xml2::read_xml() |>
xml2::xml_find_all(
".//SYMBOL_FUNCTION_CALL[contains(text(), 'deprecate_')]"
)

if (length(lifecycle_calls) == 0) return(NULL)

lifecycle_calls_info <- purrr::map(lifecycle_calls, parse_lifecycle_call)

do.call(rbind, lifecycle_calls_info)
}

scripts <- fs::dir_ls(here::here("R"), glob = "*.R")
scripts <- scripts[fs::path_file(scripts) != "zzz.R"]

table <- do.call(
rbind,
purrr::map(scripts, parse_script)
)

knitr::kable(table)

```