-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdoc_ref.c
364 lines (310 loc) · 9.69 KB
/
doc_ref.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
/**
* @file doc_ref.c
*/
/*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either vers* ion 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <string.h>
#include "debug.h"
#include "config.h"
#include "gl_list.h"
/* for difseq */
#include <limits.h>
#include <stdbool.h>
#include "minmax.h"
#include "print.h"
#include "doc_elt.h"
#include "doc_ref.h"
bool
doc_reflist_isupdated (gl_list_t reflist)
{
gl_list_iterator_t i;
i = gl_list_iterator (reflist);
doc_ref *ref = NULL;
bool updated = false;
while (!updated
&& gl_list_iterator_next (&i, (const void **) &ref, NULL))
{
/*
if (!doc_ref_contains (ref, ANC_SRC))
{
updated = true;
break;
}
*/
updated = doc_elt_isupdated (ref);
}
debug_msg (DOC, 4, "reflist updated = %d\n", updated);
gl_list_iterator_free (&i);
return updated;
}
void
doc_reflist_print (gl_list_t reflist, void *context, doc_stream *out)
{
/*
* copy the mave context to allow nested movement conflicts
*/
print_ctxt * print_ctxt = context;
conflict_state parent_move_state = print_ctxt_get_movement_state (print_ctxt);
print_ctxt_set_movement_state (print_ctxt, no_conflict);
size_t parent_level = print_ctxt->current_level;
debug_msg (DOC, 5, "Printing element list\n");
gl_list_iterator_t i;
i = gl_list_iterator (reflist);
doc_ref *ref;
doc_elt *elt;
while (gl_list_iterator_next (&i, (const void **) &ref, NULL))
{
debug_msg (DOC, 4, "Printing element\n");
elt = doc_ref_get_elt (ref);
print_ctxt->current_level = parent_level;
doc_elt_print (ref, context, out);
enter_movement_conflict (print_ctxt, no_conflict, "Moved\n", out);
}
print_ctxt_set_movement_state (print_ctxt, parent_move_state);
debug_msg (DOC, 5, "Finished printing element\n");
gl_list_iterator_free (&i);
return;
}
void
doc_reflist_note_insert (gl_list_t reflist, merge_ctxt *ctxt)
{
debug_msg (DOC, 5, "Inserting element list\n");
gl_list_iterator_t i;
i = gl_list_iterator (reflist);
doc_ref *ref;
doc_elt *elt;
while (gl_list_iterator_next (&i, (const void **) &ref, NULL))
{
elt = doc_ref_get_elt (ref);
doc_elt_note_insert (ref, ctxt);
}
gl_list_iterator_free (&i);
return;
}
void
doc_reflist_note_delete(gl_list_t reflist, merge_ctxt *ctxt)
{
debug_msg (DOC, 5, "Deleting element list\n");
gl_list_iterator_t i;
i = gl_list_iterator (reflist);
doc_ref *ref;
doc_elt *elt;
while (gl_list_iterator_next (&i, (const void **) &ref, NULL))
{
elt = doc_ref_get_elt (ref);
doc_elt_note_delete (ref, ctxt);
}
gl_list_iterator_free (&i);
return;
}
struct context;
typedef enum mapped_state
{
state_mapped = 0,
state_unmapped = 1
} mapped_state;
#define OFFSET int
#undef USE_HEURISTIC
#undef ELEMENT
#undef EQUAL
static void note_delete (struct context *ctxt, OFFSET xoff);
static void note_insert (struct context *ctxt, OFFSET yoff);
static int is_related (struct context *ctxt, OFFSET xoff, OFFSET yoff);
#define EXTRA_CONTEXT_FIELDS \
mapped_state *a_state; \
mapped_state *d_state; \
gl_list_t ancestor; \
gl_list_t descendant; \
merge_ctxt *merge_ctxt;
#define NOTE_DELETE(ctxt, xoff) note_delete (ctxt, xoff)
#define NOTE_INSERT(ctxt, yoff) note_insert (ctxt, yoff)
#define XVECREF_YVECREF_EQUAL(ctxt, xoff, yoff) is_related (ctxt, xoff, yoff)
#include "diffseq.h"
#define OFFSET int
static void
note_delete (struct context *ctxt, OFFSET xoff)
{
debug_msg (MERGE, 3, "deleting %d\n", xoff);
ctxt->a_state[xoff] = state_unmapped;
return;
}
static void
note_insert (struct context *ctxt, OFFSET yoff)
{
debug_msg (MERGE, 3, "inserting %d\n", yoff);
ctxt->d_state[yoff] = state_unmapped;
return;
}
static int
is_related (struct context *ctxt, OFFSET xoff, OFFSET yoff)
{
doc_ref *a_ref = (doc_ref * )gl_list_get_at (ctxt->ancestor, xoff);
doc_ref *d_ref = (doc_ref *)gl_list_get_at (ctxt->descendant, yoff);
int result = doc_elt_isrelated (a_ref, d_ref, ctxt->merge_ctxt);
debug_msg (MERGE, 4, "comparing (%d, %d)=%d\n", xoff, yoff, result);
return result;
}
void
doc_reflist_merge (doc_ref *parent, gl_list_t ancestor, gl_list_t descendant, merge_ctxt *m_ctxt)
{
/* Clone the merge context */
merge_ctxt new_m_ctxt = *m_ctxt;
// memcpy (&new_m_ctxt, m_ctxt, sizeof (merge_ctxt));
new_m_ctxt.strategy = LOCAL_LIST_MERGE;
/* First, create a mapped_state for every element that will be mapped.
* Compare the two strigs marking mapped and unmapped nodes. Then,
* merge the two lists, combining mapped elements ino a sigle element.
*/
size_t a_size = gl_list_size (ancestor);
size_t d_size = gl_list_size (descendant);
/* Create a mapped state for every element. Must initialize to 0. */
mapped_state *a_state = calloc (a_size, sizeof (mapped_state));
mapped_state *d_state = calloc (d_size, sizeof (mapped_state));
debug_msg (MERGE, 3, "Start merge, sizes %d and %d\n", a_size, d_size);
/* Send the elements through compareseq. compareseq will leave
* add/remove notes in the mapped_states.
*/
/* prepare the compareseq context */
struct context ctxt;
/* Add the caller data */
ctxt.d_state = d_state;
ctxt.a_state = a_state;
ctxt.ancestor = ancestor;
ctxt.descendant = descendant;
ctxt.merge_ctxt = &new_m_ctxt;
/* Allocate data for the algorithm to use*/
size_t diags = a_size + d_size + 3;
void *mem = malloc (diags * (2 * sizeof (OFFSET)));
ctxt.fdiag = mem;
ctxt.bdiag = ctxt.fdiag + diags;
ctxt.fdiag += d_size + 1;
ctxt.bdiag = ctxt.fdiag + diags;
/* run a diffseq on the elements */
compareseq (0, /* children index lower bound */
a_size, /* children index upper bound */
0, /* children index lower bound */
d_size, /* children index upper bound */
1, /* find optimal solution */
&ctxt); /* difseq context created above */
debug_msg (MERGE, 3, "Finish compareseq\n");
free (mem);
/*
* Create the mappings and update the merge_tree.
*
* go through the list in the end and
* - when there is a 'matched' nodes
* - delete the matched elements delta, mark a 'change' in the mapping,
* - point the mapping to the element
* - when there is an insert:
* - add the dnode at that point
* - when there is a delete:
* - mark it in the mapping
*/
int a_index = 0; /* # of checked elt's in *tree list */
int d_index = 0;
int inserted = 0; /* number of nodes inserted into the ancestor
tree. Used to make sure the index stays
correct */
int next = 0; /* between two inserted nodes, which one is next */
while ((a_index != a_size)
|| (d_index != d_size))
{
#if 0
/* If they are unmapped, pick the order to put them in the list */
if ((d_index != d_size) &&
(d_state[d_index] == state_unmapped) &&
(a_index != a_size) &&
(a_state[a_index-inserted] == state_unmapped))
{
/**
* @todo replace this with a function that lets the parent decide the order
*/
if (0)
{
next = 1;
}
else
{
next = 2;
}
}
else
#endif
if ((d_index != d_size)
&& (d_state[d_index] == state_unmapped))
{
next = 1;
}
else if ((a_index != a_size)
&& (a_state[a_index-inserted] == state_unmapped))
{
next = 2;
}
else
{
/* both are mapped */
next = 0;
}
if (next == 1)
{
/* Insert an unmatched node */
debug_msg (MERGE, 3, "Inserting node d_index=%d\n", d_index);
doc_ref * d_ref = (doc_ref *) gl_list_get_at (descendant, d_index);
gl_list_nx_add_at (ancestor, a_index, (void *) d_ref);
/* check for a circular conflict */
//doc_ref_set_parent (d_ref, parent);
/* this next line should not be necessary */
//doc_ref_check_for_circular_conflict (d_ref);
//mark_insert_children ();
doc_elt_note_insert (d_ref, &new_m_ctxt);
a_index++;
a_size++;
inserted++;
d_index++;
}
else if (next == 2)
{
/* Delete an unmatched node */
debug_msg (MERGE, 3, "Removing node a_index=%d\n", a_index);
doc_ref * a_ref = (doc_ref *) gl_list_get_at (ancestor, a_index);
// mark_remove_children (m_child, src);
doc_elt_note_delete (a_ref, &new_m_ctxt);
a_index++;
}
else if ((a_index != a_size) && (d_index != d_size))
{
/* Match and merge matched nodes */
debug_msg (MERGE, 3, "Matching node\n");
doc_ref * a_ref = (doc_ref *) gl_list_get_at (ancestor, a_index);
doc_ref * d_ref = (doc_ref *) gl_list_get_at (descendant, d_index);
assert ((a_state[a_index-inserted] == state_mapped) &&
(d_state[d_index] == state_mapped));
/* set the document source of the doc_ref to the combined sources */
doc_ref_add_src (a_ref, doc_ref_get_src (d_ref));
/* get the element to merge the content and children */
doc_elt_merge (a_ref, d_ref, &new_m_ctxt);
/* make the doc_refs point to the same element */
doc_ref_set_elt (d_ref, doc_ref_get_elt (a_ref) );
//doc_ref_set_parent (d_ref, doc_ref_get_parent (a_ref));
a_index++;
d_index++;
}
}
free (a_state);
free (d_state);
return;
}