Skip to content

A toolbox to automatically generate @importFrom roxygen tags from R files.

Notifications You must be signed in to change notification settings

DanChaltiel/autoimport

Repository files navigation

autoimport

Package-License Lifecycle: experimental CRAN status Last Commit minimal R version

autoimport is a package designed to easily add @importFrom roxygen tags to all your functions.

Concept

When importing functions to use them in a package, you have the choice between @import pkg to import a whole package and @importFrom pkg fun1 fun2 to import only a few functions.

The @importFrom syntax is preferable, as it has been stressed out that importing whole packages "makes your code harder to read (you can't tell where a function is coming from), and if you @import many packages, it increases the chance of function name conflicts."

The R Packages (2e) guidelines say that here are two reasonable locations for @importFrom :

  • As close as possible to the usage of the external function. With this mindset, you would place @importFrom in the roxygen comment above the function in your package where you use the external function.

  • In a central location. This approach keeps all @importFrom tags together, in a dedicated section of the package-level documentation file (which can be created with usethis::use_package_doc()).

I find the first option much clearer, but, as they warn, it tends to get very tedious to keep track of all the function calls.

Therefore, autoimport will parse your code, detect all the functions you import, and then add the right @importFrom tags in the right place. Just like that!

Installation

# Install last version available on CRAN (once published)
install.packages("autoimport")

# Install development version on Github
devtools::install_github("DanChaltiel/autoimport")

Getting started

Simply run the function!

autoimport()

The first run will take some time, but a cache system is implemented so that next runs are faster.

Then, you can see the diff using a shiny app:

import_review()

Limits

If someone has an idea on how to overcome this, please reach out!

False negatives

Autoimport is based on utils::getSrcref() and share the same limits.

Therefore it wont recognize as functions and try to remove imports of:

  • operators (@importFrom dplyr %>%, @importFrom rlang :=, ...).

  • functions called by name (e.g. my_fun in sapply(x, my_fun)) or in used inside strings (e.g. cli::qty()).

The best way to avoid this problem is to put these imports in your package-level documentation, as this file is ignored by default (thanks to ignore_package=TRUE). For that, usethis::use_package_doc() and usethis::use_pipe() are your friends!

Also, all functions should belong to a loaded namespace. If a function is incorrectly not imported, just run pkg::any_function in the console. This will print the function code and load the namespace in the process.

False positives

Some functions rely on packages from the Suggest section of DESCRIPTION.

Unfortunately, autoimport cannot understand this and will try to import those function in NAMESPACE, causing a check failure.

WIP: In the future, an exclusion list will be added to remove specific function from reading or writing using autoimport.

Algorithm

When trying to figure out which package to import a function from, autoimport() follow this algorithm:

  • If the function is already mentioned in NAMESPACE, use the package
  • Else, if the function is only exported by one package, use this package
  • Else, ask the user from which package to import the function
  • Else, warn that the function was not found

Note that this algorithm is still a bit experimental and that I could only test it on my few own packages. Any feedback is more than welcome!

Style

As I couldn't find any standardized guideline about the right order of roxygen2 tags, autoimport puts them:

  • in place of the first @importFrom tag if there is one

  • WIP: just before examples if there are some

  • just before the function call otherwise

About

A toolbox to automatically generate @importFrom roxygen tags from R files.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages