ruby-changes:18326
From: nobu <ko1@a...>
Date: Sat, 25 Dec 2010 14:27:24 +0900 (JST)
Subject: [ruby-changes:18326] Ruby:r30349 (trunk): * io.c (rb_io_extract_encoding_option): accept Encoding object as
nobu 2010-12-25 14:27:12 +0900 (Sat, 25 Dec 2010) New Revision: 30349 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=30349 Log: * io.c (rb_io_extract_encoding_option): accept Encoding object as encoding: optional argument. [ruby-dev:42884] Modified files: trunk/ChangeLog trunk/io.c trunk/test/ruby/test_io_m17n.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 30348) +++ ChangeLog (revision 30349) @@ -1,3 +1,8 @@ +Sat Dec 25 14:27:09 2010 Nobuyoshi Nakada <nobu@r...> + + * io.c (rb_io_extract_encoding_option): accept Encoding object as + encoding: optional argument. [ruby-dev:42884] + Sat Dec 25 13:37:55 2010 Ryan Davis <ryand-ruby@z...> * lib/minitest/*.rb: Imported minitest 2.0.2 r6093. Index: io.c =================================================================== --- io.c (revision 30348) +++ io.c (revision 30349) @@ -4384,9 +4384,12 @@ if (v != Qundef) intenc = v; } if ((extenc != Qundef || intenc != Qundef) && !NIL_P(encoding)) { - rb_warn("Ignoring encoding parameter '%s': %s_encoding is used", - StringValueCStr(encoding), - extenc == Qundef ? "internal" : "external"); + if (!NIL_P(ruby_verbose)) { + int idx = rb_to_encoding_index(encoding); + rb_warn("Ignoring encoding parameter '%s': %s_encoding is used", + idx < 0 ? StringValueCStr(encoding) : rb_enc_name(rb_enc_from_index(idx)), + extenc == Qundef ? "internal" : "external"); + } encoding = Qnil; } if (extenc != Qundef && !NIL_P(extenc)) { @@ -4417,7 +4420,12 @@ } if (!NIL_P(encoding)) { extracted = 1; - parse_mode_enc(StringValueCStr(encoding), enc_p, enc2_p, fmode_p); + if (!NIL_P(tmp = rb_check_string_type(encoding))) { + parse_mode_enc(StringValueCStr(tmp), enc_p, enc2_p, fmode_p); + } + else { + rb_io_ext_int_to_encs(rb_to_encoding(encoding), NULL, enc_p, enc2_p); + } } else if (extenc != Qundef || intenc != Qundef) { extracted = 1; Index: test/ruby/test_io_m17n.rb =================================================================== --- test/ruby/test_io_m17n.rb (revision 30348) +++ test/ruby/test_io_m17n.rb (revision 30349) @@ -114,9 +114,29 @@ } end - def test_open_r_enc_in_opt2 + def test_open_r_encname_in_opt with_tmpdir { generate_file('tmp', "") + open("tmp", "r", encoding: Encoding::EUC_JP) {|f| + assert_equal(Encoding::EUC_JP, f.external_encoding) + assert_equal(nil, f.internal_encoding) + } + } + end + + def test_open_r_ext_enc_in_opt + with_tmpdir { + generate_file('tmp', "") + open("tmp", "r", external_encoding: Encoding::EUC_JP) {|f| + assert_equal(Encoding::EUC_JP, f.external_encoding) + assert_equal(nil, f.internal_encoding) + } + } + end + + def test_open_r_ext_encname_in_opt + with_tmpdir { + generate_file('tmp', "") open("tmp", "r", external_encoding: "euc-jp") {|f| assert_equal(Encoding::EUC_JP, f.external_encoding) assert_equal(nil, f.internal_encoding) @@ -127,6 +147,16 @@ def test_open_r_enc_enc with_tmpdir { generate_file('tmp', "") + open("tmp", "r", external_encoding: Encoding::EUC_JP, internal_encoding: Encoding::UTF_8) {|f| + assert_equal(Encoding::EUC_JP, f.external_encoding) + assert_equal(Encoding::UTF_8, f.internal_encoding) + } + } + end + + def test_open_r_encname_encname + with_tmpdir { + generate_file('tmp', "") open("tmp", "r:euc-jp:utf-8") {|f| assert_equal(Encoding::EUC_JP, f.external_encoding) assert_equal(Encoding::UTF_8, f.internal_encoding) @@ -134,7 +164,7 @@ } end - def test_open_r_enc_enc_in_opt + def test_open_r_encname_encname_in_opt with_tmpdir { generate_file('tmp', "") open("tmp", "r", encoding: "euc-jp:utf-8") {|f| @@ -144,9 +174,19 @@ } end - def test_open_r_enc_enc_in_opt2 + def test_open_r_enc_enc_in_opt with_tmpdir { generate_file('tmp', "") + open("tmp", "r", external_encoding: Encoding::EUC_JP, internal_encoding: Encoding::UTF_8) {|f| + assert_equal(Encoding::EUC_JP, f.external_encoding) + assert_equal(Encoding::UTF_8, f.internal_encoding) + } + } + end + + def test_open_r_encname_encname_in_opt + with_tmpdir { + generate_file('tmp', "") open("tmp", "r", external_encoding: "euc-jp", internal_encoding: "utf-8") {|f| assert_equal(Encoding::EUC_JP, f.external_encoding) assert_equal(Encoding::UTF_8, f.internal_encoding) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/