Project

General

Profile

Actions

Feature #13488

closed

Set Encoding.default_external to UTF-8 on Windows

Added by larskanis (Lars Kanis) about 7 years ago. Updated over 3 years ago.

Status:
Closed
Assignee:
-
Target version:
[ruby-core:80806]

Description

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

The current setting is a major interoperability issue and it is neither useful nor expected, because nobody seriously uses the ancient locale dependent cpXYZ encodings for file content.

If a native encoding shall be used, it should be UTF-16 on Windows. However UTF-16 would make interoperability and compatibility even more difficult. So the only reliable choice for default_external is UTF-8, IMHO.

This is already patched per [1] in the upcoming RubyInstaller-2.4 for Windows release. It additionally requires a few changes to MRIs encoding tests.

[1] https://github.com/oneclick/rubyinstaller2/blob/master/recipes/compile/ruby-2.4.1/0005-utf-8-default-encoding.patch


Related issues 1 (0 open1 closed)

Related to Ruby master - Feature #16604: Set default for Encoding.default_external to UTF-8 on WindowsClosedActions

Updated by usa (Usaku NAKAMURA) about 7 years ago

larskanis (Lars Kanis) wrote:

The current setting is a major interoperability issue and it is neither useful nor expected, because nobody seriously uses the ancient locale dependent cpXYZ encodings for file content.

Come Japan and check Japanese Windows users' text files :)

If a native encoding shall be used, it should be UTF-16 on Windows. However UTF-16 would make interoperability and compatibility even more difficult. So the only reliable choice for default_external is UTF-8, IMHO.

I agree.

We won't change the default of Encoding.default_encoding before Ruby3 because of to keep compatibility.
And, at Ruby3, we will change it to UTF-8, perhaps.

Actions #2

Updated by naruse (Yui NARUSE) about 7 years ago

  • Status changed from Open to Rejected

Though it should be changed into UTF-8 in the future, I don't plan it in 2.5 too.
(If many people want to change, I may change my mind)

Anyway the patch is directly changes the default_external, but default_external's default is correctly locale.
The locale encoding affects not only default_external, it also affects filesystem encoding.

If you want to change them, you should just change ruby as if it runs on chcp 65001:

diff --git a/localeinit.c b/localeinit.c
index fa9cc26b8e..397b12bf6c 100644
--- a/localeinit.c
+++ b/localeinit.c
@@ -126,8 +126,7 @@ Init_enc_set_filesystem_encoding(void)
     idx = ENCINDEX_US_ASCII;
 #elif defined _WIN32
     char cp[SIZEOF_CP_NAME];
-    const UINT codepage = ruby_w32_codepage ? ruby_w32_codepage :
-       AreFileApisANSI() ? GetACP() : GetOEMCP();
+    const UINT codepage = 65001;
     CP_FORMAT(cp, codepage);
     idx = rb_enc_find_index(cp);
     if (idx < 0) idx = ENCINDEX_ASCII;

Updated by MSP-Greg (Greg L) almost 7 years ago

usa (Usaku NAKAMURA) wrote:

Come Japan and check Japanese Windows users' text files :)

On the topic of Japanese Windows users, what type of Ruby builds are they using, mswin or MinGW?

Updated by usa (Usaku NAKAMURA) almost 7 years ago

MSP-Greg (Greg L) wrote:

On the topic of Japanese Windows users, what type of Ruby builds are they using, mswin or MinGW?

Of course, we use both, as far as I know.

Updated by MSP-Greg (Greg L) almost 7 years ago

usa (Usaku NAKAMURA) wrote:

MSP-Greg (Greg L) wrote:

On the topic of Japanese Windows users, what type of Ruby builds are they using, mswin or MinGW?

Of course, we use both, as far as I know.

Sorry for not being more specific. As far as you know, approximately what percentage of Japanese Windows Ruby users use MinGW builds, and what percentage use mswin builds?

Updated by usa (Usaku NAKAMURA) almost 7 years ago

MSP-Greg (Greg L) wrote:

Sorry for not being more specific. As far as you know, approximately what percentage of Japanese Windows Ruby users use MinGW builds, and what percentage use mswin builds?

Sorry, I don't know such statistics.

Updated by duerst (Martin Dürst) almost 7 years ago

larskanis (Lars Kanis) wrote:

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

The current setting is a major interoperability issue and it is neither useful nor expected, because nobody seriously uses the ancient locale dependent cpXYZ encodings for file content.

I wouldn't say that it is a setting that it totally without problems (but see below).

If a native encoding shall be used, it should be UTF-16 on Windows. However UTF-16 would make interoperability and compatibility even more difficult. So the only reliable choice for default_external is UTF-8, IMHO.

I would strongly suggest to backpedal on [1]. As a longtime supporter of UTF-8, I have on various occasions tried to use UTF-8 on a Japanese Windows. I just tried again (on Windows 8.1, your mileage may vary). Unfortunately, it only works partially, not good enough to be worth it. I detected two problems that essentially make it unusable:

  1. When using chcp 65001, the IME stops working. This means that it's no longer possible to type anything except ASCII on the keyboard.

  2. Output from commands gets garbled. As an example, more produces garbage (probably Shift_JIS interpreted as UTF-8). The user may be able to live with garbage, but the problem is that the garbage also messes up the command itself; after a few times of typing the Enter key, I get a small window saying "More Utility has stopped working".

This is already patched per [1] in the upcoming RubyInstaller-2.4 for Windows release. It additionally requires a few changes to MRIs encoding tests.

Please don't make this change, or make it only for those versions and code pages of Windows where you are sure that the negative consequences (see above) won't outweight the advantages.

[1] https://github.com/oneclick/rubyinstaller2/blob/master/recipes/compile/ruby-2.4.1/0005-utf-8-default-encoding.patch

As for what I'm using on Windows, it's mostly cygwin. But many of my students have used the Ruby Installer in the past, successfully. It would be a pity if it were no longer possible to use the Ruby Installer on Japanese Windows.

Updated by nobu (Nobuyoshi Nakada) almost 7 years ago

naruse (Yui NARUSE) wrote:

If you want to change them, you should just change ruby as if it runs on chcp 65001:

In the trunk, you don't have to change ruby source code.
Just configure with --enable-debug-env, and include codepage=65001 in the environment variable RUBY_DEBUG.

C:\Users\nobu\work\ruby\trunk\x64-mswin32_140>.\bin\ruby -e "p Encoding.default_external, Encoding.find('filesystem')"
#<Encoding:Windows-31J>
#<Encoding:Windows-31J>

C:\Users\nobu\work\ruby\trunk\x64-mswin32_140>set RUBY_DEBUG=codepage=65001

C:\Users\nobu\work\ruby\trunk\x64-mswin32_140>.\bin\ruby -e "p Encoding.default_external, Encoding.find('filesystem')"
#<Encoding:UTF-8>
#<Encoding:UTF-8>

Updated by Iristyle (Ethan Brown) almost 7 years ago

I agree that changing the default to UTF-8 is not appropriate on Windows in a Ruby 2.x release.

Should a change occur in Ruby 3 to make UTF-8 the default, I believe it would still be useful to gain access to the original Windows codepage as this may be the encoding of files.

I was similarly surprised to see that the rubyinstaller2 project had made the change to make UTF-8 the default on Windows in the Ruby 2.4 installer builds, and I've filed an issue at https://github.com/oneclick/rubyinstaller2/issues/38 in hopes that it will be reverted (another user has filed a similar issue report at https://github.com/oneclick/rubyinstaller2/issues/37)

Actions #10

Updated by naruse (Yui NARUSE) over 3 years ago

  • Status changed from Rejected to Open
  • Target version set to 3.0
Actions #11

Updated by naruse (Yui NARUSE) over 3 years ago

  • Related to Feature #16604: Set default for Encoding.default_external to UTF-8 on Windows added
Actions #12

Updated by naruse (Yui NARUSE) over 3 years ago

  • Status changed from Open to Closed
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0