Can someone point me to an open-source C implementation of:
a. ByteBuffer similar to the one in Java, and
b. DBCS.
I am a starter in this area and desperately need some help. Thanks in advance!
|
Can someone point me to an open-source C implementation of: a. ByteBuffer similar to the one in Java, and b. DBCS. I am a starter in this area and desperately need some help. Thanks in advance!
| |||||||||||||
feedback
|
|
Since you tagged this homework I assume you want to learn rather than get a direct answer, (or perhaps want to get a direct answer but need to learn) so I'm approaching my answer from that perspective. First, read The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!). Yes, I share that link on pretty much every character encoding question I come across and with good reason. Print it out, frame it and read it every morning. Really. Now on to your question. C does not have classes, so the concept of a "ByteBuffer" class doesn't exist. You can't enscapulate the concept in the same way. Buffers in C are just arrays of a certain size. You make sure they are big enough to hold your data or you pay the consequences. If you want to get something of a certain size in C, the best way to do it is to use It's still a byte of data. Types are the world that has been pulled over your eyes to blind you from the truth that in fact, everything is binary. You can do binary operations on To ram this point home further, look at the assembler required on your system. Operations are all done on registers, which are capable of containing the maximum number of bits your system supports. These operations are defined in hardware and operate on those bits, nothing else. So:
Sets So you could easily implement the required functionality with functions that look like this:
Now, as for the purposes of buffers for the purpose of IO, sometimes, writing to files doesn't actually happen when you ask it to. I know what you're thinking wow, C has buffered IO! Actually, operating systems do, they're under no obligation to write the data to disk if it doesn't suit them to immediately and there are many reasons why they might not want to immediately. But luckily the C standard library has a nice little function called Ok, now let's get back to double-byte character sets. As you've hopefully deduced by now, you could actually implement your own with So, you're probably thinking, wait, I can't rely on the size of any of thee character types? And the answer is no, you cannot, with the exception of the Next logical question: how do C programmers do internationalisation then? The ICU project is THE open source library for handling Unicode and internationalisation. Finally, you might look at source code and see these magic types that just appear but aren't build in types. Well, it is actually possible to define new types in C, like this:
Of course, you still have to manage conversion to the required types for C standard functions, which you want to use if you can, but that isn't beyond the realms of possible. | |||||||||
feedback
|