Re: Is this doable in MS C?
Tommy wrote:
Igor Tandetnik wrote:
Tommy <bad@reallybad.com> wrote:
But the only true variadic method is to go direct with va_list
traversal using a count or terminator method.
For example:
MY_MACRO(
count1, fmt1, ...,
count2, fmt2, ...,
count3, fmt3, ...,
.
.
countN, fmtN, ...,
NULL);
Could you show how you would actually implement such a macro? So that,
for example,
MY_MACRO(
2, "%d %f\n", 1, 2.0,
2, "%s %s\n", "hello", "world",
NULL);
prints
1 2.0
hello world
I can't with the macro because as I noted in my initial post:
I remember once coming across a similar need. If I recall,
the "design issues" was two folds:
- Not knowing exactly the true count of the arguments and types,
- Requiring a count as a previous or a terminator of some sort.
But if you go direct, you can solve it very easily:
void foo(int argc, ...)
{
va_list argptr;
va_start(argptr, argc);
const char *p = NULL;
while (argc && (p = va_arg(argptr,const char *))) {
vprintf_s( p, argptr );
while (argc--) va_arg(argptr, void *); // SEE NOTE1
argc = va_arg(argptr, int);
}
va_end(argptr);
}
#define MY_MACRO foo
MY_MACRO(
2, "%d %f\n", 1, 2.0,
2, "%s %s\n", "hello", "world",
NULL);
You devil. :-)
This is what I was referring to about not knowing the types. It
makes you understand why the RTE for all of the formatting logic is
HUGE, complex and massive kludge of parsing.
The problem overall, is not have a "type" with the va_list. Here, the
double takes 8 bytes here.
This could be solve if the output updated the pointer to argptr after
the call to:
vprintf_s( p, argptr );
So that this would not be necessary:
while (argc--) va_arg(argptr, void *); // SEE NOTE1
Unfortunately, the argptr is not updated, so you have to proper jump
to the end of the node in the list for the current format list. That
will require parsing of the format which defeats the purpose in this
fun exercise.
Change foo() to this FOR THIS MY_MACRO statement, to see the point:
void foo(int argc, ...)
{
va_list argptr;
va_start(argptr, argc);
const char *p = NULL;
int n = 0;
printf("argc => %d\n",argc);
printf("p%-3d => [%s]\n",++n, va_arg(argptr,const char *));
printf("p%-3d => [%d]\n",++n, va_arg(argptr,int));
printf("p%-3d => [%f]\n",++n, va_arg(argptr,double));
printf("p%-3d => [%d]\n",++n, va_arg(argptr,int));
printf("p%-3d => [%s]\n",++n, va_arg(argptr,const char *));
printf("p%-3d => [%s]\n",++n, va_arg(argptr,const char *));
printf("p%-3d => [%s]\n",++n, va_arg(argptr,const char *));
va_end(argptr);
}
In one one application, I actually created a OLE like VARIANT va_list
class to get around this. I was going to suggest this but it isn't
MACROS <g>
Other languages, like jscript, javascript, php are more keen with
function prototyping where you always know the argument count and
argument type.
You should see if a UNIX compile might be better here because based on
the headers for non X86 compiles, va_list is a typedef structure with
an point and offset. Maybe the offset can be used here. But under x86
it is just a pointer.
I have a number of code where I go direct, for example in this Text
Array class I use it to create a quick list:
class TTextArray {
public:
TTextArray(int n, ...) : Count(n), Text(NULL)
{
Text = new const char *[Count];
va_list s;
va_start(s, n);
for (int i = 0; i < Count; i++)
Text[i] = va_arg(s, const char *);
va_end(s);
}
~TTextArray()
{
if (Text) delete Text;
}
const char *operator [](int index);
private:
const int Count;
const char **Text;
};
const char *TTextArray::operator [](int index)
{
if (index < 0 || index >= Count) {
return "";
}
return Text[index];
}
Example usage:
TTextArray TerminalType(3, "Auto detect", "No color", "Color ansi");
TTextArray TextEditor(3, "Select, "Line editor", "screen editor");
TTextArray FileDisplay(4, "Single", "Double", "Full", "Ansi");
TTextArray HelpLevel(3, "Novice", "Regular", "Expert");
TTextArray Sex(3, "Not disclosed", "Male", "Female");
TTextArray FailedAction(3, "Allow", "Logoff", "Lockout");
--