当前位置:网站首页>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边栏推荐
- 2022暑期项目实训(二)
- Distiller les connaissances du modèle interactif! L'Université de technologie de Chine & meituan propose Virt, qui a à la fois l'efficacité du modèle à deux tours et la performance du modèle interacti
- 队列的实现
- 重磅硬核 | 一文聊透对象在 JVM 中的内存布局,以及内存对齐和压缩指针的原理及应用
- Excel usage record
- C语言高校实验室预约登记系统
- Compilation Principle -- C language implementation of prediction table
- MS-TCT:Inria&SBU提出用于动作检测的多尺度时间Transformer,效果SOTA!已开源!(CVPR2022)...
- Introduction to the usage of model view delegate principal-agent mechanism in QT
- Codeforces Round #803 (Div. 2)
猜你喜欢
UDP协议:因性善而简单,难免碰到“城会玩”
[swoole series 2.1] run the swoole first
面向程序员的精品开源字体
RB157-ASEMI整流桥RB157
STM32按键状态机2——状态简化与增加长按功能
李書福為何要親自掛帥造手機?
F200——搭载基于模型设计的国产开源飞控系统无人机
Grafana 9.0 正式发布!堪称最强!
The integrated real-time HTAP database stonedb, how to replace MySQL and achieve nearly a hundredfold performance improvement
从交互模型中蒸馏知识!中科大&美团提出VIRT,兼具双塔模型的效率和交互模型的性能,在文本匹配上实现性能和效率的平衡!...
随机推荐
模板于泛型编程之declval
重磅!蚂蚁开源可信隐私计算框架“隐语”,主流技术灵活组装、开发者友好分层设计...
虚拟机VirtualBox和Vagrant安装
C语言指针*p++、*(p++)、*++p、*(++p)、(*p)++、++(*p)对比实例
2019阿里集群数据集使用总结
Windows连接Linux上安装的Redis
Distinguish between basic disk and dynamic disk RAID disk redundant array
转载:基于深度学习的工业品组件缺陷检测技术
C语言通过指针交换两个数
It doesn't make sense without a distributed gateway
编译原理——预测表C语言实现
OpenEuler 会长久吗
TOP命令详解
Comparative examples of C language pointers *p++, * (p++), * ++p, * (++p), (*p) + +, +(*p)
std::true_type和std::false_type
Windows connects redis installed on Linux
After entering Alibaba for the interview and returning with a salary of 35K, I summarized an interview question of Alibaba test engineer
d绑定函数
面试突击62:group by 有哪些注意事项?
阿里云国际版ECS云服务器无法登录宝塔面板控制台