mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
debug.c: parse locale and filesystem codepages
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
df05ad53fb
commit
4529948edd
2 changed files with 21 additions and 10 deletions
25
debug.c
25
debug.c
|
@ -117,7 +117,7 @@ extern int ruby_w32_rtc_error;
|
||||||
#endif
|
#endif
|
||||||
#if defined _WIN32 || defined __CYGWIN__
|
#if defined _WIN32 || defined __CYGWIN__
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
UINT ruby_w32_codepage;
|
UINT ruby_w32_codepage[2];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -131,7 +131,7 @@ set_debug_option(const char *str, int len, void *arg)
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
#define NAME_MATCH_VALUE(name) \
|
#define NAME_MATCH_VALUE(name) \
|
||||||
((size_t)len > sizeof(name) && \
|
((size_t)len >= sizeof(name) && \
|
||||||
strncmp(str, (name), sizeof(name)-1) == 0 && \
|
strncmp(str, (name), sizeof(name)-1) == 0 && \
|
||||||
str[sizeof(name)-1] == '=' && \
|
str[sizeof(name)-1] == '=' && \
|
||||||
(str += sizeof(name), len -= sizeof(name), 1))
|
(str += sizeof(name), len -= sizeof(name), 1))
|
||||||
|
@ -144,14 +144,25 @@ set_debug_option(const char *str, int len, void *arg)
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
#if defined _WIN32 || defined __CYGWIN__
|
#if defined _WIN32 || defined __CYGWIN__
|
||||||
{
|
if (NAME_MATCH_VALUE("codepage")) {
|
||||||
|
int i;
|
||||||
int ov;
|
int ov;
|
||||||
size_t retlen;
|
size_t retlen;
|
||||||
unsigned long n;
|
unsigned long n;
|
||||||
if (NAME_MATCH_VALUE("codepage") &&
|
for (i = 0; i < numberof(ruby_w32_codepage); ++i) {
|
||||||
(n = ruby_scan_digits(str, len, 10, &retlen, &ov),
|
n = ruby_scan_digits(str, len, 10, &retlen, &ov);
|
||||||
(size_t)len == retlen && !ov)) {
|
if (!ov && retlen) {
|
||||||
ruby_w32_codepage = (UINT)n;
|
ruby_w32_codepage[i] = (UINT)n;
|
||||||
|
}
|
||||||
|
if ((size_t)len <= retlen) break;
|
||||||
|
str += retlen;
|
||||||
|
len -= retlen;
|
||||||
|
if (*str != ':') break;
|
||||||
|
++str;
|
||||||
|
--len;
|
||||||
|
}
|
||||||
|
if (len > 0) {
|
||||||
|
fprintf(stderr, "ignored codepage option: `%.*s'\n", len, str);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#define SIZEOF_CP_NAME ((sizeof(UINT) * 8 / 3) + 4)
|
#define SIZEOF_CP_NAME ((sizeof(UINT) * 8 / 3) + 4)
|
||||||
#define CP_FORMAT(buf, codepage) snprintf(buf, sizeof(buf), "CP%u", (codepage))
|
#define CP_FORMAT(buf, codepage) snprintf(buf, sizeof(buf), "CP%u", (codepage))
|
||||||
|
|
||||||
extern UINT ruby_w32_codepage;
|
extern UINT ruby_w32_codepage[2];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef NO_LOCALE_CHARMAP
|
#ifndef NO_LOCALE_CHARMAP
|
||||||
|
@ -45,7 +45,7 @@ locale_charmap(VALUE (*conv)(const char *))
|
||||||
codeset = nl_langinfo_codeset();
|
codeset = nl_langinfo_codeset();
|
||||||
# endif
|
# endif
|
||||||
if (!codeset) {
|
if (!codeset) {
|
||||||
UINT codepage = ruby_w32_codepage;
|
UINT codepage = ruby_w32_codepage[0];
|
||||||
if (!codepage) codepage = GetConsoleCP();
|
if (!codepage) codepage = GetConsoleCP();
|
||||||
if (!codepage) codepage = GetACP();
|
if (!codepage) codepage = GetACP();
|
||||||
CP_FORMAT(cp, codepage);
|
CP_FORMAT(cp, codepage);
|
||||||
|
@ -122,7 +122,7 @@ Init_enc_set_filesystem_encoding(void)
|
||||||
idx = ENCINDEX_US_ASCII;
|
idx = ENCINDEX_US_ASCII;
|
||||||
#elif defined _WIN32
|
#elif defined _WIN32
|
||||||
char cp[SIZEOF_CP_NAME];
|
char cp[SIZEOF_CP_NAME];
|
||||||
const UINT codepage = ruby_w32_codepage ? ruby_w32_codepage :
|
const UINT codepage = ruby_w32_codepage[1] ? ruby_w32_codepage[1] :
|
||||||
AreFileApisANSI() ? GetACP() : GetOEMCP();
|
AreFileApisANSI() ? GetACP() : GetOEMCP();
|
||||||
CP_FORMAT(cp, codepage);
|
CP_FORMAT(cp, codepage);
|
||||||
idx = rb_enc_find_index(cp);
|
idx = rb_enc_find_index(cp);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue