Fossil

Diff
Login

Differences From Artifact [e01dd37d11]:

To Artifact [b978e84c95]:


22
23
24
25
26
27
28
29
30

31
32

33
34
35
36






37
38
39
40
41
42
43
*******************************************************************************
**
** This module implements a 3-way merge
*/
#include "config.h"
#include "merge3.h"

#if 0
#define DEBUG(X)  X

#else
#define DEBUG(X)

#endif

/*
** Opcodes






*/
#define CPY 0
#define DEL 1
#define INS 2
#define END 3
#define UNK 4








|

>


>



|
>
>
>
>
>
>







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
*******************************************************************************
**
** This module implements a 3-way merge
*/
#include "config.h"
#include "merge3.h"

#if 1
#define DEBUG(X)  X
#define ISDEBUG 1
#else
#define DEBUG(X)
#define ISDEBUG 0
#endif

/*
** Opcodes.
**
** Values are important here.  The text_diff() function returns an array
** of triples of integers where within each triple, the 0 element is
** the number of lines to copy, the 1 element is the number of lines to
** delete and the 2 element is the number of lines to insert.  The CPY,
** DEL, and INS opcodes must correspond to these indices.
*/
#define CPY 0
#define DEL 1
#define INS 2
#define END 3
#define UNK 4

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
  z1 = &blob_buffer(pV1)[blob_tell(pV1)];
  z2 = &blob_buffer(pV2)[blob_tell(pV2)];
  for(i=0; z1[i]!='\n' && z1[i]==z2[i]; i++){}
  return z2[i]=='\n' || (z2[i]=='\r' && z2[i+1]=='\n')
          || (z1[i]=='\r' && z2[i]=='\n' && z1[i+1]=='\n');
}




/*
** Do a three-way merge.  Initialize pOut to contain the result.
**
** The merge is an edit against pV2.  Both pV1 and pV2 have a
** common origin at pPivot.  Apply the changes of pPivot ==> pV1
** to pV2.
**
** The return is 0 upon complete success. If any input file is binary,
** -1 is returned and pOut is unmodified.  If there are merge
** conflicts, the merge proceeds as best as it can and the number 
** of conflicts is returns
*/
int blob_merge(Blob *pPivot, Blob *pV1, Blob *pV2, Blob *pOut){
  int *aC1;  /* Changes from pPivot to pV1 */
  int *aC2;  /* Changes from pPivot to pV2 */
  int i1, i2;
  int op1, op2;


  int limit1, limit2;
  int inConflict = 0;
  int nConflict = 0;
  static const char zBegin[] = ">>>>>>>> BEGIN MERGE CONFLICT <<<<<<<<\n";

  static const char zEnd[]   = ">>>>>>>>> END MERGE CONFLICT <<<<<<<<<\n";






  aC1 = text_diff(pPivot, pV1, 0, 0);
  aC2 = text_diff(pPivot, pV2, 0, 0);

  if( aC2==0 || aC2==0 ){
    free(aC1);
    free(aC2);
    return -1;
  }

  blob_zero(pOut);
  blob_rewind(pV1);
  blob_rewind(pV2);
  blob_rewind(pPivot);


  for(i1=0; aC1[i1] || aC1[i1+1] || aC1[i1+2]; i1+=3){}
  limit1 = i1;
  for(i2=0; aC2[i2] || aC2[i2+1] || aC2[i2+2]; i2+=3){}
  limit2 = i2;

  DEBUG(
    for(i1=0; i1<limit1; i1+=3){
      printf("c1: %4d %4d %4d\n", aC1[i1], aC1[i1+1], aC1[i1+2]);
    }
    for(i2=0; i2<limit2; i2+=3){
     printf("c2: %4d %4d %4d\n", aC2[i2], aC2[i2+1], aC2[i2+2]);
    }
  )

  op1 = op2 = UNK;
  i1 = i2 = 0;
  while( i1<limit1 && aC1[i1]==0 ){ i1++; }
  while( i2<limit2 && aC2[i2]==0 ){ i2++; }

  while(1){
    if( op1==UNK ){





      if( i1>=limit1 ){
        op1 = END;
        DEBUG( printf("get op1=END\n"); )
      }else{
        op1 = i1 % 3;
        aC1[i1]--;
        DEBUG( printf("get op1=%d from %d (%d->%d)\n",
               op1,i1,aC1[i1]+1,aC1[i1]); )
        while( i1<limit1 && aC1[i1]==0 ){ i1++; }

      }
    }
    if( op2==UNK ){





      if( i2>=limit2 ){
        op2 = END;
        DEBUG( printf("get op2=END\n"); )
      }else{
        op2 = i2 % 3;
        aC2[i2]--;
        DEBUG( printf("get op2=%d from %d (%d->%d)\n",
               op2,i2,aC2[i2]+1,aC2[i2]); )
        while( i2<limit2 && aC2[i2]==0 ){ i2++; }
      }
    }

    DEBUG( printf("op1=%d op2=%d\n", op1, op2); )
    if( op1==END ){
      if( op2==INS ){

        blob_copy_lines(pOut, pV2, 1);
        op2 = UNK;
      }else{
        break;
      }

    }else if( op2==END ){
      if( op1==INS ){

        blob_copy_lines(pOut, pV1, 1);
        op1 = UNK;
      }else{

        break;
      }















    }else if( op1==INS && op2==INS ){
      if( !inConflict && sameLine(pV1, pV2) ){

        blob_copy_lines(pOut, pV2, 1);
        blob_copy_lines(0, pV1, 0);


        op1 = UNK;







        op2 = UNK;
      }else{
        if( !inConflict ){
          inConflict = 1;
          nConflict++;

          blob_appendf(pOut, zBegin);
        }
        blob_copy_lines(pOut, pV1, 1);


        op1 = UNK;
      }
    }else if( op1==INS ){

      blob_copy_lines(pOut, pV1, 1);

      op1 = UNK;
    }else if( op2==INS ){

      blob_copy_lines(pOut, pV2, 1);

      op2 = UNK;
    }else{
      if( inConflict ){
        inConflict = 0;

        blob_appendf(pOut, zEnd);
      }
      if( op1==DEL || op2==DEL ){
        blob_copy_lines(0, pPivot, 1);

        if( op2==CPY ){
          blob_copy_lines(0, pV2, 1);
        }
        if( op1==CPY ){
          blob_copy_lines(0, pV1, 1);
        }
      }else{
        assert( op1==CPY && op2==CPY );
        blob_copy_lines(pOut, pPivot, 1);





        blob_copy_lines(0, pV1, 1);


        blob_copy_lines(0, pV2, 1);
      }

      op1 = UNK;
      op2 = UNK;
    }


  }
  if( inConflict ){


    blob_appendf(pOut, zEnd);

  }

  free(aC1);
  free(aC2);
  return nConflict;
}








>
>
>













|
|
|
|
>
>
|
<
|
|
>
|

>
>
>
>
>


<





>
|
|



>















|
<
<
|


>
>
>
>
>
|
|
<
|
|
|
<
<
<
>



>
>
>
>
>
|
|
<
|
|
|
<
<
<
|
|
>
|


>
|
<
<
<

>


>
|
<
<
>
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
<
>
|
|
>
>
|
>
>
>
>
>
>
>
|
|
<
|
<
>
|
<
|
>
>
|
<
|
>
|
>
|
|
>
|
>
|

|
|
>
|
<
|
<
>
|
<
<
|
|


<
|
>
>
>
>
>
|
>
>
|
|
>
|
<
|
>
>
|
<
>
>
|
>







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
  z1 = &blob_buffer(pV1)[blob_tell(pV1)];
  z2 = &blob_buffer(pV2)[blob_tell(pV2)];
  for(i=0; z1[i]!='\n' && z1[i]==z2[i]; i++){}
  return z2[i]=='\n' || (z2[i]=='\r' && z2[i+1]=='\n')
          || (z1[i]=='\r' && z2[i]=='\n' && z1[i+1]=='\n');
}

/* The minimum of two integers */
#define min(A,B)  (A<B?A:B)

/*
** Do a three-way merge.  Initialize pOut to contain the result.
**
** The merge is an edit against pV2.  Both pV1 and pV2 have a
** common origin at pPivot.  Apply the changes of pPivot ==> pV1
** to pV2.
**
** The return is 0 upon complete success. If any input file is binary,
** -1 is returned and pOut is unmodified.  If there are merge
** conflicts, the merge proceeds as best as it can and the number 
** of conflicts is returns
*/
int blob_merge(Blob *pPivot, Blob *pV1, Blob *pV2, Blob *pOut){
  int *aC1;              /* Changes from pPivot to pV1 */
  int *aC2;              /* Changes from pPivot to pV2 */
  int i1, i2;            /* Index into aC1[] and aC2[] */
  int op1, op2;          /* Opcode for aC1[] and aC2[] */
  int n1, n2;            /* Counts for op1 and op2 */
  int mn;                /* Minimum count of op1 and op2 */
  int limit1, limit2;    /* Sizes of aC1[] and aC2[] */

  int nConflict = 0;     /* Number of merge conflicts seen so far */
  static const char zBegin[] = ">>>>>>> BEGIN MERGE CONFLICT\n";
  static const char zMid[]   = "============================\n";
  static const char zEnd[]   = "<<<<<<< END MERGE CONFLICT\n";

#if ISDEBUG
  static const char *zOp[] = { "CPY", "DEL", "INS", "END", "UNK" };
#endif

  /* Compute the edits that occur from pPivot => pV1 and pPivot => pV2 */
  aC1 = text_diff(pPivot, pV1, 0, 0);
  aC2 = text_diff(pPivot, pV2, 0, 0);

  if( aC2==0 || aC2==0 ){
    free(aC1);
    free(aC2);
    return -1;
  }

  blob_zero(pOut);         /* Merge results stored in pOut */
  blob_rewind(pV1);        /* Rewind inputs:  Needed to reconstruct output */
  blob_rewind(pV2);
  blob_rewind(pPivot);

  /* Determine the length of the aC1[] and aC2[] change vectors */
  for(i1=0; aC1[i1] || aC1[i1+1] || aC1[i1+2]; i1+=3){}
  limit1 = i1;
  for(i2=0; aC2[i2] || aC2[i2+1] || aC2[i2+2]; i2+=3){}
  limit2 = i2;

  DEBUG(
    for(i1=0; i1<limit1; i1+=3){
      printf("c1: %4d %4d %4d\n", aC1[i1], aC1[i1+1], aC1[i1+2]);
    }
    for(i2=0; i2<limit2; i2+=3){
     printf("c2: %4d %4d %4d\n", aC2[i2], aC2[i2+1], aC2[i2+2]);
    }
  )

  op1 = op2 = UNK;
  i1 = i2 = -1;


  n1 = n2 = 0;
  while(1){
    if( op1==UNK ){
      if( n1 ){
        op1 = i1 % 3;
      }else{
        i1++;
        while( i1<limit1 && aC1[i1]==0 ){ i1++; }
        if( i1>=limit1 ){
          op1 = END;

        }else{
          op1 = i1 % 3;
          n1 = aC1[i1];



        }
      }
    }
    if( op2==UNK ){
      if( n2 ){
        op2 = i2 % 3;
      }else{
        i2++;
        while( i2<limit2 && aC2[i2]==0 ){ i2++; }
        if( i2>=limit2 ){
          op2 = END;

        }else{
          op2 = i2 % 3;
          n2 = aC2[i2];



        }
      }
    }
    DEBUG( printf("op1=%s(%d) op2=%s(%d)\n", zOp[op1], n1, zOp[op2], n2); )
    if( op1==END ){
      if( op2==INS ){
        DEBUG( printf("INSERT %d FROM 2\n", n2); )
        blob_copy_lines(pOut, pV2, n2);



      }
      break;
    }else if( op2==END ){
      if( op1==INS ){
        DEBUG( printf("INSERT %d FROM 1\n", n1); )
        blob_copy_lines(pOut, pV1, n1);


      }
      break;
    }else if( op1==CPY && op2==CPY ){
      mn = min(n1,n2);
      DEBUG( printf("COPY %d\n", mn); )
      blob_copy_lines(pOut, pPivot, mn);
      blob_copy_lines(0, pV1, mn);
      blob_copy_lines(0, pV2, mn);
      n1 -= mn;
      n2 -= mn;
      op1 = op2 = UNK;
    }else if( op1==DEL && op2==DEL ){
      mn = min(n1,n2);
      DEBUG( printf("SKIP %d both\n", mn); )
      blob_copy_lines(0, pPivot, mn);
      n1 -= mn;
      n2 -= mn;
      op1 = op2 = UNK;
    }else if( op1==INS && op2==INS && sameLine(pV1, pV2) ){

      DEBUG( printf("DUPLICATE INSERT\n"); )
      blob_copy_lines(pOut, pV2, 1);
      blob_copy_lines(0, pV1, 1);
      n1--;
      n2--;
      op1 = op2 = UNK;
    }else if( op1==CPY && op2==DEL ){
      mn = min(n1,n2);
      DEBUG( printf("SKIP %d two\n", mn); )
      blob_copy_lines(0, pPivot, mn);
      blob_copy_lines(0, pV1, mn);
      n1 -= mn;
      n2 -= mn;
      op1 = op2 = UNK;
    }else if( op2==CPY && op1==DEL ){

      mn = min(n1,n2);

      DEBUG( printf("SKIP %d one\n", mn); )
      blob_copy_lines(0, pPivot, mn);

      blob_copy_lines(0, pV2, mn);
      n2 -= mn;
      n1 -= mn;
      op1 = op2 = UNK;

    }else if( op1==CPY && op2==INS ){
      DEBUG( printf("INSERT %d two\n", n2); )
      blob_copy_lines(pOut, pV2, n2);
      n2 = 0;
      op2 = UNK;
    }else if( op2==CPY && op1==INS ){
      DEBUG( printf("INSERT %d one\n", n1); )
      blob_copy_lines(pOut, pV1, n1);
      n1 = 0;
      op1 = UNK;
    }else{
      int toSkip = 0;
      nConflict++;
      DEBUG( printf("CONFLICT\n"); )
      blob_appendf(pOut, zBegin);

      if( op1==DEL ){

        toSkip = n1;
        i1++;


        if( aC1[i1] ){
          blob_copy_lines(pOut, pV1, aC1[i1]);
        }
      }else{

        blob_copy_lines(pOut, pV1, n1);
      }
      n1 = 0;
      op1 = UNK;
      blob_appendf(pOut, zMid);
      if( op2==DEL ){
        blob_copy_lines(0, pPivot, n2);
        i2++;
        if( aC2[i2] ){
          blob_copy_lines(pOut, pV2, aC2[i2]);
        }
      }else{
        blob_copy_lines(pOut, pV2, n2);

      }
      if( toSkip ){
        blob_copy_lines(0, pPivot, toSkip);
      }

      n2 = 0;
      op2 = UNK;
      blob_appendf(pOut, zEnd);
    }
  }

  free(aC1);
  free(aC2);
  return nConflict;
}