In C/C++, if a multi-byte wide character (wchar_t) value is transmitted from a big-endian system to a little-endian system (or vice-versa), will it come out the same value on the other side? Or will the bytes need to be swapped?
|
feedback
|
|
Yes you will need to swap them. The tried and true method is to convert to network byte order before transport. Then convert back to host specific byte order (from network byte order) on receipt. A set of function to help with endian conversion:
Just to add another note of caution. Additionally each host may use a different representational format for wchar_t. You could look at IBM's icu this has all this functionality. | |||||||
feedback
|
|
Endian conversion is not sufficient and as a consequence not needed. Sizeof(wchar_t) differs, and therefore the encoding too. Hence, you need to agree on an interchange format. The logical choice is UTF-8. But since UTF-8 is byte-oriented, you do not have endianness issues anymore. | |||
|
feedback
|
|
Yes, you need to perform endian conversion. Define carefully your serialization format, i.e. the byte order of data that is transmitted over the network or stored into a disk file. Then, when sending data, convert from native to wire format (may or may not require byte swapping), and when receiving data, convert from wire to native format (again may or may not require byte swapping). You should pick a wire format that will be used by the majority of clients to minimize the average amount of byte swapping. | |||
|
feedback
|