mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
QError: Introduce qerror_format()
Will be used by new error propagation framework to convert Error objects into human-readable form. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
a12eeaaa4f
commit
87c2f59166
2 changed files with 16 additions and 0 deletions
15
qerror.c
15
qerror.c
|
@ -400,6 +400,21 @@ static QString *qerror_format_desc(QDict *error,
|
|||
return qstring;
|
||||
}
|
||||
|
||||
QString *qerror_format(const char *fmt, QDict *error)
|
||||
{
|
||||
const QErrorStringTable *entry = NULL;
|
||||
int i;
|
||||
|
||||
for (i = 0; qerror_table[i].error_fmt; i++) {
|
||||
if (strcmp(qerror_table[i].error_fmt, fmt) == 0) {
|
||||
entry = &qerror_table[i];
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return qerror_format_desc(error, entry);
|
||||
}
|
||||
|
||||
/**
|
||||
* qerror_human(): Format QError data into human-readable string.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue