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

AttributeProxy::set() #947

Merged
merged 7 commits into from
Mar 16, 2019
Merged

AttributeProxy::set() #947

merged 7 commits into from
Mar 16, 2019

Conversation

romainfrancois
Copy link
Contributor

closes #946

@kevinushey
Copy link
Contributor

LGTM!

} else {
/* use the slower and more flexible version (callback to R) */
SEXP namesSym = Rf_install( "names<-" );
Shield<SEXP> new_vec(Rcpp_fast_eval(Rf_lang3(namesSym, parent, x), R_GlobalEnv));
Shield<SEXP> call(Rf_lang3(namesSym, parent, x));
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Was unsafe to not protect the result of Rf_lang3

/* check if we can use a fast version */
if( TYPEOF(x) == STRSXP && parent.size() == Rf_length(x) ){
SEXP y = parent.get__() ;
Rf_setAttrib( y, R_NamesSymbol, x ) ;
Rf_namesgets(parent, x);
Copy link
Contributor Author

Choose a reason for hiding this comment

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

That's what Rf_namesgets is for.

romainfrancois added a commit to tidyverse/dplyr that referenced this pull request Mar 14, 2019
romainfrancois added a commit to tidyverse/dplyr that referenced this pull request Mar 15, 2019
romainfrancois added a commit to tidyverse/dplyr that referenced this pull request Mar 15, 2019
* check_slice_result() no longer allocate, but protect anyway. rchk.

* protect result of quo.env(). rchk

* PROTECT quosure.expr(), as validate_unquoted_value() might alllocate

* some more rchk protection

* simplify get_date_classes() and get_time_classes()

* need (SEXP)

* some more rchk

* protect results of vec_names_or_empty()

* SymbolVector::init() protects its argument. rchk

* more protection in DataMask::setup()

* more rchk

* using setAttrib() / getAttrib() instead of Rcpp's attr() to skip 💵 for Rf_install()

* more rchk

* more rchk.

* more rchk

* more rchk

* simplify make_lambda_quosure

* get_uniques() is never used

* protect column_names. rchk

* skip copies

* protect result of wrap before the List ctor.

* using r_match() instead of SymbolVector.match_in_table()

* protect Rf_getAttrib(x, symbols::names)

* more rchk

* using Rcpp::export(rng = false).

closes #4278

* rchk says the dtor of N_Distinct might allocate

* scope the shared_ptr<> for rchk

* protect from ~Gatherer() dtor. rchk

* Cannot dirtectly send the result of match_in_table() in IntegerVector because of the unsafe ctor. rchk

* trying RcppCore/Rcpp#949 to see if it helps quiet some rchk 😱

* - Remote

* rm unused nprot

* Shield<> before CharacterVector ctor, until RcppCore/Rcpp#947 gets merged in Rcpp.

* Revert "- Remote"

This reverts commit 72bb9aa.

* SymbolMap(DataFrame) ctor to avoid rchk issue with the SymbolMap(CharacterVector) ctor

* Forbid copy construction of GroupedDataFrame and SymbolMap

* limit copies of SymbolVector

* 🏃 a branch that incorporates changes from both Rcpp PRs:

RcppCore/Rcpp#947
RcppCore/Rcpp#949

* use CRAN Rcpp
@eddelbuettel eddelbuettel merged commit 7203f32 into RcppCore:master Mar 16, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

AttributeProxy::set()
3 participants