当前位置:网站首页>Wchars, coding, standards and portability - wchars, encodings, standards and portability
Wchars, coding, standards and portability - wchars, encodings, standards and portability
2022-07-06 18:14:00 【javail】
problem :
The following may not qualify as a SO question; The following may not meet SO problem ;if it is out of bounds, please feel free to tell me to go away. If it is out of range , Please feel free to tell me to leave .The question here is basically, "Do I understand the C standard correctly and is this the right way to go about things?" The problem here is basically ,“ Whether I understand correctly C standard , Is this the right way ?”
I would like to ask for clarification, confirmation and corrections on my understanding of character handling in C (and thus C++ and C++0x). I want to ask for clarification , Confirm and correct my understanding of C Understanding of Chinese character processing ( as well as C ++ and C ++ 0x).First off, an important observation: First , An important observation :
Portability and serialization are orthogonal concepts. Portability and serialization are orthogonal concepts .
Portable things are things like C, unsigned int
, wchar_t
. Portable things are like C, unsigned int
, wchar_t
.Serializable things are things like uint32_t
or UTF-8. Serializable things are like uint32_t
or UTF-8."Portable" means that you can recompile the same source and get a working result on every supported platform, but the binary representation may be totally different (or not even exist, eg TCP-over-carrier pigeon).“Portable” This means that you can recompile the same source and get working results on each supported platform , But binary representations can be completely different ( Or it doesn't even exist , for example TCP-over-carrier pigeon).Serializable things on the other hand always have the same representation, eg the PNG file I can read on my Windows desktop, on my phone or on my toothbrush. On the other hand , Serializable things always have same Express , For example, I can Windows desktop , Read on mobile phone or toothbrush PNG file .Portable things are internal, serializable things deal with I/O. Portable things are internal , Serializable things to deal with I / O.Portable things are typesafe, serializable things need type punning. Portable things are type safe , Serializable things need typing .</preamble></ Leading >
When it comes to character handling in C, there are two groups of things related respectively to portability and serialization: When it comes to C When processing characters in , There are two groups related to portability and serialization :
wchar_t
,setlocale()
,mbsrtowcs()
/wcsrtombs()
: The C standard says nothing about "encodings" ;wchar_t
,setlocale()
,mbsrtowcs()
/wcsrtombs()
: C The standard does not mention “ code ” ;in fact, it is entirely agnostic to any text or encoding properties. in fact , It has nothing to do with any text or encoding properties .It only says "your entry point ismain(int, char**)
; you get a typewchar_t
which can hold all your system's characters; you get functions to read input char-sequences and make them into workable wstrings and vice versa. It just says “ Your entry point ismain(int, char**)
; You get a typewchar_t
, It can hold all the characters of your system ; You get the function to read the input character sequence and make them a feasible string , vice versa .iconv()
and UTF-8,16,32: A function/library to transcode between well-defined, definite, fixed encodings.iconv()
and UTF-8,16,32: A function that transcodes between well-defined fixed codes / library .All encodings handled by iconv are universally understood and agreed upon, with one exception. from iconv All codes processed are generally understood and agreed , With one exception .
The bridge between the portable, encoding-agnostic world of C with its wchar_t
portable character type and the deterministic outside world is iconv conversion between WCHAR-T and UTF . portable , Coding independent C The world and its wchar_t
The bridge between portable character types and the deterministic external world is WCHAR-T and UTF Between iconv transformation .
So, should I always store my strings internally in an encoding-agnostic wstring, interface with the CRT via wcsrtombs()
, and use iconv()
for serialization? that , Should I always store my strings internally in encoding independent wstring in , adopt wcsrtombs()
And CRT Interface , And use iconv()
serialize ?Conceptually: Concept :
my program <-- wcstombs --- /==============\ --- iconv(UTF8, WCHAR_T) -->CRT | wchar_t[] | <Disk> --- mbstowcs --> \==============/ <-- iconv(WCHAR_T, UTF8) --- | +-- iconv(WCHAR_T, UCS-4) --+ | ... <--- (adv. Unicode malarkey) ----- libicu ---+
Practically, that means that I'd write two boiler-plate wrappers for my program entry point, eg for C++: actually , This means that I will write two template wrappers for my program entry point , for example C ++:
// Portable wmain()-wrapper#include <clocale>#include <cwchar>#include <string>#include <vector>std::vector<std::wstring> parse(int argc, char * argv[]); // use mbsrtowcs etcint wmain(const std::vector<std::wstring> args); // user starts here#if defined(_WIN32) || defined(WIN32)#include <windows.h>extern "C" int main(){ setlocale(LC_CTYPE, ""); int argc; wchar_t * const * const argv = CommandLineToArgvW(GetCommandLineW(), &argc); return wmain(std::vector<std::wstring>(argv, argv + argc));}#elseextern "C" int main(int argc, char * argv[]){ setlocale(LC_CTYPE, ""); return wmain(parse(argc, argv));}#endif// Serialization utilities#include <iconv.h>typedef std::basic_string<uint16_t> U16String;typedef std::basic_string<uint32_t> U32String;U16String toUTF16(std::wstring s);U32String toUTF32(std::wstring s);/* ... */
Is this the right way to write an idiomatic, portable, universal, encoding-agnostic program core using only pure standard C/C++, together with a well-defined I/O interface to UTF using iconv? This is using pure standards C / C ++ Write a idiomatic , portable , General purpose , The right way to code the core of an unknowable program , And the use of iconv Define the UTF Explicit I / O Interface? ?(Note that issues like Unicode normalization or diacritic replacement are outside the scope; only after you decide that you actually want Unicode (as opposed to any other coding system you might fancy) is it time to deal with those specifics, eg using a dedicated library like libicu.)( Please note that ,Unicode Problems such as normalization or diacritical substitution are out of scope ; Only when you determine your actual needs Unicode ( Not any other coding system you might want ) Then we can deal with these details , For example, use a dedicated Library libicu.)
Updates to update
Following many very nice comments I'd like to add a few observations: After many very good comments , I would like to add a few comments :
If your application explicitly wants to deal with Unicode text, you should make the
iconv
-conversion part of the core and useuint32_t
/char32_t
-strings internally with UCS-4. If your application specifically deals with Unicode Text , Then you should puticonv
-conversion As part of the core , And in UCS-4 For internal useuint32_t
/char32_t
-strings.Windows: While using wide strings is generally fine, it appears that interaction with the console (any console, for that matter) is limited, as there does not appear to be support for any sensible multi-byte console encoding and
mbstowcs
is essentially useless (other than for trivial widening).Windows: Although using wide strings is usually good , But it seems to be related to the console ( Any console , In this respect ) The interaction of is limited , Because it doesn't seem to support any reasonable multi byte console coding andmbstowcs
It's basically useless ( Except for trivial expansion ).Receiving wide-string arguments from, say, an Explorer-drop together withGetCommandLineW
+CommandLineToArgvW
works (perhaps there should be a separate wrapper for Windows). from Explorer-drop andGetCommandLineW
+CommandLineToArgvW
Receive wide string parameters together ( Maybe there should be a separate Windows Wrappers ).File systems: File systems don't seem to have any notion of encoding and simply take any null-terminated string as a file name. file system : The file system doesn't seem to have any coding concept , Just put anything in null The ending string is used as the file name .Most systems take byte strings, but Windows/NTFS takes 16-bit strings. Most systems use byte strings , but Windows / NTFS use 16 A string .You have to take care when discovering which files exist and when handling that data (eg
char16_t
sequences that do not constitute valid UTF16 (eg naked surrogates) are valid NTFS filenames). When discovering which files exist and processing the data ( for example , Does not constitute valid UTF16 Ofchar16_t
Sequence ( For example, naked agents ) It works NTFS file name ), You must be careful .The Standard Cfopen
is not able to open all NTFS files, since there is no possible conversion that will map to all possible 16-bit strings. standard Cfopen
Unable to open all NTFS file , Because no possible transformation will map to all possible 16 A string .Use of the Windows-specific_wfopen
may be required. You may need to use a specific Windows Of_wfopen
.As a corollary, there is in general no well defined notion of "how many characters" comprise a given file name, as there is no notion of "character" in the first place. As a corollary , Usually not clearly defined “ How many characters ” Contains the concept of a given file name , Because first of all, there is no “ character ” The concept of .Caveat emptor. The buyer is conceited .
Solution :
Reference resources : https://stackoom.com/en/question/QR7s边栏推荐
- Virtual machine VirtualBox and vagrant installation
- 2019 Alibaba cluster dataset Usage Summary
- OliveTin能在网页上安全运行shell命令(上)
- 传输层 拥塞控制-慢开始和拥塞避免 快重传 快恢复
- [swoole series 2.1] run the swoole first
- Interesting - questions about undefined
- 微信为什么使用 SQLite 保存聊天记录?
- Jerry's access to additional information on the dial [article]
- OpenEuler 会长久吗
- Release of the sample chapter of "uncover the secrets of asp.net core 6 framework" [200 pages /5 chapters]
猜你喜欢
Declval of template in generic programming
1700C - Helping the Nature
从交互模型中蒸馏知识!中科大&美团提出VIRT,兼具双塔模型的效率和交互模型的性能,在文本匹配上实现性能和效率的平衡!...
Getting started with pytest ----- allow generate report
SQL statement optimization, order by desc speed optimization
[swoole series 2.1] run the swoole first
Implementation of queue
scratch疫情隔离和核酸检测模拟 电子学会图形化编程scratch等级考试三级真题和答案解析2022年6月
F200——搭载基于模型设计的国产开源飞控系统无人机
Interesting - questions about undefined
随机推荐
78 year old professor Huake has been chasing dreams for 40 years, and the domestic database reaches dreams to sprint for IPO
2022暑期项目实训(一)
Rb157-asemi rectifier bridge RB157
OliveTin能在网页上安全运行shell命令(上)
Appium automated test scroll and drag_ and_ Drop slides according to element position
kivy教程之在 Kivy 中支持中文以构建跨平台应用程序(教程含源码)
2022暑期项目实训(三)
Prophet模型的简介以及案例分析
Recommend easy-to-use backstage management scaffolding, everyone open source
On time and parameter selection of asemi rectifier bridge db207
最新财报发布+天猫618双榜第一,耐克蓄力领跑下个50年
Pourquoi Li shufu a - t - il construit son téléphone portable?
Declval (example of return value of guidance function)
Four processes of program operation
编译原理——自上而下分析与递归下降分析构造(笔记)
Jielizhi obtains the customized background information corresponding to the specified dial [chapter]
Dichotomy (integer dichotomy, real dichotomy)
adb常用命令
Comparative examples of C language pointers *p++, * (p++), * ++p, * (++p), (*p) + +, +(*p)
第三季百度网盘AI大赛盛夏来袭,寻找热爱AI的你!