On Fri, Mar 12, 2010 at 2:56 PM, Paul Burba <ptburba_at_gmail.com> wrote:
> On Fri, Mar 12, 2010 at 5:38 AM, Julian Foad <julian.foad_at_wandisco.com> wrote:
>> On Thu, 2010-03-11, Greg Stein wrote:
>>> On Thu, Mar 11, 2010 at 02:54, Â <julianfoad_at_apache.org> wrote:
>> [...]
>>> > +++ subversion/trunk/subversion/libsvn_subr/mergeinfo.c Thu Mar 11 07:54:16 2010
>>> >...
>>> > @@ -1988,13 +1963,9 @@ svn_mergeinfo__filter_mergeinfo_by_range
>>> > Â Â Â Â Â Â {
>>> > Â Â Â Â Â Â Â apr_array_header_t *new_rangelist;
>>> >
>>> > - Â Â Â Â Â Â Â if (include_range)
>>> > - Â Â Â Â Â Â Â Â SVN_ERR(svn_rangelist_intersect(&new_rangelist, rangelist,
>>> > - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â filter_rangelist, FALSE,
>>> > - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â result_pool));
>>> > - Â Â Â Â Â Â Â else
>>> > - Â Â Â Â Â Â Â Â SVN_ERR(svn_rangelist_remove(&new_rangelist, filter_rangelist,
>>> > - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â rangelist, FALSE, result_pool));
>>> > + Â Â Â Â Â Â Â SVN_ERR(rangelist_intersect_or_remove(
>>> > + Â Â Â Â Â Â Â Â Â Â Â Â &new_rangelist, filter_rangelist, rangelist,
>>> > + Â Â Â Â Â Â Â Â Â Â Â Â ! include_range, FALSE, result_pool));
>>>
>>> The intersect call had (rangelist, filter_rangelist), but the remove
>>> is opposite that. Yet the internal function passes along the one,
>>> consistent ordering. Are you sure that is not a problem?
>>>
>>> IOW, they all end up at rangelist_intersect_or_remove(), but you have
>>> changed the order for the include_range==TRUE (intersect) case.
>>
>> I'm confident that's correct: intersection is supposed to be
>> symmetrical. Â I've just had another look, although haven't followed
>> completely through the logic of rangelist_intersect_or_remove() to check
>> for symmetry.
>>
>> Paul, could you review this change for me, please?
>
> Hi Julian and Greg,
>
> You are both right...which is a problem!
>
> The order of RANGELIST1 and RANGELIST2 *shouldn't* matter, and
> presently it does not when CONSIDER_INHERITANCE is TRUE. Â However, I
> just discovered that it can matter when CONSIDER_INHERITANCE is FALSE:
>
> Â Â WHITEBOARD Â ERASER Â CONSIDER Â Â DO_REMOVE Â *OUTPUT
> Â Â Â Â Â Â Â Â Â Â Â Â Â INHERITANCE
> Â Â ---------- Â ------ Â ----------- Â --------- Â -------
> 1) Â 1-100 Â Â Â 90-420* Â TRUE Â Â Â Â FALSE Â Â Â Empty Rangelist
> 2) Â 90-420* Â Â 1-100 Â Â TRUE Â Â Â Â FALSE Â Â Â Empty Rangelist
>
> 3) Â 90-420* Â Â 1-100* Â FALSE Â Â Â Â FALSE Â Â Â 90-100*
> 4) Â 1-100* Â Â Â 90-420* Â FALSE Â Â Â Â FALSE Â Â Â 90-100*
>
> 5) Â 90-420 Â Â Â 1-100 Â Â FALSE Â Â Â Â FALSE Â Â Â 90-100
> 6) Â 1-100 Â Â Â 90-420 Â FALSE Â Â Â Â FALSE Â Â Â 90-100
>
> 7) Â 1-100 Â Â Â 90-420* Â FALSE Â Â Â Â FALSE Â Â Â 90-100
> 8) Â 90-420* Â Â 1-100 Â Â FALSE Â Â Â Â FALSE Â Â Â 90-100*
>
> The first two result in no intersection because non-inheritable
> revision *N isn't the same as inheritable revision N when considering
> inheritance.
>
> The next four results make sense too, we don't consider inheritance,
> but all the arguments and the resulting intersection have a uniform
> inheritance.
>
> The last two results are where things get sketchy and depend on the
> order of the arguments. Â The docstrings for svn_rangelist_intersect()
> both say the intersection should always be inheritable:
>
> Â "If @a consider_inheritance is FALSE then
> Â the ranges in @a *rangelist are always inheritable."
>
> Obviously that is not happening in 3), 4) or 8). Â As to whether 7) is
> wrong or 8) is wrong, well I think we'll all agree the inconsistency
> is bad, so either it should be
>
> 7) Â 1-100 Â Â Â 90-420* Â FALSE Â Â Â Â FALSE Â Â Â 90-100*
> 8) Â 90-420* Â Â 1-100 Â Â FALSE Â Â Â Â FALSE Â Â Â 90-100*
>
> or
>
> 7) Â 1-100 Â Â Â 90-420* Â FALSE Â Â Â Â FALSE Â Â Â 90-100
> 8) Â 90-420* Â Â 1-100 Â Â FALSE Â Â Â Â FALSE Â Â Â 90-100
>
> I think the latter is correct. Â I also think the docstring is wrong
> and that 3) and 4) demonstrate correct behavior.
>
> In all three cases we are saying we don't care about inheritance, so
> we allow a non-inheritable range to intersect with an inheritable
> range, I think the intersection should behave as if we used
> svn_rangelist_merge() to combine the two intersecting parts. Â That
> API, and svn_mergeinfo_merge() only result in non-inheritable
> mergeinfo if both parts are non-inheritable:
>
> Â * When intersecting rangelists for a path are merged, the inheritability of
> Â * the resulting svn_merge_range_t depends on the inheritability of the
> Â * operands. Â If two non-inheritable ranges are merged the result is always
> Â * non-inheritable, in all other cases the resulting range is inheritable.
> Â *
> Â * Â e.g. '/A: 1,3-4' Â merged with '/A: 1,3,4*,5' --> '/A: 1,3-5'
> Â * Â Â Â '/A: 1,3-4*' merged with '/A: 1,3,4*,5' --> '/A: 1,3,4*,5'
>
> I'm testing a patch right now that changes svn_rangelist_intersect()
> and svn_mergeinfo_intersect2() to behave this way. Â I definitely know
> of no part of the merge tracking logic that depends on the
> inconsistency between 7) and 8) and I don't recall any that relies on
> the intersection always being inheritable.
>
> Paul
In http://svn.apache.org/viewvc?view=revision&revision=923389 I fixed
the bug where the order of the rangelist arguments to
svn_rangelist_intersect() could produce different results. Now the
intersection of two ranges with different inheritance always results
in an inheritable rangelist, regardless of the order in which they are
passed.
I also changed the doc strings for svn_rangelist_intersect() and
svn_mergeinfo_intersect2() to reflect the existing behavior where the
resulting intersection of two non-inheritable ranges is also
non-inheritable, not inheritable as had been claimed.
So now everything is consistent: The intersection of two ranges is
only non-inheritable if both of the ranges are non-inheritable.
If necessary, we can have a discussion about whether this behavior
should be different, but making it consistent was a no-brainer first
step.
Paul
Received on 2010-03-15 20:01:37 CET