Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r-lib/debugme
Easy and efficient debugging for R packages
https://github.com/r-lib/debugme
debugging-tool r
Last synced: 4 days ago
JSON representation
Easy and efficient debugging for R packages
- Host: GitHub
- URL: https://github.com/r-lib/debugme
- Owner: r-lib
- License: other
- Created: 2016-09-25T14:36:52.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2024-08-28T13:33:49.000Z (4 months ago)
- Last Synced: 2024-09-28T18:06:55.196Z (2 months ago)
- Topics: debugging-tool, r
- Language: R
- Homepage: https://r-lib.github.io/debugme/
- Size: 2.18 MB
- Stars: 148
- Watchers: 6
- Forks: 10
- Open Issues: 23
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - r-lib/debugme - Easy and efficient debugging for R packages (R)
README
```{r, setup, echo = FALSE, message = FALSE}
knitr::opts_chunk$set(
comment = "#>",
tidy = FALSE,
error = FALSE,
fig.width = 8,
fig.height = 8)
```# debugme
> Debug R Packages
[![R-CMD-check](https://github.com/r-lib/debugme/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-lib/debugme/actions/workflows/R-CMD-check.yaml)
[![](https://www.r-pkg.org/badges/version/debugme)](https://www.r-pkg.org/pkg/debugme)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/debugme)](https://www.r-pkg.org/pkg/debugme)
[![Codecov test coverage](https://codecov.io/gh/r-lib/debugme/branch/main/graph/badge.svg)](https://app.codecov.io/gh/r-lib/debugme?branch=main)Specify debug messages as special string constants, and control debugging of
packages via environment variables. This package was largely influenced by
the [`debug` npm package](https://github.com/debug-js/debug).## Installation and Usage
Stable version:
```{r eval = FALSE}
install.packages("debugme")
```To install the development version:
```{r eval = FALSE}
pak::pak("r-lib/debugme")
```To use `debugme` in your package, import it, and then add the following
`.onLoad` function to your package:
```r
.onLoad <- function(libname, pkgname) {
debugme::debugme()
}
```You can now add debug messages via character literals. No function calls
are necessary. For example:
```r
"!DEBUG Start up phantomjs"
private$start_phantomjs(phantom_debug_level)"!DEBUG Start up shiny"
private$start_shiny(path)"!DEBUG create new phantomjs session"
private$web <- session$new(port = private$phantom_port)"!DEBUG navigate to Shiny app"
private$web$go(private$get_shiny_url())
```The string literals are simply ignored when debugging is turned off. To
turn on debugging for a package, set the environment variable `DEBUGME` to
the package name you want to debug. E.g. from a `bash` shell:```sh
export DEBUGME=mypackage
```Or from within R:
```r
Sys.setenv(DEBUGME = "mypackage")
```Separate multiple package names with commas:
```sh
export DEBUGME=mypackage,otherpackage
```The debug messages will be prefixed by the package names, and assuming your
terminal supports color, will be colored differently for each package.## Example
![](/screencast.gif)
## Dynamic code
The `debugme` debug strings may contain R code between backticks.
This code is evaluated at runtime, if debugging is turned on. A single
debug string may contain multiple backticked code chunks:```r
"!DEBUG x = `x`, y = `y`"
if (x != y) {
...
```## Motivation
I have always wanted a debugging tool that
* is very simple to use,
* can be controlled via environment variables, without changing anything
it the packages themselves,
* has zero impact on performance when debugging is off.`debugme` is such a tool.
### Performance
Function calls are relatively cheap in R, but they still do have an impact.
If you never want to worry about the log messages making your code slower,
you will like `debugme`. `debugme` debug strings have practically no
performance penalty when debugging is off.Here is a simple comparison to evaluate debugging overhead with a function call, `f1()`,
debugging with debug strings, `f2()`, and no debugging at all.```{r}
debug <- function(msg) { }
f1 <- function() {
for (i in 1:100) {
debug("foobar")
# Avoid optimizing away the loop
i <- i + 1
}
}
``````{r}
f2 <- function() {
for (i in 1:100) {
"!DEBUG foobar"
# Avoid optimizing away the loop
i <- i + 1
}
}
``````{r}
f3 <- function() {
for (i in 1:100) {
# Avoid optimizing away the loop
i <- i + 1
}
}
``````{r}
microbenchmark::microbenchmark(f1(), f2(), f3())
```## License
MIT © [Gábor Csárdi](https://github.com/gaborcsardi)