mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
encoding.c: find encoding index
* encoding.c (rb_locale_encindex): find encoding index without making a string object every time. [ruby-core:58160] [Bug #9080] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51670 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
73600fd6f8
commit
7a89049a76
4 changed files with 40 additions and 12 deletions
28
localeinit.c
28
localeinit.c
|
|
@ -22,8 +22,8 @@
|
|||
#define CP_FORMAT(buf, codepage) snprintf(buf, sizeof(buf), "CP%u", (codepage))
|
||||
#endif
|
||||
|
||||
VALUE
|
||||
rb_locale_charmap(VALUE klass)
|
||||
static VALUE
|
||||
locale_charmap(VALUE (*conv)(const char *))
|
||||
{
|
||||
#if defined NO_LOCALE_CHARMAP
|
||||
# error NO_LOCALE_CHARMAP defined
|
||||
|
|
@ -40,16 +40,34 @@ rb_locale_charmap(VALUE klass)
|
|||
CP_FORMAT(cp, codepage);
|
||||
codeset = cp;
|
||||
}
|
||||
return rb_usascii_str_new2(codeset);
|
||||
return (*conv)(codeset);
|
||||
#elif defined HAVE_LANGINFO_H
|
||||
char *codeset;
|
||||
codeset = nl_langinfo(CODESET);
|
||||
return rb_usascii_str_new2(codeset);
|
||||
return (*conv)(codeset);
|
||||
#else
|
||||
return Qnil;
|
||||
return ENCINDEX_US_ASCII;
|
||||
#endif
|
||||
}
|
||||
|
||||
VALUE
|
||||
rb_locale_charmap(VALUE klass)
|
||||
{
|
||||
return locale_charmap(rb_usascii_str_new_cstr);
|
||||
}
|
||||
|
||||
static VALUE
|
||||
enc_find_index(const char *name)
|
||||
{
|
||||
return (VALUE)rb_enc_find_index(name);
|
||||
}
|
||||
|
||||
int
|
||||
rb_locale_charmap_index(VALUE klass)
|
||||
{
|
||||
return (int)locale_charmap(enc_find_index);
|
||||
}
|
||||
|
||||
int
|
||||
Init_enc_set_filesystem_encoding(void)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue