tags:

views:

2670

answers:

4

We need to pass a format _TCHAR * string, and a number of char * strings into a function with variable-length args:

inline void FooBar(const _TCHAR *szFmt, const char *cArgs, ...) {
  //...
}

So it can be called like so:

char *foo = "foo";
char *bar = "bar";
LogToFileA(_T("Test %s %s"), foo, bar);

Obviously a simple fix would be to use _TCHAR instead of char, but we don't have that luxury unfortunately.

We need to use this with va_start, etc so we can format a string:

va_list args;
_TCHAR szBuf[BUFFER_MED_SIZE];

va_start(args, cArgs);
_vstprintf_s(szBuf, BUFFER_MED_SIZE, szFmt, args);
va_end(args);

Unfortunately we cannot use this because it give us this error:

Unhandled exception at 0x6a0d7f4f (msvcr90d.dll) in foobar.exe:
0xC0000005: Access violation reading location 0x2d86fead.

I'm thinking we need to convert our char * to _TCHAR * - but how?

+1  A: 

Usually it looks like the following:

char *foo = "foo";
char *bar = "bar";
#ifdef UNICODE
LogToFileW( L"Test %S %S", foo, bar); // big S
#else
LogToFileA( "Test %s %s", foo, bar);
#endif

Your question is not completely clear. How your function is implemented and how do you use it?

Kirill V. Lyadvinsky
Use %hs or %hS instead of %s and %S. That will force char* in both Ansi and Unicode. Then you can remove the check for UNICODE.
Remy Lebeau - TeamB
A: 

this is something I have used before to convert a TCHAR to char, hope it helps, although I wasn't really looking for optimization, so it's not the fastest way.. but it worked!

    TCHAR tmp[255];
::GetWindowText(hwnd, tmp, 255);
std::wstring s = tmp;

//convert from wchar to char
const wchar_t* wstr = s.c_str();
size_t wlen = wcslen(wstr) + 1;
char newchar[100];
size_t convertedChars = 0;
wcstombs_s(&convertedChars, newchar, wlen, wstr, _TRUNCATE);
David Menard
A: 

Use %hs or %hS instead of %s. That will force the parameters to be interpretted as char* in both Ansi and Unicode versions of printf()-style functions, ie:

inline void LogToFile(const _TCHAR *szFmt, ...)
{  
  va_list args;
  TCHAR szBuf[BUFFER_MED_SIZE];

  va_start(args, szFmt);
  _vstprintf_s(szBuf, BUFFER_MED_SIZE, szFmt, args);
  va_end(args);
}  

{
  char *foo = "foo"; 
  char *bar = "bar"; 
  LogToFile(_T("Test %hs %hs"), foo, bar); 
}
Remy Lebeau - TeamB
A: 

Here was my solution - I welcome suggestions for improvement!

inline void FooBar(const _TCHAR *szFmt, const char *cArgs, ...) {

    va_list args;
    _TCHAR szBuf[BUFFER_MED_SIZE];

    // Count the number of arguments in the format string.
    const _TCHAR *at = _tcschr(szFmt, '%');
    int argCount = 0;
    while(at) {
     argCount++;
     at = _tcschr(at + 1, '%');
    }

    CA2W *ca2wArr[100];
    LPWSTR szArgs[100];
    va_start(args, cArgs);
    for (int i = 1; i < argCount + 1; i++) {
     CA2W *ca2w = new CA2W(cArgs);
     szArgs[i] = ca2w->m_psz;
     ca2wArr[i] = ca2w;
     cArgs = va_arg(args, const char *);
    }
    va_end(args);

    // Use the new array we just created (skips over first element).
    va_start(args, szArgs[0]);
    _vstprintf_s(szBuf, BUFFER_MED_SIZE, szFmt, args);
    va_end(args);

    // Free up memory used by CA2W objects.
    for (int i = 1; i < argCount + 1; i++) {
     delete ca2wArr[i];
    }

    // ... snip ... - code that uses szBuf
}
nbolton
Your loop to count arguments does not allow for "%%" literals, and your use of va_arg() does not allow for parameters that are larger than 32-bit. Besides, since _vstprintf_s() already supports both Ansi and Unicode, there is no need for such elaborate code to begin with. Was there a problem with the code I gave you earlier?
Remy Lebeau - TeamB
Ah you're correct about the counter. Regarding your code, yes this would work fine I assume, and we're going to use this for NEW code that we implement, however for existing (flawed) usages we must use the temporary hack function in my answer.
nbolton