/* libFLAC - Free Lossless Audio Codec library * Copyright (C) 2013-2023 Xiph.Org Foundation * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * - Neither the name of the Xiph.org Foundation nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include "share/win_utf8_io.h" #define UTF8_BUFFER_SIZE 32768 /* detect whether it is Windows APP (UWP) or standard Win32 envionment */ #ifdef WINAPI_FAMILY_PARTITION #if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) #define FLAC_WINDOWS_APP 1 #else #define FLAC_WINDOWS_APP 0 #endif #else #define FLAC_WINDOWS_APP 0 #endif static int local_vsnprintf(char *str, size_t size, const char *fmt, va_list va) { int rc; #if defined _MSC_VER if (size == 0) return 1024; rc = vsnprintf_s(str, size, _TRUNCATE, fmt, va); if (rc < 0) rc = size - 1; #elif defined __MINGW32__ rc = __mingw_vsnprintf(str, size, fmt, va); #else rc = vsnprintf(str, size, fmt, va); #endif return rc; } /* convert WCHAR stored Unicode string to UTF-8. Caller is responsible for freeing memory */ static char *utf8_from_wchar(const wchar_t *wstr) { char *utf8str; int len; if (!wstr) return NULL; if ((len = WideCharToMultiByte(CP_UTF8, 0, wstr, -1, NULL, 0, NULL, NULL)) == 0) return NULL; if ((utf8str = (char *)malloc(len)) == NULL) return NULL; if (WideCharToMultiByte(CP_UTF8, 0, wstr, -1, utf8str, len, NULL, NULL) == 0) { free(utf8str); utf8str = NULL; } return utf8str; } /* convert UTF-8 back to WCHAR. Caller is responsible for freeing memory */ static wchar_t *wchar_from_utf8(const char *str) { wchar_t *widestr; int len; if (!str) return NULL; if ((len = MultiByteToWideChar(CP_UTF8, 0, str, -1, NULL, 0)) == 0) return NULL; if ((widestr = (wchar_t *)malloc(len*sizeof(wchar_t))) == NULL) return NULL; if (MultiByteToWideChar(CP_UTF8, 0, str, -1, widestr, len) == 0) { free(widestr); widestr = NULL; } return widestr; } /* retrieve WCHAR commandline, expand wildcards and convert everything to UTF-8 */ int get_utf8_argv(int *argc, char ***argv) { #if !FLAC_WINDOWS_APP typedef int (__cdecl *wgetmainargs_t)(int*, wchar_t***, wchar_t***, int, int*); wgetmainargs_t wgetmainargs; HMODULE handle; #endif // !FLAC_WINDOWS_APP int wargc; wchar_t **wargv; wchar_t **wenv; char **utf8argv; int ret, i; #if FLAC_WINDOWS_APP wargc = __argc; wargv = __wargv; wenv = _wenviron; #else // !FLAC_WINDOWS_APP if ((handle = LoadLibraryW(L"msvcrt.dll")) == NULL) return 1; if ((wgetmainargs = (wgetmainargs_t)GetProcAddress(handle, "__wgetmainargs")) == NULL) { FreeLibrary(handle); return 1; } i = 0; /* when the 4th argument is 1, __wgetmainargs expands wildcards but also erroneously converts \\?\c:\path\to\file.flac to \\file.flac */ if (wgetmainargs(&wargc, &wargv, &wenv, 1, &i) != 0) { FreeLibrary(handle); return 1; } #endif // !FLAC_WINDOWS_APP if ((utf8argv = (char **)calloc(wargc, sizeof(char*))) == NULL) { #if !FLAC_WINDOWS_APP FreeLibrary(handle); #endif // !FLAC_WINDOWS_APP return 1; } ret = 0; for (i=0; iactime; ut.modtime = times->modtime; ret = _wutime64(wname, &ut); free(wname); return ret; } int unlink_utf8(const char *filename) { wchar_t *wname; int ret; if (!(wname = wchar_from_utf8(filename))) return -1; ret = _wunlink(wname); free(wname); return ret; } int rename_utf8(const char *oldname, const char *newname) { wchar_t *wold = NULL; wchar_t *wnew = NULL; int ret = -1; do { if (!(wold = wchar_from_utf8(oldname))) break; if (!(wnew = wchar_from_utf8(newname))) break; ret = _wrename(wold, wnew); } while(0); free(wold); free(wnew); return ret; }