Skip to content

Remove dependency on LEVELS() #1728

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
merged 4 commits into from
Apr 8, 2025
Merged

Remove dependency on LEVELS() #1728

merged 4 commits into from
Apr 8, 2025

Conversation

lionel-
Copy link
Member

@lionel- lionel- commented Jul 2, 2024

Closes #1726

@lionel- lionel- force-pushed the feature/api-levels branch 2 times, most recently from b9b2616 to 0e1f8a8 Compare April 4, 2025 10:58
@lionel- lionel- requested a review from DavisVaughan April 4, 2025 11:06
@lionel-
Copy link
Member Author

lionel- commented Apr 4, 2025

I had to remove the tests for "unknown" encodings, i.e. for strings that are unmarked. The new API charIsUTF8() returns true for these strings and I couldn't find an API conformant way of detecting them.

Davis, you added these tests in #1187. Do you have a good sense of how important this case is? I'm not sure how this arises in practice. Also I would expect edge cases to be less common in general now that Windows supports UTF-8.

@lionel- lionel- force-pushed the feature/api-levels branch from 0e1f8a8 to c0b056f Compare April 4, 2025 13:48
@lionel- lionel- force-pushed the feature/api-levels branch from c0b056f to 83746c1 Compare April 4, 2025 13:53
Copy link
Member

@DavisVaughan DavisVaughan left a comment

Choose a reason for hiding this comment

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

We determined the one place this is actually used right now is in rlang's chr_detect_dups() function here

x = KEEP(r_obj_encode_utf8(x));

Which is used by names_as_unique()

r_obj* dups = KEEP(chr_detect_dups(new_names));

Which is a common name repair strategy in the tidyverse.

Since no tests failed we determined this is probably going to work fine.


It is also worth noting that this is not currently used in vctrs right now. We did do the work to expose this in the rlang C API as an rlang callable, but we never went back and updated vctrs to use it (instead it uses its own local copy of a similar function).


Lastly, here is the main change:

https://github.com/wch/r-source/blob/7f80ed7ae28959026e071a7c58cd38fa3a3a8f9f/src/main/sysutils.c#L962

The one case Rf_charIsUTF8 seems to be different for us is when:

  • String is not "marked" as UTF8
  • But utf8locale is set to true

In this case we previously assumed it was not UTF8 because it was "unknown" to us and we can't access utf8locale

But R can access utf8locale so I guess it assumes that if the string is not marked as anything and not NA and utf8locale is set, then it must be UTF8

This case is probably quite rare, and the only difference in behavior is that we used to call Rf_translateCharUTF8() on these "unknown" strings, but R seems to think they are UTF8 anyways, so that was probably already a no-op in terms of actual behavior (possibly it would add the UTF8 marking, but it probably didn't change the underlying bytes).

@lionel- lionel- merged commit 3b6ba24 into main Apr 8, 2025
13 checks passed
@lionel- lionel- deleted the feature/api-levels branch April 8, 2025 07:23
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.

Remove LEVELS() accessor
2 participants