[libvirt] [PATCH v2 1/4] util: xml: add virXMLPropertyCount

Cole Robinson crobinso at redhat.com
Mon May 16 14:51:31 UTC 2016


On 05/16/2016 10:39 AM, Peter Krempa wrote:
> On Sun, May 15, 2016 at 15:11:26 -0400, Cole Robinson wrote:
>> Returns an integer count of the number of XML properties an element
>> has. Will be used in future patches.
>> ---
>>  src/libvirt_private.syms |  1 +
>>  src/util/virxml.c        | 17 +++++++++++++++++
>>  src/util/virxml.h        |  1 +
>>  3 files changed, 19 insertions(+)
> 
> [...]
> 
>> diff --git a/src/util/virxml.c b/src/util/virxml.c
>> index 489bad8..86c021c 100644
>> --- a/src/util/virxml.c
>> +++ b/src/util/virxml.c
>> @@ -890,6 +890,23 @@ virXMLChildElementCount(xmlNodePtr node)
>>      return ret;
>>  }
>>  
>> +/* Returns the number of node's properties, or -1 on error.  */
>> +long
>> +virXMLPropertyCount(xmlNodePtr node)
>> +{
>> +    long ret = 0;
>> +    xmlAttrPtr cur = NULL;
>> +
>> +    if (!node || node->type != XML_ELEMENT_NODE)
>> +        return -1;
>> +    cur = node->properties;
>> +    while (cur) {
>> +        ret++;
>> +        cur = cur->next;
>> +    }
>> +    return ret;
>> +}
> 
> Function like this looks rather fishy. Checking according to the count
> of attributes is very likely to break. I'd rather see us checking
> explicitly that certain attributes are present or not.
> 
> I think this will make the code more fragile in the long therm with
> little gain in the short term.
> 

The pattern could be abused, but the way it's used in the next patch is to
check type=pci and count=1, so I don't see how that is fragile in this
context. Maybe if PCI addresses grew sub elements one day we might do the
wrong thing... I could add a check for that too.

IMO what _is_ fragile is trying to check

if (!domain &&
    !bus &&
    !slot &&
    !function &&
    !multi)
    info->auto_allocate = true;

since a new property added in the future may forget to update that list. Plus
the only clear place to put that is in PCIDeviceAddressParseXML which is used
in several other places that explicitly do _not_ deal with auto_allocate, so
it could warrant an extra argument to the function, or more logic at the call
sites to reject auto_allocate.

I'm certainly not in love with the approach but I can't think of anything
cleaner at the moment...

Thanks,
Cole




More information about the libvir-list mailing list