--- np2/generic/hostdrvs.c 2004/01/09 04:36:02 1.1 +++ np2/generic/hostdrvs.c 2005/02/14 06:25:31 1.14 @@ -1,13 +1,19 @@ #include "compiler.h" + +#if defined(SUPPORT_HOSTDRV) + +#if defined(OSLANG_EUC) || defined(OSLANG_UTF8) || defined(OSLANG_UCS2) +#include "oemtext.h" +#endif #include "dosio.h" #include "pccore.h" #include "hostdrv.h" #include "hostdrvs.h" -static const HDRVDIR hddroot = {" ", 0, 0x10}; +static const HDRVDIR hddroot = {" ", 0, 0, 0, 0x10, {0}, {0}}; -static const BYTE dospathchr[] = { +static const UINT8 dospathchr[] = { 0xfa, 0x23, // '&%$#"! /.-,+*)( 0xff, 0x03, // 76543210 ?>=<;:98 0xff, 0xff, // GFEDCBA@ ONMLKJIH @@ -25,6 +31,7 @@ static void rcnvfcb(char *dst, UINT dlen if (c == 0) { break; } +#if defined(OSLANG_SJIS) || defined(OSLANG_EUC) || defined(OSLANG_UTF8) || defined(OSLANG_UCS2) if ((((c ^ 0x20) - 0xa1) & 0xff) < 0x3c) { if ((!slen) || (src[0] == '\0')) { break; @@ -37,26 +44,53 @@ static void rcnvfcb(char *dst, UINT dlen dst += 2; dlen -= 2; } - else { + else if (((c - 0x20) & 0xff) < 0x60) { + if (((c - 'a') & 0xff) < 26) { + c -= 0x20; + } + if (dospathchr[(c >> 3) - (0x20 >> 3)] & (1 << (c & 7))) { + *dst++ = c; + dlen--; + } + } + else if (((c - 0xa0) & 0xff) < 0x40) { + *dst++ = c; + dlen--; + } +#else + if (((c - 0x20) & 0xff) < 0x60) { if (((c - 'a') & 0xff) < 26) { c -= 0x20; } - if ((c >= 0x20) && (c < 0x80) && - (dospathchr[(c >> 3) - (0x20 >> 3)] & (1 << (c & 7)))) { + if (dospathchr[(c >> 3) - (0x20 >> 3)] & (1 << (c & 7))) { *dst++ = c; dlen--; } } + else if (c >= 0x80) { + *dst++ = c; + dlen--; + } +#endif } } static BOOL realname2fcb(char *fcbname, FLINFO *fli) { +#if defined(OSLANG_EUC) || defined(OSLANG_UTF8) || defined(OSLANG_UCS2) + char sjis[MAX_PATH]; +#endif char *realname; char *ext; +#if defined(OSLANG_EUC) || defined(OSLANG_UTF8) || defined(OSLANG_UCS2) + oemtext_oemtosjis(sjis, sizeof(sjis), fli->path, NELEMENTS(fli->path)); + realname = sjis; +#else realname = fli->path; +#endif FillMemory(fcbname, 11, ' '); + // ToDo: SJISに変換済みなのに OEM依存してる ext = file_getext(realname); rcnvfcb(fcbname+0, 8, realname, ext - realname); rcnvfcb(fcbname+8, 3, ext, (UINT)-1); @@ -71,7 +105,16 @@ static BOOL hddsea(void *vpItem, void *v return(FALSE); } -LISTARRAY hostdrvs_getpathlist(const char *realpath) { +static BOOL hddseadir(void *vpItem, void *vpArg) { + + if ((((HDRVLST)vpItem)->di.attr & 0x10) && + (!memcmp(((HDRVLST)vpItem)->di.fcbname, vpArg, 11))) { + return(TRUE); + } + return(FALSE); +} + +LISTARRAY hostdrvs_getpathlist(const OEMCHAR *realpath) { FLISTH flh; FLINFO fli; @@ -96,9 +139,14 @@ LISTARRAY hostdrvs_getpathlist(const cha break; } CopyMemory(hdd->di.fcbname, fcbname, 11); + hdd->di.exist = 1; + hdd->di.caps = fli.caps; hdd->di.size = fli.size; hdd->di.attr = fli.attr; - milstr_ncpy(hdd->realname, fli.path, sizeof(hdd->realname)); + hdd->di.date = fli.date; + hdd->di.time = fli.time; + file_cpyname(hdd->realname, fli.path, NELEMENTS(hdd->realname)); +// TRACEOUT(("%s -> %11s", fli.path, fcbname)); } } while(file_listnext(flh, &fli) == SUCCESS); if (listarray_getitems(ret) == 0) { @@ -163,22 +211,20 @@ static char *dospath2fcb(char *fcbname, BOOL hostdrvs_getrealpath(HDRVPATH *hdp, char *dospath) { - BOOL ret; - char path[MAX_PATH]; + OEMCHAR path[MAX_PATH]; LISTARRAY lst; const HDRVDIR *di; HDRVLST hdl; char fcbname[11]; - ret = SUCCESS; - file_cpyname(path, np2cfg.hdrvroot, sizeof(path)); + file_cpyname(path, np2cfg.hdrvroot, NELEMENTS(path)); lst = NULL; di = &hddroot; while(dospath[0] != '\0') { if ((dospath[0] != '\\') || (!(di->attr & 0x10))) { goto hdsgrp_err; } - file_setseparator(path, sizeof(path)); + file_setseparator(path, NELEMENTS(path)); dospath++; if (dospath[0] == '\0') { di = &hddroot; @@ -191,12 +237,12 @@ const HDRVDIR *di; if (hdl == NULL) { goto hdsgrp_err; } - file_catname(path, hdl->realname, sizeof(path)); + file_catname(path, hdl->realname, NELEMENTS(path)); di = &hdl->di; } - if (hdl) { + if (hdp) { CopyMemory(&hdp->di, di, sizeof(HDRVDIR)); - file_cpyname(hdp->path, path, sizeof(hdp->path)); + file_cpyname(hdp->path, path, NELEMENTS(hdp->path)); } listarray_destroy(lst); return(SUCCESS); @@ -206,14 +252,104 @@ hdsgrp_err: return(FAILURE); } +BOOL hostdrvs_getrealdir(OEMCHAR *path, int size, char *fcb, char *dospath) { -// ---- + LISTARRAY lst; + HDRVLST hdl; -void hostdrvs_fhdlreopen(LISTARRAY fhdl) { + file_cpyname(path, np2cfg.hdrvroot, size); + if (dospath[0] == '\\') { + file_setseparator(path, size); + dospath++; + } + else if (dospath[0] != '\0') { + goto hdsgrd_err; + } + while(1) { + dospath = dospath2fcb(fcb, dospath); + if (dospath[0] != '\\') { + break; + } + lst = hostdrvs_getpathlist(path); + hdl = (HDRVLST)listarray_enum(lst, hddseadir, fcb); + if (hdl != NULL) { + file_catname(path, hdl->realname, size); + } + listarray_destroy(lst); + if (hdl == NULL) { + goto hdsgrd_err; + } + file_setseparator(path, size); + dospath++; + } + if (dospath[0] != '\0') { + goto hdsgrd_err; + } + return(SUCCESS); + +hdsgrd_err: + return(FAILURE); +} - (void)fhdl; +BOOL hostdrvs_newrealpath(HDRVPATH *hdp, char *dospath) { + + OEMCHAR path[MAX_PATH]; + char fcb[11]; + LISTARRAY lst; + HDRVLST hdl; + char dosname[16]; + UINT i; + char *p; +#if defined(OSLANG_EUC) || defined(OSLANG_UTF8) || defined(OSLANG_UCS2) + OEMCHAR oemname[64]; +#endif + + if ((hostdrvs_getrealdir(path, NELEMENTS(path), fcb, dospath) + != SUCCESS) || + (fcb[0] == ' ')) { + return(FAILURE); + } + lst = hostdrvs_getpathlist(path); + hdl = (HDRVLST)listarray_enum(lst, hddsea, fcb); + if (hdl != NULL) { + file_catname(path, hdl->realname, NELEMENTS(path)); + if (hdp) { + CopyMemory(&hdp->di, &hdl->di, sizeof(HDRVDIR)); + file_cpyname(hdp->path, path, NELEMENTS(hdp->path)); + } + } + else { + p = dosname; + for (i=0; (i<8) && (fcb[i] != ' '); i++) { + *p++ = fcb[i]; + } + if (fcb[8] != ' ') { + *p++ = '.'; + for (i=8; (i<11) && (fcb[i] != ' '); i++) { + *p++ = fcb[i]; + } + } + *p = '\0'; + // ここで SJIS->OEMコードに未変換! +#if defined(OSLANG_EUC) || defined(OSLANG_UTF8) || defined(OSLANG_UCS2) + oemtext_sjistooem(oemname, NELEMENTS(oemname), dosname, (UINT)-1); + file_catname(path, oemname, NELEMENTS(path)); +#else + file_catname(path, dosname, NELEMENTS(path)); +#endif + if (hdp) { + ZeroMemory(&hdp->di, sizeof(hdp->di)); + CopyMemory(hdp->di.fcbname, fcb, 11); + file_cpyname(hdp->path, path, NELEMENTS(hdp->path)); + } + } + listarray_destroy(lst); + return(SUCCESS); } + +// ---- + static BOOL fhdlallclose(void *vpItem, void *vpArg) { long fh; @@ -258,3 +394,5 @@ HDRVFILE hostdrvs_fhdlsea(LISTARRAY fhdl return(ret); } +#endif +