text
stringlengths 0
14.1k
|
|---|
getArray(envP, formatP, ')', argsP, valPP);
|
if (!envP->fault_occurred) {
|
XMLRPC_ASSERT(**formatP == ')');
|
(*formatP)++; /* Skip over closing parenthesis */
|
}
|
break;
|
case '{':
|
getStruct(envP, formatP, '}', argsP, valPP);
|
if (!envP->fault_occurred) {
|
XMLRPC_ASSERT(**formatP == '}');
|
(*formatP)++; /* Skip over closing brace */
|
}
|
break;
|
default: {
|
const char *const badCharacter = xmlrpc_makePrintableChar(
|
formatChar);
|
xmlrpc_env_set_fault_formatted(
|
envP, XMLRPC_INTERNAL_ERROR,
|
""Unexpected character '%s' in format string"", badCharacter);
|
xmlrpc_strfree(badCharacter);
|
}
|
}
|
}
|
void
|
xmlrpc_build_value_va(xmlrpc_env *const envP,
|
const char *const format,
|
va_list const args,
|
xmlrpc_value **const valPP,
|
const char **const tailP) {
|
XMLRPC_ASSERT_ENV_OK(envP);
|
XMLRPC_ASSERT(format != NULL);
|
if (strlen(format) == 0)
|
xmlrpc_faultf(envP, ""Format string is empty."");
|
else {
|
va_listx currentArgs;
|
const char *formatCursor;
|
init_va_listx(¤tArgs, args);
|
formatCursor = &format[0];
|
getValue(envP, &formatCursor, ¤tArgs, valPP);
|
if (!envP->fault_occurred)
|
XMLRPC_ASSERT_VALUE_OK(*valPP);
|
*tailP = formatCursor;
|
}
|
}
|
xmlrpc_value *
|
xmlrpc_build_value(xmlrpc_env *const envP,
|
const char *const format,
|
...) {
|
va_list args;
|
xmlrpc_value *retval;
|
const char *suffix;
|
va_start(args, format);
|
xmlrpc_build_value_va(envP, format, args, &retval, &suffix);
|
va_end(args);
|
if (!envP->fault_occurred) {
|
if (*suffix != '\0')
|
xmlrpc_faultf(envP, ""Junk after the format specifier: '%s'. ""
|
""The format string must describe exactly ""
|
""one XML-RPC value ""
|
""(but it might be a compound value ""
|
""such as an array)"",
|
suffix);
|
if (envP->fault_occurred)
|
xmlrpc_DECREF(retval);
|
}
|
return retval;
|
}
|
/* Copyright (C) 2001 by First Peer, Inc. All rights reserved.
|
** Copyright (C) 2001 by Eric Kidd. All rights reserved.
|
**
|
** Redistribution and use in source and binary forms, with or without
|
** modification, are permitted provided that the following conditions
|
** are met:
|
** 1. Redistributions of source code must retain the above copyright
|
** notice, this list of conditions and the following disclaimer.
|
** 2. Redistributions in binary form must reproduce the above copyright
|
** notice, this list of conditions and the following disclaimer in the
|
** documentation and/or other materials provided with the distribution.
|
** 3. The name of the author may not be used to endorse or promote products
|
** derived from this software without specific prior written permission.
|
**
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.