[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH OSSTEST 5/5 v2] mg-show-flight-runvars: recurse on buildjobs upon request
Ian Campbell writes ("[PATCH OSSTEST 5/5 v2] mg-show-flight-runvars: recurse on buildjobs upon request"): > By looping over @rows looking for buildjobs runvars and adding those > jobs to the output until nothing changes. > > The output is resorted by runvar name which is the desired default > behaviour. As usual can be piped to sort(1) to sort by flight+job. ... > +if ($recurse) { > + foreach my $row (@rows) { > + next unless $row->[1] =~ m/^(?:.*_)?([^_]*)buildjob$/; > + next if $jobs{$row->[2]}; This does the deduping based on $row->[2] which is the runvar value. But the same job might be referred to by different runvar values. I think this means that you might report the same job twice. If 1234.foo buildjob wombat 1234.bar buildjob 1234.wombat then you dump 1234.wombat twice. > + my ($oflight, $ojob) = flight_otherjob($tflight, $row->[2]); Also the place you set $jobs{} is somewhat wrong. If there is a job with no rows you can process it twice (harmlessly, I think, as it happens). So I think you want next if $jobs{$oflight,$ojob}++; > + collect($oflight, "job = ?", $ojob); > + > + # collect() appends to @rows, so we don't need any special > + # handling to pickup anything which was newly added. I don't think this is true. Or at least, it happens to be true, but my copy of the FM says: If any part of LIST is an array, "foreach" will get very confused if you add or remove elements within the loop body, for example with "splice". So don't do that. AIUI you're avoiding actual recursion, inside collect()'s row loop, to avoid trying to have one SQL query for each nesting level. It might be worth mentioning that somewhere. Maybe you should have the foreach use an explicit row index. Ian. _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |