-
-
Notifications
You must be signed in to change notification settings - Fork 218
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
std::string_view support in Rcpp::wrap() #1357
Comments
I have so far resorted to making them Can you clarify what breaks now in RProtoBuf. I had assumed that the last round of PRs there, including the support for |
I also thought that eddelbuettel/rprotobuf#106 took care of all compatibility issues. Unfortunately, it only fixed the compatibility issues that could be detected at compile time :( I am still trying to reproduce the failure in a clean environment, but basically, if you build RProtoBuf with Protobuf at HEAD (where
As far as I can tell, that's because |
Dang. That's what we get for having the (likely largest by far) code base using RProtoBuf locked up in your mono repo. 😀 Definitely up for fixing it. I can use the reverse dependency test along the by now almost 3000 packages using Rcpp. I am quite hopeful we won't hit this but you never know -- C++17 is getting widely used, and As for your bullet points two and three: We can cross that bridge when we get there. PRs can be incremental. |
Sounds great. I will try to get my draft PR finalized then. But I may need some help with unit tests: is there a good way to test a C++17-only feature? I was able to add a test in
|
Good question re the test condition. From the top of my head, maybe
I have to think if there is something better. This must have come up before for the nearly 3k Rcpp-using packages on CRAN... |
I did something very similar. I exported a |
Oh wait, now I see. Yes you are correct. The C++ support files for the unit tests are indeed on-demand compiled and will respect the plugin. Then again, C++-17 is the default by current R so it should be on anyway. Either way it does not hurt and yeppers you likely need this. |
Thanks for the guidance. If |
This has been addressed (quite nicely) in #1356 so closing. |
Currently, passing a C++17
std::string_view
toRcpp::wrap()
follows the generic "iterable" path and creates a character vector (rather than treat the string as a single element as withstd::string
orRcpp::String
). Is this unintended and would it make sense to change?My motivating example is this and similar lines in RProtoBuf. Those uses compile, but break at runtime, when the return type of
name()
et al changes fromconst std::string&
tostd::string_view
(which it does in protobuf v30). Granted, this could be addressed locally by converting tostd::string
-- but at the cost of otherwise unnecessary string copies.A fix seems easy (demo: #1356)
Concerns I anticipate:
std::wstring_view
support for consistency with the rest of the API?The text was updated successfully, but these errors were encountered: