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!

link|improve this question

1  
What is it you want to accomplish? Tell us your goal and we can show you the right tools. – Jonathan Grynspan Jan 19 '11 at 18:55
And on what platform? – nmichaels Jan 19 '11 at 18:58
Thanks for the quick response! I have the requirement in Ubuntu/Gcc. And as for the requirements, my prof has given me a single point instructions - 1. implement Java ByteBuffer in C Language, 2. implement DBCS type of strings in C. So, I dont know where to start from. Pls suggest me if some open source software already exists or atleast some pointers could help. – Aditya369 Jan 19 '11 at 19:07
I'm not totally sure about the ethics of pointing you to an example of code which does exactly what you've been asked to for homework. If you're looking for a starting place, you might want to pick a single method of ByteBuffer (a very simple one). That should force you to take a stab at the underlying data storage, then you can start building up other methods. – Jefromi Jan 19 '11 at 19:17
Since this is a professor's assignment, I added the "homework" tag. – David Thornley Jan 19 '11 at 19:23
show 1 more comment
feedback

1 Answer

up vote 3 down vote accepted

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 #include <stdint.h> types, specifically uint8_t, from the C99 standard. These "integer" types come in the form [u]intXX_t where XX is the number of bits. So, uint8_t is a 8-bit integer which doesn't use two's complement arithmetic and the compiler treats it as a positive number for the purpose of all operations.

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 uint8_t types no problem. You can store a file in a uint8_t array. It IS binary. Commonly, people use char* arrays to do this kind of thing because before the world of stdint came along, that was the size that was probably a byte in length. I say probably, but don't assume it will be a byte in length.

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:

mov    eax, 7
add    eax, 1

Sets eax to 00000000000000000000000000000111 and then adds one, so eax becomes 00000000000000000000000000001000. See, there is no type.

So you could easily implement the required functionality with functions that look like this:

void bytebuffer_operationname(uint8_t* data, const size_t size);

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 fflush() to ask the OS explicitly to write that data.

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 uint16_t if you so wanted. Luckily, somebody decided to create "wide characters" called wchar_t which are available through #include <wchar.h> and often built into the system anyway. Windows uses these characters internally and they are usually, although by no means guaranteed to be 2 bytes wide. Yes, it depends on what the system thinks is a wide enough character type.

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 stdint types int, char and wchar can be different sizes on different platforms.

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:

typedef uint16_t dbchar;

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.

link|improve this answer
Thanks NineFingers!! I would go through this carefully. I never expected such an elaborative answer from you guys. The explanation is too encouraging for me to try to go through an otherwise boring topic!! Thanks again!! I liked this line in your ans "Types are the world that has been pulled over your eyes to blind you from the truth that in fact, everything is binary". – Aditya369 Jan 19 '11 at 22:07
I can't help it... I get to a certain time of night and the matrix quotes just slip in there. I hope it makes more sense over time and do check back in case anybody does know of such a C library (there are far more clever people than me on here, trust me). However, as I say, there is an existing solution for internationalisation that is great already. As for a bytebuffer, well, you tend to just malloc some memory, make sure there's enough size for it and you're done. If you really want to write abstractions for a byte-sized buffer manager, you could. – Ninefingers Jan 19 '11 at 22:22
And really do, if you have any further questions, drop by, search around and ask them if they've not been covered before. Try [c] my question or [java] myquestion in the search box. – Ninefingers Jan 19 '11 at 22:27
+1: tis is a really impressive post! – David Ann Jan 20 '11 at 16:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.