mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
testQEMUSchemaValidateDeprecated: Move to the top
Move the function to the top of the file so other functions placed towards the top will be able to reuse it. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
cf68184e74
commit
43e2c6544e
@ -29,6 +29,47 @@ struct testQEMUSchemaValidateCtxt {
|
||||
};
|
||||
|
||||
|
||||
static int
|
||||
testQEMUSchemaValidateDeprecated(virJSONValue *root,
|
||||
const char *name,
|
||||
struct testQEMUSchemaValidateCtxt *ctxt)
|
||||
{
|
||||
virJSONValue *features = virJSONValueObjectGetArray(root, "features");
|
||||
size_t nfeatures;
|
||||
size_t i;
|
||||
|
||||
if (!features)
|
||||
return 0;
|
||||
|
||||
nfeatures = virJSONValueArraySize(features);
|
||||
|
||||
for (i = 0; i < nfeatures; i++) {
|
||||
virJSONValue *cur = virJSONValueArrayGet(features, i);
|
||||
const char *curstr;
|
||||
|
||||
if (!cur ||
|
||||
!(curstr = virJSONValueGetString(cur))) {
|
||||
virBufferAsprintf(ctxt->debug, "ERROR: features of '%s' are malformed", name);
|
||||
return -2;
|
||||
}
|
||||
|
||||
if (STREQ(curstr, "deprecated")) {
|
||||
if (ctxt->allowDeprecated) {
|
||||
virBufferAsprintf(ctxt->debug, "WARNING: '%s' is deprecated", name);
|
||||
if (virTestGetVerbose())
|
||||
g_fprintf(stderr, "\nWARNING: '%s' is deprecated\n", name);
|
||||
return 0;
|
||||
} else {
|
||||
virBufferAsprintf(ctxt->debug, "ERROR: '%s' is deprecated", name);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
testQEMUSchemaValidateRecurse(virJSONValue *obj,
|
||||
virJSONValue *root,
|
||||
@ -466,47 +507,6 @@ testQEMUSchemaValidateAlternate(virJSONValue *obj,
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
testQEMUSchemaValidateDeprecated(virJSONValue *root,
|
||||
const char *name,
|
||||
struct testQEMUSchemaValidateCtxt *ctxt)
|
||||
{
|
||||
virJSONValue *features = virJSONValueObjectGetArray(root, "features");
|
||||
size_t nfeatures;
|
||||
size_t i;
|
||||
|
||||
if (!features)
|
||||
return 0;
|
||||
|
||||
nfeatures = virJSONValueArraySize(features);
|
||||
|
||||
for (i = 0; i < nfeatures; i++) {
|
||||
virJSONValue *cur = virJSONValueArrayGet(features, i);
|
||||
const char *curstr;
|
||||
|
||||
if (!cur ||
|
||||
!(curstr = virJSONValueGetString(cur))) {
|
||||
virBufferAsprintf(ctxt->debug, "ERROR: features of '%s' are malformed", name);
|
||||
return -2;
|
||||
}
|
||||
|
||||
if (STREQ(curstr, "deprecated")) {
|
||||
if (ctxt->allowDeprecated) {
|
||||
virBufferAsprintf(ctxt->debug, "WARNING: '%s' is deprecated", name);
|
||||
if (virTestGetVerbose())
|
||||
g_fprintf(stderr, "\nWARNING: '%s' is deprecated\n", name);
|
||||
return 0;
|
||||
} else {
|
||||
virBufferAsprintf(ctxt->debug, "ERROR: '%s' is deprecated", name);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
testQEMUSchemaValidateRecurse(virJSONValue *obj,
|
||||
virJSONValue *root,
|
||||
|
Loading…
Reference in New Issue
Block a user