-
-
Notifications
You must be signed in to change notification settings - Fork 218
Move away from using ATTRIB() #1430
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
Merged
+34
−36
Merged
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
8b22574
Avoid ATTRIB under R 4.6.0 and use R_mapAttrib
eddelbuettel eb90315
Microedit following rebase
eddelbuettel 486c452
Three refinements based on code review
eddelbuettel 0851d10
Simplify nrow() getter for data.frame following code review
eddelbuettel f6591c3
Simplify attribute accessor using two lambda visitors
eddelbuettel 8818c86
Correct one typo/sloppyness in instantiation
eddelbuettel c03af7f
Further simplification thanks to @enchufa2
eddelbuettel 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,55 @@ | ||
| // utilities.cpp: Rcpp R/C++ interface class library -- attribute utilities | ||
| // | ||
| // Copyright (C) 2025 - current Dirk Eddelbuettel | ||
| // | ||
| // This file is part of Rcpp. | ||
| // | ||
| // Rcpp is free software: you can redistribute it and/or modify it | ||
| // under the terms of the GNU General Public License as published by | ||
| // the Free Software Foundation, either version 2 of the License, or | ||
| // (at your option) any later version. | ||
| // | ||
| // Rcpp is distributed in the hope that it will be useful, but | ||
| // WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| // GNU General Public License for more details. | ||
| // | ||
| // You should have received a copy of the GNU General Public License | ||
| // along with Rcpp. If not, see <http://www.gnu.org/licenses/>. | ||
|
|
||
| #define COMPILING_RCPP | ||
|
|
||
| #include <cmath> | ||
| #include <string> | ||
| #include <vector> | ||
| #include <Rcpp/Lighter> | ||
|
|
||
| // See WRE Section 6.22.6 'Working with attributes' under R 4.6.0 or later | ||
| // This function collects the names from 'tag' in a vector passed via *data | ||
| // It is used by AttributeProxyPolicy::attributeNames() in a call to R_mapAttrib | ||
| // [[Rcpp::register]] | ||
| SEXP get_attr_names(SEXP tag, SEXP attr, void* data) { | ||
| std::vector<std::string>* vecptr = static_cast<std::vector<std::string>*>(data); | ||
| std::string s{CHAR(Rf_asChar(tag))}; | ||
| vecptr->push_back(s); | ||
| return NULL; | ||
| } | ||
|
|
||
| // See WRE Section 6.22.6 'Working with attributes' under R 4.6.0 or later | ||
| // This function extracts the number of rows in a data frame | ||
| // It is used DataFrame_impl::nrow() in a call to R_mapAttrib() | ||
| // [[Rcpp::register]] | ||
| SEXP get_row_count(SEXP tag, SEXP attr, void* data) { | ||
| if (tag == R_RowNamesSymbol) { | ||
| if (TYPEOF(attr) == INTSXP && LENGTH(attr) == 2 && INTEGER(attr)[0] == NA_INTEGER) { | ||
| int n = std::abs(INTEGER(attr)[1]); | ||
|
eddelbuettel marked this conversation as resolved.
Outdated
|
||
| //Rcpp::Rcout << "Seeing " << n << std::endl; | ||
| return Rf_ScalarInteger(n); | ||
| } | ||
| if (Rf_isNull(attr)) { | ||
| return Rf_ScalarInteger(0); | ||
| } | ||
| return Rf_ScalarInteger(LENGTH(attr)); | ||
| } | ||
| return NULL; | ||
| } | ||
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.
Uh oh!
There was an error while loading. Please reload this page.