vote up 0 vote down star

Hi,

Is there a wide character version of WSABUF structure in winsock?

I want to write Japanese data on the socket.

flag

36% accept rate

3 Answers

vote up 0 vote down

Probably not. You most likely need to convert your wide character string into some other format, such as UTF7 or something, and send that over the wire then convert back on the other side.

link|flag
that's too bad. looking at Unicode as the future, there should have been something to handle unicode data – Manav Sharma Mar 7 at 18:19
@Manav: UTF7 and UTF8 are Unicode; they're just not UTF16 (or UCS2). – Roger Lipscombe Jul 20 at 17:18
vote up 0 vote down

You'll need to treat WSABUF as a generic data buffer. "char" is used because C/C++ doesn't have a Byte type. A bit of C++ can fix your problem:

struct UnicodeBuf : WSABUF {
public:
  UnicodeBuf() { 
    len = 0; 
    buf = 0; 
  }
  UnicodeBuf(const wchar_t* str) {
    size_t chars = wcslen(str);
    len = sizeof(wchar_t) * (chars+1);
    buf = (char*)(new wchar_t[chars+1]);
    memcpy(buf, str, len);
  }
  ~UnicodeBuf() {
    delete [] buf;
  }
  // Add copy constructor and assignment operator...
};
link|flag
1  
that memcpy will not copy the whole string. It needs to be memcpy(buf, str, len*sizeof(wchar_t)). Also, that should be delete [] buf. Also, len should be set to the length in bytes for functions that operate on WSABUFs to work properly (just like the memcpy call). – Logan Capaldo Mar 7 at 18:38
vote up 0 vote down

As another answer states, WSABUF uses char * to represent bytes.

TCP provides a stream of bytes it's up to you to decide what those bytes consist of. So, as long as you're providing some kind of protocol framing so that you can read the correct amount of data at the far end, just cast your wide string to a char *.

If you were to follow your question through to its logical conclusion you'd next be asking where the WSABUF that supports PNG images is, or the WSABUF that supports your favourite data structure. It's up to you to translate the data that you have to a stream of bytes (which, in the case of a wide character string, is simply framing and casting).

link|flag

Your Answer

Get an OpenID
or

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