Diff for /np2/generic/hostdrvs.c between versions 1.6 and 1.12

version 1.6, 2004/01/12 08:51:24 version 1.12, 2005/02/07 14:46:10
Line 1 Line 1
 #include        "compiler.h"  #include        "compiler.h"
   
   #if defined(SUPPORT_HOSTDRV)
   
 #if defined(OSLANG_EUC)  #if defined(OSLANG_EUC)
 #include        "codecnv.h"  #include        "codecnv.h"
 #endif  #endif
Line 8 Line 11
 #include        "hostdrvs.h"  #include        "hostdrvs.h"
   
   
 static const HDRVDIR hddroot = {"           ", 0, 0, 0x10, {0}, {0}};  static const HDRVDIR hddroot = {"           ", 0, 0, 0, 0x10, {0}, {0}};
   
 static const BYTE dospathchr[] = {  static const UINT8 dospathchr[] = {
                         0xfa, 0x23,             // '&%$#"!  /.-,+*)(                          0xfa, 0x23,             // '&%$#"!  /.-,+*)(
                         0xff, 0x03,             // 76543210 ?>=<;:98                          0xff, 0x03,             // 76543210 ?>=<;:98
                         0xff, 0xff,             // GFEDCBA@ ONMLKJIH                          0xff, 0xff,             // GFEDCBA@ ONMLKJIH
Line 28  static void rcnvfcb(char *dst, UINT dlen Line 31  static void rcnvfcb(char *dst, UINT dlen
                 if (c == 0) {                  if (c == 0) {
                         break;                          break;
                 }                  }
 #if defined(OSLANG_SJIS) || defined(OSLANG_EUC)  #if defined(OSLANG_SJIS) || defined(OSLANG_EUC) || defined(OSLANG_UTF8)
                 if ((((c ^ 0x20) - 0xa1) & 0xff) < 0x3c) {                  if ((((c ^ 0x20) - 0xa1) & 0xff) < 0x3c) {
                         if ((!slen) || (src[0] == '\0')) {                          if ((!slen) || (src[0] == '\0')) {
                                 break;                                  break;
Line 74  static void rcnvfcb(char *dst, UINT dlen Line 77  static void rcnvfcb(char *dst, UINT dlen
   
 static BOOL realname2fcb(char *fcbname, FLINFO *fli) {  static BOOL realname2fcb(char *fcbname, FLINFO *fli) {
   
   #if defined(OSLANG_EUC) || defined(OSLANG_UTF8)
           char    sjis[MAX_PATH];
   #endif
         char    *realname;          char    *realname;
         char    *ext;          char    *ext;
   
 #if defined(OSLANG_EUC)  #if defined(OSLANG_EUC)
         char            sjis[MAX_PATH];          codecnv_euc2sjis(sjis, sizeof(sjis), fli->path, NELEMENTS(fli->path));
           realname = sjis;
         codecnv_euc2sjis(sjis, sizeof(sjis), fli->path, sizeof(fli->path));  #elif defined(OSLANG_UTF8)
           oemtext_oem2sjis(sjis, sizeof(sjis), fli->path, NELEMENTS(fli->path));
         realname = sjis;          realname = sjis;
 #else  #else
         realname = fli->path;          realname = fli->path;
 #endif  #endif
         FillMemory(fcbname, 11, ' ');          FillMemory(fcbname, 11, ' ');
           // ToDo: SJISに変換済みなのに OEM依存してる
         ext = file_getext(realname);          ext = file_getext(realname);
         rcnvfcb(fcbname+0, 8, realname, ext - realname);          rcnvfcb(fcbname+0, 8, realname, ext - realname);
         rcnvfcb(fcbname+8, 3, ext, (UINT)-1);          rcnvfcb(fcbname+8, 3, ext, (UINT)-1);
Line 109  static BOOL hddseadir(void *vpItem, void Line 117  static BOOL hddseadir(void *vpItem, void
         return(FALSE);          return(FALSE);
 }  }
   
 LISTARRAY hostdrvs_getpathlist(const char *realpath) {  LISTARRAY hostdrvs_getpathlist(const OEMCHAR *realpath) {
   
         FLISTH          flh;          FLISTH          flh;
         FLINFO          fli;          FLINFO          fli;
Line 134  LISTARRAY hostdrvs_getpathlist(const cha Line 142  LISTARRAY hostdrvs_getpathlist(const cha
                                 break;                                  break;
                         }                          }
                         CopyMemory(hdd->di.fcbname, fcbname, 11);                          CopyMemory(hdd->di.fcbname, fcbname, 11);
                           hdd->di.exist = 1;
                         hdd->di.caps = fli.caps;                          hdd->di.caps = fli.caps;
                         hdd->di.size = fli.size;                          hdd->di.size = fli.size;
                         hdd->di.attr = fli.attr;                          hdd->di.attr = fli.attr;
                         hdd->di.date = fli.date;                          hdd->di.date = fli.date;
                         hdd->di.time = fli.time;                          hdd->di.time = fli.time;
                         milstr_ncpy(hdd->realname, fli.path, sizeof(hdd->realname));                          file_cpyname(hdd->realname, fli.path, NELEMENTS(hdd->realname));
 //                      TRACEOUT(("%s -> %11s", fli.path, fcbname));  //                      TRACEOUT(("%s -> %11s", fli.path, fcbname));
                 }                  }
         } while(file_listnext(flh, &fli) == SUCCESS);          } while(file_listnext(flh, &fli) == SUCCESS);
Line 205  static char *dospath2fcb(char *fcbname,  Line 214  static char *dospath2fcb(char *fcbname, 
   
 BOOL hostdrvs_getrealpath(HDRVPATH *hdp, char *dospath) {  BOOL hostdrvs_getrealpath(HDRVPATH *hdp, char *dospath) {
   
         char            path[MAX_PATH];          OEMCHAR         path[MAX_PATH];
         LISTARRAY       lst;          LISTARRAY       lst;
 const HDRVDIR   *di;  const HDRVDIR   *di;
         HDRVLST         hdl;          HDRVLST         hdl;
         char            fcbname[11];          char            fcbname[11];
   
         file_cpyname(path, np2cfg.hdrvroot, sizeof(path));          file_cpyname(path, np2cfg.hdrvroot, NELEMENTS(path));
         lst = NULL;          lst = NULL;
         di = &hddroot;          di = &hddroot;
         while(dospath[0] != '\0') {          while(dospath[0] != '\0') {
                 if ((dospath[0] != '\\') || (!(di->attr & 0x10))) {                  if ((dospath[0] != '\\') || (!(di->attr & 0x10))) {
                         goto hdsgrp_err;                          goto hdsgrp_err;
                 }                  }
                 file_setseparator(path, sizeof(path));                  file_setseparator(path, NELEMENTS(path));
                 dospath++;                  dospath++;
                 if (dospath[0] == '\0') {                  if (dospath[0] == '\0') {
                         di = &hddroot;                          di = &hddroot;
Line 231  const HDRVDIR  *di; Line 240  const HDRVDIR  *di;
                 if (hdl == NULL) {                  if (hdl == NULL) {
                         goto hdsgrp_err;                          goto hdsgrp_err;
                 }                  }
                 file_catname(path, hdl->realname, sizeof(path));                  file_catname(path, hdl->realname, NELEMENTS(path));
                 di = &hdl->di;                  di = &hdl->di;
         }          }
         if (hdp) {          if (hdp) {
                 CopyMemory(&hdp->di, di, sizeof(HDRVDIR));                  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);          listarray_destroy(lst);
         return(SUCCESS);          return(SUCCESS);
Line 246  hdsgrp_err: Line 255  hdsgrp_err:
         return(FAILURE);          return(FAILURE);
 }  }
   
 BOOL hostdrvs_getrealdir(char *path, int size, char *fcb, char *dospath) {  BOOL hostdrvs_getrealdir(OEMCHAR *path, int size, char *fcb, char *dospath) {
   
         LISTARRAY       lst;          LISTARRAY       lst;
         HDRVLST         hdl;          HDRVLST         hdl;
Line 287  hdsgrd_err: Line 296  hdsgrd_err:
   
 BOOL hostdrvs_newrealpath(HDRVPATH *hdp, char *dospath) {  BOOL hostdrvs_newrealpath(HDRVPATH *hdp, char *dospath) {
   
         char            path[MAX_PATH];          OEMCHAR         path[MAX_PATH];
         char            fcb[11];          char            fcb[11];
         LISTARRAY       lst;          LISTARRAY       lst;
         HDRVLST         hdl;          HDRVLST         hdl;
         char            dosname[16];          char            dosname[16];
         UINT            i;          UINT            i;
         char            *p;          char            *p;
   #if defined(OSLANG_EUC) || defined(OSLANG_UTF8)
           OEMCHAR         oemname[64];
   #endif
   
         if ((hostdrvs_getrealdir(path, sizeof(path), fcb, dospath) != SUCCESS) ||          if ((hostdrvs_getrealdir(path, NELEMENTS(path), fcb, dospath)
                                                                                                                           != SUCCESS) ||
                 (fcb[0] == ' ')) {                  (fcb[0] == ' ')) {
                 return(FAILURE);                  return(FAILURE);
         }          }
         lst = hostdrvs_getpathlist(path);          lst = hostdrvs_getpathlist(path);
         hdl = (HDRVLST)listarray_enum(lst, hddsea, fcb);          hdl = (HDRVLST)listarray_enum(lst, hddsea, fcb);
         if (hdl != NULL) {          if (hdl != NULL) {
                 file_catname(path, hdl->realname, sizeof(path));                  file_catname(path, hdl->realname, NELEMENTS(path));
                 if (hdp) {                  if (hdp) {
                         CopyMemory(&hdp->di, &hdl->di, sizeof(HDRVDIR));                          CopyMemory(&hdp->di, &hdl->di, sizeof(HDRVDIR));
                         file_cpyname(hdp->path, path, sizeof(hdp->path));                          file_cpyname(hdp->path, path, NELEMENTS(hdp->path));
                 }                  }
         }          }
         else {          else {
Line 320  BOOL hostdrvs_newrealpath(HDRVPATH *hdp, Line 333  BOOL hostdrvs_newrealpath(HDRVPATH *hdp,
                         }                          }
                 }                  }
                 *p = '\0';                  *p = '\0';
                 file_catname(path, dosname, sizeof(path));                  // ここで SJIS->OEMコードに未変換!
   #if defined(OSLANG_EUC)
                   codecnv_sjis2euc(oemname, NELEMENTS(oemname), dosname, (UINT)-1);
                   file_catname(path, oemname, NELEMENTS(path));
   #elif defined(OSLANG_UTF8)
                   oemtext_sjis2oem(oemname, NELEMENTS(oemname), dosname, (UINT)-1);
                   file_catname(path, oemname, NELEMENTS(path));
   #else
                   file_catname(path, dosname, NELEMENTS(path));
   #endif
                 if (hdp) {                  if (hdp) {
                         ZeroMemory(&hdp->di, sizeof(hdp->di));                          ZeroMemory(&hdp->di, sizeof(hdp->di));
                         CopyMemory(hdp->di.fcbname, fcb, 11);                          CopyMemory(hdp->di.fcbname, fcb, 11);
                         file_cpyname(hdp->path, path, sizeof(hdp->path));                          file_cpyname(hdp->path, path, NELEMENTS(hdp->path));
                 }                  }
         }          }
         listarray_destroy(lst);          listarray_destroy(lst);
Line 334  BOOL hostdrvs_newrealpath(HDRVPATH *hdp, Line 356  BOOL hostdrvs_newrealpath(HDRVPATH *hdp,
   
 // ----  // ----
   
 void hostdrvs_fhdlreopen(LISTARRAY fhdl) {  
   
         (void)fhdl;  
 }  
   
 static BOOL fhdlallclose(void *vpItem, void *vpArg) {  static BOOL fhdlallclose(void *vpItem, void *vpArg) {
   
         long    fh;          long    fh;
Line 383  HDRVFILE hostdrvs_fhdlsea(LISTARRAY fhdl Line 400  HDRVFILE hostdrvs_fhdlsea(LISTARRAY fhdl
         return(ret);          return(ret);
 }  }
   
   #endif
   

Removed from v.1.6  
changed lines
  Added in v.1.12


RetroPC.NET-CVS <cvs@retropc.net>