/* * Copyright 2018, University Corporation for Atmospheric Research * See netcdf/COPYRIGHT file for copying and redistribution conditions. */ #include "config.h" #include #include #include #include #include #ifdef HAVE_FCNTL_H #include #endif #ifdef HAVE_SYS_STAT_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_DIRENT_H #include #endif #ifdef _WIN32 #include #include #include #include #include #endif #ifdef __hpux #include #endif #include "netcdf.h" #include "ncpathmgr.h" #include "nclog.h" #include "nclist.h" #include "ncbytes.h" #include "ncuri.h" #include "ncutf8.h" #undef PATHFORMAT #ifdef _WIN32 #define access _access #define mkdir _mkdir #define rmdir _rmdir #define getcwd _getcwd #endif /* Code to provide some path conversion code so that cygwin and (some) mingw paths can be passed to open/fopen for Windows. Other cases will be added as needed. Rules: 1. a leading single alpha-character path element (e.g. /D/...) will be interpreted as a windows drive letter. 2. a leading '/cygdrive/X' will be converted to a drive letter X if X is alpha-char. 3. a leading D:/... is treated as a windows drive letter 4. a leading // is a windows network path and is converted to a drive letter using the fake drive letter "@". 5. If any of the above is encountered, then forward slashes will be converted to backslashes. All other cases are passed thru unchanged */ /* Define legal windows drive letters */ static const char* windrive = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ@"; static const char netdrive = '@'; static const size_t cdlen = 10; /* strlen("/cygdrive/") */ static int pathinitialized = 0; static int pathdebug = -1; static const struct Path { int kind; int drive; char* path; } empty = {NCPD_UNKNOWN,0,NULL}; /* Keep the working directory kind and drive */ static struct Path wdpath = {NCPD_UNKNOWN,0,NULL}; static char wdstaticpath[8192]; static int parsepath(const char* inpath, struct Path* path); static int unparsepath(struct Path* p, char** pathp); static int getwdpath(struct Path* wd); static char* printPATH(struct Path* p); static int getlocalpathkind(void); static void clearPath(struct Path* path); static void pathinit(void); static int iscygwinspecial(const char* path); static int testurl(const char* path); #ifdef WINPATH static int ansi2utf8(const char* local, char** u8p); static int ansi2wide(const char* local, wchar_t** u16p); static int utf82wide(const char* utf8, wchar_t** u16p); static int wide2utf8(const wchar_t* u16, char** u8p); #endif EXTERNL char* /* caller frees */ NCpathcvt(const char* inpath) { int stat = NC_NOERR; char* tmp1 = NULL; struct Path canon = empty; if(inpath == NULL) goto done; /* defensive driving */ if(!pathinitialized) pathinit(); if(testurl(inpath)) { /* Pass thru URLs */ if((tmp1 = strdup(inpath))==NULL) stat = NC_ENOMEM; goto done; } if((stat = parsepath(inpath,&canon))) {goto done;} /* Special check for special cygwin paths: /tmp,usr etc */ if(getlocalpathkind() == NCPD_CYGWIN && iscygwinspecial(canon.path) && canon.kind == NCPD_NIX) canon.kind = NCPD_CYGWIN; if(canon.kind != NCPD_REL && wdpath.kind != canon.kind) { nclog(NCLOGWARN,"NCpathcvt: path mismatch: platform=%d inpath=%d\n", wdpath.kind,canon.kind); canon.kind = wdpath.kind; /* override */ } if((stat = unparsepath(&canon,&tmp1))) {goto done;} done: if(pathdebug) { fprintf(stderr,"xxx: inpath=|%s| outpath=|%s|\n", inpath?inpath:"NULL",tmp1?tmp1:"NULL"); fflush(stderr); } if(stat) { nullfree(tmp1); tmp1 = NULL; nclog(NCLOGERR,"NCpathcvt: stat=%d (%s)", stat,nc_strerror(stat)); } clearPath(&canon); return tmp1; } EXTERNL int NCpathcanonical(const char* srcpath, char** canonp) { int stat = NC_NOERR; char* canon = NULL; size_t len; struct Path path = empty; if(srcpath == NULL) goto done; if(!pathinitialized) pathinit(); /* parse the src path */ if((stat = parsepath(srcpath,&path))) {goto done;} switch (path.kind) { case NCPD_REL: /* use as is */ canon = path.path; path.path = NULL; break; case NCPD_NIX: case NCPD_CYGWIN: case NCPD_MSYS: case NCPD_WIN: /* convert to cywin form */ len = nulllen(path.path) + strlen("/cygdrive/X") + 1; canon = (char*)malloc(len); if(canon != NULL) { canon[0] = '\0'; if(path.drive != 0) { strlcat(canon,"/cygdrive/X",len); canon[10] = path.drive; } if(path.path != NULL) strlcat(canon,path.path,len); } break; default: goto done; /* return NULL */ } if(canonp) {*canonp = canon; canon = NULL;} done: nullfree(canon); clearPath(&path); return stat; } EXTERNL char* /* caller frees */ NCpathabsolute(const char* relpath) { int stat = NC_NOERR; struct Path canon = empty; char* tmp1 = NULL; char* result = NULL; size_t len; if(relpath == NULL) goto done; /* defensive driving */ if(!pathinitialized) pathinit(); /* Decompose path */ if((stat = parsepath(relpath,&canon))) {goto done;} /* See if relative */ if(canon.kind == NCPD_REL) { /* prepend the wd path to the inpath, including drive letter, if any */ len = strlen(wdpath.path)+strlen(canon.path)+1+1; if((tmp1 = (char*)malloc(len))==NULL) {stat = NC_ENOMEM; {goto done;}} tmp1[0] = '\0'; strlcat(tmp1,wdpath.path,len); strlcat(tmp1,"/",len); strlcat(tmp1,canon.path,len); nullfree(canon.path); canon.path = tmp1; tmp1 = NULL; canon.drive = wdpath.drive; canon.kind = wdpath.kind; } /* rebuild */ if((stat=unparsepath(&canon,&result))) goto done; done: if(pathdebug) { fprintf(stderr,"xxx: relpath=|%s| result=|%s|\n", relpath?relpath:"NULL",result?result:"NULL"); fflush(stderr); } if(stat) { nullfree(tmp1); tmp1 = NULL; nclog(NCLOGERR,"NCpathcvt: stat=%d (%s)", stat,nc_strerror(stat)); } clearPath(&canon); nullfree(tmp1); return result; } /* Testing support */ /* Force drive and wd before invoking NCpathcvt and then revert */ EXTERNL char* /* caller frees */ NCpathcvt_test(const char* inpath, int ukind, int udrive) { char* result = NULL; struct Path oldwd = wdpath; if(!pathinitialized) pathinit(); /* Override */ wdpath.kind = ukind; wdpath.drive = udrive; wdpath.path = strdup("/"); if(pathdebug) fprintf(stderr,"xxx: wd=|%s|",printPATH(&wdpath)); result = NCpathcvt(inpath); clearPath(&wdpath); wdpath = oldwd; return result; } static void pathinit(void) { if(pathinitialized) return; /* Check for path debug env vars */ if(pathdebug < 0) { const char* s = getenv("NCPATHDEBUG"); pathdebug = (s == NULL ? 0 : 1); } (void)getwdpath(&wdpath); /* make the path static but remember to never free it (Ugh!) */ wdstaticpath[0] = '\0'; strlcat(wdstaticpath,wdpath.path,sizeof(wdstaticpath)); clearPath(&wdpath); wdpath.path = wdstaticpath; pathinitialized = 1; } static void clearPath(struct Path* path) { nullfree(path->path); path->path = NULL; } static const char* cygwinspecial[] = {"/bin/","/dev/","/etc/","/home/", "/lib/","/proc/","/sbin/","/tmp/", "/usr/","/var/",NULL}; /* Unfortunately, not all cygwin paths start with /cygdrive. So see if the path starts with one of the special paths. */ static int iscygwinspecial(const char* path) { const char** p; if(path == NULL) return 0; for(p=cygwinspecial;*p;p++) { if(strncmp(*p,path,strlen(*p))==0) return 1; } return 0; } /* return 1 if path looks like a url; 0 otherwise */ static int testurl(const char* path) { int isurl = 0; NCURI* tmpurl = NULL; if(path == NULL) return 0; /* Ok, try to parse as a url */ ncuriparse(path,&tmpurl); isurl = (tmpurl == NULL?0:1); ncurifree(tmpurl); return isurl; } #ifdef WINPATH /* Provide wrappers for Path-related functions */ EXTERNL FILE* NCfopen(const char* path, const char* flags) { int stat = NC_NOERR; FILE* f = NULL; char* cvtpath = NULL; wchar_t* wpath = NULL; wchar_t* wflags = NULL; cvtpath = NCpathcvt(path); if(cvtpath == NULL) return NULL; /* Convert from local to wide */ if((stat = utf82wide(cvtpath,&wpath))) goto done; if((stat = ansi2wide(flags,&wflags))) goto done; f = _wfopen(wpath,wflags); done: nullfree(cvtpath); nullfree(wpath); nullfree(wflags); return f; } EXTERNL int NCopen3(const char* path, int flags, int mode) { int stat = NC_NOERR; int fd = -1; char* cvtpath = NULL; wchar_t* wpath = NULL; cvtpath = NCpathcvt(path); if(cvtpath == NULL) goto done; /* Convert from utf8 to wide */ if((stat = utf82wide(cvtpath,&wpath))) goto done; fd = _wopen(wpath,flags,mode); done: nullfree(cvtpath); nullfree(wpath); return fd; } EXTERNL int NCopen2(const char *path, int flags) { return NCopen3(path,flags,0); } #ifdef HAVE_DIRENT_H EXTERNL DIR* NCopendir(const char* path) { DIR* ent = NULL; char* cvtname = NCpathcvt(path); if(cvtname == NULL) return NULL; ent = opendir(cvtname); free(cvtname); return ent; } EXTERNL int NCclosedir(DIR* ent) { int stat = NC_NOERR; if(closedir(ent) < 0) stat = errno; return stat; } #endif /* Provide wrappers for other file system functions */ /* Return access applied to path+mode */ EXTERNL int NCaccess(const char* path, int mode) { int status = 0; char* cvtpath = NULL; wchar_t* wpath = NULL; if((cvtpath = NCpathcvt(path)) == NULL) {status = EINVAL; goto done;} if((status = utf82wide(cvtpath,&wpath))) {status = ENOENT; goto done;} if(_waccess(wpath,mode) < 0) {status = errno; goto done;} done: free(cvtpath); free(wpath); errno = status; return (errno?-1:0); } EXTERNL int NCremove(const char* path) { int status = 0; char* cvtpath = NULL; wchar_t* wpath = NULL; if((cvtpath = NCpathcvt(path)) == NULL) {status=ENOMEM; goto done;} if((status = utf82wide(cvtpath,&wpath))) {status = ENOENT; goto done;} if(_wremove(wpath) < 0) {status = errno; goto done;} done: free(cvtpath); free(wpath); errno = status; return (errno?-1:0); } EXTERNL int NCmkdir(const char* path, int mode) { int status = 0; char* cvtpath = NULL; wchar_t* wpath = NULL; if((cvtpath = NCpathcvt(path)) == NULL) {status=ENOMEM; goto done;} if((status = utf82wide(cvtpath,&wpath))) {status = ENOENT; goto done;} if(_wmkdir(wpath) < 0) {status = errno; goto done;} done: free(cvtpath); free(wpath); errno = status; return (errno?-1:0); } EXTERNL int NCrmdir(const char* path) { int status = 0; char* cvtname = NCpathcvt(path); if(cvtname == NULL) {errno = ENOENT; return -1;} status = rmdir(cvtname); free(cvtname); return status; } EXTERNL char* NCgetcwd(char* cwdbuf, size_t cwdlen) { int status = NC_NOERR; struct Path wd = empty; char* path = NULL; size_t len; errno = 0; if(cwdlen == 0) {status = ENAMETOOLONG; goto done;} if(!pathinitialized) pathinit(); if((status = getwdpath(&wd))) {status = ENOENT; goto done;} if((status = unparsepath(&wd,&path))) {status = EINVAL; goto done;} len = strlen(path); if(len >= cwdlen) {status = ENAMETOOLONG; goto done;} if(cwdbuf == NULL) { if((cwdbuf = malloc(cwdlen))==NULL) {status = ENOMEM; goto done;} } memcpy(cwdbuf,path,len+1); done: clearPath(&wd); nullfree(path); errno = status; return cwdbuf; } EXTERNL int NCmkstemp(char* base) { int stat = 0; int fd, rno; char* tmp = NULL; size_t len; char* xp = NULL; char* cvtpath = NULL; int attempts; cvtpath = NCpathcvt(base); len = strlen(cvtpath); xp = cvtpath+(len-6); assert(memcmp(xp,"XXXXXX",6)==0); for(attempts=10;attempts>0;attempts--) { /* The Windows version of mkstemp does not work right; it only allows for 26 possible XXXXXX values */ /* Need to simulate by using some kind of pseudo-random number */ rno = rand(); if(rno < 0) rno = -rno; snprintf(xp,7,"%06d",rno); fd=NCopen3(cvtpath,O_RDWR|O_BINARY|O_CREAT, _S_IREAD|_S_IWRITE); if(fd >= 0) break; } if(fd < 0) { nclog(NCLOGERR, "Could not create temp file: %s",tmp); stat = EACCES; goto done; } done: nullfree(cvtpath); if(stat && fd >= 0) {close(fd);} return (stat?-1:fd); } #ifdef HAVE_SYS_STAT_H EXTERNL int NCstat(char* path, struct stat* buf) { int status = 0; char* cvtpath = NULL; wchar_t* wpath = NULL; if((cvtpath = NCpathcvt(path)) == NULL) {status=ENOMEM; goto done;} if((status = utf82wide(cvtpath,&wpath))) {status = ENOENT; goto done;} if(_wstat(wpath,buf) < 0) {status = errno; goto done;} done: free(cvtpath); free(wpath); errno = status; return (errno?-1:0); } #endif /*HAVE_SYS_STAT_H*/ int NCpath2utf8(const char* s, char** u8p) { return ansi2utf8(s,u8p); } #else /*!WINPATH*/ int NCpath2utf8(const char* path, char** u8p) { int stat = NC_NOERR; char* u8 = NULL; if(path != NULL) { u8 = strdup(path); if(u8 == NULL) {stat = NC_ENOMEM; goto done;} } if(u8p) {*u8p = u8; u8 = NULL;} done: return stat; } #endif /*!WINPATH*/ EXTERNL int NChasdriveletter(const char* path) { int stat = NC_NOERR; int hasdl = 0; struct Path canon = empty; if(!pathinitialized) pathinit(); if((stat = parsepath(path,&canon))) goto done; if(canon.kind == NCPD_REL) { clearPath(&canon); /* Get the drive letter (if any) from the local wd */ canon.drive = wdpath.drive; } hasdl = (canon.drive != 0); done: clearPath(&canon); return hasdl; } EXTERNL int NCisnetworkpath(const char* path) { int stat = NC_NOERR; int isnp = 0; struct Path canon = empty; if(!pathinitialized) pathinit(); if((stat = parsepath(path,&canon))) goto done; if(canon.kind == NCPD_REL) { clearPath(&canon); /* Get the drive letter (if any) from the local wd */ canon.drive = wdpath.drive; } isnp = (canon.drive == netdrive); done: clearPath(&canon); return isnp; } /**************************************************/ /* Utilities */ /* Parse a path */ static int parsepath(const char* inpath, struct Path* path) { int stat = NC_NOERR; char* tmp1 = NULL; size_t len; char* p; assert(path); memset(path,0,sizeof(struct Path)); if(inpath == NULL) goto done; /* defensive driving */ /* Convert to UTF8 */ #if 0 if((stat = NCpath2utf8(inpath,&tmp1))) goto done; #else tmp1 = strdup(inpath); #endif /* Convert to forward slash */ for(p=tmp1;*p;p++) {if(*p == '\\') *p = '/';} /* parse all paths to 2 parts: 1. drive letter (optional) 2. path after drive letter */ len = strlen(tmp1); /* 1. look for Windows network path //... */ if(len >= 2 && (tmp1[0] == '/') && (tmp1[1] == '/')) { path->drive = netdrive; /* Remainder */ if(tmp1[2] == '\0') path->path = NULL; else path->path = strdup(tmp1+1); /*keep first '/' */ if(path == NULL) {stat = NC_ENOMEM; goto done;} path->kind = NCPD_WIN; } /* 2. look for MSYS path /D/... */ else if(len >= 2 && (tmp1[0] == '/') && strchr(windrive,tmp1[1]) != NULL && (tmp1[2] == '/' || tmp1[2] == '\0')) { /* Assume this is a mingw path */ path->drive = tmp1[1]; /* Remainder */ if(tmp1[2] == '\0') path->path = NULL; else path->path = strdup(tmp1+2); if(path == NULL) {stat = NC_ENOMEM; goto done;} path->kind = NCPD_MSYS; } /* 3. Look for leading /cygdrive/D where D is a single-char drive letter */ else if(len >= (cdlen+1) && memcmp(tmp1,"/cygdrive/",cdlen)==0 && strchr(windrive,tmp1[cdlen]) != NULL && (tmp1[cdlen+1] == '/' || tmp1[cdlen+1] == '\0')) { /* Assume this is a cygwin path */ path->drive = tmp1[cdlen]; /* Remainder */ if(tmp1[cdlen+1] == '\0') path->path = NULL; else path->path = strdup(tmp1+cdlen+1); if(path == NULL) {stat = NC_ENOMEM; goto done;} path->kind = NCPD_CYGWIN; } /* 4. Look for windows path: D:/... where D is a single-char drive letter */ else if(len >= 2 && strchr(windrive,tmp1[0]) != NULL && tmp1[1] == ':' && (tmp1[2] == '\0' || tmp1[2] == '/')) { /* Assume this is a windows path */ path->drive = tmp1[0]; /* Remainder */ if(tmp1[2] == '\0') path->path = NULL; else path->path = strdup(tmp1+2); if(path == NULL) {stat = NC_ENOMEM; goto done;} path->kind = NCPD_WIN; } /* 5. look for *nix path */ else if(len >= 1 && tmp1[0] == '/') { /* Assume this is a *nix path */ path->drive = 0; /* no drive letter */ /* Remainder */ path->path = tmp1; tmp1 = NULL; path->kind = NCPD_NIX; } else {/* 6. Relative path of unknown type */ path->kind = NCPD_REL; path->path = tmp1; tmp1 = NULL; } done: nullfree(tmp1); if(stat) {clearPath(path);} return stat; } static int unparsepath(struct Path* xp, char** pathp) { int stat = NC_NOERR; size_t len; char* path = NULL; char sdrive[2] = {'\0','\0'}; char* p = NULL; int kind = xp->kind; int cygspecial = 0; switch (kind) { case NCPD_NIX: len = nulllen(xp->path); if(xp->drive != 0) { len += 2; sdrive[0] = xp->drive; } len++; /* nul terminate */ if((path = (char*)malloc(len))==NULL) {stat = NC_ENOMEM; goto done;} path[0] = '\0'; if(xp->drive != 0) { strlcat(path,"/",len); strlcat(path,sdrive,len); } if(xp->path != NULL) strlcat(path,xp->path,len); break; case NCPD_CYGWIN: /* Is this one of the special cygwin paths? */ cygspecial = iscygwinspecial(xp->path); if(xp->drive == 0) {xp->drive = wdpath.drive;} /*may require a drive */ len = nulllen(xp->path)+cdlen+1+1; if((path = (char*)malloc(len))==NULL) {stat = NC_ENOMEM; goto done;} path[0] = '\0'; if(!cygspecial) { strlcat(path,"/cygdrive/",len); sdrive[0] = xp->drive; strlcat(path,sdrive,len); } if(xp->path) strlcat(path,xp->path,len); break; case NCPD_WIN: if(xp->drive == 0) {xp->drive = wdpath.drive;} /*requires a drive */ len = nulllen(xp->path)+2+1+1; if((path = (char*)malloc(len))==NULL) {stat = NC_ENOMEM; goto done;} path[0] = '\0'; if(xp->drive == netdrive) strlcat(path,"/",len); /* second slash will come from path */ else { sdrive[0] = xp->drive; strlcat(path,sdrive,len); strlcat(path,":",len); } if(xp->path) strlcat(path,xp->path,len); /* Convert forward to back */ for(p=path;*p;p++) {if(*p == '/') *p = '\\';} break; case NCPD_MSYS: if(xp->drive == 0) {xp->drive = wdpath.drive;} /*requires a drive */ len = nulllen(xp->path)+2+1; if((path = (char*)malloc(len))==NULL) {stat = NC_ENOMEM; goto done;} path[0] = '\0'; sdrive[0] = xp->drive; strlcat(path,"/",len); strlcat(path,sdrive,len); if(xp->path) strlcat(path,xp->path,len); break; case NCPD_REL: path = strdup(xp->path); /* Use wdpath to decide slashing */ if(wdpath.kind == NCPD_WIN) { /* Convert forward to back */ for(p=path;*p;p++) {if(*p == '/') *p = '\\';} } break; default: stat = NC_EINTERNAL; goto done; } if(pathp) {*pathp = path; path = NULL;} done: nullfree(path); return stat; } static int getwdpath(struct Path* wd) { int stat = NC_NOERR; char* path = NULL; if(wd->path != NULL) return stat; memset(wd,0,sizeof(struct Path)); #ifdef _WIN32 { wchar_t* wcwd = NULL; wchar_t* wpath = NULL; wcwd = (wchar_t*)calloc(8192, sizeof(wchar_t)); wpath = _wgetcwd(wcwd, 8192); path = NULL; stat = wide2utf8(wpath, &path); free(wcwd); if (stat) return stat; } #else { char cwd[8192]; path = getcwd(cwd, sizeof(cwd)); path = strdup(path); } #endif stat = parsepath(path,wd); /* Force the kind */ wd->kind = getlocalpathkind(); nullfree(path); path = NULL; return stat; } static int getlocalpathkind(void) { int kind = NCPD_UNKNOWN; #ifdef __CYGWIN__ kind = NCPD_CYGWIN; #elif defined __MINGW32__ kind = NCPD_WIN; #elif defined _MSC_VER /* not _WIN32 */ kind = NCPD_WIN; #elif defined __MSYS__ kind = NCPD_MSYS; #else kind = NCPD_NIX; #endif return kind; } #ifdef WINPATH /** * Converts the filename from Locale character set (presumably some * ANSI character set like ISO-Latin-1 or UTF-8 to UTF-8 * @param local Pointer to a nul-terminated string in locale char set. * @param u8p Pointer for returning the output utf8 string * * @return NC_NOERR return converted filename * @return NC_EINVAL if conversion fails * @return NC_ENOMEM if no memory available * */ static int ansi2utf8(const char* local, char** u8p) { int stat=NC_NOERR; char* u8 = NULL; int n; wchar_t* u16 = NULL; { /* Get length of the converted string */ n = MultiByteToWideChar(CP_ACP, 0, local, -1, NULL, 0); if (!n) {stat = NC_EINVAL; goto done;} if((u16 = malloc(sizeof(wchar_t) * n))==NULL) {stat = NC_ENOMEM; goto done;} /* do the conversion */ if (!MultiByteToWideChar(CP_ACP, 0, local, -1, u16, n)) {stat = NC_EINVAL; goto done;} /* Now reverse the process to produce utf8 */ n = WideCharToMultiByte(CP_UTF8, 0, u16, -1, NULL, 0, NULL, NULL); if (!n) {stat = NC_EINVAL; goto done;} if((u8 = malloc(sizeof(char) * n))==NULL) {stat = NC_ENOMEM; goto done;} if (!WideCharToMultiByte(CP_UTF8, 0, u16, -1, u8, n, NULL, NULL)) {stat = NC_EINVAL; goto done;} } if(u8p) {*u8p = u8; u8 = NULL;} done: nullfree(u8); return stat; } static int ansi2wide(const char* local, wchar_t** u16p) { int stat=NC_NOERR; wchar_t* u16 = NULL; int n; /* Get length of the converted string */ n = MultiByteToWideChar(CP_ACP, 0, local, -1, NULL, 0); if (!n) {stat = NC_EINVAL; goto done;} if((u16 = malloc(sizeof(wchar_t) * n))==NULL) {stat = NC_ENOMEM; goto done;} /* do the conversion */ if (!MultiByteToWideChar(CP_ACP, 0, local, -1, u16, n)) {stat = NC_EINVAL; goto done;} if(u16p) {*u16p = u16; u16 = NULL;} done: nullfree(u16); return stat; } static int utf82wide(const char* utf8, wchar_t** u16p) { int stat=NC_NOERR; wchar_t* u16 = NULL; int n; /* Get length of the converted string */ n = MultiByteToWideChar(CP_UTF8, 0, utf8, -1, NULL, 0); if (!n) {stat = NC_EINVAL; goto done;} if((u16 = malloc(sizeof(wchar_t) * n))==NULL) {stat = NC_ENOMEM; goto done;} /* do the conversion */ if (!MultiByteToWideChar(CP_UTF8, 0, utf8, -1, u16, n)) {stat = NC_EINVAL; goto done;} if(u16p) {*u16p = u16; u16 = NULL;} done: nullfree(u16); return stat; } static int wide2utf8(const wchar_t* u16, char** u8p) { int stat=NC_NOERR; char* u8 = NULL; int n; /* Get length of the converted string */ n = WideCharToMultiByte(CP_UTF8, 0, u16, -1, NULL, 0, NULL, NULL); if (!n) {stat = NC_EINVAL; goto done;} if((u8 = malloc(sizeof(char) * n))==NULL) {stat = NC_ENOMEM; goto done;} /* do the conversion */ if (!WideCharToMultiByte(CP_UTF8, 0, u16, -1, u8, n, NULL, NULL)) {stat = NC_EINVAL; goto done;} if(u8p) {*u8p = u8; u8 = NULL;} done: nullfree(u8); return stat; } /* Set locale */ void nc_setlocale_utf8(void) { #ifdef __hpux setlocale(LC_CTYPE,""); #else setlocale(LC_ALL,"C.UTF8"); #endif } #endif /*WINPATH*/ static char* printPATH(struct Path* p) { static char buf[4096]; buf[0] = '\0'; snprintf(buf,sizeof(buf),"Path{kind=%d drive='%c' path=|%s|}", p->kind,(p->drive > 0?p->drive:'0'),p->path); return buf; } #if 0 static int hexfor(int c) { if(c >= '0' && c <= '9') return c - '0'; if(c >= 'a' && c <= 'f') return (c - 'a')+10; if(c >= 'A' && c <= 'F') return (c - 'A')+10; return -1; } #endif static char hexdigit[] = "0123456789abcdef"; EXTERNL void printutf8hex(const char* s, char* sx) { const char* p; char* q; for(q=sx,p=s;*p;p++) { unsigned int c = (unsigned char)*p; if(c >= ' ' && c <= 127) *q++ = (char)c; else { *q++ = '\\'; *q++ = 'x'; *q++ = hexdigit[(c>>4)&0xf]; *q++ = hexdigit[(c)&0xf]; } } *q = '\0'; }