/* knj.c: check for 2-Byte Kanji (CP 932, SJIS) codes.
Copyright 2010, 2014 Akira Kakuto.
Copyright 2013, 2014 TANAKA Takuji.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, see . */
#include
#include
#include
int is_cp932_system, file_system_codepage;
int isknj(int c)
{
c &= 0xff;
switch (is_cp932_system) {
case 932:
return((c>=0x81 && c<=0x9f) || (c>=0xe0 && c<=0xfc));
case 936:
return(c>=0x81 && c<=0xfe);
case 950:
return((c>=0xa1 && c<=0xc6) || (c>=0xc9 && c<=0xf9));
default:
return(0);
}
}
int isknj2(int c)
{
c &= 0xff;
switch (is_cp932_system) {
case 932:
return(c>=0x40 && c<=0xfc && c!=0x7f);
case 936:
return(c>=0x40 && c<=0xfe && c!=0x7f);
case 950:
return((c>=0x40 && c<=0x7e) || (c>=0xa1 && c<=0xfe));
default:
return(0);
}
}
/*
Get wide string from multibyte string.
*/
wchar_t *
get_wstring_from_mbstring(int cp, const char *mbstr, wchar_t *wstr)
{
int len;
len = MultiByteToWideChar(cp, 0, mbstr, -1, wstr, 0);
if (len==0) {
FATAL("cannot convert string to wide string");
}
if (wstr==NULL) {
wstr = xmalloc(sizeof(wchar_t)*(len+1));
}
len = MultiByteToWideChar(cp, 0, mbstr, -1, wstr, len+1);
if (len==0) {
FATAL("cannot convert multibyte string to wide string");
}
return wstr;
}
/*
Get multibyte string from wide string.
*/
char *
get_mbstring_from_wstring(int cp, const wchar_t *wstr, char *mbstr)
{
int len;
len = WideCharToMultiByte(cp, 0, wstr, -1, mbstr, 0, NULL, NULL);
if (len==0) {
FATAL("cannot convert string to multibyte string");
}
if (mbstr==NULL) {
mbstr = xmalloc(len+1);
}
len = WideCharToMultiByte(cp, 0, wstr, -1, mbstr, len+1, NULL, NULL);
if (len==0) {
FATAL("cannot convert wide string to multibyte string");
}
return mbstr;
}
/*
xfopen by file system codepage
*/
FILE *
fsyscp_xfopen (const char *filename, const char *mode)
{
FILE *f;
wchar_t *fnamew, modew[4];
int i;
#if defined (KPSE_COMPAT_API)
kpathsea kpse;
#endif
assert(filename && mode);
fnamew = get_wstring_from_fsyscp(filename, fnamew=NULL);
for(i=0; (modew[i]=(wchar_t)mode[i]); i++) {} /* mode[i] must be ASCII */
f = _wfopen(fnamew, modew);
if (f == NULL)
FATAL_PERROR(filename);
#if defined (KPSE_COMPAT_API)
kpse = kpse_def;
if (KPATHSEA_DEBUG_P (KPSE_DEBUG_FOPEN)) {
DEBUGF_START ();
fprintf (stderr, "fsyscp_xfopen(%s [", filename);
WriteConsoleW( GetStdHandle( STD_ERROR_HANDLE ), fnamew, wcslen( fnamew ), NULL, NULL );
fprintf (stderr, "], %s) => 0x%lx\n", mode, (unsigned long) f);
DEBUGF_END ();
}
#endif
free(fnamew);
return f;
}
/*
fopen by file system codepage
*/
FILE *
fsyscp_fopen (const char *filename, const char *mode)
{
FILE *f;
wchar_t *fnamew, modew[4];
int i;
#if defined (KPSE_COMPAT_API)
kpathsea kpse;
#endif
assert(filename && mode);
fnamew = get_wstring_from_fsyscp(filename, fnamew=NULL);
for(i=0; (modew[i]=(wchar_t)mode[i]); i++) {} /* mode[i] must be ASCII */
f = _wfopen(fnamew, modew);
#if defined (KPSE_COMPAT_API)
if (f != NULL) {
kpse = kpse_def;
if (KPATHSEA_DEBUG_P (KPSE_DEBUG_FOPEN)) {
DEBUGF_START ();
fprintf (stderr, "fsyscp_fopen(%s [", filename);
WriteConsoleW( GetStdHandle( STD_ERROR_HANDLE ), fnamew, wcslen( fnamew ), NULL, NULL );
fprintf (stderr, "], %s) => 0x%lx\n", mode, (unsigned long) f);
DEBUGF_END ();
}
}
#endif
free(fnamew);
return f;
}
/*
popen by file system codepage
*/
FILE *
fsyscp_popen (const char *command, const char *mode)
{
FILE *f;
wchar_t *commandw, modew[4];
int i;
#if defined (KPSE_COMPAT_API)
kpathsea kpse;
#endif
assert(command && mode);
commandw = get_wstring_from_fsyscp(command, commandw=NULL);
for(i=0; (modew[i]=(wchar_t)mode[i]); i++) {} /* mode[i] must be ASCII */
f = _wpopen(commandw, modew);
#if defined (KPSE_COMPAT_API)
if (f != NULL) {
kpse = kpse_def;
if (KPATHSEA_DEBUG_P (KPSE_DEBUG_FOPEN)) {
DEBUGF_START ();
fprintf (stderr, "fsyscp_popen(%s [", command);
WriteConsoleW( GetStdHandle( STD_ERROR_HANDLE ), commandw, wcslen( commandw ), NULL, NULL );
fprintf (stderr, "], %s) => 0x%lx\n", mode, (unsigned long) f);
DEBUGF_END ();
}
}
#endif
free (commandw);
/* We use always binary mode on Windows */
if(f) _setmode (fileno (f), _O_BINARY);
return f;
}
int
get_command_line_args_utf8 (const_string enc, int *p_ac, char ***p_av)
{
int argc;
string *argv;
if (!enc || !strncmp(enc,"",1)) return 0;
#ifdef DEBUG
fprintf(stderr, "command_line_encoding (%s)\n", enc);
#endif /* DEBUG */
if (!(strncmp(enc,"utf8",5) && strncmp(enc,"utf-8",6))) {
LPWSTR *argvw;
INT argcw, i;
string s;
#ifdef DEBUG
DWORD ret;
HANDLE hStderr;
hStderr = GetStdHandle( STD_ERROR_HANDLE );
#endif /* DEBUG */
file_system_codepage = CP_UTF8;
is_cp932_system = 0;
argvw = CommandLineToArgvW(GetCommandLineW(), &argcw);
argc = argcw;
argv = xmalloc(sizeof(char *)*(argcw+1));
for (i=0; i=0) {
getc_buff[getc_len++]=(int)mbc[j--];
}
}
return getc_buff[--getc_len];
}
int win32_ungetc(int c, FILE *fp)
{
const int fd = fileno(fp);
if (!(fd == fileno(stdin) && _isatty(fd) && file_system_codepage == CP_UTF8))
return ungetc(c, fp);
assert(getc_len < 4);
return getc_buff[getc_len++] = c;
}
int win32_fputs(const char *str, FILE *fp)
{
const int fd = fileno(fp);
HANDLE hStdout;
DWORD ret;
wchar_t *wstr;
if (!((fd == fileno(stdout) || fd == fileno(stderr)) && _isatty(fd)
&& file_system_codepage == CP_UTF8))
return fputs(str, fp);
hStdout = (fd == fileno(stdout)) ?
GetStdHandle(STD_OUTPUT_HANDLE) : GetStdHandle(STD_ERROR_HANDLE);
wstr = get_wstring_from_utf8(str, wstr=NULL);
if (WriteConsoleW(hStdout, wstr, wcslen(wstr), &ret, NULL) == 0) {
free(wstr);
return EOF;
}
free(wstr);
return ret;
}
int win32_puts(const char *str)
{
if (win32_fputs(str, stdout)==EOF) {
return EOF;
}
return puts("");
}
int win32_putc(int c, FILE *fp)
{
const int fd = fileno(fp);
HANDLE hStdout;
DWORD ret;
wchar_t wstr[3];
static int len = 0;
static char buff[5], *str;
if (!((fd == fileno(stdout) || fd == fileno(stderr)) && _isatty(fd)
&& file_system_codepage == CP_UTF8))
return putc(c, fp);
hStdout = (fd == fileno(stdout)) ?
GetStdHandle(STD_OUTPUT_HANDLE) : GetStdHandle(STD_ERROR_HANDLE);
c &= 0xff;
if (c < 0x80) {
str = buff;
len = 1;
}
if (c < 0xc0) { /* ASCII or trailer */
*str++ = c;
len--;
if (len == 0) {
*str = '\0';
get_wstring_from_utf8(buff, wstr);
if (WriteConsoleW(hStdout, wstr, wcslen(wstr), &ret, NULL) == 0) {
len = 0;
return EOF;
}
}
else if (len < 0) return EOF;
return c;
}
else if (c < 0xc2) { len = 0; return EOF; } /* illegal */
else if (c < 0xe0) len = 2;
else if (c < 0xf0) len = 3;
else if (c < 0xf5) len = 4;
else { len = 0; return EOF; }
str = buff;
*str++ = c;
len--;
return c;
}