-
Notifications
You must be signed in to change notification settings - Fork 37
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
fix prepExtendedComment called from package::fun #229
Open
pascal-sauer
wants to merge
8
commits into
pik-piam:master
Choose a base branch
from
pascal-sauer:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
0eec37b
fix prepExtendedComment called from package::fun
pascal-sauer 77483e5
fix
pascal-sauer 7b1ebc5
only support ::, not :::
pascal-sauer 4fbb642
Revert "only support ::, not :::"
pascal-sauer 047270e
use functionCallString in toolstartmessage and prepExtendedComment
pascal-sauer 296b9a9
test comment origin
pascal-sauer 31fc6c1
callstring arg for toolstartmessage
pascal-sauer 83bda51
dev version number
pascal-sauer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Type: Package | ||
Package: madrat | ||
Title: May All Data be Reproducible and Transparent (MADRaT) * | ||
Version: 3.15.2 | ||
Date: 2024-11-06 | ||
Version: 3.15.3 | ||
Date: 2024-11-11 | ||
Authors@R: c( | ||
person("Jan Philipp", "Dietrich", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(affiliation = "Potsdam Institute for Climate Impact Research", ORCID = "0000-0002-4309-6431")), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
test_that("prepExtendedComment works in functions called via package::fun", { | ||
# need to run in separate R session to make sure madrat is not attached / loaded via load_all | ||
expect_identical(callr::r(function() madrat::.testPrepExtendedComment()[1:2]), | ||
c(" description: example", | ||
" unit: m")) | ||
}) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A bit unsafe to look for the function in some environment when
functionCall[[2]]
explicitly states it. But this is an internal function, so OK.But why not
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume you refer to the else branch? This is the behavior we had previously which I did not see a reason to change.
I assume you suggest to skip the if else and use this instead to then call
get(functionCall, mode = "function", sys.frame(-n - 1))
? This won't work in a scenario wheremadrat::readSource
is called, unlessmadrat
is also attached (in which case readSource likely won't be called with themadrat::
prefix), becauseget
would only look on the search path.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
—https://rdrr.io/r/base/get.html
The fully qualified call is
Now, which argument is used,
envir
orpos
(as they point to different things)?Spoiler:
It isenvir
.Since
prepExtendedComment()
is not exported, people calling it without attachingmadrat
are wholly responsible for their own pain;)
.But a safe formulation would be
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(I assumed – wrongly – that
pos
would take precedence overenvir
and thatget(…, sys.frame(-n - 1), inherits = TRUE)
would just climb up the search path until some matching function is found.)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I found a way to get rid of this call stack inspection altogether