与XPath一起使用RaptureXML时泄漏

时间:2012-05-07 18:19:04

标签: ios xml xcode parsing memory-leaks

我正在使用RaptureXML来解析描述不同过滤器(具有相当复杂的结构)的XML文件,然后我将其创建为Obj-C对象。一切正常!

但是,Instruments检测到libxml2.2.dylib中的几个泄漏(见截图),我无法在网上找到任何可以帮助我解决这个问题的内容。

这是Leaks Instrument屏幕截图的链接(我不能将它发布到sof ...)

http://imageshack.us/photo/my-images/850/bildschirmfoto20120507ud.png/

以下是我用于解析xml文件的代码:

RXMLElement *rootXML = [RXMLElement elementFromXMLData:xmlDataFile];

FilterLogic_Management *filterManager = [[FilterLogic_Management alloc] init];

NSString *queryPath = [NSString stringWithFormat:@"//%@[@id=%i]/filterSettings/fqFilter", FilterTypeAsString, FilterNum];

//WHAT AM I DOING? Consider two filter types: Distance and Price. Each filter type consists of different thresholds (e.g., <8 $;  8 - 15 $; > 15 $). All of these values are in an XML file which I need to parse and translate into my "real" filters that I use in the App.

//Step 1: Iterate over all FilterTypes to find the entry in the XML file that describes the currently selected FilterType and its FilterNum

[rootXML queryPath usingBlock:^(RXMLElement *filterElement) {

    NSMutableArray *currentThresholds = [[NSMutableArray alloc] init];

    float currentWeight = [filterElement attribute:@"weightFactor"].floatValue; //e.g., 1.0           
    NSString *currentMarkerUnit = [filterElement attribute:@"markerUnit"]; //e.g., $ or €
    NSString *currentFilterType = [filterElement attribute:@"groupType"]; //e.g., "Distance" or "Price"



    //Step 2: Iterate over all Filters for current FilterType <- a FilterType consists of an array of Filters...


    [filterElement iterate:@"filter" usingBlock: ^(RXMLElement *filter) {
        NSString *filterType = [filter attribute:@"filterType"];

        if(filterType != LogicalConjunction){
            //Step 3-a: Create threshold with more than one threshold

            float threshold = [filter attribute:@"threshold"].floatValue;

            FilterLogic_FilterThreshold *newThreshold = [FilterLogic_FilterThreshold FilterThresholdMakeWithOneThreshold:threshold FilterWrapperType:filterTypeAsEnum MarkerUnit:currentMarkerUnit IsInitiallyActive:isInitiallyActive];

            [currentThresholds addObject:newThreshold];
        }else{
            //Step 3-b: Create threshold with multiple thresholds
            NSLog(@"Creating filter with multiple thresholds");

            FilterLogic_FilterThreshold *logicalThreshold = [FilterLogic_FilterThreshold FilterThresholdMakeLogicalThreshold:filterTypeAsEnum MarkerUnit:currentMarkerUnit IsInitiallyActive:isInitiallyActive];

            NSMutableArray *subFilterThresholds = [[NSMutableArray alloc] init];
            [filter iterate:@"filter" usingBlock: ^(RXMLElement *subFilter) {
                //Step-3b-x Iterate over sub-thresholds
                float threshold = [subFilter attribute:@"threshold"].floatValue;

                FilterLogic_FilterThreshold *subFilterThreshold = [FilterLogic_FilterThreshold FilterThresholdMakeWithOneThreshold:threshold];


                [subFilterThresholds addObject:subFilterThreshold];

            }];
            if([subFilterThresholds count]>1)
            {
                FilterLogic_FilterThreshold *newThreshold = [FilterLogic_FilterThreshold FilterThresholdMakeFromLowerFilterThreshold:[subFilterThresholds objectAtIndex:0] UpperFilterThreshold:[subFilterThresholds objectAtIndex:1] LogicalFilterThreshold:logicalThreshold];

                [currentThresholds addObject:newThreshold];
            }

        }
    }];    

    FilterLogic_Filter *newFilter = [[FilterLogic_Filter alloc] initFilterWithType:FilterTypeAsEnum ArrayOfFilterLogic_FilterThresholds:currentThresholds Weight:currentWeight InitiallyActive:YES];



    [filterManager registerFilterWrapper:newFilter];

}];

//thought that these commands might help... it seems they don't. Probably misusing them!
xmlCleanupMemory(); 
xmlCleanupParser();

//if([filterManager countOfFilters]>0){
    NSLog(@"Filter parsing done!");
    return filterManager;

非常感谢您提供任何帮助/建议!!

1 个答案:

答案 0 :(得分:0)

尝试在@autoreleasepool {...}中使用整个queryPath usingBlock位。只是一个想法。