summaryrefslogtreecommitdiffstats
path: root/subcmds/sync.py
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2015-09-08 13:27:20 -0700
committerDan Willemsen <dwillemsen@google.com>2015-09-09 20:50:40 -0700
commit5ea32d135963da5542b78895f95332c6a17bbe11 (patch)
tree832e03decd9f0d7b412b111e00bd28b89c1c9ea6 /subcmds/sync.py
parent5cc384034d144c339d2e5822c36c5ca4529ac487 (diff)
downloadgit-repo-5ea32d135963da5542b78895f95332c6a17bbe11.tar.gz
GITC: Always update the gitc manifest from the repo manifestv1.12.31
This way any changes made to the main manifest are reflected in the gitc manifest. It's also necessary to use both manifests to sync since the information required to update the gitc manifest is actually in the repo manifest. This also fixes a few issues that came up when testing. notdefault groups weren't being saved to the gitc manifest in a method that matched 'sync'. The merge branch wasn't always being set to the correct value either. Change-Id: I435235cb5622a048ffad0059affd32ecf71f1f5b
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r--subcmds/sync.py32
1 files changed, 20 insertions, 12 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py
index 7b44dbd8..a99d7e74 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -75,6 +75,7 @@ from error import RepoChangedException, GitError, ManifestParseError
75from project import SyncBuffer 75from project import SyncBuffer
76from progress import Progress 76from progress import Progress
77from wrapper import Wrapper 77from wrapper import Wrapper
78from manifest_xml import GitcManifest
78 79
79_ONE_DAY_S = 24 * 60 * 60 80_ONE_DAY_S = 24 * 60 * 60
80 81
@@ -670,32 +671,39 @@ later is required to fix a server side protocol bug.
670 if opt.jobs is None: 671 if opt.jobs is None:
671 self.jobs = self.manifest.default.sync_j 672 self.jobs = self.manifest.default.sync_j
672 673
673 # TODO (sbasi) - Add support for manifest changes, aka projects
674 # have been added or deleted from the manifest.
675 if self.gitc_manifest: 674 if self.gitc_manifest:
676 gitc_manifest_projects = self.GetProjects(args, 675 gitc_manifest_projects = self.GetProjects(args,
677 manifest=self.gitc_manifest,
678 missing_ok=True) 676 missing_ok=True)
679 gitc_projects = [] 677 gitc_projects = []
680 opened_projects = [] 678 opened_projects = []
681 for project in gitc_manifest_projects: 679 for project in gitc_manifest_projects:
682 if not project.old_revision: 680 if project.relpath in self.gitc_manifest.paths and \
683 gitc_projects.append(project) 681 self.gitc_manifest.paths[project.relpath].old_revision:
682 opened_projects.append(project.relpath)
684 else: 683 else:
685 opened_projects.append(project) 684 gitc_projects.append(project.relpath)
686 685
687 if gitc_projects and not opt.local_only: 686 if not args:
687 gitc_projects = None
688
689 if gitc_projects != [] and not opt.local_only:
688 print('Updating GITC client: %s' % self.gitc_manifest.gitc_client_name) 690 print('Updating GITC client: %s' % self.gitc_manifest.gitc_client_name)
689 gitc_utils.generate_gitc_manifest(self.gitc_manifest.gitc_client_dir, 691 manifest = GitcManifest(self.repodir, self.gitc_manifest.gitc_client_name)
690 self.gitc_manifest, 692 if manifest_name:
693 manifest.Override(manifest_name)
694 else:
695 manifest.Override(self.manifest.manifestFile)
696 gitc_utils.generate_gitc_manifest(self.gitc_manifest,
697 manifest,
691 gitc_projects) 698 gitc_projects)
692 print('GITC client successfully synced.') 699 print('GITC client successfully synced.')
693 700
694 # The opened projects need to be synced as normal, therefore we 701 # The opened projects need to be synced as normal, therefore we
695 # generate a new args list to represent the opened projects. 702 # generate a new args list to represent the opened projects.
696 args = [] 703 # TODO: make this more reliable -- if there's a project name/path overlap,
697 for proj in opened_projects: 704 # this may choose the wrong project.
698 args.append(os.path.relpath(proj.worktree, os.getcwd())) 705 args = [os.path.relpath(self.manifest.paths[p].worktree, os.getcwd())
706 for p in opened_projects]
699 if not args: 707 if not args:
700 return 708 return
701 all_projects = self.GetProjects(args, 709 all_projects = self.GetProjects(args,