Project

General

Profile

Feature #16604

Updated by larskanis (Lars Kanis) over 3 years ago

This issue is related to https://bugs.ruby-lang.org/issues/13488 where we already discussed the topic and an postponed the change for ruby-3. A patch Patch is here: https://github.com/ruby/ruby/pull/2877 

 ## What should be changed? 

 Currently `Encoding.default_external` is initialized to the local console encoding of the Windows installation unless changed per option `-E`. This is e.g. cp850 for Western Europe. It should be changed to UTF-8. 

 The above patch only changes the default RubyInstaller provided a checkbox for `Encoding.default_external`. It can still be overwritten `RUBYOPT=-Eutf-8` since version 2.4. This checkbox was disabled per command line option `-Elocale` or in ruby code. default, but I noticed from bug reports, that many people enabled it. With RubyInstaller-2.7.0 this checkbox is [enabled per default](https://rubyinstaller.org/2020/01/05/rubyinstaller-2.7.0-1-released.html). So we already have a steady migration towards UTF-8 on Windows. 

 ## Reasons for the change 

 Changing to UTF-8 fixes various inconsistencies within ruby and with external tools. A very common annoying case is that writing a non-ASCII text to a file. It file writes the string file content as its binary representation, which is usually in UTF-8, since this is the default ruby source encoding. But reading the content back, tags the string with the wrong encoding leading to mojibakes. encoding. But not in `irb` since it already set `Encoding.default_external = "utf-8"` on it's own. 

 ``` 
 s = "äöü" 
 File.write("x", s)     # => 6 bytes 
 File.read("x") == s    # => true in irb but false in .rb file 
 ``` 

 As noted in the last line, the result in `irb` is different from regular .rb files, since it already sets `Encoding.default_external = "utf-8"` on it's own. This is another inconsistency with the current default. 

 Another issue is that many non-asian regions have distinct legacy encodings for OEM code page (aka `Encoding.find('locale')` ) and ANSI code page (aka `Encoding.find('filesystem')` ), so that a file written in current default external encoding `Encoding.find('locale')` is not properly interpret in Windows GUI tools like notepad. It is therefore uncommon to store files in OEM-ANSI encoding and doing so is almost certainly wrong. 

 RubyInstaller ships the MSYS2 environment, which defaults to UTF-8 as well. 

 Powershell made the switch to UTF-8 (without BOM) in [Powershell-6.0](https://docs.microsoft.com/en-us/powershell/scripting/whats-new/what-s-new-in-powershell-core-60?view=powershell-7#default-encoding-is-utf-8-without-a-bom-except-for-new-modulemanifest) and even more in 6.1. 

 ## Will it work? 

 Yes. RubyInstaller provided a checkbox for `RUBYOPT=-Eutf-8` since version 2.4. This checkbox was disabled at first, but since RubyInstaller-2.7.0 this checkbox is [enabled per default](https://rubyinstaller.org/2020/01/05/rubyinstaller-2.7.0-1-released.html). So UTF-8 as the default external encoding is the expected encoding for most of the people on Windows, now. 

 However setting `RUBYOPT` per installer is obtrusive and doesn't work with a 7z archive distribution. I would like to remove this hack starting with ruby-3.0. 

 ## Alternatives 

 Changing the default of `Encoding.default_external` to UTF-8 is a trade-off. It doesn't fit to every case, but in my experience this is the best overall option. And it's just the default for the default, so that it can be overwritten in many ways. 

 There are some alternatives to it: 

 Changing the Windows console to code page 65001: 
  * The Windows implementation of 65001 is buggy in the console. I didn't verify it lately but `chcp 65001` didn't work reliable years ago. 
  * It is not the default and input methods like IME are incompatible. 
  * It sets `locale` to UTF-8, so that the native console encoding isn't easily available. 

 Setting `Encoding.default_internal` in addition: 
  * This triggers transcoding of output strings, which is not enabled on other systems, causing unexpected results and incompatibilities. 

 Change ruby to use `Encoding.find("filesystem")` as encoding for file operations: 
  * That would fix the compatibility with some builtin Windows tools, but doesn't fix encoding issues due to increased use of UTF-8. 

 ## What doesn't change? 

 Please note that changing `Encoding.default_external` doesn't affect file or IO **output**, output, unless `Encoding.default_internal` is set as well (which is not the default). So inspecting ruby's output with Windows builtin `more` will most likely result in garbage (since strings are usually UTF-8 in ruby) regardless of the particular `default_external` setting. On the other hand output inspected with MSYS2 `less` is most likely correct, since it expects UTF-8 input. 

 Also "locale" Another thing that external encoding doesn't change is ruby's `locale` and "filesystem" pseudo encodings don't change. `filesystem` encoding. Both can still be used explicit in cases where these encodings are the legacy encoding is required. 

 The patch is currently about Windows only, because I would like to focus on that question for now. Possibly it's a subsequent question whether Encoding.default_external should default to UTF-8 on all operating systems or at least in case of `LANG=C` locale (which currently triggers US-ASCII). 

Back