vote up 3 vote down star

Here's the code I want to speed up. It's getting a value from an ADO recordset and converting it to a char*. But this is slow. Can I skip the creation of the _bstr_t?

                _variant_t var = pRs->Fields->GetItem(i)->GetValue();

                if (V_VT(&var) == VT_BSTR)
                {
                    char* p = (const char*) (_bstr_t) var;
flag

76% accept rate
I would recommend doing some timings with the methods proposed here for confirmation. Use QueryPerformanceCounter and QueryPerformanceFrequency API's – PiNoYBoY82 Sep 23 '08 at 0:40

5 Answers

vote up 1 vote down check

The first 4 bytes of the BSTR contain the length. You can loop through and get every other character if unicode or every character if multibyte. Some sort of memcpy or other method would work too. IIRC, this can be faster than W2A or casting (LPCSTR)(_bstr_t)

link|flag
Worth a try. THanks. – Corey Trager Sep 23 '08 at 1:12
1  
This is a crazy suggestion. What happens if the BSTR contains wide characters? You'll just corrupt the data. – 1800 INFORMATION Sep 23 '08 at 2:00
If you know for sure what your dataset is, then no issue. You sacrifice flexibility for speed. – PiNoYBoY82 Sep 23 '08 at 3:14
Agree with PiNoYBoY82, it's a hack, but it works when planets align in a certain way. – Constantin Sep 25 '08 at 11:45
The characters are ansi. For me, this hack works, is safe, and it's very fast. – Corey Trager Nov 9 '08 at 12:59
show 1 more comment
vote up 2 vote down

This creates a temporary on the stack:

USES_CONVERSION;
char *p=W2A(var.bstrVal);

This uses a slightly newer syntax and is probably more robust. It has a configurable size, beyond which it will use the heap so it avoids putting massive strings onto the stack:

char *p=CW2AEX<>(var.bstrVal);
link|flag
Well, I liked this approach in theory, except it's not really faster according to my timings. – Corey Trager Sep 22 '08 at 22:25
I'm surprised it isn't. Your original method requires the creation of an extra BSTR which has to go through the COM allocator. Both of mine just copy into a buffer onto the stack with conversion. If your original string is long enough, the overhead from the conversion is probably most significant – 1800 INFORMATION Sep 22 '08 at 22:28
My strings are short, but I have, oh, 150,000 thousand of them or so in a loop. That is I'm looping thru the rows and columns of an ADO recordset, converting the BSTRs to char*s, then pushing the char*s into an std::vector of std::strings. Takes about 3.2 seconds both ways. – Corey Trager Sep 22 '08 at 22:39
Well you still have to perform the conversion from unicode. Have you considered trying to avoid the conversion? Change your whole app to use unicode? Are you sure you have the right bottleneck? maybe it is the Getvalue() methods? – 1800 INFORMATION Sep 23 '08 at 0:27
1800 INFORMATION, thanks for the suggestions. There are other parts of my loop that contribute to the 3.2 seconds, but in this Stackoverflow question, I was focusing on just this narrow point. I'm not free to do things over, but I think going with unicode from end-to-end would have been better. – Corey Trager Sep 23 '08 at 1:10
show 2 more comments
vote up 2 vote down

Your problem (other than the possibility of a memory copy inside _bstr_t) is that you're converting the UNICODE BSTR into an ANSI char*.

You can use the USES_CONVERSION macros which perform the conversion on the stack, so they might be faster. Alternatively, keep the BSTR value as unicode if possible.

to convert:

USES_CONVERSION;
char* p = strdup(OLE2A(var.bstrVal));

// ...

free(p);

remember - the string returned from OLE2A (and its sister macros) return a string that is allocated on the stack - return from the enclosing scope and you have garbage string unless you copy it (and free it eventually, obviously)

link|flag
vote up -2 vote down

Ok, my C++ is getting a little rusty... but I don't think the conversion is your problem. That conversion doesn't really do anything except tell the compiler to consider _bstr_t a char*. Then you're just assigning the address of that pointer to p. Nothing's actually being "done."

Are you sure it's not just slow getting stuff from GetValue?

Or is my C++ rustier than I think...

link|flag
Actually there is a bunch of magic going on behind the scenes by the _bstr_t class to convert the string from unicode to ANSI – 1800 INFORMATION Sep 22 '08 at 21:38
That depends. I don't know the details of the _variant_t class, but if it defines an operator _bstr_t() then that's the function that will be called if a _variant_t to _bstr_t conversion is needed. – Ferruccio Sep 22 '08 at 21:38
Those aren't mere casts for the compiler. I know that from stepping through the code. Objects are being constructed. – Corey Trager Sep 22 '08 at 21:40
vote up 0 vote down

It seems to be working ok.

link|flag

Your Answer

Get an OpenID
or

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