2 * lcs.c : routines for creating an lcs
4 * ====================================================================
5 * Copyright (c) 2000-2004 CollabNet. All rights reserved.
7 * This software is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at http://subversion.tigris.org/license-1.html.
10 * If newer versions of this license are posted there, you may use a
11 * newer version instead, at your option.
13 * This software consists of voluntary contributions made by many
14 * individuals. For exact contribution history, see the revision
15 * history and logs, available at http://subversion.tigris.org/.
16 * ====================================================================
21 #include <apr_pools.h>
22 #include <apr_general.h>
28 * Calculate the Longest Common Subsequence between two datasources.
29 * This function is what makes the diff code tick.
31 * The LCS algorithm implemented here is described by Sun Wu,
32 * Udi Manber and Gene Meyers in "An O(NP) Sequence Comparison Algorithm"
36 typedef struct svn_diff__snake_t svn_diff__snake_t
;
38 struct svn_diff__snake_t
42 svn_diff__position_t
*position
[2];
45 static APR_INLINE
void
46 svn_diff__snake(apr_off_t k
,
47 svn_diff__snake_t
*fp
,
49 svn_diff__lcs_t
**freelist
,
52 svn_diff__position_t
*start_position
[2];
53 svn_diff__position_t
*position
[2];
55 svn_diff__lcs_t
*previous_lcs
;
57 /* The previous entry at fp[k] is going to be replaced. See if we
58 * can mark that lcs node for reuse, because the sequence up to this
59 * point was a dead end.
68 previous_lcs
= lcs
->next
;
69 lcs
->next
= *freelist
;
74 if (fp
[k
- 1].y
+ 1 > fp
[k
+ 1].y
)
76 start_position
[0] = fp
[k
- 1].position
[0];
77 start_position
[1] = fp
[k
- 1].position
[1]->next
;
79 previous_lcs
= fp
[k
- 1].lcs
;
83 start_position
[0] = fp
[k
+ 1].position
[0]->next
;
84 start_position
[1] = fp
[k
+ 1].position
[1];
86 previous_lcs
= fp
[k
+ 1].lcs
;
90 /* ### Optimization, skip all positions that don't have matchpoints
91 * ### anyway. Beware of the sentinel, don't skip it!
94 position
[0] = start_position
[0];
95 position
[1] = start_position
[1];
97 while (position
[0]->node
== position
[1]->node
)
99 position
[0] = position
[0]->next
;
100 position
[1] = position
[1]->next
;
103 if (position
[1] != start_position
[1])
108 *freelist
= lcs
->next
;
112 lcs
= apr_palloc(pool
, sizeof(*lcs
));
115 lcs
->position
[idx
] = start_position
[0];
116 lcs
->position
[abs(1 - idx
)] = start_position
[1];
117 lcs
->length
= position
[1]->offset
- start_position
[1]->offset
;
118 lcs
->next
= previous_lcs
;
124 fp
[k
].lcs
= previous_lcs
;
129 previous_lcs
->refcount
++;
132 fp
[k
].position
[0] = position
[0];
133 fp
[k
].position
[1] = position
[1];
135 fp
[k
].y
= position
[1]->offset
;
139 static svn_diff__lcs_t
*
140 svn_diff__lcs_reverse(svn_diff__lcs_t
*lcs
)
142 svn_diff__lcs_t
*next
;
143 svn_diff__lcs_t
*prev
;
159 svn_diff__lcs(svn_diff__position_t
*position_list1
, /* pointer to tail (ring) */
160 svn_diff__position_t
*position_list2
, /* pointer to tail (ring) */
165 svn_diff__snake_t
*fp
;
169 svn_diff__lcs_t
*lcs
, *lcs_freelist
= NULL
;
171 svn_diff__position_t sentinel_position
[2];
173 /* Since EOF is always a sync point we tack on an EOF link
174 * with sentinel positions
176 lcs
= apr_palloc(pool
, sizeof(*lcs
));
177 lcs
->position
[0] = apr_pcalloc(pool
, sizeof(*lcs
->position
[0]));
178 lcs
->position
[0]->offset
= position_list1
? position_list1
->offset
+ 1 : 1;
179 lcs
->position
[1] = apr_pcalloc(pool
, sizeof(*lcs
->position
[1]));
180 lcs
->position
[1]->offset
= position_list2
? position_list2
->offset
+ 1 : 1;
185 if (position_list1
== NULL
|| position_list2
== NULL
)
188 /* Calculate length of both sequences to be compared */
189 length
[0] = position_list1
->offset
- position_list1
->next
->offset
+ 1;
190 length
[1] = position_list2
->offset
- position_list2
->next
->offset
+ 1;
191 idx
= length
[0] > length
[1] ? 1 : 0;
193 /* strikerXXX: here we allocate the furthest point array, which is
194 * strikerXXX: sized M + N + 3 (!)
196 fp
= apr_pcalloc(pool
,
197 sizeof(*fp
) * (apr_size_t
)(length
[0] + length
[1] + 3));
198 fp
+= length
[idx
] + 1;
200 sentinel_position
[idx
].next
= position_list1
->next
;
201 position_list1
->next
= &sentinel_position
[idx
];
202 sentinel_position
[idx
].offset
= position_list1
->offset
+ 1;
204 sentinel_position
[abs(1 - idx
)].next
= position_list2
->next
;
205 position_list2
->next
= &sentinel_position
[abs(1 - idx
)];
206 sentinel_position
[abs(1 - idx
)].offset
= position_list2
->offset
+ 1;
208 /* These are never dereferenced, only compared by value, so we
209 * can safely fake these up and the void* cast is OK.
211 sentinel_position
[0].node
= (void*)&sentinel_position
[0];
212 sentinel_position
[1].node
= (void*)&sentinel_position
[1];
214 d
= length
[abs(1 - idx
)] - length
[idx
];
216 /* k = -1 will be the first to be used to get previous
217 * position information from, make sure it holds sane
220 fp
[-1].position
[0] = sentinel_position
[0].next
;
221 fp
[-1].position
[1] = &sentinel_position
[1];
227 for (k
= -p
; k
< d
; k
++)
229 svn_diff__snake(k
, fp
, idx
, &lcs_freelist
, pool
);
232 for (k
= d
+ p
; k
>= d
; k
--)
234 svn_diff__snake(k
, fp
, idx
, &lcs_freelist
, pool
);
239 while (fp
[d
].position
[1] != &sentinel_position
[1]);
241 lcs
->next
= fp
[d
].lcs
;
242 lcs
= svn_diff__lcs_reverse(lcs
);
244 position_list1
->next
= sentinel_position
[idx
].next
;
245 position_list2
->next
= sentinel_position
[abs(1 - idx
)].next
;