Commit 5f859ebb by Matthias Putz

Update: google git-repo v1.12.37

parent 451d58f3
[flake8]
max-line-length=80
ignore=E111,E114,E402
# Prevent /bin/sh scripts from being clobbered by autocrlf=true # Prevent /bin/sh scripts from being clobbered by autocrlf=true
git_ssh text eol=lf git_ssh text eol=lf
main.py text eol=lf
repo text eol=lf repo text eol=lf
hooks/* text eol=lf
Anthony Newnam <anthony.newnam@garmin.com> Anthony <anthony@bnovc.com>
Hu Xiuyun <xiuyun.hu@hisilicon.com> Hu xiuyun <xiuyun.hu@hisilicon.com>
Hu Xiuyun <xiuyun.hu@hisilicon.com> Hu Xiuyun <clouds08@qq.com>
Jelly Chen <chenguodong@huawei.com> chenguodong <chenguodong@huawei.com>
Jia Bi <bijia@xiaomi.com> bijia <bijia@xiaomi.com>
JoonCheol Park <jooncheol@gmail.com> Jooncheol Park <jooncheol@gmail.com>
Sergii Pylypenko <x.pelya.x@gmail.com> pelya <x.pelya.x@gmail.com>
Shawn Pearce <sop@google.com> Shawn O. Pearce <sop@google.com>
Ulrik Sjölin <ulrik.sjolin@sonyericsson.com> Ulrik Sjolin <ulrik.sjolin@gmail.com>
Ulrik Sjölin <ulrik.sjolin@sonyericsson.com> Ulrik Sjolin <ulrik.sjolin@sonyericsson.com>
Ulrik Sjölin <ulrik.sjolin@sonyericsson.com> Ulrik Sjölin <ulrik.sjolin@sonyericsson.com>
# Short Version
- Make small logical changes.
- Provide a meaningful commit message.
- Check for coding errors and style nits with pyflakes and flake8
- Make sure all code is under the Apache License, 2.0.
- Publish your changes for review.
- Make corrections if requested.
- Verify your changes on gerrit so they can be submitted.
`git push https://gerrit-review.googlesource.com/git-repo HEAD:refs/for/master`
# Long Version
I wanted a file describing how to submit patches for repo,
so I started with the one found in the core Git distribution
(Documentation/SubmittingPatches), which itself was based on the
patch submission guidelines for the Linux kernel.
However there are some differences, so please review and familiarize
yourself with the following relevant bits.
## Make separate commits for logically separate changes.
Unless your patch is really trivial, you should not be sending
out a patch that was generated between your working tree and your
commit head. Instead, always make a commit with complete commit
message and generate a series of patches from your repository.
It is a good discipline.
Describe the technical detail of the change(s).
If your description starts to get too long, that's a sign that you
probably need to split up your commit to finer grained pieces.
## Check for coding errors and style nits with pyflakes and flake8
### Coding errors
Run `pyflakes` on changed modules:
pyflakes file.py
Ideally there should be no new errors or warnings introduced.
### Style violations
Run `flake8` on changes modules:
flake8 file.py
Note that repo generally follows [Google's python style guide]
(https://google.github.io/styleguide/pyguide.html) rather than [PEP 8]
(https://www.python.org/dev/peps/pep-0008/), so it's possible that
the output of `flake8` will be quite noisy. It's not mandatory to
avoid all warnings, but at least the maximum line length should be
followed.
If there are many occurrences of the same warning that cannot be
avoided without going against the Google style guide, these may be
suppressed in the included `.flake8` file.
## Check the license
repo is licensed under the Apache License, 2.0.
Because of this licensing model *every* file within the project
*must* list the license that covers it in the header of the file.
Any new contributions to an existing file *must* be submitted under
the current license of that file. Any new files *must* clearly
indicate which license they are provided under in the file header.
Please verify that you are legally allowed and willing to submit your
changes under the license covering each file *prior* to submitting
your patch. It is virtually impossible to remove a patch once it
has been applied and pushed out.
## Sending your patches.
Do not email your patches to anyone.
Instead, login to the Gerrit Code Review tool at:
https://gerrit-review.googlesource.com/
Ensure you have completed one of the necessary contributor
agreements, providing documentation to the project maintainers that
they have right to redistribute your work under the Apache License:
https://gerrit-review.googlesource.com/#/settings/agreements
Ensure you have obtained an HTTP password to authenticate:
https://gerrit-review.googlesource.com/new-password
Ensure that you have the local commit hook installed to automatically
add a ChangeId to your commits:
curl -Lo `git rev-parse --git-dir`/hooks/commit-msg https://gerrit-review.googlesource.com/tools/hooks/commit-msg
chmod +x `git rev-parse --git-dir`/hooks/commit-msg
If you have already committed your changes you will need to amend the commit
to get the ChangeId added.
git commit --amend
Push your patches over HTTPS to the review server, possibly through
a remembered remote to make this easier in the future:
git config remote.review.url https://gerrit-review.googlesource.com/git-repo
git config remote.review.push HEAD:refs/for/master
git push review
You will be automatically emailed a copy of your commits, and any
comments made by the project maintainers.
## Make changes if requested
The project maintainer who reviews your changes might request changes to your
commit. If you make the requested changes you will need to amend your commit
and push it to the review server again.
## Verify your changes on gerrit
After you receive a Code-Review+2 from the maintainer, select the Verified
button on the gerrit page for the change. This verifies that you have tested
your changes and notifies the maintainer that they are ready to be submitted.
The maintainer will then submit your changes to the repository.
...@@ -31,7 +31,7 @@ class Command(object): ...@@ -31,7 +31,7 @@ class Command(object):
manifest = None manifest = None
_optparse = None _optparse = None
def WantPager(self, opt): def WantPager(self, _opt):
return False return False
def ReadEnvironmentOptions(self, opts): def ReadEnvironmentOptions(self, opts):
...@@ -63,7 +63,7 @@ class Command(object): ...@@ -63,7 +63,7 @@ class Command(object):
usage = self.helpUsage.strip().replace('%prog', me) usage = self.helpUsage.strip().replace('%prog', me)
except AttributeError: except AttributeError:
usage = 'repo %s' % self.NAME usage = 'repo %s' % self.NAME
self._optparse = optparse.OptionParser(usage = usage) self._optparse = optparse.OptionParser(usage=usage)
self._Options(self._optparse) self._Options(self._optparse)
return self._optparse return self._optparse
...@@ -110,15 +110,20 @@ class Command(object): ...@@ -110,15 +110,20 @@ class Command(object):
project = None project = None
if os.path.exists(path): if os.path.exists(path):
oldpath = None oldpath = None
while path \ while path and \
and path != oldpath \ path != oldpath and \
and path != manifest.topdir: path != manifest.topdir:
try: try:
project = self._by_path[path] project = self._by_path[path]
break break
except KeyError: except KeyError:
oldpath = path oldpath = path
path = os.path.dirname(path) path = os.path.dirname(path)
if not project and path == manifest.topdir:
try:
project = self._by_path[path]
except KeyError:
pass
else: else:
try: try:
project = self._by_path[path] project = self._by_path[path]
...@@ -151,8 +156,7 @@ class Command(object): ...@@ -151,8 +156,7 @@ class Command(object):
for p in project.GetDerivedSubprojects()) for p in project.GetDerivedSubprojects())
all_projects_list.extend(derived_projects.values()) all_projects_list.extend(derived_projects.values())
for project in all_projects_list: for project in all_projects_list:
if ((missing_ok or project.Exists) and if (missing_ok or project.Exists) and project.MatchesGroups(groups):
project.MatchesGroups(groups)):
result.append(project) result.append(project)
else: else:
self._ResetPathToProjectMap(all_projects_list) self._ResetPathToProjectMap(all_projects_list)
...@@ -166,8 +170,8 @@ class Command(object): ...@@ -166,8 +170,8 @@ class Command(object):
# If it's not a derived project, update path->project mapping and # If it's not a derived project, update path->project mapping and
# search again, as arg might actually point to a derived subproject. # search again, as arg might actually point to a derived subproject.
if (project and not project.Derived and if (project and not project.Derived and (submodules_ok or
(submodules_ok or project.sync_s)): project.sync_s)):
search_again = False search_again = False
for subproject in project.GetDerivedSubprojects(): for subproject in project.GetDerivedSubprojects():
self._UpdatePathToProjectMap(subproject) self._UpdatePathToProjectMap(subproject)
...@@ -194,17 +198,24 @@ class Command(object): ...@@ -194,17 +198,24 @@ class Command(object):
result.sort(key=_getpath) result.sort(key=_getpath)
return result return result
def FindProjects(self, args): def FindProjects(self, args, inverse=False):
result = [] result = []
patterns = [re.compile(r'%s' % a, re.IGNORECASE) for a in args] patterns = [re.compile(r'%s' % a, re.IGNORECASE) for a in args]
for project in self.GetProjects(''): for project in self.GetProjects(''):
for pattern in patterns: for pattern in patterns:
if pattern.search(project.name) or pattern.search(project.relpath): match = pattern.search(project.name) or pattern.search(project.relpath)
if not inverse and match:
result.append(project) result.append(project)
break break
if inverse and match:
break
else:
if inverse:
result.append(project)
result.sort(key=lambda project: project.relpath) result.sort(key=lambda project: project.relpath)
return result return result
# pylint: disable=W0223 # pylint: disable=W0223
# Pylint warns that the `InteractiveCommand` and `PagedCommand` classes do not # Pylint warns that the `InteractiveCommand` and `PagedCommand` classes do not
# override method `Execute` which is abstract in `Command`. Since that method # override method `Execute` which is abstract in `Command`. Since that method
...@@ -214,28 +225,32 @@ class InteractiveCommand(Command): ...@@ -214,28 +225,32 @@ class InteractiveCommand(Command):
"""Command which requires user interaction on the tty and """Command which requires user interaction on the tty and
must not run within a pager, even if the user asks to. must not run within a pager, even if the user asks to.
""" """
def WantPager(self, opt): def WantPager(self, _opt):
return False return False
class PagedCommand(Command): class PagedCommand(Command):
"""Command which defaults to output in a pager, as its """Command which defaults to output in a pager, as its
display tends to be larger than one screen full. display tends to be larger than one screen full.
""" """
def WantPager(self, opt): def WantPager(self, _opt):
return True return True
# pylint: enable=W0223 # pylint: enable=W0223
class MirrorSafeCommand(object): class MirrorSafeCommand(object):
"""Command permits itself to run within a mirror, """Command permits itself to run within a mirror,
and does not require a working directory. and does not require a working directory.
""" """
class GitcAvailableCommand(object): class GitcAvailableCommand(object):
"""Command that requires GITC to be available, but does """Command that requires GITC to be available, but does
not require the local client to be a GITC client. not require the local client to be a GITC client.
""" """
class GitcClientCommand(object): class GitcClientCommand(object):
"""Command that requires the local client to be a GITC """Command that requires the local client to be a GITC
client. client.
......
...@@ -35,6 +35,7 @@ following DTD: ...@@ -35,6 +35,7 @@ following DTD:
<!ATTLIST remote name ID #REQUIRED> <!ATTLIST remote name ID #REQUIRED>
<!ATTLIST remote alias CDATA #IMPLIED> <!ATTLIST remote alias CDATA #IMPLIED>
<!ATTLIST remote fetch CDATA #REQUIRED> <!ATTLIST remote fetch CDATA #REQUIRED>
<!ATTLIST remote pushurl CDATA #IMPLIED>
<!ATTLIST remote review CDATA #IMPLIED> <!ATTLIST remote review CDATA #IMPLIED>
<!ATTLIST remote revision CDATA #IMPLIED> <!ATTLIST remote revision CDATA #IMPLIED>
...@@ -125,6 +126,12 @@ Attribute `fetch`: The Git URL prefix for all projects which use ...@@ -125,6 +126,12 @@ Attribute `fetch`: The Git URL prefix for all projects which use
this remote. Each project's name is appended to this prefix to this remote. Each project's name is appended to this prefix to
form the actual URL used to clone the project. form the actual URL used to clone the project.
Attribute `pushurl`: The Git "push" URL prefix for all projects
which use this remote. Each project's name is appended to this
prefix to form the actual URL used to "git push" the project.
This attribute is optional; if not specified then "git push"
will use the same URL as the `fetch` attribute.
Attribute `review`: Hostname of the Gerrit server where reviews Attribute `review`: Hostname of the Gerrit server where reviews
are uploaded to by `repo upload`. This attribute is optional; are uploaded to by `repo upload`. This attribute is optional;
if not specified then `repo upload` will not function. if not specified then `repo upload` will not function.
...@@ -175,7 +182,8 @@ The manifest server should implement the following RPC methods: ...@@ -175,7 +182,8 @@ The manifest server should implement the following RPC methods:
GetApprovedManifest(branch, target) GetApprovedManifest(branch, target)
Return a manifest in which each project is pegged to a known good revision Return a manifest in which each project is pegged to a known good revision
for the current branch and target. for the current branch and target. This is used by repo sync when the
--smart-sync option is given.
The target to use is defined by environment variables TARGET_PRODUCT The target to use is defined by environment variables TARGET_PRODUCT
and TARGET_BUILD_VARIANT. These variables are used to create a string and TARGET_BUILD_VARIANT. These variables are used to create a string
...@@ -187,7 +195,8 @@ should choose a reasonable default target. ...@@ -187,7 +195,8 @@ should choose a reasonable default target.
GetManifest(tag) GetManifest(tag)
Return a manifest in which each project is pegged to the revision at Return a manifest in which each project is pegged to the revision at
the specified tag. the specified tag. This is used by repo sync when the --smart-tag option
is given.
Element project Element project
......
...@@ -464,9 +464,13 @@ def _open_ssh(host, port=None): ...@@ -464,9 +464,13 @@ def _open_ssh(host, port=None):
% (host,port, str(e)), file=sys.stderr) % (host,port, str(e)), file=sys.stderr)
return False return False
time.sleep(1)
ssh_died = (p.poll() is not None)
if ssh_died:
return False
_master_processes.append(p) _master_processes.append(p)
_master_keys.add(key) _master_keys.add(key)
time.sleep(1)
return True return True
finally: finally:
_master_keys_lock.release() _master_keys_lock.release()
...@@ -568,6 +572,7 @@ class Remote(object): ...@@ -568,6 +572,7 @@ class Remote(object):
self._config = config self._config = config
self.name = name self.name = name
self.url = self._Get('url') self.url = self._Get('url')
self.pushUrl = self._Get('pushurl')
self.review = self._Get('review') self.review = self._Get('review')
self.projectname = self._Get('projectname') self.projectname = self._Get('projectname')
self.fetch = list(map(RefSpec.FromString, self.fetch = list(map(RefSpec.FromString,
...@@ -700,6 +705,10 @@ class Remote(object): ...@@ -700,6 +705,10 @@ class Remote(object):
"""Save this remote to the configuration. """Save this remote to the configuration.
""" """
self._Set('url', self.url) self._Set('url', self.url)
if self.pushUrl is not None:
self._Set('pushurl', self.pushUrl + '/' + self.projectname)
else:
self._Set('pushurl', self.pushUrl)
self._Set('review', self.review) self._Set('review', self.review)
self._Set('projectname', self.projectname) self._Set('projectname', self.projectname)
self._Set('fetch', list(map(str, self.fetch))) self._Set('fetch', list(map(str, self.fetch)))
......
...@@ -24,7 +24,9 @@ import git_command ...@@ -24,7 +24,9 @@ import git_command
import git_config import git_config
import wrapper import wrapper
NUM_BATCH_RETRIEVE_REVISIONID = 300 from error import ManifestParseError
NUM_BATCH_RETRIEVE_REVISIONID = 32
def get_gitc_manifest_dir(): def get_gitc_manifest_dir():
return wrapper.Wrapper().get_gitc_manifest_dir() return wrapper.Wrapper().get_gitc_manifest_dir()
...@@ -54,7 +56,11 @@ def _set_project_revisions(projects): ...@@ -54,7 +56,11 @@ def _set_project_revisions(projects):
if gitcmd.Wait(): if gitcmd.Wait():
print('FATAL: Failed to retrieve revisionExpr for %s' % proj) print('FATAL: Failed to retrieve revisionExpr for %s' % proj)
sys.exit(1) sys.exit(1)
proj.revisionExpr = gitcmd.stdout.split('\t')[0] revisionExpr = gitcmd.stdout.split('\t')[0]
if not revisionExpr:
raise(ManifestParseError('Invalid SHA-1 revision project %s (%s)' %
(proj.remote.url, proj.revisionExpr)))
proj.revisionExpr = revisionExpr
def _manifest_groups(manifest): def _manifest_groups(manifest):
"""Returns the manifest group string that should be synced """Returns the manifest group string that should be synced
...@@ -127,7 +133,7 @@ def generate_gitc_manifest(gitc_manifest, manifest, paths=None): ...@@ -127,7 +133,7 @@ def generate_gitc_manifest(gitc_manifest, manifest, paths=None):
repo_proj.revisionExpr = None repo_proj.revisionExpr = None
# Convert URLs from relative to absolute. # Convert URLs from relative to absolute.
for name, remote in manifest.remotes.iteritems(): for _name, remote in manifest.remotes.iteritems():
remote.fetchUrl = remote.resolvedFetchUrl remote.fetchUrl = remote.resolvedFetchUrl
# Save the manifest. # Save the manifest.
......
#!/bin/sh #!/bin/sh
# From Gerrit Code Review 2.12.1
# #
# Part of Gerrit Code Review (http://code.google.com/p/gerrit/) # Part of Gerrit Code Review (https://www.gerritcodereview.com/)
# #
# Copyright (C) 2009 The Android Open Source Project # Copyright (C) 2009 The Android Open Source Project
# #
...@@ -19,7 +20,7 @@ ...@@ -19,7 +20,7 @@
unset GREP_OPTIONS unset GREP_OPTIONS
CHANGE_ID_AFTER="Bug|Issue" CHANGE_ID_AFTER="Bug|Issue|Test"
MSG="$1" MSG="$1"
# Check for, and add if missing, a unique Change-Id # Check for, and add if missing, a unique Change-Id
...@@ -38,6 +39,12 @@ add_ChangeId() { ...@@ -38,6 +39,12 @@ add_ChangeId() {
return return
fi fi
# Do not add Change-Id to temp commits
if echo "$clean_message" | head -1 | grep -q '^\(fixup\|squash\)!'
then
return
fi
if test "false" = "`git config --bool --get gerrit.createChangeId`" if test "false" = "`git config --bool --get gerrit.createChangeId`"
then then
return return
...@@ -57,6 +64,10 @@ add_ChangeId() { ...@@ -57,6 +64,10 @@ add_ChangeId() {
AWK=/usr/xpg4/bin/awk AWK=/usr/xpg4/bin/awk
fi fi
# Get core.commentChar from git config or use default symbol
commentChar=`git config --get core.commentChar`
commentChar=${commentChar:-#}
# How this works: # How this works:
# - parse the commit message as (textLine+ blankLine*)* # - parse the commit message as (textLine+ blankLine*)*
# - assume textLine+ to be a footer until proven otherwise # - assume textLine+ to be a footer until proven otherwise
...@@ -75,8 +86,8 @@ add_ChangeId() { ...@@ -75,8 +86,8 @@ add_ChangeId() {
blankLines = 0 blankLines = 0
} }
# Skip lines starting with "#" without any spaces before it. # Skip lines starting with commentChar without any spaces before it.
/^#/ { next } /^'"$commentChar"'/ { next }
# Skip the line starting with the diff command and everything after it, # Skip the line starting with the diff command and everything after it,
# up to the end of the file, assuming it is only patch data. # up to the end of the file, assuming it is only patch data.
......
...@@ -384,7 +384,7 @@ class _KerberosAuthHandler(urllib.request.BaseHandler): ...@@ -384,7 +384,7 @@ class _KerberosAuthHandler(urllib.request.BaseHandler):
self.context = None self.context = None
self.handler_order = urllib.request.BaseHandler.handler_order - 50 self.handler_order = urllib.request.BaseHandler.handler_order - 50
def http_error_401(self, req, fp, code, msg, headers): def http_error_401(self, req, fp, code, msg, headers): # pylint:disable=unused-argument
host = req.get_host() host = req.get_host()
retry = self.http_error_auth_reqed('www-authenticate', host, req, headers) retry = self.http_error_auth_reqed('www-authenticate', host, req, headers)
return retry return retry
......
...@@ -65,11 +65,13 @@ class _XmlRemote(object): ...@@ -65,11 +65,13 @@ class _XmlRemote(object):
name, name,
alias=None, alias=None,
fetch=None, fetch=None,
pushUrl=None,
manifestUrl=None, manifestUrl=None,
review=None, review=None,
revision=None): revision=None):
self.name = name self.name = name
self.fetchUrl = fetch self.fetchUrl = fetch
self.pushUrl = pushUrl
self.manifestUrl = manifestUrl self.manifestUrl = manifestUrl
self.remoteAlias = alias self.remoteAlias = alias
self.reviewUrl = review self.reviewUrl = review
...@@ -103,7 +105,11 @@ class _XmlRemote(object): ...@@ -103,7 +105,11 @@ class _XmlRemote(object):
remoteName = self.name remoteName = self.name
if self.remoteAlias: if self.remoteAlias:
remoteName = self.remoteAlias remoteName = self.remoteAlias
return RemoteSpec(remoteName, url, self.reviewUrl) return RemoteSpec(remoteName,
url=url,
pushUrl=self.pushUrl,
review=self.reviewUrl,
orig_name=self.name)
class XmlManifest(object): class XmlManifest(object):
"""manages the repo configuration file""" """manages the repo configuration file"""
...@@ -159,6 +165,8 @@ class XmlManifest(object): ...@@ -159,6 +165,8 @@ class XmlManifest(object):
root.appendChild(e) root.appendChild(e)
e.setAttribute('name', r.name) e.setAttribute('name', r.name)
e.setAttribute('fetch', r.fetchUrl) e.setAttribute('fetch', r.fetchUrl)
if r.pushUrl is not None:
e.setAttribute('pushurl', r.pushUrl)
if r.remoteAlias is not None: if r.remoteAlias is not None:
e.setAttribute('alias', r.remoteAlias) e.setAttribute('alias', r.remoteAlias)
if r.reviewUrl is not None: if r.reviewUrl is not None:
...@@ -251,9 +259,9 @@ class XmlManifest(object): ...@@ -251,9 +259,9 @@ class XmlManifest(object):
e.setAttribute('path', relpath) e.setAttribute('path', relpath)
remoteName = None remoteName = None
if d.remote: if d.remote:
remoteName = d.remote.remoteAlias or d.remote.name remoteName = d.remote.name
if not d.remote or p.remote.name != remoteName: if not d.remote or p.remote.orig_name != remoteName:
remoteName = p.remote.name remoteName = p.remote.orig_name
e.setAttribute('remote', remoteName) e.setAttribute('remote', remoteName)
if peg_rev: if peg_rev:
if self.IsMirror: if self.IsMirror:
...@@ -269,7 +277,7 @@ class XmlManifest(object): ...@@ -269,7 +277,7 @@ class XmlManifest(object):
# isn't our value # isn't our value
e.setAttribute('upstream', p.revisionExpr) e.setAttribute('upstream', p.revisionExpr)
else: else:
revision = self.remotes[remoteName].revision or d.revisionExpr revision = self.remotes[p.remote.orig_name].revision or d.revisionExpr
if not revision or revision != p.revisionExpr: if not revision or revision != p.revisionExpr:
e.setAttribute('revision', p.revisionExpr) e.setAttribute('revision', p.revisionExpr)
if p.upstream and p.upstream != p.revisionExpr: if p.upstream and p.upstream != p.revisionExpr:
...@@ -638,6 +646,9 @@ class XmlManifest(object): ...@@ -638,6 +646,9 @@ class XmlManifest(object):
if alias == '': if alias == '':
alias = None alias = None
fetch = self._reqatt(node, 'fetch') fetch = self._reqatt(node, 'fetch')
pushUrl = node.getAttribute('pushurl')
if pushUrl == '':
pushUrl = None
review = node.getAttribute('review') review = node.getAttribute('review')
if review == '': if review == '':
review = None review = None
...@@ -645,7 +656,7 @@ class XmlManifest(object): ...@@ -645,7 +656,7 @@ class XmlManifest(object):
if revision == '': if revision == '':
revision = None revision = None
manifestUrl = self.manifestProject.config.GetString('remote.origin.url') manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
return _XmlRemote(name, alias, fetch, manifestUrl, review, revision) return _XmlRemote(name, alias, fetch, pushUrl, manifestUrl, review, revision)
def _ParseDefault(self, node): def _ParseDefault(self, node):
""" """
......
...@@ -31,7 +31,8 @@ import traceback ...@@ -31,7 +31,8 @@ import traceback
from color import Coloring from color import Coloring
from git_command import GitCommand, git_require from git_command import GitCommand, git_require
from git_config import GitConfig, IsId, GetSchemeFromUrl, GetUrlCookieFile, ID_RE from git_config import GitConfig, IsId, GetSchemeFromUrl, GetUrlCookieFile, \
ID_RE
from error import GitError, HookError, UploadError, DownloadError from error import GitError, HookError, UploadError, DownloadError
from error import ManifestInvalidRevisionError from error import ManifestInvalidRevisionError
from error import NoManifestException from error import NoManifestException
...@@ -40,11 +41,18 @@ from trace import IsTrace, Trace ...@@ -40,11 +41,18 @@ from trace import IsTrace, Trace
from git_refs import GitRefs, HEAD, R_HEADS, R_TAGS, R_PUB, R_M from git_refs import GitRefs, HEAD, R_HEADS, R_TAGS, R_PUB, R_M
from pyversion import is_python3 from pyversion import is_python3
if not is_python3(): if is_python3():
import urllib.parse
else:
import imp
import urlparse
urllib = imp.new_module('urllib')
urllib.parse = urlparse
# pylint:disable=W0622 # pylint:disable=W0622
input = raw_input input = raw_input
# pylint:enable=W0622 # pylint:enable=W0622
def _lwrite(path, content): def _lwrite(path, content):
lock = '%s.lock' % path lock = '%s.lock' % path
...@@ -61,21 +69,27 @@ def _lwrite(path, content): ...@@ -61,21 +69,27 @@ def _lwrite(path, content):
os.remove(lock) os.remove(lock)
raise raise
def _error(fmt, *args): def _error(fmt, *args):
msg = fmt % args msg = fmt % args
print('error: %s' % msg, file=sys.stderr) print('error: %s' % msg, file=sys.stderr)
def _warn(fmt, *args): def _warn(fmt, *args):
msg = fmt % args msg = fmt % args
print('warn: %s' % msg, file=sys.stderr) print('warn: %s' % msg, file=sys.stderr)
def not_rev(r): def not_rev(r):
return '^' + r return '^' + r
def sq(r): def sq(r):
return "'" + r.replace("'", "'\''") + "'" return "'" + r.replace("'", "'\''") + "'"
_project_hook_list = None _project_hook_list = None
def _ProjectHooks(): def _ProjectHooks():
"""List the hooks present in the 'hooks' directory. """List the hooks present in the 'hooks' directory.
...@@ -109,8 +123,7 @@ class DownloadedChange(object): ...@@ -109,8 +123,7 @@ class DownloadedChange(object):
@property @property
def commits(self): def commits(self):
if self._commit_cache is None: if self._commit_cache is None:
self._commit_cache = self.project.bare_git.rev_list( self._commit_cache = self.project.bare_git.rev_list('--abbrev=8',
'--abbrev=8',
'--abbrev-commit', '--abbrev-commit',
'--pretty=oneline', '--pretty=oneline',
'--reverse', '--reverse',
...@@ -136,8 +149,7 @@ class ReviewableBranch(object): ...@@ -136,8 +149,7 @@ class ReviewableBranch(object):
@property @property
def commits(self): def commits(self):
if self._commit_cache is None: if self._commit_cache is None:
self._commit_cache = self.project.bare_git.rev_list( self._commit_cache = self.project.bare_git.rev_list('--abbrev=8',
'--abbrev=8',
'--abbrev-commit', '--abbrev-commit',
'--pretty=oneline', '--pretty=oneline',
'--reverse', '--reverse',
...@@ -150,8 +162,7 @@ class ReviewableBranch(object): ...@@ -150,8 +162,7 @@ class ReviewableBranch(object):
@property @property
def unabbrev_commits(self): def unabbrev_commits(self):
r = dict() r = dict()
for commit in self.project.bare_git.rev_list( for commit in self.project.bare_git.rev_list(not_rev(self.base),
not_rev(self.base),
R_HEADS + self.name, R_HEADS + self.name,
'--'): '--'):
r[commit[0:8]] = commit r[commit[0:8]] = commit
...@@ -159,13 +170,15 @@ class ReviewableBranch(object): ...@@ -159,13 +170,15 @@ class ReviewableBranch(object):
@property @property
def date(self): def date(self):
return self.project.bare_git.log( return self.project.bare_git.log('--pretty=format:%cd',
'--pretty=format:%cd',
'-n', '1', '-n', '1',
R_HEADS + self.name, R_HEADS + self.name,
'--') '--')
def UploadForReview(self, people, auto_topic=False, draft=False, dest_branch=None): def UploadForReview(self, people,
auto_topic=False,
draft=False,
dest_branch=None):
self.project.UploadForReview(self.name, self.project.UploadForReview(self.name,
people, people,
auto_topic=auto_topic, auto_topic=auto_topic,
...@@ -186,7 +199,9 @@ class ReviewableBranch(object): ...@@ -186,7 +199,9 @@ class ReviewableBranch(object):
return refs return refs
class StatusColoring(Coloring): class StatusColoring(Coloring):
def __init__(self, config): def __init__(self, config):
Coloring.__init__(self, config, 'status') Coloring.__init__(self, config, 'status')
self.project = self.printer('header', attr='bold') self.project = self.printer('header', attr='bold')
...@@ -200,17 +215,22 @@ class StatusColoring(Coloring): ...@@ -200,17 +215,22 @@ class StatusColoring(Coloring):
class DiffColoring(Coloring): class DiffColoring(Coloring):
def __init__(self, config): def __init__(self, config):
Coloring.__init__(self, config, 'diff') Coloring.__init__(self, config, 'diff')
self.project = self.printer('header', attr='bold') self.project = self.printer('header', attr='bold')
class _Annotation(object): class _Annotation(object):
def __init__(self, name, value, keep): def __init__(self, name, value, keep):
self.name = name self.name = name
self.value = value self.value = value
self.keep = keep self.keep = keep
class _CopyFile(object): class _CopyFile(object):
def __init__(self, src, dest, abssrc, absdest): def __init__(self, src, dest, abssrc, absdest):
self.src = src self.src = src
self.dest = dest self.dest = dest
...@@ -239,7 +259,9 @@ class _CopyFile(object): ...@@ -239,7 +259,9 @@ class _CopyFile(object):
except IOError: except IOError:
_error('Cannot copy file %s to %s', src, dest) _error('Cannot copy file %s to %s', src, dest)
class _LinkFile(object): class _LinkFile(object):
def __init__(self, git_worktree, src, dest, relsrc, absdest): def __init__(self, git_worktree, src, dest, relsrc, absdest):
self.git_worktree = git_worktree self.git_worktree = git_worktree
self.src = src self.src = src
...@@ -297,18 +319,26 @@ class _LinkFile(object): ...@@ -297,18 +319,26 @@ class _LinkFile(object):
relSrc = os.path.join(relSrcDir, srcFile) relSrc = os.path.join(relSrcDir, srcFile)
self.__linkIt(relSrc, absDest) self.__linkIt(relSrc, absDest)
class RemoteSpec(object): class RemoteSpec(object):
def __init__(self, def __init__(self,
name, name,
url=None, url=None,
pushUrl=None,
review=None, review=None,
revision=None): revision=None,
orig_name=None):
self.name = name self.name = name
self.url = url self.url = url
self.pushUrl = pushUrl
self.review = review self.review = review
self.revision = revision self.revision = revision
self.orig_name = orig_name
class RepoHook(object): class RepoHook(object):
"""A RepoHook contains information about a script to run as a hook. """A RepoHook contains information about a script to run as a hook.
Hooks are used to run a python script before running an upload (for instance, Hooks are used to run a python script before running an upload (for instance,
...@@ -321,10 +351,12 @@ class RepoHook(object): ...@@ -321,10 +351,12 @@ class RepoHook(object):
Hooks are always python. When a hook is run, we will load the hook into the Hooks are always python. When a hook is run, we will load the hook into the
interpreter and execute its main() function. interpreter and execute its main() function.
""" """
def __init__(self, def __init__(self,
hook_type, hook_type,
hooks_project, hooks_project,
topdir, topdir,
manifest_url,
abort_if_user_denies=False): abort_if_user_denies=False):
"""RepoHook constructor. """RepoHook constructor.
...@@ -338,11 +370,13 @@ class RepoHook(object): ...@@ -338,11 +370,13 @@ class RepoHook(object):
topdir: Repo's top directory (the one containing the .repo directory). topdir: Repo's top directory (the one containing the .repo directory).
Scripts will run with CWD as this directory. If you have a manifest, Scripts will run with CWD as this directory. If you have a manifest,
this is manifest.topdir this is manifest.topdir
manifest_url: The URL to the manifest git repo.
abort_if_user_denies: If True, we'll throw a HookError() if the user abort_if_user_denies: If True, we'll throw a HookError() if the user
doesn't allow us to run the hook. doesn't allow us to run the hook.
""" """
self._hook_type = hook_type self._hook_type = hook_type
self._hooks_project = hooks_project self._hooks_project = hooks_project
self._manifest_url = manifest_url
self._topdir = topdir self._topdir = topdir
self._abort_if_user_denies = abort_if_user_denies self._abort_if_user_denies = abort_if_user_denies
...@@ -391,9 +425,9 @@ class RepoHook(object): ...@@ -391,9 +425,9 @@ class RepoHook(object):
def _CheckForHookApproval(self): def _CheckForHookApproval(self):
"""Check to see whether this hook has been approved. """Check to see whether this hook has been approved.
We'll look at the hash of all of the hooks. If this matches the hash that We'll accept approval of manifest URLs if they're using secure transports.
the user last approved, we're done. If it doesn't, we'll ask the user This way the user can say they trust the manifest hoster. For insecure
about approval. hosts, we fall back to checking the hash of the hooks repo.
Note that we ask permission for each individual hook even though we use Note that we ask permission for each individual hook even though we use
the hash of all hooks when detecting changes. We'd like the user to be the hash of all hooks when detecting changes. We'd like the user to be
...@@ -407,44 +441,58 @@ class RepoHook(object): ...@@ -407,44 +441,58 @@ class RepoHook(object):
HookError: Raised if the user doesn't approve and abort_if_user_denies HookError: Raised if the user doesn't approve and abort_if_user_denies
was passed to the consturctor. was passed to the consturctor.
""" """
hooks_config = self._hooks_project.config if self._ManifestUrlHasSecureScheme():
git_approval_key = 'repo.hooks.%s.approvedhash' % self._hook_type return self._CheckForHookApprovalManifest()
else:
return self._CheckForHookApprovalHash()
# Get the last hash that the user approved for this hook; may be None. def _CheckForHookApprovalHelper(self, subkey, new_val, main_prompt,
old_hash = hooks_config.GetString(git_approval_key) changed_prompt):
"""Check for approval for a particular attribute and hook.
# Get the current hash so we can tell if scripts changed since approval. Args:
new_hash = self._GetHash() subkey: The git config key under [repo.hooks.<hook_type>] to store the
last approved string.
new_val: The new value to compare against the last approved one.
main_prompt: Message to display to the user to ask for approval.
changed_prompt: Message explaining why we're re-asking for approval.
if old_hash is not None: Returns:
True if this hook is approved to run; False otherwise.
Raises:
HookError: Raised if the user doesn't approve and abort_if_user_denies
was passed to the consturctor.
"""
hooks_config = self._hooks_project.config
git_approval_key = 'repo.hooks.%s.%s' % (self._hook_type, subkey)
# Get the last value that the user approved for this hook; may be None.
old_val = hooks_config.GetString(git_approval_key)
if old_val is not None:
# User previously approved hook and asked not to be prompted again. # User previously approved hook and asked not to be prompted again.
if new_hash == old_hash: if new_val == old_val:
# Approval matched. We're done. # Approval matched. We're done.
return True return True
else: else:
# Give the user a reason why we're prompting, since they last told # Give the user a reason why we're prompting, since they last told
# us to "never ask again". # us to "never ask again".
prompt = 'WARNING: Scripts have changed since %s was allowed.\n\n' % ( prompt = 'WARNING: %s\n\n' % (changed_prompt,)
self._hook_type)
else: else:
prompt = '' prompt = ''
# Prompt the user if we're not on a tty; on a tty we'll assume "no". # Prompt the user if we're not on a tty; on a tty we'll assume "no".
if sys.stdout.isatty(): if sys.stdout.isatty():
prompt += ('Repo %s run the script:\n' prompt += main_prompt + ' (yes/always/NO)? '
' %s\n'
'\n'
'Do you want to allow this script to run '
'(yes/yes-never-ask-again/NO)? ') % (
self._GetMustVerb(), self._script_fullpath)
response = input(prompt).lower() response = input(prompt).lower()
print() print()
# User is doing a one-time approval. # User is doing a one-time approval.
if response in ('y', 'yes'): if response in ('y', 'yes'):
return True return True
elif response == 'yes-never-ask-again': elif response == 'always':
hooks_config.SetString(git_approval_key, new_hash) hooks_config.SetString(git_approval_key, new_val)
return True return True
# For anything else, we'll assume no approval. # For anything else, we'll assume no approval.
...@@ -454,6 +502,40 @@ class RepoHook(object): ...@@ -454,6 +502,40 @@ class RepoHook(object):
return False return False
def _ManifestUrlHasSecureScheme(self):
"""Check if the URI for the manifest is a secure transport."""
secure_schemes = ('file', 'https', 'ssh', 'persistent-https', 'sso', 'rpc')
parse_results = urllib.parse.urlparse(self._manifest_url)
return parse_results.scheme in secure_schemes
def _CheckForHookApprovalManifest(self):
"""Check whether the user has approved this manifest host.
Returns:
True if this hook is approved to run; False otherwise.
"""
return self._CheckForHookApprovalHelper(
'approvedmanifest',
self._manifest_url,
'Run hook scripts from %s' % (self._manifest_url,),
'Manifest URL has changed since %s was allowed.' % (self._hook_type,))
def _CheckForHookApprovalHash(self):
"""Check whether the user has approved the hooks repo.
Returns:
True if this hook is approved to run; False otherwise.
"""
prompt = ('Repo %s run the script:\n'
' %s\n'
'\n'
'Do you want to allow this script to run')
return self._CheckForHookApprovalHelper(
'approvedhash',
self._GetHash(),
prompt % (self._GetMustVerb(), self._script_fullpath),
'Scripts have changed since %s was allowed.' % (self._hook_type,))
def _ExecuteHook(self, **kwargs): def _ExecuteHook(self, **kwargs):
"""Actually execute the given hook. """Actually execute the given hook.
...@@ -480,19 +562,18 @@ class RepoHook(object): ...@@ -480,19 +562,18 @@ class RepoHook(object):
# Exec, storing global context in the context dict. We catch exceptions # Exec, storing global context in the context dict. We catch exceptions
# and convert to a HookError w/ just the failing traceback. # and convert to a HookError w/ just the failing traceback.
context = {} context = {'__file__': self._script_fullpath}
try: try:
exec(compile(open(self._script_fullpath).read(), exec(compile(open(self._script_fullpath).read(),
self._script_fullpath, 'exec'), context) self._script_fullpath, 'exec'), context)
except Exception: except Exception:
raise HookError('%s\nFailed to import %s hook; see traceback above.' % ( raise HookError('%s\nFailed to import %s hook; see traceback above.' %
traceback.format_exc(), self._hook_type)) (traceback.format_exc(), self._hook_type))
# Running the script should have defined a main() function. # Running the script should have defined a main() function.
if 'main' not in context: if 'main' not in context:
raise HookError('Missing main() in: "%s"' % self._script_fullpath) raise HookError('Missing main() in: "%s"' % self._script_fullpath)
# Add 'hook_should_take_kwargs' to the arguments to be passed to main. # Add 'hook_should_take_kwargs' to the arguments to be passed to main.
# We don't actually want hooks to define their main with this argument-- # We don't actually want hooks to define their main with this argument--
# it's there to remind them that their hook should always take **kwargs. # it's there to remind them that their hook should always take **kwargs.
...@@ -510,8 +591,8 @@ class RepoHook(object): ...@@ -510,8 +591,8 @@ class RepoHook(object):
context['main'](**kwargs) context['main'](**kwargs)
except Exception: except Exception:
raise HookError('%s\nFailed to run main() for %s hook; see traceback ' raise HookError('%s\nFailed to run main() for %s hook; see traceback '
'above.' % ( 'above.' % (traceback.format_exc(),
traceback.format_exc(), self._hook_type)) self._hook_type))
finally: finally:
# Restore sys.path and CWD. # Restore sys.path and CWD.
sys.path = orig_syspath sys.path = orig_syspath
...@@ -535,8 +616,8 @@ class RepoHook(object): ...@@ -535,8 +616,8 @@ class RepoHook(object):
to run a required hook (from _CheckForHookApproval). to run a required hook (from _CheckForHookApproval).
""" """
# No-op if there is no hooks project or if hook is disabled. # No-op if there is no hooks project or if hook is disabled.
if ((not self._hooks_project) or if ((not self._hooks_project) or (self._hook_type not in
(self._hook_type not in self._hooks_project.enabled_repo_hooks)): self._hooks_project.enabled_repo_hooks)):
return return
# Bail with a nice error if we can't find the hook. # Bail with a nice error if we can't find the hook.
...@@ -558,6 +639,7 @@ class Project(object): ...@@ -558,6 +639,7 @@ class Project(object):
# These objects can only be used by a single working tree. # These objects can only be used by a single working tree.
working_tree_files = ['config', 'packed-refs', 'shallow'] working_tree_files = ['config', 'packed-refs', 'shallow']
working_tree_dirs = ['logs', 'refs'] working_tree_dirs = ['logs', 'refs']
def __init__(self, def __init__(self,
manifest, manifest,
name, name,
...@@ -610,7 +692,7 @@ class Project(object): ...@@ -610,7 +692,7 @@ class Project(object):
self.gitdir = gitdir.replace('\\', '/') self.gitdir = gitdir.replace('\\', '/')
self.objdir = objdir.replace('\\', '/') self.objdir = objdir.replace('\\', '/')
if worktree: if worktree:
self.worktree = worktree.replace('\\', '/') self.worktree = os.path.normpath(worktree.replace('\\', '/'))
else: else:
self.worktree = None self.worktree = None
self.relpath = relpath self.relpath = relpath
...@@ -638,8 +720,7 @@ class Project(object): ...@@ -638,8 +720,7 @@ class Project(object):
self.copyfiles = [] self.copyfiles = []
self.linkfiles = [] self.linkfiles = []
self.annotations = [] self.annotations = []
self.config = GitConfig.ForRepository( self.config = GitConfig.ForRepository(gitdir=self.gitdir,
gitdir=self.gitdir,
defaults=self.manifest.globalConfig) defaults=self.manifest.globalConfig)
if self.worktree: if self.worktree:
...@@ -778,7 +859,7 @@ class Project(object): ...@@ -778,7 +859,7 @@ class Project(object):
""" """
expanded_manifest_groups = manifest_groups or ['default'] expanded_manifest_groups = manifest_groups or ['default']
expanded_project_groups = ['all'] + (self.groups or []) expanded_project_groups = ['all'] + (self.groups or [])
if not 'notdefault' in expanded_project_groups: if 'notdefault' not in expanded_project_groups:
expanded_project_groups += ['default'] expanded_project_groups += ['default']
matched = False matched = False
...@@ -790,7 +871,7 @@ class Project(object): ...@@ -790,7 +871,7 @@ class Project(object):
return matched return matched
## Status Display ## # Status Display ##
def UncommitedFiles(self, get_all=True): def UncommitedFiles(self, get_all=True):
"""Returns a list of strings, uncommitted files in the git tree. """Returns a list of strings, uncommitted files in the git tree.
...@@ -842,7 +923,7 @@ class Project(object): ...@@ -842,7 +923,7 @@ class Project(object):
output: If specified, redirect the output to this object. output: If specified, redirect the output to this object.
""" """
if not os.path.isdir(self.worktree): if not os.path.isdir(self.worktree):
if output_redir == None: if output_redir is None:
output_redir = sys.stdout output_redir = sys.stdout
print(file=output_redir) print(file=output_redir)
print('project %s/' % self.relpath, file=output_redir) print('project %s/' % self.relpath, file=output_redir)
...@@ -861,7 +942,7 @@ class Project(object): ...@@ -861,7 +942,7 @@ class Project(object):
return 'CLEAN' return 'CLEAN'
out = StatusColoring(self.config) out = StatusColoring(self.config)
if not output_redir == None: if output_redir is not None:
out.redirect(output_redir) out.redirect(output_redir)
out.project('project %-40s', self.relpath + '/ ') out.project('project %-40s', self.relpath + '/ ')
...@@ -947,7 +1028,7 @@ class Project(object): ...@@ -947,7 +1028,7 @@ class Project(object):
p.Wait() p.Wait()
## Publish / Upload ## # Publish / Upload ##
def WasPublished(self, branch, all_refs=None): def WasPublished(self, branch, all_refs=None):
"""Was the branch published (uploaded) for code review? """Was the branch published (uploaded) for code review?
...@@ -1090,7 +1171,7 @@ class Project(object): ...@@ -1090,7 +1171,7 @@ class Project(object):
message=msg) message=msg)
## Sync ## # Sync ##
def _ExtractArchive(self, tarpath, path=None): def _ExtractArchive(self, tarpath, path=None):
"""Extract the given tar on its current location """Extract the given tar on its current location
...@@ -1182,10 +1263,11 @@ class Project(object): ...@@ -1182,10 +1263,11 @@ class Project(object):
elif self.manifest.default.sync_c: elif self.manifest.default.sync_c:
current_branch_only = True current_branch_only = True
need_to_fetch = not (optimized_fetch and \ need_to_fetch = not (optimized_fetch and
(ID_RE.match(self.revisionExpr) and self._CheckForSha1())) (ID_RE.match(self.revisionExpr) and
if (need_to_fetch self._CheckForSha1()))
and not self._RemoteFetch(initial=is_new, quiet=quiet, alt_dir=alt_dir, if (need_to_fetch and
not self._RemoteFetch(initial=is_new, quiet=quiet, alt_dir=alt_dir,
current_branch_only=current_branch_only, current_branch_only=current_branch_only,
no_tags=no_tags, prune=prune)): no_tags=no_tags, prune=prune)):
return False return False
...@@ -1224,9 +1306,8 @@ class Project(object): ...@@ -1224,9 +1306,8 @@ class Project(object):
try: try:
return self.bare_git.rev_list(self.revisionExpr, '-1')[0] return self.bare_git.rev_list(self.revisionExpr, '-1')[0]
except GitError: except GitError:
raise ManifestInvalidRevisionError( raise ManifestInvalidRevisionError('revision %s in %s not found' %
'revision %s in %s not found' % (self.revisionExpr, (self.revisionExpr, self.name))
self.name))
def GetRevisionId(self, all_refs=None): def GetRevisionId(self, all_refs=None):
if self.revisionId: if self.revisionId:
...@@ -1241,9 +1322,8 @@ class Project(object): ...@@ -1241,9 +1322,8 @@ class Project(object):
try: try:
return self.bare_git.rev_parse('--verify', '%s^0' % rev) return self.bare_git.rev_parse('--verify', '%s^0' % rev)
except GitError: except GitError:
raise ManifestInvalidRevisionError( raise ManifestInvalidRevisionError('revision %s in %s not found' %
'revision %s in %s not found' % (self.revisionExpr, (self.revisionExpr, self.name))
self.name))
def Sync_LocalHalf(self, syncbuf, force_sync=False): def Sync_LocalHalf(self, syncbuf, force_sync=False):
"""Perform only the local IO portion of the sync process. """Perform only the local IO portion of the sync process.
...@@ -1332,8 +1412,8 @@ class Project(object): ...@@ -1332,8 +1412,8 @@ class Project(object):
# to rewrite the published commits so we punt. # to rewrite the published commits so we punt.
# #
syncbuf.fail(self, syncbuf.fail(self,
"branch %s is published (but not merged) and is now %d commits behind" "branch %s is published (but not merged) and is now "
% (branch.name, len(upstream_gain))) "%d commits behind" % (branch.name, len(upstream_gain)))
return return
elif pub == head: elif pub == head:
# All published commits are merged, and thus we are a # All published commits are merged, and thus we are a
...@@ -1427,7 +1507,7 @@ class Project(object): ...@@ -1427,7 +1507,7 @@ class Project(object):
remote = self.GetRemote(self.remote.name) remote = self.GetRemote(self.remote.name)
cmd = ['fetch', remote.name] cmd = ['fetch', remote.name]
cmd.append('refs/changes/%2.2d/%d/%d' \ cmd.append('refs/changes/%2.2d/%d/%d'
% (change_id % 100, change_id, patch_id)) % (change_id % 100, change_id, patch_id))
if GitCommand(self, cmd, bare=True).Wait() != 0: if GitCommand(self, cmd, bare=True).Wait() != 0:
return None return None
...@@ -1438,7 +1518,7 @@ class Project(object): ...@@ -1438,7 +1518,7 @@ class Project(object):
self.bare_git.rev_parse('FETCH_HEAD')) self.bare_git.rev_parse('FETCH_HEAD'))
## Branch Management ## # Branch Management ##
def StartBranch(self, name, branch_merge=''): def StartBranch(self, name, branch_merge=''):
"""Create a new branch off the manifest's revision. """Create a new branch off the manifest's revision.
...@@ -1625,10 +1705,11 @@ class Project(object): ...@@ -1625,10 +1705,11 @@ class Project(object):
return kept return kept
## Submodule Management ## # Submodule Management ##
def GetRegisteredSubprojects(self): def GetRegisteredSubprojects(self):
result = [] result = []
def rec(subprojects): def rec(subprojects):
if not subprojects: if not subprojects:
return return
...@@ -1663,6 +1744,7 @@ class Project(object): ...@@ -1663,6 +1744,7 @@ class Project(object):
re_path = re.compile(r'^submodule\.([^.]+)\.path=(.*)$') re_path = re.compile(r'^submodule\.([^.]+)\.path=(.*)$')
re_url = re.compile(r'^submodule\.([^.]+)\.url=(.*)$') re_url = re.compile(r'^submodule\.([^.]+)\.url=(.*)$')
def parse_gitmodules(gitdir, rev): def parse_gitmodules(gitdir, rev):
cmd = ['cat-file', 'blob', '%s:.gitmodules' % rev] cmd = ['cat-file', 'blob', '%s:.gitmodules' % rev]
try: try:
...@@ -1750,6 +1832,7 @@ class Project(object): ...@@ -1750,6 +1832,7 @@ class Project(object):
remote = RemoteSpec(self.remote.name, remote = RemoteSpec(self.remote.name,
url=url, url=url,
pushUrl=self.remote.pushUrl,
review=self.remote.review, review=self.remote.review,
revision=self.remote.revision) revision=self.remote.revision)
subproject = Project(manifest=self.manifest, subproject = Project(manifest=self.manifest,
...@@ -1759,7 +1842,7 @@ class Project(object): ...@@ -1759,7 +1842,7 @@ class Project(object):
objdir=objdir, objdir=objdir,
worktree=worktree, worktree=worktree,
relpath=relpath, relpath=relpath,
revisionExpr=self.revisionExpr, revisionExpr=rev,
revisionId=rev, revisionId=rev,
rebase=self.rebase, rebase=self.rebase,
groups=self.groups, groups=self.groups,
...@@ -1772,7 +1855,7 @@ class Project(object): ...@@ -1772,7 +1855,7 @@ class Project(object):
return result return result
## Direct Git Commands ## # Direct Git Commands ##
def _CheckForSha1(self): def _CheckForSha1(self):
try: try:
# if revision (sha or tag) is not present then following function # if revision (sha or tag) is not present then following function
...@@ -1796,7 +1879,6 @@ class Project(object): ...@@ -1796,7 +1879,6 @@ class Project(object):
if command.Wait() != 0: if command.Wait() != 0:
raise GitError('git archive %s: %s' % (self.name, command.stderr)) raise GitError('git archive %s: %s' % (self.name, command.stderr))
def _RemoteFetch(self, name=None, def _RemoteFetch(self, name=None,
current_branch_only=False, current_branch_only=False,
initial=False, initial=False,
...@@ -1843,7 +1925,10 @@ class Project(object): ...@@ -1843,7 +1925,10 @@ class Project(object):
# will fail. # will fail.
# * otherwise, fetch all branches to make sure we end up with the # * otherwise, fetch all branches to make sure we end up with the
# specific commit. # specific commit.
current_branch_only = self.upstream and not ID_RE.match(self.upstream) if self.upstream:
current_branch_only = not ID_RE.match(self.upstream)
else:
current_branch_only = False
if not name: if not name:
name = self.remote.name name = self.remote.name
...@@ -1960,9 +2045,9 @@ class Project(object): ...@@ -1960,9 +2045,9 @@ class Project(object):
break break
continue continue
elif current_branch_only and is_sha1 and ret == 128: elif current_branch_only and is_sha1 and ret == 128:
# Exit code 128 means "couldn't find the ref you asked for"; if we're in sha1 # Exit code 128 means "couldn't find the ref you asked for"; if we're
# mode, we just tried sync'ing from the upstream field; it doesn't exist, thus # in sha1 mode, we just tried sync'ing from the upstream field; it
# abort the optimization attempt and do a full sync. # doesn't exist, thus abort the optimization attempt and do a full sync.
break break
elif ret < 0: elif ret < 0:
# Git died with a signal, exit immediately # Git died with a signal, exit immediately
...@@ -1989,20 +2074,24 @@ class Project(object): ...@@ -1989,20 +2074,24 @@ class Project(object):
initial=False, quiet=quiet, alt_dir=alt_dir) initial=False, quiet=quiet, alt_dir=alt_dir)
if self.clone_depth: if self.clone_depth:
self.clone_depth = None self.clone_depth = None
return self._RemoteFetch(name=name, current_branch_only=current_branch_only, return self._RemoteFetch(name=name,
current_branch_only=current_branch_only,
initial=False, quiet=quiet, alt_dir=alt_dir) initial=False, quiet=quiet, alt_dir=alt_dir)
return ok return ok
def _ApplyCloneBundle(self, initial=False, quiet=False): def _ApplyCloneBundle(self, initial=False, quiet=False):
if initial and (self.manifest.manifestProject.config.GetString('repo.depth') or self.clone_depth): if initial and \
(self.manifest.manifestProject.config.GetString('repo.depth') or
self.clone_depth):
return False return False
remote = self.GetRemote(self.remote.name) remote = self.GetRemote(self.remote.name)
bundle_url = remote.url + '/clone.bundle' bundle_url = remote.url + '/clone.bundle'
bundle_url = GitConfig.ForUser().UrlInsteadOf(bundle_url) bundle_url = GitConfig.ForUser().UrlInsteadOf(bundle_url)
if GetSchemeFromUrl(bundle_url) not in ( if GetSchemeFromUrl(bundle_url) not in ('http', 'https',
'http', 'https', 'persistent-http', 'persistent-https'): 'persistent-http',
'persistent-https'):
return False return False
bundle_dst = os.path.join(self.gitdir, 'clone.bundle') bundle_dst = os.path.join(self.gitdir, 'clone.bundle')
...@@ -2051,7 +2140,7 @@ class Project(object): ...@@ -2051,7 +2140,7 @@ class Project(object):
os.remove(tmpPath) os.remove(tmpPath)
if 'http_proxy' in os.environ and 'darwin' == sys.platform: if 'http_proxy' in os.environ and 'darwin' == sys.platform:
cmd += ['--proxy', os.environ['http_proxy']] cmd += ['--proxy', os.environ['http_proxy']]
with GetUrlCookieFile(srcUrl, quiet) as (cookiefile, proxy): with GetUrlCookieFile(srcUrl, quiet) as (cookiefile, _proxy):
if cookiefile: if cookiefile:
cmd += ['--cookie', cookiefile, '--cookie-jar', cookiefile] cmd += ['--cookie', cookiefile, '--cookie-jar', cookiefile]
if srcUrl.startswith('persistent-'): if srcUrl.startswith('persistent-'):
...@@ -2170,11 +2259,12 @@ class Project(object): ...@@ -2170,11 +2259,12 @@ class Project(object):
self._CheckDirReference(self.objdir, self.gitdir, share_refs=False) self._CheckDirReference(self.objdir, self.gitdir, share_refs=False)
except GitError as e: except GitError as e:
if force_sync: if force_sync:
print("Retrying clone after deleting %s" % self.gitdir, file=sys.stderr) print("Retrying clone after deleting %s" %
self.gitdir, file=sys.stderr)
try: try:
portable.rmtree(os.path.realpath(self.gitdir)) portable.rmtree(os.path.realpath(self.gitdir))
if self.worktree and os.path.exists( if self.worktree and os.path.exists(os.path.realpath
os.path.realpath(self.worktree)): (self.worktree)):
portable.rmtree(os.path.realpath(self.worktree)) portable.rmtree(os.path.realpath(self.worktree))
return self._InitGitDir(mirror_git=mirror_git, force_sync=False) return self._InitGitDir(mirror_git=mirror_git, force_sync=False)
except: except:
...@@ -2210,6 +2300,7 @@ class Project(object): ...@@ -2210,6 +2300,7 @@ class Project(object):
for key in ['user.name', 'user.email']: for key in ['user.name', 'user.email']:
if m.Has(key, include_defaults=False): if m.Has(key, include_defaults=False):
self.config.SetString(key, m.GetString(key)) self.config.SetString(key, m.GetString(key))
self.config.SetString('filter.lfs.smudge', 'git-lfs smudge --skip -- %f')
if self.manifest.IsMirror: if self.manifest.IsMirror:
self.config.SetString('core.bare', 'true') self.config.SetString('core.bare', 'true')
else: else:
...@@ -2233,7 +2324,7 @@ class Project(object): ...@@ -2233,7 +2324,7 @@ class Project(object):
name = os.path.basename(stock_hook) name = os.path.basename(stock_hook)
if name in ('commit-msg',) and not self.remote.review \ if name in ('commit-msg',) and not self.remote.review \
and not self is self.manifest.manifestProject: and self is not self.manifest.manifestProject:
# Don't install a Gerrit Code Review hook if this # Don't install a Gerrit Code Review hook if this
# project does not appear to use it for reviews. # project does not appear to use it for reviews.
# #
...@@ -2249,7 +2340,8 @@ class Project(object): ...@@ -2249,7 +2340,8 @@ class Project(object):
if filecmp.cmp(stock_hook, dst, shallow=False): if filecmp.cmp(stock_hook, dst, shallow=False):
os.remove(dst) os.remove(dst)
else: else:
_warn("%s: Not replacing locally modified %s hook", self.relpath, name) _warn("%s: Not replacing locally modified %s hook",
self.relpath, name)
continue continue
try: try:
# os.symlink(os.path.relpath(stock_hook, os.path.dirname(dst)), dst) # os.symlink(os.path.relpath(stock_hook, os.path.dirname(dst)), dst)
...@@ -2264,6 +2356,7 @@ class Project(object): ...@@ -2264,6 +2356,7 @@ class Project(object):
if self.remote.url: if self.remote.url:
remote = self.GetRemote(self.remote.name) remote = self.GetRemote(self.remote.name)
remote.url = self.remote.url remote.url = self.remote.url
remote.pushUrl = self.remote.pushUrl
remote.review = self.remote.review remote.review = self.remote.review
remote.projectname = self.name remote.projectname = self.name
...@@ -2296,8 +2389,8 @@ class Project(object): ...@@ -2296,8 +2389,8 @@ class Project(object):
self.bare_git.symbolic_ref('-m', msg, ref, dst) self.bare_git.symbolic_ref('-m', msg, ref, dst)
def _CheckDirReference(self, srcdir, destdir, share_refs): def _CheckDirReference(self, srcdir, destdir, share_refs):
symlink_files = self.shareable_files symlink_files = self.shareable_files[:]
symlink_dirs = self.shareable_dirs symlink_dirs = self.shareable_dirs[:]
if share_refs: if share_refs:
symlink_files += self.working_tree_files symlink_files += self.working_tree_files
symlink_dirs += self.working_tree_dirs symlink_dirs += self.working_tree_dirs
...@@ -2329,8 +2422,8 @@ class Project(object): ...@@ -2329,8 +2422,8 @@ class Project(object):
copy_all: If true, copy all remaining files from |gitdir| -> |dotgit|. copy_all: If true, copy all remaining files from |gitdir| -> |dotgit|.
This saves you the effort of initializing |dotgit| yourself. This saves you the effort of initializing |dotgit| yourself.
""" """
symlink_files = self.shareable_files symlink_files = self.shareable_files[:]
symlink_dirs = self.shareable_dirs symlink_dirs = self.shareable_dirs[:]
if share_refs: if share_refs:
symlink_files += self.working_tree_files symlink_files += self.working_tree_files
symlink_dirs += self.working_tree_dirs symlink_dirs += self.working_tree_dirs
...@@ -2425,7 +2518,7 @@ class Project(object): ...@@ -2425,7 +2518,7 @@ class Project(object):
def _allrefs(self): def _allrefs(self):
return self.bare_ref.all return self.bare_ref.all
def _getLogs(self, rev1, rev2, oneline=False, color=True): def _getLogs(self, rev1, rev2, oneline=False, color=True, pretty_format=None):
"""Get logs between two revisions of this project.""" """Get logs between two revisions of this project."""
comp = '..' comp = '..'
if rev1: if rev1:
...@@ -2436,6 +2529,8 @@ class Project(object): ...@@ -2436,6 +2529,8 @@ class Project(object):
out = DiffColoring(self.config) out = DiffColoring(self.config)
if out.is_on and color: if out.is_on and color:
cmd.append('--color') cmd.append('--color')
if pretty_format is not None:
cmd.append('--pretty=format:%s' % pretty_format)
if oneline: if oneline:
cmd.append('--oneline') cmd.append('--oneline')
...@@ -2452,17 +2547,21 @@ class Project(object): ...@@ -2452,17 +2547,21 @@ class Project(object):
raise raise
return None return None
def getAddedAndRemovedLogs(self, toProject, oneline=False, color=True): def getAddedAndRemovedLogs(self, toProject, oneline=False, color=True,
pretty_format=None):
"""Get the list of logs from this revision to given revisionId""" """Get the list of logs from this revision to given revisionId"""
logs = {} logs = {}
selfId = self.GetRevisionId(self._allrefs) selfId = self.GetRevisionId(self._allrefs)
toId = toProject.GetRevisionId(toProject._allrefs) toId = toProject.GetRevisionId(toProject._allrefs)
logs['added'] = self._getLogs(selfId, toId, oneline=oneline, color=color) logs['added'] = self._getLogs(selfId, toId, oneline=oneline, color=color,
logs['removed'] = self._getLogs(toId, selfId, oneline=oneline, color=color) pretty_format=pretty_format)
logs['removed'] = self._getLogs(toId, selfId, oneline=oneline, color=color,
pretty_format=pretty_format)
return logs return logs
class _GitGetByExec(object): class _GitGetByExec(object):
def __init__(self, project, bare, gitdir): def __init__(self, project, bare, gitdir):
self._project = project self._project = project
self._bare = bare self._bare = bare
...@@ -2481,8 +2580,8 @@ class Project(object): ...@@ -2481,8 +2580,8 @@ class Project(object):
if p.Wait() == 0: if p.Wait() == 0:
out = p.stdout out = p.stdout
if out: if out:
return out[:-1].split('\0') # pylint: disable=W1401
# Backslash is not anomalous # Backslash is not anomalous
return out[:-1].split('\0') # pylint: disable=W1401
return [] return []
def DiffZ(self, name, *args): def DiffZ(self, name, *args):
...@@ -2508,6 +2607,7 @@ class Project(object): ...@@ -2508,6 +2607,7 @@ class Project(object):
break break
class _Info(object): class _Info(object):
def __init__(self, path, omode, nmode, oid, nid, state): def __init__(self, path, omode, nmode, oid, nid, state):
self.path = path self.path = path
self.src_path = None self.src_path = None
...@@ -2610,10 +2710,8 @@ class Project(object): ...@@ -2610,10 +2710,8 @@ class Project(object):
line = line[:-1] line = line[:-1]
r.append(line) r.append(line)
if p.Wait() != 0: if p.Wait() != 0:
raise GitError('%s rev-list %s: %s' % ( raise GitError('%s rev-list %s: %s' %
self._project.name, (self._project.name, str(args), p.stderr))
str(args),
p.stderr))
return r return r
def __getattr__(self, name): def __getattr__(self, name):
...@@ -2636,6 +2734,7 @@ class Project(object): ...@@ -2636,6 +2734,7 @@ class Project(object):
A callable object that will try to call git with the named command. A callable object that will try to call git with the named command.
""" """
name = name.replace('_', '-') name = name.replace('_', '-')
def runner(*args, **kwargs): def runner(*args, **kwargs):
cmdv = [] cmdv = []
config = kwargs.pop('config', None) config = kwargs.pop('config', None)
...@@ -2658,10 +2757,8 @@ class Project(object): ...@@ -2658,10 +2757,8 @@ class Project(object):
capture_stdout=True, capture_stdout=True,
capture_stderr=True) capture_stderr=True)
if p.Wait() != 0: if p.Wait() != 0:
raise GitError('%s %s: %s' % ( raise GitError('%s %s: %s' %
self._project.name, (self._project.name, name, p.stderr))
name,
p.stderr))
r = p.stdout r = p.stdout
try: try:
r = r.decode('utf-8') r = r.decode('utf-8')
...@@ -2674,14 +2771,19 @@ class Project(object): ...@@ -2674,14 +2771,19 @@ class Project(object):
class _PriorSyncFailedError(Exception): class _PriorSyncFailedError(Exception):
def __str__(self): def __str__(self):
return 'prior sync failed; rebase still in progress' return 'prior sync failed; rebase still in progress'
class _DirtyError(Exception): class _DirtyError(Exception):
def __str__(self): def __str__(self):
return 'contains uncommitted changes' return 'contains uncommitted changes'
class _InfoMessage(object): class _InfoMessage(object):
def __init__(self, project, text): def __init__(self, project, text):
self.project = project self.project = project
self.text = text self.text = text
...@@ -2690,7 +2792,9 @@ class _InfoMessage(object): ...@@ -2690,7 +2792,9 @@ class _InfoMessage(object):
syncbuf.out.info('%s/: %s', self.project.relpath, self.text) syncbuf.out.info('%s/: %s', self.project.relpath, self.text)
syncbuf.out.nl() syncbuf.out.nl()
class _Failure(object): class _Failure(object):
def __init__(self, project, why): def __init__(self, project, why):
self.project = project self.project = project
self.why = why self.why = why
...@@ -2701,7 +2805,9 @@ class _Failure(object): ...@@ -2701,7 +2805,9 @@ class _Failure(object):
str(self.why)) str(self.why))
syncbuf.out.nl() syncbuf.out.nl()
class _Later(object): class _Later(object):
def __init__(self, project, action): def __init__(self, project, action):
self.project = project self.project = project
self.action = action self.action = action
...@@ -2718,14 +2824,18 @@ class _Later(object): ...@@ -2718,14 +2824,18 @@ class _Later(object):
out.nl() out.nl()
return False return False
class _SyncColoring(Coloring): class _SyncColoring(Coloring):
def __init__(self, config): def __init__(self, config):
Coloring.__init__(self, config, 'reposync') Coloring.__init__(self, config, 'reposync')
self.project = self.printer('header', attr='bold') self.project = self.printer('header', attr='bold')
self.info = self.printer('info') self.info = self.printer('info')
self.fail = self.printer('fail', fg='red') self.fail = self.printer('fail', fg='red')
class SyncBuffer(object): class SyncBuffer(object):
def __init__(self, config, detach_head=False): def __init__(self, config, detach_head=False):
self._messages = [] self._messages = []
self._failures = [] self._failures = []
...@@ -2781,8 +2891,10 @@ class SyncBuffer(object): ...@@ -2781,8 +2891,10 @@ class SyncBuffer(object):
class MetaProject(Project): class MetaProject(Project):
"""A special project housed under .repo. """A special project housed under .repo.
""" """
def __init__(self, manifest, name, gitdir, worktree): def __init__(self, manifest, name, gitdir, worktree):
Project.__init__(self, Project.__init__(self,
manifest=manifest, manifest=manifest,
...@@ -2820,7 +2932,6 @@ class MetaProject(Project): ...@@ -2820,7 +2932,6 @@ class MetaProject(Project):
capture_stdout=True, capture_stdout=True,
capture_stderr=True).Wait() == 0 capture_stderr=True).Wait() == 0
@property @property
def LastFetch(self): def LastFetch(self):
try: try:
......
...@@ -28,6 +28,9 @@ VERSION = (1, 25) ...@@ -28,6 +28,9 @@ VERSION = (1, 25)
# increment this if the MAINTAINER_KEYS block is modified # increment this if the MAINTAINER_KEYS block is modified
KEYRING_VERSION = (1, 3) KEYRING_VERSION = (1, 3)
# Each individual key entry is created by using:
# gpg --armor --export keyid
MAINTAINER_KEYS = """ MAINTAINER_KEYS = """
Repo Maintainer (E.S.R.Labs) <repo@esrlabs.com> Repo Maintainer (E.S.R.Labs) <repo@esrlabs.com>
...@@ -209,6 +212,9 @@ group.add_option('-p', '--platform', ...@@ -209,6 +212,9 @@ group.add_option('-p', '--platform',
help='restrict manifest projects to ones with a specified ' help='restrict manifest projects to ones with a specified '
'platform group [auto|all|none|linux|darwin|...]', 'platform group [auto|all|none|linux|darwin|...]',
metavar='PLATFORM') metavar='PLATFORM')
group.add_option('--no-clone-bundle',
dest='no_clone_bundle', action='store_true',
help='disable use of /clone.bundle on HTTP/HTTPS')
# Tool # Tool
...@@ -352,7 +358,7 @@ def _Init(args, gitc_init=False): ...@@ -352,7 +358,7 @@ def _Init(args, gitc_init=False):
can_verify = True can_verify = True
dst = os.path.abspath(os.path.join(repodir, S_repo)) dst = os.path.abspath(os.path.join(repodir, S_repo))
_Clone(url, dst, opt.quiet) _Clone(url, dst, opt.quiet, not opt.no_clone_bundle)
if can_verify and not opt.no_repo_verify: if can_verify and not opt.no_repo_verify:
rev = _Verify(dst, branch, opt.quiet) rev = _Verify(dst, branch, opt.quiet)
...@@ -445,6 +451,9 @@ def SetupGnuPG(quiet): ...@@ -445,6 +451,9 @@ def SetupGnuPG(quiet):
sys.exit(1) sys.exit(1)
env = os.environ.copy() env = os.environ.copy()
try:
env['GNUPGHOME'] = gpg_dir
except UnicodeEncodeError:
env['GNUPGHOME'] = gpg_dir.encode() env['GNUPGHOME'] = gpg_dir.encode()
cmd = ['gpg', '--import'] cmd = ['gpg', '--import']
...@@ -556,7 +565,7 @@ def _DownloadBundle(url, local, quiet): ...@@ -556,7 +565,7 @@ def _DownloadBundle(url, local, quiet):
try: try:
r = urllib.request.urlopen(url) r = urllib.request.urlopen(url)
except urllib.error.HTTPError as e: except urllib.error.HTTPError as e:
if e.code in [401, 403, 404, 406]: if e.code in [401, 403, 404, 406, 501]:
return False return False
_print('fatal: Cannot get %s' % url, file=sys.stderr) _print('fatal: Cannot get %s' % url, file=sys.stderr)
_print('fatal: HTTP error %s' % e.code, file=sys.stderr) _print('fatal: HTTP error %s' % e.code, file=sys.stderr)
...@@ -588,7 +597,7 @@ def _ImportBundle(local): ...@@ -588,7 +597,7 @@ def _ImportBundle(local):
os.remove(path) os.remove(path)
def _Clone(url, local, quiet): def _Clone(url, local, quiet, clone_bundle):
"""Clones a git repository to a new subdirectory of repodir """Clones a git repository to a new subdirectory of repodir
""" """
try: try:
...@@ -618,7 +627,7 @@ def _Clone(url, local, quiet): ...@@ -618,7 +627,7 @@ def _Clone(url, local, quiet):
_SetConfig(local, _SetConfig(local,
'remote.origin.fetch', 'remote.origin.fetch',
'+refs/heads/*:refs/remotes/origin/*') '+refs/heads/*:refs/remotes/origin/*')
if _DownloadBundle(url, local, quiet): if clone_bundle and _DownloadBundle(url, local, quiet):
_ImportBundle(local) _ImportBundle(local)
_Fetch(url, local, 'origin', quiet) _Fetch(url, local, 'origin', quiet)
...@@ -652,6 +661,9 @@ def _Verify(cwd, branch, quiet): ...@@ -652,6 +661,9 @@ def _Verify(cwd, branch, quiet):
_print(file=sys.stderr) _print(file=sys.stderr)
env = os.environ.copy() env = os.environ.copy()
try:
env['GNUPGHOME'] = gpg_dir
except UnicodeEncodeError:
env['GNUPGHOME'] = gpg_dir.encode() env['GNUPGHOME'] = gpg_dir.encode()
cmd = [GIT, 'tag', '-v', cur] cmd = [GIT, 'tag', '-v', cur]
......
...@@ -71,6 +71,10 @@ synced and their revisions won't be found. ...@@ -71,6 +71,10 @@ synced and their revisions won't be found.
p.add_option('--no-color', p.add_option('--no-color',
dest='color', action='store_false', default=True, dest='color', action='store_false', default=True,
help='does not display the diff in color.') help='does not display the diff in color.')
p.add_option('--pretty-format',
dest='pretty_format', action='store',
metavar='<FORMAT>',
help='print the log using a custom git pretty format string')
def _printRawDiff(self, diff): def _printRawDiff(self, diff):
for project in diff['added']: for project in diff['added']:
...@@ -92,7 +96,7 @@ synced and their revisions won't be found. ...@@ -92,7 +96,7 @@ synced and their revisions won't be found.
otherProject.revisionExpr)) otherProject.revisionExpr))
self.out.nl() self.out.nl()
def _printDiff(self, diff, color=True): def _printDiff(self, diff, color=True, pretty_format=None):
if diff['added']: if diff['added']:
self.out.nl() self.out.nl()
self.printText('added projects : \n') self.printText('added projects : \n')
...@@ -124,7 +128,8 @@ synced and their revisions won't be found. ...@@ -124,7 +128,8 @@ synced and their revisions won't be found.
self.printText(' to ') self.printText(' to ')
self.printRevision(otherProject.revisionExpr) self.printRevision(otherProject.revisionExpr)
self.out.nl() self.out.nl()
self._printLogs(project, otherProject, raw=False, color=color) self._printLogs(project, otherProject, raw=False, color=color,
pretty_format=pretty_format)
self.out.nl() self.out.nl()
if diff['unreachable']: if diff['unreachable']:
...@@ -139,9 +144,13 @@ synced and their revisions won't be found. ...@@ -139,9 +144,13 @@ synced and their revisions won't be found.
self.printText(' not found') self.printText(' not found')
self.out.nl() self.out.nl()
def _printLogs(self, project, otherProject, raw=False, color=True): def _printLogs(self, project, otherProject, raw=False, color=True,
logs = project.getAddedAndRemovedLogs(otherProject, oneline=True, pretty_format=None):
color=color)
logs = project.getAddedAndRemovedLogs(otherProject,
oneline=(pretty_format is None),
color=color,
pretty_format=pretty_format)
if logs['removed']: if logs['removed']:
removedLogs = logs['removed'].split('\n') removedLogs = logs['removed'].split('\n')
for log in removedLogs: for log in removedLogs:
...@@ -192,4 +201,4 @@ synced and their revisions won't be found. ...@@ -192,4 +201,4 @@ synced and their revisions won't be found.
if opt.raw: if opt.raw:
self._printRawDiff(diff) self._printRawDiff(diff)
else: else:
self._printDiff(diff, color=opt.color) self._printDiff(diff, color=opt.color, pretty_format=opt.pretty_format)
...@@ -121,6 +121,9 @@ without iterating through the remaining projects. ...@@ -121,6 +121,9 @@ without iterating through the remaining projects.
p.add_option('-r', '--regex', p.add_option('-r', '--regex',
dest='regex', action='store_true', dest='regex', action='store_true',
help="Execute the command only on projects matching regex or wildcard expression") help="Execute the command only on projects matching regex or wildcard expression")
p.add_option('-i', '--inverse-regex',
dest='inverse_regex', action='store_true',
help="Execute the command only on projects not matching regex or wildcard expression")
p.add_option('-g', '--groups', p.add_option('-g', '--groups',
dest='groups', dest='groups',
help="Execute the command only on projects matching the specified groups") help="Execute the command only on projects matching the specified groups")
...@@ -216,10 +219,12 @@ without iterating through the remaining projects. ...@@ -216,10 +219,12 @@ without iterating through the remaining projects.
if os.path.isfile(smart_sync_manifest_path): if os.path.isfile(smart_sync_manifest_path):
self.manifest.Override(smart_sync_manifest_path) self.manifest.Override(smart_sync_manifest_path)
if not opt.regex: if opt.regex:
projects = self.GetProjects(args, groups=opt.groups)
else:
projects = self.FindProjects(args) projects = self.FindProjects(args)
elif opt.inverse_regex:
projects = self.FindProjects(args, inverse=True)
else:
projects = self.GetProjects(args, groups=opt.groups)
os.environ['REPO_COUNT'] = str(len(projects)) os.environ['REPO_COUNT'] = str(len(projects))
......
...@@ -61,6 +61,11 @@ directory use as much data as possible from the local reference ...@@ -61,6 +61,11 @@ directory use as much data as possible from the local reference
directory when fetching from the server. This will make the sync directory when fetching from the server. This will make the sync
go a lot faster by reducing data traffic on the network. go a lot faster by reducing data traffic on the network.
The --no-clone-bundle option disables any attempt to use
$URL/clone.bundle to bootstrap a new Git repository from a
resumeable bundle file on a content delivery network. This
may be necessary if there are problems with the local Python
HTTP client or proxy configuration, but the Git binary works.
Switching Manifest Branches Switching Manifest Branches
--------------------------- ---------------------------
...@@ -113,6 +118,9 @@ to update the working directory files. ...@@ -113,6 +118,9 @@ to update the working directory files.
help='restrict manifest projects to ones with a specified ' help='restrict manifest projects to ones with a specified '
'platform group [auto|all|none|linux|darwin|...]', 'platform group [auto|all|none|linux|darwin|...]',
metavar='PLATFORM') metavar='PLATFORM')
g.add_option('--no-clone-bundle',
dest='no_clone_bundle', action='store_true',
help='disable use of /clone.bundle on HTTP/HTTPS')
# Tool # Tool
g = p.add_option_group('repo Version options') g = p.add_option_group('repo Version options')
...@@ -222,7 +230,8 @@ to update the working directory files. ...@@ -222,7 +230,8 @@ to update the working directory files.
'in another location.', file=sys.stderr) 'in another location.', file=sys.stderr)
sys.exit(1) sys.exit(1)
if not m.Sync_NetworkHalf(is_new=is_new): if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet,
clone_bundle=not opt.no_clone_bundle):
r = m.GetRemote(m.remote.name) r = m.GetRemote(m.remote.name)
print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr) print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr)
......
...@@ -54,8 +54,7 @@ revision specified in the manifest. ...@@ -54,8 +54,7 @@ revision specified in the manifest.
if not opt.all: if not opt.all:
projects = args[1:] projects = args[1:]
if len(projects) < 1: if len(projects) < 1:
print("error: at least one project must be specified", file=sys.stderr) projects = ['.',] # start it in the local project by default
sys.exit(1)
all_projects = self.GetProjects(projects, all_projects = self.GetProjects(projects,
missing_ok=bool(self.gitc_manifest)) missing_ok=bool(self.gitc_manifest))
......
...@@ -244,7 +244,7 @@ later is required to fix a server side protocol bug. ...@@ -244,7 +244,7 @@ later is required to fix a server side protocol bug.
if show_smart: if show_smart:
p.add_option('-s', '--smart-sync', p.add_option('-s', '--smart-sync',
dest='smart_sync', action='store_true', dest='smart_sync', action='store_true',
help='smart sync using manifest from a known good build') help='smart sync using manifest from the latest known good build')
p.add_option('-t', '--smart-tag', p.add_option('-t', '--smart-tag',
dest='smart_tag', action='store', dest='smart_tag', action='store',
help='smart sync using manifest from a known tag') help='smart sync using manifest from a known tag')
...@@ -399,9 +399,12 @@ later is required to fix a server side protocol bug. ...@@ -399,9 +399,12 @@ later is required to fix a server side protocol bug.
return fetched return fetched
def _GCProjects(self, projects): def _GCProjects(self, projects):
gitdirs = {} gc_gitdirs = {}
for project in projects: for project in projects:
gitdirs[project.gitdir] = project.bare_git if len(project.manifest.GetProjectsWithName(project.name)) > 1:
print('Shared project %s found, disabling pruning.' % project.name)
project.bare_git.config('--replace-all', 'gc.pruneExpire', 'never')
gc_gitdirs[project.gitdir] = project.bare_git
has_dash_c = git_require((1, 7, 2)) has_dash_c = git_require((1, 7, 2))
if multiprocessing and has_dash_c: if multiprocessing and has_dash_c:
...@@ -411,7 +414,7 @@ later is required to fix a server side protocol bug. ...@@ -411,7 +414,7 @@ later is required to fix a server side protocol bug.
jobs = min(self.jobs, cpu_count) jobs = min(self.jobs, cpu_count)
if jobs < 2: if jobs < 2:
for bare_git in gitdirs.values(): for bare_git in gc_gitdirs.values():
bare_git.gc('--auto') bare_git.gc('--auto')
return return
...@@ -433,7 +436,7 @@ later is required to fix a server side protocol bug. ...@@ -433,7 +436,7 @@ later is required to fix a server side protocol bug.
finally: finally:
sem.release() sem.release()
for bare_git in gitdirs.values(): for bare_git in gc_gitdirs.values():
if err_event.isSet(): if err_event.isSet():
break break
sem.acquire() sem.acquire()
...@@ -456,6 +459,65 @@ later is required to fix a server side protocol bug. ...@@ -456,6 +459,65 @@ later is required to fix a server side protocol bug.
else: else:
self.manifest._Unload() self.manifest._Unload()
def _DeleteProject(self, path):
print('Deleting obsolete path %s' % path, file=sys.stderr)
# Delete the .git directory first, so we're less likely to have a partially
# working git repository around. There shouldn't be any git projects here,
# so rmtree works.
try:
portable.rmtree(os.path.join(path, '.git'))
except OSError:
print('Failed to remove %s' % os.path.join(path, '.git'), file=sys.stderr)
print('error: Failed to delete obsolete path %s' % path, file=sys.stderr)
print(' remove manually, then run sync again', file=sys.stderr)
return -1
# Delete everything under the worktree, except for directories that contain
# another git project
dirs_to_remove = []
failed = False
for root, dirs, files in os.walk(path):
for f in files:
try:
os.remove(os.path.join(root, f))
except OSError:
print('Failed to remove %s' % os.path.join(root, f), file=sys.stderr)
failed = True
dirs[:] = [d for d in dirs
if not os.path.lexists(os.path.join(root, d, '.git'))]
dirs_to_remove += [os.path.join(root, d) for d in dirs
if os.path.join(root, d) not in dirs_to_remove]
for d in reversed(dirs_to_remove):
if portable.os_path_islink(d):
try:
os.remove(d)
except OSError:
print('Failed to remove %s' % os.path.join(root, d), file=sys.stderr)
failed = True
elif len(os.listdir(d)) == 0:
try:
os.rmdir(d)
except OSError:
print('Failed to remove %s' % os.path.join(root, d), file=sys.stderr)
failed = True
continue
if failed:
print('error: Failed to delete obsolete path %s' % path, file=sys.stderr)
print(' remove manually, then run sync again', file=sys.stderr)
return -1
# Try deleting parent dirs if they are empty
project_dir = path
while project_dir != self.manifest.topdir:
if len(os.listdir(project_dir)) == 0:
os.rmdir(project_dir)
else:
break
project_dir = os.path.dirname(project_dir)
return 0
def UpdateProjectList(self): def UpdateProjectList(self):
new_project_paths = [] new_project_paths = []
for project in self.GetProjects(None, missing_ok=True): for project in self.GetProjects(None, missing_ok=True):
...@@ -476,8 +538,8 @@ later is required to fix a server side protocol bug. ...@@ -476,8 +538,8 @@ later is required to fix a server side protocol bug.
continue continue
if path not in new_project_paths: if path not in new_project_paths:
# If the path has already been deleted, we don't need to do it # If the path has already been deleted, we don't need to do it
if os.path.exists(self.manifest.topdir + '/' + path):
gitdir = os.path.join(self.manifest.topdir, path, '.git') gitdir = os.path.join(self.manifest.topdir, path, '.git')
if os.path.exists(gitdir):
project = Project( project = Project(
manifest = self.manifest, manifest = self.manifest,
name = path, name = path,
...@@ -496,18 +558,8 @@ later is required to fix a server side protocol bug. ...@@ -496,18 +558,8 @@ later is required to fix a server side protocol bug.
print(' commit changes, then run sync again', print(' commit changes, then run sync again',
file=sys.stderr) file=sys.stderr)
return -1 return -1
else: elif self._DeleteProject(project.worktree):
print('Deleting obsolete path %s' % project.worktree, return -1
file=sys.stderr)
portable.rmtree(project.worktree)
# Try deleting parent subdirs if they are empty
project_dir = os.path.dirname(project.worktree)
while project_dir != self.manifest.topdir:
try:
os.rmdir(project_dir)
except OSError:
break
project_dir = os.path.dirname(project_dir)
new_project_paths.sort() new_project_paths.sort()
fd = open(file_path, 'w') fd = open(file_path, 'w')
......
...@@ -454,9 +454,15 @@ Gerrit Code Review: http://code.google.com/p/gerrit/ ...@@ -454,9 +454,15 @@ Gerrit Code Review: http://code.google.com/p/gerrit/
if avail: if avail:
pending.append((project, avail)) pending.append((project, avail))
if pending and (not opt.bypass_hooks): if not pending:
print("no branches ready for upload", file=sys.stderr)
return
if not opt.bypass_hooks:
hook = RepoHook('pre-upload', self.manifest.repo_hooks_project, hook = RepoHook('pre-upload', self.manifest.repo_hooks_project,
self.manifest.topdir, abort_if_user_denies=True) self.manifest.topdir,
self.manifest.manifestProject.GetRemote('origin').url,
abort_if_user_denies=True)
pending_proj_names = [project.name for (project, avail) in pending] pending_proj_names = [project.name for (project, avail) in pending]
pending_worktrees = [project.worktree for (project, avail) in pending] pending_worktrees = [project.worktree for (project, avail) in pending]
try: try:
...@@ -472,9 +478,7 @@ Gerrit Code Review: http://code.google.com/p/gerrit/ ...@@ -472,9 +478,7 @@ Gerrit Code Review: http://code.google.com/p/gerrit/
cc = _SplitEmails(opt.cc) cc = _SplitEmails(opt.cc)
people = (reviewers, cc) people = (reviewers, cc)
if not pending: if len(pending) == 1 and len(pending[0][1]) == 1:
print("no branches ready for upload", file=sys.stderr)
elif len(pending) == 1 and len(pending[0][1]) == 1:
self._SingleBranch(opt, pending[0][1][0], people) self._SingleBranch(opt, pending[0][1][0], people)
else: else:
self._MultipleBranches(opt, pending, people) self._MultipleBranches(opt, pending, people)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment