I have a BSTR object that I would like to convert to copy to a wchar__t object. The tricky thing is the length of the BSTR object could be anywhere from a few kilobytes to a few hundred kilobytes. Is there an efficient way of copying the data across? I know I could just declare a wchar_t array and alway allocate the maximum possible data it would ever need to hold. However, this would mean allocating hundreds of kilobytes of data for something that potentially might only require a few kilobytes. Any suggestions?
|
|
First, you might not actually have to do anything at all, if all you need to do is read the contents. A BSTR type is a pointer to a null-terminated wchar_t array already. In fact, if you check the headers, you will find that BSTR is essentially defined as:
So, the compiler can't distinguish between them, even though they have different semantics. There is are two important caveat.
If you have a fair amount of control of the source of the BSTR, and can guarantee that the BSTR does not have embedded NULLs, you can read from the BSTR as if it was a wchar_t and use conventional string methods (wcscpy, etc) to access it. If not, your life gets harder. You will have to always manipulate your data as either more BSTRs, or as a dynamically-allocated array of wchar_t. Most string-related functions will not work correctly. Let's assume you control your data, or don't worry about NULLs. Let's assume also that you really need to make a copy and can't just read the existing BSTR directly. In that case, you can do something like this:
If you are using class wrappers for your BSTR, the wrapper should have a way to call SysStringLen() for you. For example:
UPDATE: This is a good article on the subject by someone far more knowledgeable than me: |
||||||||
|
|
|
One thing to keep in mind is that BSTR strings can (and do in practice) contan embedded nulls - in other words a null does not mean the end of the string. |
||
|
|
|
|
There is never any need for conversion. A This means you can pass a In Visual Studio 2008 you may get a compiler error, because |
||||||
|
|
|
Use ATL, and CStringT then you can just use the assignment operator. Or you can use the USES_CONVERSION macros, these use heap alloc, so you will be sure that you won't leak memory. |
||
|
|
|
|
BSTR objects contain a length prefix, so finding out the length is cheap. Find out the length, allocate a new array big enough to hold the result, process into that, and remember to free it when you're done. |
||
|
|
