868
868
executable3, file_status, resolver=resolver)
870
870
child_pb.finished()
871
self.tt.fixup_new_roots()
872
872
self._finish_computing_transform()
874
874
def _finish_computing_transform(self):
1316
1317
self._raw_conflicts.append(('path conflict', trans_id, file_id,
1317
1318
this_parent, this_name,
1318
1319
other_parent, other_name))
1319
if other_name is None:
1320
if not self.other_tree.has_id(file_id):
1320
1321
# it doesn't matter whether the result was 'other' or
1321
# 'conflict'-- if there's no 'other', we leave it alone.
1322
# 'conflict'-- if it has no file id, we leave it alone.
1323
1324
parent_id = parents[self.winner_idx[parent_id_winner]]
1324
if parent_id is not None:
1325
name = names[self.winner_idx[name_winner]]
1326
if parent_id is not None or name is not None:
1325
1327
# if we get here, name_winner and parent_winner are set to safe
1327
self.tt.adjust_path(names[self.winner_idx[name_winner]],
1328
self.tt.trans_id_file_id(parent_id),
1329
if parent_id is None and name is not None:
1330
# if parent_id is None and name is non-None, current file is
1332
if names[self.winner_idx[parent_id_winner]] != '':
1333
raise AssertionError(
1334
'File looks like a root, but named %s' %
1335
names[self.winner_idx[parent_id_winner]])
1336
parent_trans_id = transform.ROOT_PARENT
1338
parent_trans_id = self.tt.trans_id_file_id(parent_id)
1339
self.tt.adjust_path(name, parent_trans_id,
1329
1340
self.tt.trans_id_file_id(file_id))
1331
1342
def _do_merge_contents(self, file_id):
1606
1617
def cook_conflicts(self, fs_conflicts):
1607
1618
"""Convert all conflicts into a form that doesn't depend on trans_id"""
1608
self.cooked_conflicts.extend(transform.cook_conflicts(
1609
fs_conflicts, self.tt))
1619
content_conflict_file_ids = set()
1620
cooked_conflicts = transform.cook_conflicts(fs_conflicts, self.tt)
1610
1621
fp = transform.FinalPaths(self.tt)
1611
1622
for conflict in self._raw_conflicts:
1612
1623
conflict_type = conflict[0]
1643
1654
c = _mod_conflicts.Conflict.factory(conflict_type,
1644
1655
path=path, file_id=file_id)
1656
content_conflict_file_ids.add(file_id)
1645
1657
elif conflict_type == 'text conflict':
1646
1658
trans_id = conflict[1]
1647
1659
path = fp.get_path(trans_id)
1650
1662
path=path, file_id=file_id)
1652
1664
raise AssertionError('bad conflict type: %r' % (conflict,))
1665
cooked_conflicts.append(c)
1667
self.cooked_conflicts = []
1668
# We want to get rid of path conflicts when a corresponding contents
1669
# conflict exists. This can occur when one branch deletes a file while
1670
# the other renames *and* modifies it. In this case, the content
1671
# conflict is enough.
1672
for c in cooked_conflicts:
1673
if (c.typestring == 'path conflict'
1674
and c.file_id in content_conflict_file_ids):
1653
1676
self.cooked_conflicts.append(c)
1654
1677
self.cooked_conflicts.sort(key=_mod_conflicts.Conflict.sort_key)