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

Add rpc to get loaded packages #752

Merged
merged 4 commits into from
Mar 25, 2025
Merged

Add rpc to get loaded packages #752

merged 4 commits into from
Mar 25, 2025

Conversation

jmcphers
Copy link
Contributor

Ark side of posit-dev/positron#6954; just adds an RPC to get the loaded packages, and calls unlist on the set of packages to install since those arrive in list form from the front end.

@@ -63,3 +63,8 @@

pkg %in% .packages()
}

#' @export
.ps.rpc.get_loaded_packages <- function(...) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is maybe a nit? But probably worth considering: .packages() returns the attached packages, which is different from those whose namespaces are loaded, which is what "loaded" evokes for me. Should this be .ps.rpc.get_attached_packages()?

Various looks at loaded packages, for various definitions of that:

> print(.packages())
 [1] "pak"        "reprex"     "devtools"   "usethis"    "conflicted" "stats"      "graphics"  
 [8] "grDevices"  "utils"      "datasets"   "methods"    "base"      
> search()
 [1] ".GlobalEnv"         "local:rprofile"     ".conflicts"         "package:pak"       
 [5] "package:reprex"     "package:devtools"   "package:usethis"    "package:conflicted"
 [9] "tools:rstudio"      "tools:positron"     "package:stats"      "package:graphics"  
[13] "package:grDevices"  "package:utils"      "package:datasets"   "package:methods"   
[17] "Autoloads"          "package:base"      
> loadedNamespaces()
 [1] "vctrs"       "httr"        "cli"         "rlang"       "purrr"       "pkgload"     "promises"   
 [8] "shiny"       "xtable"      "glue"        "htmltools"   "httpuv"      "pkgbuild"    "pak"        
[15] "methods"     "datasets"    "ellipsis"    "fastmap"     "conflicted"  "lifecycle"   "utils"      
[22] "memoise"     "compiler"    "miniUI"      "sessioninfo" "fs"          "htmlwidgets" "Rcpp"       
[29] "urlchecker"  "base"        "stats"       "graphics"    "later"       "digest"      "R6"         
[36] "reprex"      "usethis"     "magrittr"    "withr"       "tools"       "grDevices"   "mime"       
[43] "devtools"    "profvis"     "remotes"     "cachem"     

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, that's the intent. Thanks!

@jmcphers jmcphers requested a review from jennybc March 25, 2025 20:10
Copy link
Member

@jennybc jennybc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One last nit: Do you want to update copyright year?

@jmcphers jmcphers merged commit 93c6911 into main Mar 25, 2025
6 checks passed
@jmcphers jmcphers deleted the feature/llm-package-tools branch March 25, 2025 21:06
@github-actions github-actions bot locked and limited conversation to collaborators Mar 25, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants