cmake/Utilities/cmcurl/lib/curl_multibyte.c

163 lines
4.0 KiB
C
Raw Normal View History

2015-04-27 22:25:09 +02:00
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
2023-07-02 19:51:09 +02:00
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
2015-04-27 22:25:09 +02:00
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
2021-09-14 00:13:48 +02:00
* are also available at https://curl.se/docs/copyright.html.
2015-04-27 22:25:09 +02:00
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
2022-11-16 20:14:03 +01:00
* SPDX-License-Identifier: curl
*
2015-04-27 22:25:09 +02:00
***************************************************************************/
2020-08-30 11:54:41 +02:00
/*
2021-09-14 00:13:48 +02:00
* This file is 'mem-include-scan' clean, which means memdebug.h and
* curl_memory.h are purposely not included in this file. See test 1132.
*
* The functions in this file are curlx functions which are not tracked by the
* curl memory tracker memdebug.
2020-08-30 11:54:41 +02:00
*/
2016-09-11 17:22:32 +02:00
2020-08-30 11:54:41 +02:00
#include "curl_setup.h"
2015-04-27 22:25:09 +02:00
2024-04-14 22:45:38 +02:00
#if defined(_WIN32)
2015-04-27 22:25:09 +02:00
#include "curl_multibyte.h"
2015-11-17 17:22:37 +01:00
2020-08-30 11:54:41 +02:00
/*
* MultiByte conversions using Windows kernel32 library.
*/
2015-04-27 22:25:09 +02:00
2020-08-30 11:54:41 +02:00
wchar_t *curlx_convert_UTF8_to_wchar(const char *str_utf8)
2015-04-27 22:25:09 +02:00
{
wchar_t *str_w = NULL;
if(str_utf8) {
int str_w_len = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS,
str_utf8, -1, NULL, 0);
if(str_w_len > 0) {
str_w = malloc(str_w_len * sizeof(wchar_t));
if(str_w) {
if(MultiByteToWideChar(CP_UTF8, 0, str_utf8, -1, str_w,
str_w_len) == 0) {
2015-11-17 17:22:37 +01:00
free(str_w);
return NULL;
2015-04-27 22:25:09 +02:00
}
}
}
}
return str_w;
}
2020-08-30 11:54:41 +02:00
char *curlx_convert_wchar_to_UTF8(const wchar_t *str_w)
2015-04-27 22:25:09 +02:00
{
char *str_utf8 = NULL;
if(str_w) {
2019-11-11 23:01:05 +01:00
int bytes = WideCharToMultiByte(CP_UTF8, 0, str_w, -1,
NULL, 0, NULL, NULL);
if(bytes > 0) {
str_utf8 = malloc(bytes);
2015-04-27 22:25:09 +02:00
if(str_utf8) {
2019-11-11 23:01:05 +01:00
if(WideCharToMultiByte(CP_UTF8, 0, str_w, -1, str_utf8, bytes,
NULL, NULL) == 0) {
2015-11-17 17:22:37 +01:00
free(str_utf8);
return NULL;
2015-04-27 22:25:09 +02:00
}
}
}
}
return str_utf8;
}
2024-04-14 22:45:38 +02:00
#endif /* _WIN32 */
2020-08-30 11:54:41 +02:00
#if defined(USE_WIN32_LARGE_FILES) || defined(USE_WIN32_SMALL_FILES)
2021-09-14 00:13:48 +02:00
int curlx_win32_open(const char *filename, int oflag, ...)
{
int pmode = 0;
#ifdef _UNICODE
int result = -1;
wchar_t *filename_w = curlx_convert_UTF8_to_wchar(filename);
#endif
va_list param;
va_start(param, oflag);
if(oflag & O_CREAT)
pmode = va_arg(param, int);
va_end(param);
#ifdef _UNICODE
2021-11-20 13:41:27 +01:00
if(filename_w) {
2021-09-14 00:13:48 +02:00
result = _wopen(filename_w, oflag, pmode);
2022-08-04 22:12:04 +02:00
curlx_unicodefree(filename_w);
2021-11-20 13:41:27 +01:00
}
else
errno = EINVAL;
return result;
#else
2021-09-14 00:13:48 +02:00
return (_open)(filename, oflag, pmode);
2021-11-20 13:41:27 +01:00
#endif
2021-09-14 00:13:48 +02:00
}
2020-08-30 11:54:41 +02:00
FILE *curlx_win32_fopen(const char *filename, const char *mode)
{
#ifdef _UNICODE
FILE *result = NULL;
wchar_t *filename_w = curlx_convert_UTF8_to_wchar(filename);
wchar_t *mode_w = curlx_convert_UTF8_to_wchar(mode);
if(filename_w && mode_w)
result = _wfopen(filename_w, mode_w);
2021-11-20 13:41:27 +01:00
else
errno = EINVAL;
2022-08-04 22:12:04 +02:00
curlx_unicodefree(filename_w);
curlx_unicodefree(mode_w);
2021-11-20 13:41:27 +01:00
return result;
#else
2020-08-30 11:54:41 +02:00
return (fopen)(filename, mode);
2021-11-20 13:41:27 +01:00
#endif
2020-08-30 11:54:41 +02:00
}
int curlx_win32_stat(const char *path, struct_stat *buffer)
{
#ifdef _UNICODE
2021-11-20 13:41:27 +01:00
int result = -1;
2020-08-30 11:54:41 +02:00
wchar_t *path_w = curlx_convert_UTF8_to_wchar(path);
2021-09-14 00:13:48 +02:00
if(path_w) {
2020-08-30 11:54:41 +02:00
#if defined(USE_WIN32_SMALL_FILES)
result = _wstat(path_w, buffer);
2021-09-14 00:13:48 +02:00
#else
2020-08-30 11:54:41 +02:00
result = _wstati64(path_w, buffer);
2021-09-14 00:13:48 +02:00
#endif
2022-08-04 22:12:04 +02:00
curlx_unicodefree(path_w);
2021-09-14 00:13:48 +02:00
}
2021-11-20 13:41:27 +01:00
else
errno = EINVAL;
return result;
#else
2021-09-14 00:13:48 +02:00
#if defined(USE_WIN32_SMALL_FILES)
2021-11-20 13:41:27 +01:00
return _stat(path, buffer);
2021-09-14 00:13:48 +02:00
#else
2021-11-20 13:41:27 +01:00
return _stati64(path, buffer);
#endif
2020-08-30 11:54:41 +02:00
#endif
}
#endif /* USE_WIN32_LARGE_FILES || USE_WIN32_SMALL_FILES */