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

Encoding flags for parts of an InterpolatedRegularExpressionNode #2669

Open
eregon opened this issue Apr 3, 2024 · 2 comments
Open

Encoding flags for parts of an InterpolatedRegularExpressionNode #2669

eregon opened this issue Apr 3, 2024 · 2 comments
Labels
bug Something isn't working compiler

Comments

@eregon
Copy link
Member

eregon commented Apr 3, 2024

For regular expression /#{ }\xc2\xa1/e, which comes from test_m17n.rb in CRuby tests, the flags are respectively forced_utf8_encoding and forced_binary_encoding for source encoding UTF-8 and US-ASCII.

I am not sure if this is correct or not.
We are looking at this in TruffleRuby and honoring those flags is causing to compute the wrong Regexp encoding.

I guess ideally because of the /e the parts would be "force_eucjp_encoding".
That seems the best to avoid mistakes in consumers.

Or maybe no flags, and let the consumer attach the encoding correctly, though more error-prone it might be better than (arguably) the "wrong" encoding flag.

@kddnewton WDYT?

$ bin/parse -e '/#{ }\xc2\xa1/e'
@ ProgramNode (location: (1,0)-(1,15))
├── locals: []
└── statements:
    @ StatementsNode (location: (1,0)-(1,15))
    └── body: (length: 1)
        └── @ InterpolatedRegularExpressionNode (location: (1,0)-(1,15))
            ├── flags: euc_jp
            ├── opening_loc: (1,0)-(1,1) = "/"
            ├── parts: (length: 2)
            │   ├── @ EmbeddedStatementsNode (location: (1,1)-(1,5))
            │   │   ├── opening_loc: (1,1)-(1,3) = "\#{"
            │   │   ├── statements: ∅
            │   │   └── closing_loc: (1,4)-(1,5) = "}"
            │   └── @ StringNode (location: (1,5)-(1,13))
            │       ├── flags: forced_utf8_encoding
            │       ├── opening_loc: ∅
            │       ├── content_loc: (1,5)-(1,13) = "\\xc2\\xa1"
            │       ├── closing_loc: ∅
            │       └── unescaped: "\\xc2\\xa1"
            └── closing_loc: (1,13)-(1,15) = "/e"
$ bin/parse -e '# encoding: US-ASCII
/#{ }\xc2\xa1/e'
...
AST:
@ ProgramNode (location: (2,0)-(2,15))
├── locals: []
└── statements:
    @ StatementsNode (location: (2,0)-(2,15))
    └── body: (length: 1)
        └── @ InterpolatedRegularExpressionNode (location: (2,0)-(2,15))
            ├── flags: euc_jp
            ├── opening_loc: (2,0)-(2,1) = "/"
            ├── parts: (length: 2)
            │   ├── @ EmbeddedStatementsNode (location: (2,1)-(2,5))
            │   │   ├── opening_loc: (2,1)-(2,3) = "\#{"
            │   │   ├── statements: ∅
            │   │   └── closing_loc: (2,4)-(2,5) = "}"
            │   └── @ StringNode (location: (2,5)-(2,13))
            │       ├── flags: forced_binary_encoding
            │       ├── opening_loc: ∅
            │       ├── content_loc: (2,5)-(2,13) = "\\xc2\\xa1"
            │       ├── closing_loc: ∅
            │       └── unescaped: "\\xc2\\xa1"
            └── closing_loc: (2,13)-(2,15) = "/e"

cc @andrykonchin

@eregon
Copy link
Member Author

eregon commented Apr 3, 2024

Sort of related: https://bugs.ruby-lang.org/issues/20406
We're trying to figure the actual rules for a Regexp literal's Regexp#encoding.
There is actually some docs on it in ri Regexp from Ruby 3.3.

@kddnewton
Copy link
Collaborator

Yeah I'm tempted to not add any additional flags as it's already pretty confusing. But I'm working through the CRuby failures right now, trying to get to the actual problems. I'll check back in on this ticket once I get the majority of them passing, and see if maybe we need additional information to get to 100%.

@kddnewton kddnewton added the bug Something isn't working label Apr 3, 2024
@kddnewton kddnewton added this to the CRuby unblocked milestone Apr 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working compiler
Projects
None yet
Development

No branches or pull requests

2 participants