mirror of
https://gerrit.googlesource.com/git-repo
synced 2025-06-28 20:17:26 +00:00
Compare commits
100 Commits
Author | SHA1 | Date | |
---|---|---|---|
9f91c4395a | |||
4b0eb5a441 | |||
d38300c756 | |||
dcbfadf814 | |||
edd3d45b35 | |||
71928c19a6 | |||
f5dbd2eb07 | |||
0b888912cb | |||
75264789c0 | |||
a269b1cb9d | |||
7951e14385 | |||
8c268c0e7b | |||
d9254599f9 | |||
746e7f664e | |||
f241f8c094 | |||
a1e24b1f00 | |||
e6e27b338b | |||
aa611a2ca2 | |||
949bc34267 | |||
f841ca48c1 | |||
c0d1866b35 | |||
f81c72ed77 | |||
77b4397a73 | |||
0334b8c673 | |||
7ff80afdf6 | |||
19ec797f81 | |||
979d5bdc3e | |||
56ce3468b4 | |||
02aa889ecd | |||
819cc81c57 | |||
84685ba187 | |||
72ebf19e52 | |||
e50b6a7c4f | |||
8a98efee5c | |||
7a753b8b18 | |||
0258584c72 | |||
c58ec4dba1 | |||
e1191b3adb | |||
8f9bf484d8 | |||
37f28f1b4e | |||
af1e5dea35 | |||
3cceda535d | |||
31990f0097 | |||
16f2fae16f | |||
521d01b2e0 | |||
2b1345b8c5 | |||
3995ebd8c1 | |||
b57e633433 | |||
d21638424c | |||
c102fd5c0d | |||
d6b8bd464c | |||
6a784ff9a6 | |||
a46bf7dc2a | |||
19a1f22cd0 | |||
076512aafa | |||
d8fda90eed | |||
9cc1d70476 | |||
c19cc5c508 | |||
6fb0cb5c80 | |||
62285d22c1 | |||
3cda50a41b | |||
afbccdb11e | |||
e8ace26117 | |||
daa2cecdc5 | |||
3c5114cd78 | |||
7838e388ac | |||
aa47181e36 | |||
58a8b5c5d9 | |||
22dbfb99e5 | |||
31b9b4b06c | |||
0b57eed8f0 | |||
72b6dc8891 | |||
e19d9e1a65 | |||
8ddff5c74f | |||
8409410aa2 | |||
dc63181fcd | |||
f700ac79c3 | |||
6f1c626a9b | |||
77479863da | |||
16a5c3ac51 | |||
145e35b805 | |||
819827a42d | |||
abdf750061 | |||
0ab95ba6d0 | |||
5a2517f411 | |||
54a4e6007a | |||
42339d7e52 | |||
03ae99290a | |||
9090e804ab | |||
eeff3537de | |||
8f78a83083 | |||
e5913ae410 | |||
119085e6b1 | |||
086710465e | |||
ed4f2113d2 | |||
719675bcec | |||
21c1575ee4 | |||
8f9e02231a | |||
348e218d5b | |||
4bbba7d627 |
16
.flake8
16
.flake8
@ -1,3 +1,15 @@
|
|||||||
[flake8]
|
[flake8]
|
||||||
max-line-length=80
|
max-line-length=100
|
||||||
ignore=E111,E114,E402
|
ignore=
|
||||||
|
# E111: Indentation is not a multiple of four
|
||||||
|
E111,
|
||||||
|
# E114: Indentation is not a multiple of four (comment)
|
||||||
|
E114,
|
||||||
|
# E402: Module level import not at top of file
|
||||||
|
E402,
|
||||||
|
# E731: do not assign a lambda expression, use a def
|
||||||
|
E731,
|
||||||
|
# W503: Line break before binary operator
|
||||||
|
W503,
|
||||||
|
# W504: Line break after binary operator
|
||||||
|
W504
|
||||||
|
34
.github/workflows/test-ci.yml
vendored
Normal file
34
.github/workflows/test-ci.yml
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# GitHub actions workflow.
|
||||||
|
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
|
||||||
|
|
||||||
|
name: Test CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master, repo-1, stable, maint]
|
||||||
|
tags: [v*]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
python-version: [2.7, 3.6, 3.7, 3.8]
|
||||||
|
exclude:
|
||||||
|
- os: windows-latest
|
||||||
|
python-version: 2.7
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
|
uses: actions/setup-python@v1
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install tox tox-gh-actions
|
||||||
|
- name: Test with tox
|
||||||
|
run: tox
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
|
*.asc
|
||||||
*.egg-info/
|
*.egg-info/
|
||||||
*.log
|
*.log
|
||||||
*.pyc
|
*.pyc
|
||||||
|
1
.mailmap
1
.mailmap
@ -4,6 +4,7 @@ Hu Xiuyun <xiuyun.hu@hisilicon.com> Hu xiuyun <xiuyun.hu@hisilicon.com
|
|||||||
Hu Xiuyun <xiuyun.hu@hisilicon.com> Hu Xiuyun <clouds08@qq.com>
|
Hu Xiuyun <xiuyun.hu@hisilicon.com> Hu Xiuyun <clouds08@qq.com>
|
||||||
Jelly Chen <chenguodong@huawei.com> chenguodong <chenguodong@huawei.com>
|
Jelly Chen <chenguodong@huawei.com> chenguodong <chenguodong@huawei.com>
|
||||||
Jia Bi <bijia@xiaomi.com> bijia <bijia@xiaomi.com>
|
Jia Bi <bijia@xiaomi.com> bijia <bijia@xiaomi.com>
|
||||||
|
Jiri Tyr <jiri.tyr@gmail.com> Jiri tyr <jiri.tyr@gmail.com>
|
||||||
JoonCheol Park <jooncheol@gmail.com> Jooncheol Park <jooncheol@gmail.com>
|
JoonCheol Park <jooncheol@gmail.com> Jooncheol Park <jooncheol@gmail.com>
|
||||||
Sergii Pylypenko <x.pelya.x@gmail.com> pelya <x.pelya.x@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>
|
Shawn Pearce <sop@google.com> Shawn O. Pearce <sop@google.com>
|
||||||
|
12
README.md
12
README.md
@ -6,15 +6,17 @@ development workflow. Repo is not meant to replace Git, only to make it
|
|||||||
easier to work with Git. The repo command is an executable Python script
|
easier to work with Git. The repo command is an executable Python script
|
||||||
that you can put anywhere in your path.
|
that you can put anywhere in your path.
|
||||||
|
|
||||||
* Homepage: https://gerrit.googlesource.com/git-repo/
|
* Homepage: <https://gerrit.googlesource.com/git-repo/>
|
||||||
* Bug reports: https://bugs.chromium.org/p/gerrit/issues/list?q=component:repo
|
* Bug reports: <https://bugs.chromium.org/p/gerrit/issues/list?q=component:repo>
|
||||||
* Source: https://gerrit.googlesource.com/git-repo/
|
* Source: <https://gerrit.googlesource.com/git-repo/>
|
||||||
* Overview: https://source.android.com/source/developing.html
|
* Overview: <https://source.android.com/source/developing.html>
|
||||||
* Docs: https://source.android.com/source/using-repo.html
|
* Docs: <https://source.android.com/source/using-repo.html>
|
||||||
* [repo Manifest Format](./docs/manifest-format.md)
|
* [repo Manifest Format](./docs/manifest-format.md)
|
||||||
* [repo Hooks](./docs/repo-hooks.md)
|
* [repo Hooks](./docs/repo-hooks.md)
|
||||||
* [Submitting patches](./SUBMITTING_PATCHES.md)
|
* [Submitting patches](./SUBMITTING_PATCHES.md)
|
||||||
* Running Repo in [Microsoft Windows](./docs/windows.md)
|
* Running Repo in [Microsoft Windows](./docs/windows.md)
|
||||||
|
* GitHub mirror: <https://github.com/GerritCodeReview/git-repo>
|
||||||
|
* Postsubmit tests: <https://github.com/GerritCodeReview/git-repo/actions>
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
- Make small logical changes.
|
- Make small logical changes.
|
||||||
- Provide a meaningful commit message.
|
- Provide a meaningful commit message.
|
||||||
- Check for coding errors and style nits with pyflakes and flake8
|
- Check for coding errors and style nits with flake8.
|
||||||
- Make sure all code is under the Apache License, 2.0.
|
- Make sure all code is under the Apache License, 2.0.
|
||||||
- Publish your changes for review.
|
- Publish your changes for review.
|
||||||
- Make corrections if requested.
|
- Make corrections if requested.
|
||||||
@ -38,34 +38,30 @@ 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.
|
probably need to split up your commit to finer grained pieces.
|
||||||
|
|
||||||
|
|
||||||
## Check for coding errors and style nits with pyflakes and flake8
|
## Check for coding errors and style violations with flake8
|
||||||
|
|
||||||
### Coding errors
|
Run `flake8` on changed modules:
|
||||||
|
|
||||||
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
|
flake8 file.py
|
||||||
|
|
||||||
Note that repo generally follows [Google's python style guide] rather than
|
Note that repo generally follows [Google's Python Style Guide] rather than
|
||||||
[PEP 8], so it's possible that the output of `flake8` will be quite noisy.
|
[PEP 8], with a couple of notable exceptions:
|
||||||
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
|
* Indentation is at 2 columns rather than 4
|
||||||
avoided without going against the Google style guide, these may be
|
* The maximum line length is 100 columns rather than 80
|
||||||
suppressed in the included `.flake8` file.
|
|
||||||
|
|
||||||
[Google's python style guide]: https://google.github.io/styleguide/pyguide.html
|
There should be no new errors or warnings introduced.
|
||||||
|
|
||||||
|
Warnings that cannot be avoided without going against the Google Style Guide
|
||||||
|
may be suppressed inline individally using a `# noqa` comment as described
|
||||||
|
in the [flake8 documentation].
|
||||||
|
|
||||||
|
If there are many occurrences of the same warning, these may be suppressed for
|
||||||
|
the entire project in the included `.flake8` file.
|
||||||
|
|
||||||
|
[Google's Python Style Guide]: https://google.github.io/styleguide/pyguide.html
|
||||||
[PEP 8]: https://www.python.org/dev/peps/pep-0008/
|
[PEP 8]: https://www.python.org/dev/peps/pep-0008/
|
||||||
|
[flake8 documentation]: https://flake8.pycqa.org/en/3.1.1/user/ignoring-errors.html#in-line-ignoring-errors
|
||||||
|
|
||||||
## Running tests
|
## Running tests
|
||||||
|
|
||||||
|
1
color.py
1
color.py
@ -84,6 +84,7 @@ def _Color(fg=None, bg=None, attr=None):
|
|||||||
code = ''
|
code = ''
|
||||||
return code
|
return code
|
||||||
|
|
||||||
|
|
||||||
DEFAULT = None
|
DEFAULT = None
|
||||||
|
|
||||||
|
|
||||||
|
11
command.py
11
command.py
@ -66,7 +66,8 @@ 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)
|
epilog = 'Run `repo help %s` to view the detailed manual.' % self.NAME
|
||||||
|
self._optparse = optparse.OptionParser(usage=usage, epilog=epilog)
|
||||||
self._Options(self._optparse)
|
self._Options(self._optparse)
|
||||||
return self._optparse
|
return self._optparse
|
||||||
|
|
||||||
@ -123,9 +124,9 @@ class Command(object):
|
|||||||
project = None
|
project = None
|
||||||
if os.path.exists(path):
|
if os.path.exists(path):
|
||||||
oldpath = None
|
oldpath = None
|
||||||
while path and \
|
while (path and
|
||||||
path != oldpath and \
|
path != oldpath and
|
||||||
path != manifest.topdir:
|
path != manifest.topdir):
|
||||||
try:
|
try:
|
||||||
project = self._by_path[path]
|
project = self._by_path[path]
|
||||||
break
|
break
|
||||||
@ -236,6 +237,7 @@ 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
|
||||||
|
|
||||||
@ -244,6 +246,7 @@ 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
|
||||||
|
|
||||||
|
@ -23,6 +23,10 @@ It is always safe to re-run `repo init` in existing repo client checkouts.
|
|||||||
For example, if you want to change the manifest branch, you can simply run
|
For example, if you want to change the manifest branch, you can simply run
|
||||||
`repo init --manifest-branch=<new name>` and repo will take care of the rest.
|
`repo init --manifest-branch=<new name>` and repo will take care of the rest.
|
||||||
|
|
||||||
|
* `config`: Per-repo client checkout settings using [git-config] file format.
|
||||||
|
* `.repo_config.json`: JSON cache of the `config` file for repo to
|
||||||
|
read/process quickly.
|
||||||
|
|
||||||
### repo/ state
|
### repo/ state
|
||||||
|
|
||||||
* `repo/`: A git checkout of the repo project. This is how `repo` re-execs
|
* `repo/`: A git checkout of the repo project. This is how `repo` re-execs
|
||||||
@ -64,13 +68,20 @@ support, see the [manifest-format.md] file.
|
|||||||
If you want to switch the tracking settings, re-run `repo init` with the
|
If you want to switch the tracking settings, re-run `repo init` with the
|
||||||
new settings.
|
new settings.
|
||||||
|
|
||||||
|
* `manifest.xml`: The manifest that repo uses. It is generated at `repo init`
|
||||||
|
and uses the `--manifest-name` to determine what manifest file to load next
|
||||||
|
out of `manifests/`.
|
||||||
|
|
||||||
|
Do not try to modify this to load other manifests as it will confuse repo.
|
||||||
|
If you want to switch manifest files, re-run `repo init` with the new
|
||||||
|
setting.
|
||||||
|
|
||||||
|
Older versions of repo managed this with symlinks.
|
||||||
|
|
||||||
* `manifest.xml -> manifests/<manifest-name>.xml`: A symlink to the manifest
|
* `manifest.xml -> manifests/<manifest-name>.xml`: A symlink to the manifest
|
||||||
that the user wishes to sync. It is specified at `repo init` time via
|
that the user wishes to sync. It is specified at `repo init` time via
|
||||||
`--manifest-name`.
|
`--manifest-name`.
|
||||||
|
|
||||||
Do not try to repoint this symlink to other files as it will confuse repo.
|
|
||||||
If you want to switch manifest files, re-run `repo init` with the new
|
|
||||||
setting.
|
|
||||||
|
|
||||||
* `manifests.git/.repo_config.json`: JSON cache of the `manifests.git/config`
|
* `manifests.git/.repo_config.json`: JSON cache of the `manifests.git/config`
|
||||||
file for repo to read/process quickly.
|
file for repo to read/process quickly.
|
||||||
@ -92,18 +103,27 @@ support, see the [manifest-format.md] file.
|
|||||||
Some git state is further split out under `project-objects/`.
|
Some git state is further split out under `project-objects/`.
|
||||||
* `project-objects/`: Git objects that are safe to share across multiple
|
* `project-objects/`: Git objects that are safe to share across multiple
|
||||||
git checkouts. The filesystem layout matches the `<project name=...`
|
git checkouts. The filesystem layout matches the `<project name=...`
|
||||||
setting in the manifest (i.e. the path on the remote server). This allows
|
setting in the manifest (i.e. the path on the remote server) with a `.git`
|
||||||
for multiple checkouts of the same remote git repo to share their objects.
|
suffix. This allows for multiple checkouts of the same remote git repo to
|
||||||
For example, you could have different branches of `foo/bar.git` checked
|
share their objects. For example, you could have different branches of
|
||||||
out to `foo/bar-master`, `foo/bar-release`, etc... There will be multiple
|
`foo/bar.git` checked out to `foo/bar-master`, `foo/bar-release`, etc...
|
||||||
trees under `projects/` for each one, but only one under `project-objects/`.
|
There will be multiple trees under `projects/` for each one, but only one
|
||||||
|
under `project-objects/`.
|
||||||
|
|
||||||
This can run into problems if different remotes use the same path on their
|
This layout is designed to allow people to sync against different remotes
|
||||||
respective servers ...
|
(e.g. a local mirror & a public review server) while avoiding duplicating
|
||||||
|
the content. However, this can run into problems if different remotes use
|
||||||
|
the same path on their respective servers. Best to avoid that.
|
||||||
* `subprojects/`: Like `projects/`, but for git submodules.
|
* `subprojects/`: Like `projects/`, but for git submodules.
|
||||||
* `subproject-objects/`: Like `project-objects/`, but for git submodules.
|
* `subproject-objects/`: Like `project-objects/`, but for git submodules.
|
||||||
|
* `worktrees/`: Bare checkouts of every project synced by the manifest. The
|
||||||
|
filesystem layout matches the `<project name=...` setting in the manifest
|
||||||
|
(i.e. the path on the remote server) with a `.git` suffix. This has the
|
||||||
|
same advantages as the `project-objects/` layout above.
|
||||||
|
|
||||||
### Settings
|
This is used when git worktrees are enabled.
|
||||||
|
|
||||||
|
### Global settings
|
||||||
|
|
||||||
The `.repo/manifests.git/config` file is used to track settings for the entire
|
The `.repo/manifests.git/config` file is used to track settings for the entire
|
||||||
repo client checkout.
|
repo client checkout.
|
||||||
@ -121,25 +141,88 @@ User controlled settings are initialized when running `repo init`.
|
|||||||
| repo.partialclone | `--partial-clone` | Create [partial git clones] |
|
| repo.partialclone | `--partial-clone` | Create [partial git clones] |
|
||||||
| repo.reference | `--reference` | Reference repo client checkout |
|
| repo.reference | `--reference` | Reference repo client checkout |
|
||||||
| repo.submodules | `--submodules` | Sync git submodules |
|
| repo.submodules | `--submodules` | Sync git submodules |
|
||||||
|
| repo.worktree | `--worktree` | Use `git worktree` for checkouts |
|
||||||
| user.email | `--config-name` | User's e-mail address; Copied into `.git/config` when checking out a new project |
|
| user.email | `--config-name` | User's e-mail address; Copied into `.git/config` when checking out a new project |
|
||||||
| user.name | `--config-name` | User's name; Copied into `.git/config` when checking out a new project |
|
| user.name | `--config-name` | User's name; Copied into `.git/config` when checking out a new project |
|
||||||
|
|
||||||
[partial git clones]: https://git-scm.com/docs/gitrepository-layout#_code_partialclone_code
|
[partial git clones]: https://git-scm.com/docs/gitrepository-layout#_code_partialclone_code
|
||||||
|
|
||||||
|
### Repo hooks settings
|
||||||
|
|
||||||
|
For more details on this feature, see the [repo-hooks docs](./repo-hooks.md).
|
||||||
|
We'll just discuss the internal configuration settings.
|
||||||
|
These are stored in the registered `<repo-hooks>` project itself, so if the
|
||||||
|
manifest switches to a different project, the settings will not be copied.
|
||||||
|
|
||||||
|
| Setting | Use/Meaning |
|
||||||
|
|--------------------------------------|-------------|
|
||||||
|
| repo.hooks.\<hook\>.approvedmanifest | User approval for secure manifest sources (e.g. https://) |
|
||||||
|
| repo.hooks.\<hook\>.approvedhash | User approval for insecure manifest sources (e.g. http://) |
|
||||||
|
|
||||||
|
|
||||||
|
For example, if our manifest had the following entries, we would store settings
|
||||||
|
under `.repo/projects/src/repohooks.git/config` (which would be reachable via
|
||||||
|
`git --git-dir=src/repohooks/.git config`).
|
||||||
|
```xml
|
||||||
|
<project path="src/repohooks" name="chromiumos/repohooks" ... />
|
||||||
|
<repo-hooks in-project="chromiumos/repohooks" ... />
|
||||||
|
```
|
||||||
|
|
||||||
|
If `<hook>` is `pre-upload`, the `.git/config` setting might be:
|
||||||
|
```ini
|
||||||
|
[repo "hooks.pre-upload"]
|
||||||
|
approvedmanifest = https://chromium.googlesource.com/chromiumos/manifest
|
||||||
|
```
|
||||||
|
|
||||||
|
## Per-project settings
|
||||||
|
|
||||||
|
These settings are somewhat meant to be tweaked by the user on a per-project
|
||||||
|
basis (e.g. `git config` in a checked out source repo).
|
||||||
|
|
||||||
|
Where possible, we re-use standard git settings to avoid confusion, and we
|
||||||
|
refrain from documenting those, so see [git-config] documentation instead.
|
||||||
|
|
||||||
|
See `repo help upload` for documentation on `[review]` settings.
|
||||||
|
|
||||||
|
The `[remote]` settings are automatically populated/updated from the manifest.
|
||||||
|
|
||||||
|
The `[branch]` settings are updated by `repo start` and `git branch`.
|
||||||
|
|
||||||
|
| Setting | Subcommands | Use/Meaning |
|
||||||
|
|-------------------------------|---------------|-------------|
|
||||||
|
| review.\<url\>.autocopy | upload | Automatically add to `--cc=<value>` |
|
||||||
|
| review.\<url\>.autoreviewer | upload | Automatically add to `--reviewers=<value>` |
|
||||||
|
| review.\<url\>.autoupload | upload | Automatically answer "yes" or "no" to all prompts |
|
||||||
|
| review.\<url\>.uploadhashtags | upload | Automatically add to `--hashtags=<value>` |
|
||||||
|
| review.\<url\>.uploadtopic | upload | Default [topic] to use |
|
||||||
|
| review.\<url\>.username | upload | Override username with `ssh://` review URIs |
|
||||||
|
| remote.\<remote\>.fetch | sync | Set of refs to fetch |
|
||||||
|
| remote.\<remote\>.projectname | \<network\> | The name of the project as it exists in Gerrit review |
|
||||||
|
| remote.\<remote\>.pushurl | upload | The base URI for pushing CLs |
|
||||||
|
| remote.\<remote\>.review | upload | The URI of the Gerrit review server |
|
||||||
|
| remote.\<remote\>.url | sync & upload | The URI of the git project to fetch |
|
||||||
|
| branch.\<branch\>.merge | sync & upload | The branch to merge & upload & track |
|
||||||
|
| branch.\<branch\>.remote | sync & upload | The remote to track |
|
||||||
|
|
||||||
## ~/ dotconfig layout
|
## ~/ dotconfig layout
|
||||||
|
|
||||||
Repo will create & maintain a few files in the user's home directory.
|
Repo will create & maintain a few files in the user's home directory.
|
||||||
|
|
||||||
* `.repoconfig/`: Repo's per-user directory for all random config files/state.
|
* `.repoconfig/`: Repo's per-user directory for all random config files/state.
|
||||||
|
* `.repoconfig/config`: Per-user settings using [git-config] file format.
|
||||||
* `.repoconfig/keyring-version`: Cache file for checking if the gnupg subdir
|
* `.repoconfig/keyring-version`: Cache file for checking if the gnupg subdir
|
||||||
has all the same keys as the repo launcher. Used to avoid running gpg
|
has all the same keys as the repo launcher. Used to avoid running gpg
|
||||||
constantly as that can be quite slow.
|
constantly as that can be quite slow.
|
||||||
* `.repoconfig/gnupg/`: GnuPG's internal state directory used when repo needs
|
* `.repoconfig/gnupg/`: GnuPG's internal state directory used when repo needs
|
||||||
to run `gpg`. This provides isolation from the user's normal `~/.gnupg/`.
|
to run `gpg`. This provides isolation from the user's normal `~/.gnupg/`.
|
||||||
|
|
||||||
|
* `.repoconfig/.repo_config.json`: JSON cache of the `.repoconfig/config`
|
||||||
|
file for repo to read/process quickly.
|
||||||
* `.repo_.gitconfig.json`: JSON cache of the `.gitconfig` file for repo to
|
* `.repo_.gitconfig.json`: JSON cache of the `.gitconfig` file for repo to
|
||||||
read/process quickly.
|
read/process quickly.
|
||||||
|
|
||||||
|
|
||||||
|
[git-config]: https://git-scm.com/docs/git-config
|
||||||
[manifest-format.md]: ./manifest-format.md
|
[manifest-format.md]: ./manifest-format.md
|
||||||
[local manifests]: ./manifest-format.md#Local-Manifests
|
[local manifests]: ./manifest-format.md#Local-Manifests
|
||||||
|
[topic]: https://gerrit-review.googlesource.com/Documentation/intro-user.html#topics
|
||||||
|
@ -19,7 +19,33 @@ also due to most developers not using Windows.
|
|||||||
We will never add code specific to older versions of Windows.
|
We will never add code specific to older versions of Windows.
|
||||||
It might work, but it most likely won't, so please don't bother asking.
|
It might work, but it most likely won't, so please don't bother asking.
|
||||||
|
|
||||||
## Symlinks
|
## Git worktrees
|
||||||
|
|
||||||
|
*** note
|
||||||
|
**Warning**: Repo's support for Git worktrees is new & experimental.
|
||||||
|
Please report any bugs and be sure to maintain backups!
|
||||||
|
***
|
||||||
|
|
||||||
|
The Repo 2.4 release introduced support for [Git worktrees][git-worktree].
|
||||||
|
You don't have to worry about or understand this particular feature, so don't
|
||||||
|
worry if this section of the Git manual is particularly impenetrable.
|
||||||
|
|
||||||
|
The salient point is that Git worktrees allow Repo to create repo client
|
||||||
|
checkouts that do not require symlinks at all under Windows.
|
||||||
|
This means users no longer need Administrator access to sync code.
|
||||||
|
|
||||||
|
Simply use `--worktree` when running `repo init` to opt in.
|
||||||
|
|
||||||
|
This does not effect specific Git repositories that use symlinks themselves.
|
||||||
|
|
||||||
|
[git-worktree]: https://git-scm.com/docs/git-worktree
|
||||||
|
|
||||||
|
## Symlinks by default
|
||||||
|
|
||||||
|
*** note
|
||||||
|
**NB**: This section applies to the default Repo behavior which does not use
|
||||||
|
Git worktrees (see the previous section for more info).
|
||||||
|
***
|
||||||
|
|
||||||
Repo will use symlinks heavily internally.
|
Repo will use symlinks heavily internally.
|
||||||
On *NIX platforms, this isn't an issue, but Windows makes it a bit difficult.
|
On *NIX platforms, this isn't an issue, but Windows makes it a bit difficult.
|
||||||
@ -62,9 +88,8 @@ This also helps `tar` unpack symlinks, so that's nice.
|
|||||||
|
|
||||||
## Python
|
## Python
|
||||||
|
|
||||||
You should make sure to be running Python 3.6 or newer under Windows.
|
Python 3.6 or newer is required.
|
||||||
Python 2 might work, but due to already limited platform testing, you should
|
Python 2 is known to be broken when running under Windows.
|
||||||
only run newer Python versions.
|
|
||||||
See our [Python Support](./python-support.md) document for more details.
|
See our [Python Support](./python-support.md) document for more details.
|
||||||
|
|
||||||
You can grab the latest Windows installer here:<br>
|
You can grab the latest Windows installer here:<br>
|
||||||
|
@ -24,6 +24,7 @@ import tempfile
|
|||||||
from error import EditorError
|
from error import EditorError
|
||||||
import platform_utils
|
import platform_utils
|
||||||
|
|
||||||
|
|
||||||
class Editor(object):
|
class Editor(object):
|
||||||
"""Manages the user's preferred text editor."""
|
"""Manages the user's preferred text editor."""
|
||||||
|
|
||||||
@ -57,7 +58,7 @@ class Editor(object):
|
|||||||
|
|
||||||
if os.getenv('TERM') == 'dumb':
|
if os.getenv('TERM') == 'dumb':
|
||||||
print(
|
print(
|
||||||
"""No editor specified in GIT_EDITOR, core.editor, VISUAL or EDITOR.
|
"""No editor specified in GIT_EDITOR, core.editor, VISUAL or EDITOR.
|
||||||
Tried to fall back to vi but terminal is dumb. Please configure at
|
Tried to fall back to vi but terminal is dumb. Please configure at
|
||||||
least one of these before using this command.""", file=sys.stderr)
|
least one of these before using this command.""", file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
@ -104,10 +105,10 @@ least one of these before using this command.""", file=sys.stderr)
|
|||||||
rc = subprocess.Popen(args, shell=shell).wait()
|
rc = subprocess.Popen(args, shell=shell).wait()
|
||||||
except OSError as e:
|
except OSError as e:
|
||||||
raise EditorError('editor failed, %s: %s %s'
|
raise EditorError('editor failed, %s: %s %s'
|
||||||
% (str(e), editor, path))
|
% (str(e), editor, path))
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
raise EditorError('editor failed with exit status %d: %s %s'
|
raise EditorError('editor failed with exit status %d: %s %s'
|
||||||
% (rc, editor, path))
|
% (rc, editor, path))
|
||||||
|
|
||||||
with open(path, mode='rb') as fd2:
|
with open(path, mode='rb') as fd2:
|
||||||
return fd2.read().decode('utf-8')
|
return fd2.read().decode('utf-8')
|
||||||
|
19
error.py
19
error.py
@ -14,21 +14,26 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
|
||||||
class ManifestParseError(Exception):
|
class ManifestParseError(Exception):
|
||||||
"""Failed to parse the manifest file.
|
"""Failed to parse the manifest file.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
class ManifestInvalidRevisionError(Exception):
|
class ManifestInvalidRevisionError(Exception):
|
||||||
"""The revision value in a project is incorrect.
|
"""The revision value in a project is incorrect.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
class ManifestInvalidPathError(Exception):
|
class ManifestInvalidPathError(Exception):
|
||||||
"""A path used in <copyfile> or <linkfile> is incorrect.
|
"""A path used in <copyfile> or <linkfile> is incorrect.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
class NoManifestException(Exception):
|
class NoManifestException(Exception):
|
||||||
"""The required manifest does not exist.
|
"""The required manifest does not exist.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, path, reason):
|
def __init__(self, path, reason):
|
||||||
super(NoManifestException, self).__init__()
|
super(NoManifestException, self).__init__()
|
||||||
self.path = path
|
self.path = path
|
||||||
@ -37,9 +42,11 @@ class NoManifestException(Exception):
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.reason
|
return self.reason
|
||||||
|
|
||||||
|
|
||||||
class EditorError(Exception):
|
class EditorError(Exception):
|
||||||
"""Unspecified error from the user's text editor.
|
"""Unspecified error from the user's text editor.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, reason):
|
def __init__(self, reason):
|
||||||
super(EditorError, self).__init__()
|
super(EditorError, self).__init__()
|
||||||
self.reason = reason
|
self.reason = reason
|
||||||
@ -47,9 +54,11 @@ class EditorError(Exception):
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.reason
|
return self.reason
|
||||||
|
|
||||||
|
|
||||||
class GitError(Exception):
|
class GitError(Exception):
|
||||||
"""Unspecified internal error from git.
|
"""Unspecified internal error from git.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, command):
|
def __init__(self, command):
|
||||||
super(GitError, self).__init__()
|
super(GitError, self).__init__()
|
||||||
self.command = command
|
self.command = command
|
||||||
@ -57,9 +66,11 @@ class GitError(Exception):
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.command
|
return self.command
|
||||||
|
|
||||||
|
|
||||||
class UploadError(Exception):
|
class UploadError(Exception):
|
||||||
"""A bundle upload to Gerrit did not succeed.
|
"""A bundle upload to Gerrit did not succeed.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, reason):
|
def __init__(self, reason):
|
||||||
super(UploadError, self).__init__()
|
super(UploadError, self).__init__()
|
||||||
self.reason = reason
|
self.reason = reason
|
||||||
@ -67,9 +78,11 @@ class UploadError(Exception):
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.reason
|
return self.reason
|
||||||
|
|
||||||
|
|
||||||
class DownloadError(Exception):
|
class DownloadError(Exception):
|
||||||
"""Cannot download a repository.
|
"""Cannot download a repository.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, reason):
|
def __init__(self, reason):
|
||||||
super(DownloadError, self).__init__()
|
super(DownloadError, self).__init__()
|
||||||
self.reason = reason
|
self.reason = reason
|
||||||
@ -77,9 +90,11 @@ class DownloadError(Exception):
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.reason
|
return self.reason
|
||||||
|
|
||||||
|
|
||||||
class NoSuchProjectError(Exception):
|
class NoSuchProjectError(Exception):
|
||||||
"""A specified project does not exist in the work tree.
|
"""A specified project does not exist in the work tree.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, name=None):
|
def __init__(self, name=None):
|
||||||
super(NoSuchProjectError, self).__init__()
|
super(NoSuchProjectError, self).__init__()
|
||||||
self.name = name
|
self.name = name
|
||||||
@ -93,6 +108,7 @@ class NoSuchProjectError(Exception):
|
|||||||
class InvalidProjectGroupsError(Exception):
|
class InvalidProjectGroupsError(Exception):
|
||||||
"""A specified project is not suitable for the specified groups
|
"""A specified project is not suitable for the specified groups
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, name=None):
|
def __init__(self, name=None):
|
||||||
super(InvalidProjectGroupsError, self).__init__()
|
super(InvalidProjectGroupsError, self).__init__()
|
||||||
self.name = name
|
self.name = name
|
||||||
@ -102,15 +118,18 @@ class InvalidProjectGroupsError(Exception):
|
|||||||
return 'in current directory'
|
return 'in current directory'
|
||||||
return self.name
|
return self.name
|
||||||
|
|
||||||
|
|
||||||
class RepoChangedException(Exception):
|
class RepoChangedException(Exception):
|
||||||
"""Thrown if 'repo sync' results in repo updating its internal
|
"""Thrown if 'repo sync' results in repo updating its internal
|
||||||
repo or manifest repositories. In this special case we must
|
repo or manifest repositories. In this special case we must
|
||||||
use exec to re-execute repo with the new code and manifest.
|
use exec to re-execute repo with the new code and manifest.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, extra_args=None):
|
def __init__(self, extra_args=None):
|
||||||
super(RepoChangedException, self).__init__()
|
super(RepoChangedException, self).__init__()
|
||||||
self.extra_args = extra_args or []
|
self.extra_args = extra_args or []
|
||||||
|
|
||||||
|
|
||||||
class HookError(Exception):
|
class HookError(Exception):
|
||||||
"""Thrown if a 'repo-hook' could not be run.
|
"""Thrown if a 'repo-hook' could not be run.
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ TASK_COMMAND = 'command'
|
|||||||
TASK_SYNC_NETWORK = 'sync-network'
|
TASK_SYNC_NETWORK = 'sync-network'
|
||||||
TASK_SYNC_LOCAL = 'sync-local'
|
TASK_SYNC_LOCAL = 'sync-local'
|
||||||
|
|
||||||
|
|
||||||
class EventLog(object):
|
class EventLog(object):
|
||||||
"""Event log that records events that occurred during a repo invocation.
|
"""Event log that records events that occurred during a repo invocation.
|
||||||
|
|
||||||
@ -138,7 +139,7 @@ class EventLog(object):
|
|||||||
Returns:
|
Returns:
|
||||||
A dictionary of the event added to the log.
|
A dictionary of the event added to the log.
|
||||||
"""
|
"""
|
||||||
event['status'] = self.GetStatusString(success)
|
event['status'] = self.GetStatusString(success)
|
||||||
event['finish_time'] = finish
|
event['finish_time'] = finish
|
||||||
return event
|
return event
|
||||||
|
|
||||||
@ -165,6 +166,7 @@ class EventLog(object):
|
|||||||
# An integer id that is unique across this invocation of the program.
|
# An integer id that is unique across this invocation of the program.
|
||||||
_EVENT_ID = multiprocessing.Value('i', 1)
|
_EVENT_ID = multiprocessing.Value('i', 1)
|
||||||
|
|
||||||
|
|
||||||
def _NextEventId():
|
def _NextEventId():
|
||||||
"""Helper function for grabbing the next unique id.
|
"""Helper function for grabbing the next unique id.
|
||||||
|
|
||||||
|
@ -48,6 +48,7 @@ _ssh_proxy_path = None
|
|||||||
_ssh_sock_path = None
|
_ssh_sock_path = None
|
||||||
_ssh_clients = []
|
_ssh_clients = []
|
||||||
|
|
||||||
|
|
||||||
def ssh_sock(create=True):
|
def ssh_sock(create=True):
|
||||||
global _ssh_sock_path
|
global _ssh_sock_path
|
||||||
if _ssh_sock_path is None:
|
if _ssh_sock_path is None:
|
||||||
@ -57,27 +58,31 @@ def ssh_sock(create=True):
|
|||||||
if not os.path.exists(tmp_dir):
|
if not os.path.exists(tmp_dir):
|
||||||
tmp_dir = tempfile.gettempdir()
|
tmp_dir = tempfile.gettempdir()
|
||||||
_ssh_sock_path = os.path.join(
|
_ssh_sock_path = os.path.join(
|
||||||
tempfile.mkdtemp('', 'ssh-', tmp_dir),
|
tempfile.mkdtemp('', 'ssh-', tmp_dir),
|
||||||
'master-%r@%h:%p')
|
'master-%r@%h:%p')
|
||||||
return _ssh_sock_path
|
return _ssh_sock_path
|
||||||
|
|
||||||
|
|
||||||
def _ssh_proxy():
|
def _ssh_proxy():
|
||||||
global _ssh_proxy_path
|
global _ssh_proxy_path
|
||||||
if _ssh_proxy_path is None:
|
if _ssh_proxy_path is None:
|
||||||
_ssh_proxy_path = os.path.join(
|
_ssh_proxy_path = os.path.join(
|
||||||
os.path.dirname(__file__),
|
os.path.dirname(__file__),
|
||||||
'git_ssh')
|
'git_ssh')
|
||||||
return _ssh_proxy_path
|
return _ssh_proxy_path
|
||||||
|
|
||||||
|
|
||||||
def _add_ssh_client(p):
|
def _add_ssh_client(p):
|
||||||
_ssh_clients.append(p)
|
_ssh_clients.append(p)
|
||||||
|
|
||||||
|
|
||||||
def _remove_ssh_client(p):
|
def _remove_ssh_client(p):
|
||||||
try:
|
try:
|
||||||
_ssh_clients.remove(p)
|
_ssh_clients.remove(p)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
def terminate_ssh_clients():
|
def terminate_ssh_clients():
|
||||||
global _ssh_clients
|
global _ssh_clients
|
||||||
for p in _ssh_clients:
|
for p in _ssh_clients:
|
||||||
@ -88,8 +93,10 @@ def terminate_ssh_clients():
|
|||||||
pass
|
pass
|
||||||
_ssh_clients = []
|
_ssh_clients = []
|
||||||
|
|
||||||
|
|
||||||
_git_version = None
|
_git_version = None
|
||||||
|
|
||||||
|
|
||||||
class _GitCall(object):
|
class _GitCall(object):
|
||||||
def version_tuple(self):
|
def version_tuple(self):
|
||||||
global _git_version
|
global _git_version
|
||||||
@ -101,12 +108,15 @@ class _GitCall(object):
|
|||||||
return _git_version
|
return _git_version
|
||||||
|
|
||||||
def __getattr__(self, name):
|
def __getattr__(self, name):
|
||||||
name = name.replace('_','-')
|
name = name.replace('_', '-')
|
||||||
|
|
||||||
def fun(*cmdv):
|
def fun(*cmdv):
|
||||||
command = [name]
|
command = [name]
|
||||||
command.extend(cmdv)
|
command.extend(cmdv)
|
||||||
return GitCommand(None, command).Wait() == 0
|
return GitCommand(None, command).Wait() == 0
|
||||||
return fun
|
return fun
|
||||||
|
|
||||||
|
|
||||||
git = _GitCall()
|
git = _GitCall()
|
||||||
|
|
||||||
|
|
||||||
@ -187,8 +197,10 @@ class UserAgent(object):
|
|||||||
|
|
||||||
return self._git_ua
|
return self._git_ua
|
||||||
|
|
||||||
|
|
||||||
user_agent = UserAgent()
|
user_agent = UserAgent()
|
||||||
|
|
||||||
|
|
||||||
def git_require(min_version, fail=False, msg=''):
|
def git_require(min_version, fail=False, msg=''):
|
||||||
git_version = git.version_tuple()
|
git_version = git.version_tuple()
|
||||||
if min_version <= git_version:
|
if min_version <= git_version:
|
||||||
@ -201,42 +213,41 @@ def git_require(min_version, fail=False, msg=''):
|
|||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def _setenv(env, name, value):
|
|
||||||
env[name] = value.encode()
|
|
||||||
|
|
||||||
class GitCommand(object):
|
class GitCommand(object):
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
project,
|
project,
|
||||||
cmdv,
|
cmdv,
|
||||||
bare = False,
|
bare=False,
|
||||||
provide_stdin = False,
|
provide_stdin=False,
|
||||||
capture_stdout = False,
|
capture_stdout=False,
|
||||||
capture_stderr = False,
|
capture_stderr=False,
|
||||||
disable_editor = False,
|
merge_output=False,
|
||||||
ssh_proxy = False,
|
disable_editor=False,
|
||||||
cwd = None,
|
ssh_proxy=False,
|
||||||
gitdir = None):
|
cwd=None,
|
||||||
|
gitdir=None):
|
||||||
env = self._GetBasicEnv()
|
env = self._GetBasicEnv()
|
||||||
|
|
||||||
# If we are not capturing std* then need to print it.
|
# If we are not capturing std* then need to print it.
|
||||||
self.tee = {'stdout': not capture_stdout, 'stderr': not capture_stderr}
|
self.tee = {'stdout': not capture_stdout, 'stderr': not capture_stderr}
|
||||||
|
|
||||||
if disable_editor:
|
if disable_editor:
|
||||||
_setenv(env, 'GIT_EDITOR', ':')
|
env['GIT_EDITOR'] = ':'
|
||||||
if ssh_proxy:
|
if ssh_proxy:
|
||||||
_setenv(env, 'REPO_SSH_SOCK', ssh_sock())
|
env['REPO_SSH_SOCK'] = ssh_sock()
|
||||||
_setenv(env, 'GIT_SSH', _ssh_proxy())
|
env['GIT_SSH'] = _ssh_proxy()
|
||||||
_setenv(env, 'GIT_SSH_VARIANT', 'ssh')
|
env['GIT_SSH_VARIANT'] = 'ssh'
|
||||||
if 'http_proxy' in env and 'darwin' == sys.platform:
|
if 'http_proxy' in env and 'darwin' == sys.platform:
|
||||||
s = "'http.proxy=%s'" % (env['http_proxy'],)
|
s = "'http.proxy=%s'" % (env['http_proxy'],)
|
||||||
p = env.get('GIT_CONFIG_PARAMETERS')
|
p = env.get('GIT_CONFIG_PARAMETERS')
|
||||||
if p is not None:
|
if p is not None:
|
||||||
s = p + ' ' + s
|
s = p + ' ' + s
|
||||||
_setenv(env, 'GIT_CONFIG_PARAMETERS', s)
|
env['GIT_CONFIG_PARAMETERS'] = s
|
||||||
if 'GIT_ALLOW_PROTOCOL' not in env:
|
if 'GIT_ALLOW_PROTOCOL' not in env:
|
||||||
_setenv(env, 'GIT_ALLOW_PROTOCOL',
|
env['GIT_ALLOW_PROTOCOL'] = (
|
||||||
'file:git:http:https:ssh:persistent-http:persistent-https:sso:rpc')
|
'file:git:http:https:ssh:persistent-http:persistent-https:sso:rpc')
|
||||||
_setenv(env, 'GIT_HTTP_USER_AGENT', user_agent.git)
|
env['GIT_HTTP_USER_AGENT'] = user_agent.git
|
||||||
|
|
||||||
if project:
|
if project:
|
||||||
if not cwd:
|
if not cwd:
|
||||||
@ -247,7 +258,7 @@ class GitCommand(object):
|
|||||||
command = [GIT]
|
command = [GIT]
|
||||||
if bare:
|
if bare:
|
||||||
if gitdir:
|
if gitdir:
|
||||||
_setenv(env, GIT_DIR, gitdir)
|
env[GIT_DIR] = gitdir
|
||||||
cwd = None
|
cwd = None
|
||||||
command.append(cmdv[0])
|
command.append(cmdv[0])
|
||||||
# Need to use the --progress flag for fetch/clone so output will be
|
# Need to use the --progress flag for fetch/clone so output will be
|
||||||
@ -263,7 +274,7 @@ class GitCommand(object):
|
|||||||
stdin = None
|
stdin = None
|
||||||
|
|
||||||
stdout = subprocess.PIPE
|
stdout = subprocess.PIPE
|
||||||
stderr = subprocess.PIPE
|
stderr = subprocess.STDOUT if merge_output else subprocess.PIPE
|
||||||
|
|
||||||
if IsTrace():
|
if IsTrace():
|
||||||
global LAST_CWD
|
global LAST_CWD
|
||||||
@ -291,15 +302,17 @@ class GitCommand(object):
|
|||||||
dbg += ' 1>|'
|
dbg += ' 1>|'
|
||||||
if stderr == subprocess.PIPE:
|
if stderr == subprocess.PIPE:
|
||||||
dbg += ' 2>|'
|
dbg += ' 2>|'
|
||||||
|
elif stderr == subprocess.STDOUT:
|
||||||
|
dbg += ' 2>&1'
|
||||||
Trace('%s', dbg)
|
Trace('%s', dbg)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
p = subprocess.Popen(command,
|
p = subprocess.Popen(command,
|
||||||
cwd = cwd,
|
cwd=cwd,
|
||||||
env = env,
|
env=env,
|
||||||
stdin = stdin,
|
stdin=stdin,
|
||||||
stdout = stdout,
|
stdout=stdout,
|
||||||
stderr = stderr)
|
stderr=stderr)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise GitError('%s: %s' % (command[1], e))
|
raise GitError('%s: %s' % (command[1], e))
|
||||||
|
|
||||||
@ -338,7 +351,8 @@ class GitCommand(object):
|
|||||||
p = self.process
|
p = self.process
|
||||||
s_in = platform_utils.FileDescriptorStreams.create()
|
s_in = platform_utils.FileDescriptorStreams.create()
|
||||||
s_in.add(p.stdout, sys.stdout, 'stdout')
|
s_in.add(p.stdout, sys.stdout, 'stdout')
|
||||||
s_in.add(p.stderr, sys.stderr, 'stderr')
|
if p.stderr is not None:
|
||||||
|
s_in.add(p.stderr, sys.stderr, 'stderr')
|
||||||
self.stdout = ''
|
self.stdout = ''
|
||||||
self.stderr = ''
|
self.stderr = ''
|
||||||
|
|
||||||
|
124
git_config.py
124
git_config.py
@ -21,6 +21,7 @@ import errno
|
|||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
import signal
|
||||||
import ssl
|
import ssl
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
@ -41,7 +42,6 @@ else:
|
|||||||
urllib.request = urllib2
|
urllib.request = urllib2
|
||||||
urllib.error = urllib2
|
urllib.error = urllib2
|
||||||
|
|
||||||
from signal import SIGTERM
|
|
||||||
from error import GitError, UploadError
|
from error import GitError, UploadError
|
||||||
import platform_utils
|
import platform_utils
|
||||||
from repo_trace import Trace
|
from repo_trace import Trace
|
||||||
@ -59,39 +59,47 @@ ID_RE = re.compile(r'^[0-9a-f]{40}$')
|
|||||||
|
|
||||||
REVIEW_CACHE = dict()
|
REVIEW_CACHE = dict()
|
||||||
|
|
||||||
|
|
||||||
def IsChange(rev):
|
def IsChange(rev):
|
||||||
return rev.startswith(R_CHANGES)
|
return rev.startswith(R_CHANGES)
|
||||||
|
|
||||||
|
|
||||||
def IsId(rev):
|
def IsId(rev):
|
||||||
return ID_RE.match(rev)
|
return ID_RE.match(rev)
|
||||||
|
|
||||||
|
|
||||||
def IsTag(rev):
|
def IsTag(rev):
|
||||||
return rev.startswith(R_TAGS)
|
return rev.startswith(R_TAGS)
|
||||||
|
|
||||||
|
|
||||||
def IsImmutable(rev):
|
def IsImmutable(rev):
|
||||||
return IsChange(rev) or IsId(rev) or IsTag(rev)
|
return IsChange(rev) or IsId(rev) or IsTag(rev)
|
||||||
|
|
||||||
|
|
||||||
def _key(name):
|
def _key(name):
|
||||||
parts = name.split('.')
|
parts = name.split('.')
|
||||||
if len(parts) < 2:
|
if len(parts) < 2:
|
||||||
return name.lower()
|
return name.lower()
|
||||||
parts[ 0] = parts[ 0].lower()
|
parts[0] = parts[0].lower()
|
||||||
parts[-1] = parts[-1].lower()
|
parts[-1] = parts[-1].lower()
|
||||||
return '.'.join(parts)
|
return '.'.join(parts)
|
||||||
|
|
||||||
|
|
||||||
class GitConfig(object):
|
class GitConfig(object):
|
||||||
_ForUser = None
|
_ForUser = None
|
||||||
|
|
||||||
|
_USER_CONFIG = '~/.gitconfig'
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def ForUser(cls):
|
def ForUser(cls):
|
||||||
if cls._ForUser is None:
|
if cls._ForUser is None:
|
||||||
cls._ForUser = cls(configfile = os.path.expanduser('~/.gitconfig'))
|
cls._ForUser = cls(configfile=os.path.expanduser(cls._USER_CONFIG))
|
||||||
return cls._ForUser
|
return cls._ForUser
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def ForRepository(cls, gitdir, defaults=None):
|
def ForRepository(cls, gitdir, defaults=None):
|
||||||
return cls(configfile = os.path.join(gitdir, 'config'),
|
return cls(configfile=os.path.join(gitdir, 'config'),
|
||||||
defaults = defaults)
|
defaults=defaults)
|
||||||
|
|
||||||
def __init__(self, configfile, defaults=None, jsonFile=None):
|
def __init__(self, configfile, defaults=None, jsonFile=None):
|
||||||
self.file = configfile
|
self.file = configfile
|
||||||
@ -104,18 +112,55 @@ class GitConfig(object):
|
|||||||
self._json = jsonFile
|
self._json = jsonFile
|
||||||
if self._json is None:
|
if self._json is None:
|
||||||
self._json = os.path.join(
|
self._json = os.path.join(
|
||||||
os.path.dirname(self.file),
|
os.path.dirname(self.file),
|
||||||
'.repo_' + os.path.basename(self.file) + '.json')
|
'.repo_' + os.path.basename(self.file) + '.json')
|
||||||
|
|
||||||
def Has(self, name, include_defaults = True):
|
def Has(self, name, include_defaults=True):
|
||||||
"""Return true if this configuration file has the key.
|
"""Return true if this configuration file has the key.
|
||||||
"""
|
"""
|
||||||
if _key(name) in self._cache:
|
if _key(name) in self._cache:
|
||||||
return True
|
return True
|
||||||
if include_defaults and self.defaults:
|
if include_defaults and self.defaults:
|
||||||
return self.defaults.Has(name, include_defaults = True)
|
return self.defaults.Has(name, include_defaults=True)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
def GetInt(self, name):
|
||||||
|
"""Returns an integer from the configuration file.
|
||||||
|
|
||||||
|
This follows the git config syntax.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
name: The key to lookup.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
None if the value was not defined, or is not a boolean.
|
||||||
|
Otherwise, the number itself.
|
||||||
|
"""
|
||||||
|
v = self.GetString(name)
|
||||||
|
if v is None:
|
||||||
|
return None
|
||||||
|
v = v.strip()
|
||||||
|
|
||||||
|
mult = 1
|
||||||
|
if v.endswith('k'):
|
||||||
|
v = v[:-1]
|
||||||
|
mult = 1024
|
||||||
|
elif v.endswith('m'):
|
||||||
|
v = v[:-1]
|
||||||
|
mult = 1024 * 1024
|
||||||
|
elif v.endswith('g'):
|
||||||
|
v = v[:-1]
|
||||||
|
mult = 1024 * 1024 * 1024
|
||||||
|
|
||||||
|
base = 10
|
||||||
|
if v.startswith('0x'):
|
||||||
|
base = 16
|
||||||
|
|
||||||
|
try:
|
||||||
|
return int(v, base=base) * mult
|
||||||
|
except ValueError:
|
||||||
|
return None
|
||||||
|
|
||||||
def GetBoolean(self, name):
|
def GetBoolean(self, name):
|
||||||
"""Returns a boolean from the configuration file.
|
"""Returns a boolean from the configuration file.
|
||||||
None : The value was not defined, or is not a boolean.
|
None : The value was not defined, or is not a boolean.
|
||||||
@ -142,7 +187,7 @@ class GitConfig(object):
|
|||||||
v = self._cache[_key(name)]
|
v = self._cache[_key(name)]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
if self.defaults:
|
if self.defaults:
|
||||||
return self.defaults.GetString(name, all_keys = all_keys)
|
return self.defaults.GetString(name, all_keys=all_keys)
|
||||||
v = []
|
v = []
|
||||||
|
|
||||||
if not all_keys:
|
if not all_keys:
|
||||||
@ -153,7 +198,7 @@ class GitConfig(object):
|
|||||||
r = []
|
r = []
|
||||||
r.extend(v)
|
r.extend(v)
|
||||||
if self.defaults:
|
if self.defaults:
|
||||||
r.extend(self.defaults.GetString(name, all_keys = True))
|
r.extend(self.defaults.GetString(name, all_keys=True))
|
||||||
return r
|
return r
|
||||||
|
|
||||||
def SetString(self, name, value):
|
def SetString(self, name, value):
|
||||||
@ -217,7 +262,7 @@ class GitConfig(object):
|
|||||||
"""
|
"""
|
||||||
return self._sections.get(section, set())
|
return self._sections.get(section, set())
|
||||||
|
|
||||||
def HasSection(self, section, subsection = ''):
|
def HasSection(self, section, subsection=''):
|
||||||
"""Does at least one key in section.subsection exist?
|
"""Does at least one key in section.subsection exist?
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
@ -268,8 +313,7 @@ class GitConfig(object):
|
|||||||
|
|
||||||
def _ReadJson(self):
|
def _ReadJson(self):
|
||||||
try:
|
try:
|
||||||
if os.path.getmtime(self._json) \
|
if os.path.getmtime(self._json) <= os.path.getmtime(self.file):
|
||||||
<= os.path.getmtime(self.file):
|
|
||||||
platform_utils.remove(self._json)
|
platform_utils.remove(self._json)
|
||||||
return None
|
return None
|
||||||
except OSError:
|
except OSError:
|
||||||
@ -323,14 +367,20 @@ class GitConfig(object):
|
|||||||
|
|
||||||
p = GitCommand(None,
|
p = GitCommand(None,
|
||||||
command,
|
command,
|
||||||
capture_stdout = True,
|
capture_stdout=True,
|
||||||
capture_stderr = True)
|
capture_stderr=True)
|
||||||
if p.Wait() == 0:
|
if p.Wait() == 0:
|
||||||
return p.stdout
|
return p.stdout
|
||||||
else:
|
else:
|
||||||
GitError('git config %s: %s' % (str(args), p.stderr))
|
GitError('git config %s: %s' % (str(args), p.stderr))
|
||||||
|
|
||||||
|
|
||||||
|
class RepoConfig(GitConfig):
|
||||||
|
"""User settings for repo itself."""
|
||||||
|
|
||||||
|
_USER_CONFIG = '~/.repoconfig/config'
|
||||||
|
|
||||||
|
|
||||||
class RefSpec(object):
|
class RefSpec(object):
|
||||||
"""A Git refspec line, split into its components:
|
"""A Git refspec line, split into its components:
|
||||||
|
|
||||||
@ -392,6 +442,7 @@ _master_keys = set()
|
|||||||
_ssh_master = True
|
_ssh_master = True
|
||||||
_master_keys_lock = None
|
_master_keys_lock = None
|
||||||
|
|
||||||
|
|
||||||
def init_ssh():
|
def init_ssh():
|
||||||
"""Should be called once at the start of repo to init ssh master handling.
|
"""Should be called once at the start of repo to init ssh master handling.
|
||||||
|
|
||||||
@ -401,6 +452,7 @@ def init_ssh():
|
|||||||
assert _master_keys_lock is None, "Should only call init_ssh once"
|
assert _master_keys_lock is None, "Should only call init_ssh once"
|
||||||
_master_keys_lock = _threading.Lock()
|
_master_keys_lock = _threading.Lock()
|
||||||
|
|
||||||
|
|
||||||
def _open_ssh(host, port=None):
|
def _open_ssh(host, port=None):
|
||||||
global _ssh_master
|
global _ssh_master
|
||||||
|
|
||||||
@ -421,17 +473,17 @@ def _open_ssh(host, port=None):
|
|||||||
if key in _master_keys:
|
if key in _master_keys:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if not _ssh_master \
|
if (not _ssh_master
|
||||||
or 'GIT_SSH' in os.environ \
|
or 'GIT_SSH' in os.environ
|
||||||
or sys.platform in ('win32', 'cygwin'):
|
or sys.platform in ('win32', 'cygwin')):
|
||||||
# failed earlier, or cygwin ssh can't do this
|
# failed earlier, or cygwin ssh can't do this
|
||||||
#
|
#
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# We will make two calls to ssh; this is the common part of both calls.
|
# We will make two calls to ssh; this is the common part of both calls.
|
||||||
command_base = ['ssh',
|
command_base = ['ssh',
|
||||||
'-o','ControlPath %s' % ssh_sock(),
|
'-o', 'ControlPath %s' % ssh_sock(),
|
||||||
host]
|
host]
|
||||||
if port is not None:
|
if port is not None:
|
||||||
command_base[1:1] = ['-p', str(port)]
|
command_base[1:1] = ['-p', str(port)]
|
||||||
|
|
||||||
@ -439,13 +491,13 @@ def _open_ssh(host, port=None):
|
|||||||
# ...but before actually starting a master, we'll double-check. This can
|
# ...but before actually starting a master, we'll double-check. This can
|
||||||
# be important because we can't tell that that 'git@myhost.com' is the same
|
# be important because we can't tell that that 'git@myhost.com' is the same
|
||||||
# as 'myhost.com' where "User git" is setup in the user's ~/.ssh/config file.
|
# as 'myhost.com' where "User git" is setup in the user's ~/.ssh/config file.
|
||||||
check_command = command_base + ['-O','check']
|
check_command = command_base + ['-O', 'check']
|
||||||
try:
|
try:
|
||||||
Trace(': %s', ' '.join(check_command))
|
Trace(': %s', ' '.join(check_command))
|
||||||
check_process = subprocess.Popen(check_command,
|
check_process = subprocess.Popen(check_command,
|
||||||
stdout=subprocess.PIPE,
|
stdout=subprocess.PIPE,
|
||||||
stderr=subprocess.PIPE)
|
stderr=subprocess.PIPE)
|
||||||
check_process.communicate() # read output, but ignore it...
|
check_process.communicate() # read output, but ignore it...
|
||||||
isnt_running = check_process.wait()
|
isnt_running = check_process.wait()
|
||||||
|
|
||||||
if not isnt_running:
|
if not isnt_running:
|
||||||
@ -458,16 +510,14 @@ def _open_ssh(host, port=None):
|
|||||||
# to the log there.
|
# to the log there.
|
||||||
pass
|
pass
|
||||||
|
|
||||||
command = command_base[:1] + \
|
command = command_base[:1] + ['-M', '-N'] + command_base[1:]
|
||||||
['-M', '-N'] + \
|
|
||||||
command_base[1:]
|
|
||||||
try:
|
try:
|
||||||
Trace(': %s', ' '.join(command))
|
Trace(': %s', ' '.join(command))
|
||||||
p = subprocess.Popen(command)
|
p = subprocess.Popen(command)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
_ssh_master = False
|
_ssh_master = False
|
||||||
print('\nwarn: cannot enable ssh control master for %s:%s\n%s'
|
print('\nwarn: cannot enable ssh control master for %s:%s\n%s'
|
||||||
% (host,port, str(e)), file=sys.stderr)
|
% (host, port, str(e)), file=sys.stderr)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
@ -481,6 +531,7 @@ def _open_ssh(host, port=None):
|
|||||||
finally:
|
finally:
|
||||||
_master_keys_lock.release()
|
_master_keys_lock.release()
|
||||||
|
|
||||||
|
|
||||||
def close_ssh():
|
def close_ssh():
|
||||||
global _master_keys_lock
|
global _master_keys_lock
|
||||||
|
|
||||||
@ -488,7 +539,7 @@ def close_ssh():
|
|||||||
|
|
||||||
for p in _master_processes:
|
for p in _master_processes:
|
||||||
try:
|
try:
|
||||||
os.kill(p.pid, SIGTERM)
|
os.kill(p.pid, signal.SIGTERM)
|
||||||
p.wait()
|
p.wait()
|
||||||
except OSError:
|
except OSError:
|
||||||
pass
|
pass
|
||||||
@ -505,15 +556,18 @@ def close_ssh():
|
|||||||
# We're done with the lock, so we can delete it.
|
# We're done with the lock, so we can delete it.
|
||||||
_master_keys_lock = None
|
_master_keys_lock = None
|
||||||
|
|
||||||
|
|
||||||
URI_SCP = re.compile(r'^([^@:]*@?[^:/]{1,}):')
|
URI_SCP = re.compile(r'^([^@:]*@?[^:/]{1,}):')
|
||||||
URI_ALL = re.compile(r'^([a-z][a-z+-]*)://([^@/]*@?[^/]*)/')
|
URI_ALL = re.compile(r'^([a-z][a-z+-]*)://([^@/]*@?[^/]*)/')
|
||||||
|
|
||||||
|
|
||||||
def GetSchemeFromUrl(url):
|
def GetSchemeFromUrl(url):
|
||||||
m = URI_ALL.match(url)
|
m = URI_ALL.match(url)
|
||||||
if m:
|
if m:
|
||||||
return m.group(1)
|
return m.group(1)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
@contextlib.contextmanager
|
@contextlib.contextmanager
|
||||||
def GetUrlCookieFile(url, quiet):
|
def GetUrlCookieFile(url, quiet):
|
||||||
if url.startswith('persistent-'):
|
if url.startswith('persistent-'):
|
||||||
@ -554,6 +608,7 @@ def GetUrlCookieFile(url, quiet):
|
|||||||
cookiefile = os.path.expanduser(cookiefile)
|
cookiefile = os.path.expanduser(cookiefile)
|
||||||
yield cookiefile, None
|
yield cookiefile, None
|
||||||
|
|
||||||
|
|
||||||
def _preconnect(url):
|
def _preconnect(url):
|
||||||
m = URI_ALL.match(url)
|
m = URI_ALL.match(url)
|
||||||
if m:
|
if m:
|
||||||
@ -574,9 +629,11 @@ def _preconnect(url):
|
|||||||
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
class Remote(object):
|
class Remote(object):
|
||||||
"""Configuration options related to a remote.
|
"""Configuration options related to a remote.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, config, name):
|
def __init__(self, config, name):
|
||||||
self._config = config
|
self._config = config
|
||||||
self.name = name
|
self.name = name
|
||||||
@ -585,7 +642,7 @@ class Remote(object):
|
|||||||
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,
|
||||||
self._Get('fetch', all_keys=True)))
|
self._Get('fetch', all_keys=True)))
|
||||||
self._review_url = None
|
self._review_url = None
|
||||||
|
|
||||||
def _InsteadOf(self):
|
def _InsteadOf(self):
|
||||||
@ -599,8 +656,8 @@ class Remote(object):
|
|||||||
insteadOfList = globCfg.GetString(key, all_keys=True)
|
insteadOfList = globCfg.GetString(key, all_keys=True)
|
||||||
|
|
||||||
for insteadOf in insteadOfList:
|
for insteadOf in insteadOfList:
|
||||||
if self.url.startswith(insteadOf) \
|
if (self.url.startswith(insteadOf)
|
||||||
and len(insteadOf) > len(longest):
|
and len(insteadOf) > len(longest)):
|
||||||
longest = insteadOf
|
longest = insteadOf
|
||||||
longestUrl = url
|
longestUrl = url
|
||||||
|
|
||||||
@ -731,12 +788,13 @@ class Remote(object):
|
|||||||
|
|
||||||
def _Get(self, key, all_keys=False):
|
def _Get(self, key, all_keys=False):
|
||||||
key = 'remote.%s.%s' % (self.name, key)
|
key = 'remote.%s.%s' % (self.name, key)
|
||||||
return self._config.GetString(key, all_keys = all_keys)
|
return self._config.GetString(key, all_keys=all_keys)
|
||||||
|
|
||||||
|
|
||||||
class Branch(object):
|
class Branch(object):
|
||||||
"""Configuration options related to a single branch.
|
"""Configuration options related to a single branch.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, config, name):
|
def __init__(self, config, name):
|
||||||
self._config = config
|
self._config = config
|
||||||
self.name = name
|
self.name = name
|
||||||
@ -780,4 +838,4 @@ class Branch(object):
|
|||||||
|
|
||||||
def _Get(self, key, all_keys=False):
|
def _Get(self, key, all_keys=False):
|
||||||
key = 'branch.%s.%s' % (self.name, key)
|
key = 'branch.%s.%s' % (self.name, key)
|
||||||
return self._config.GetString(key, all_keys = all_keys)
|
return self._config.GetString(key, all_keys=all_keys)
|
||||||
|
10
git_refs.py
10
git_refs.py
@ -18,12 +18,12 @@ import os
|
|||||||
from repo_trace import Trace
|
from repo_trace import Trace
|
||||||
import platform_utils
|
import platform_utils
|
||||||
|
|
||||||
HEAD = 'HEAD'
|
HEAD = 'HEAD'
|
||||||
R_CHANGES = 'refs/changes/'
|
R_CHANGES = 'refs/changes/'
|
||||||
R_HEADS = 'refs/heads/'
|
R_HEADS = 'refs/heads/'
|
||||||
R_TAGS = 'refs/tags/'
|
R_TAGS = 'refs/tags/'
|
||||||
R_PUB = 'refs/published/'
|
R_PUB = 'refs/published/'
|
||||||
R_M = 'refs/remotes/m/'
|
R_M = 'refs/remotes/m/'
|
||||||
|
|
||||||
|
|
||||||
class GitRefs(object):
|
class GitRefs(object):
|
||||||
|
@ -29,12 +29,15 @@ from error import ManifestParseError
|
|||||||
|
|
||||||
NUM_BATCH_RETRIEVE_REVISIONID = 32
|
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()
|
||||||
|
|
||||||
|
|
||||||
def parse_clientdir(gitc_fs_path):
|
def parse_clientdir(gitc_fs_path):
|
||||||
return wrapper.Wrapper().gitc_parse_clientdir(gitc_fs_path)
|
return wrapper.Wrapper().gitc_parse_clientdir(gitc_fs_path)
|
||||||
|
|
||||||
|
|
||||||
def _set_project_revisions(projects):
|
def _set_project_revisions(projects):
|
||||||
"""Sets the revisionExpr for a list of projects.
|
"""Sets the revisionExpr for a list of projects.
|
||||||
|
|
||||||
@ -52,7 +55,7 @@ def _set_project_revisions(projects):
|
|||||||
project.remote.url,
|
project.remote.url,
|
||||||
project.revisionExpr],
|
project.revisionExpr],
|
||||||
capture_stdout=True, cwd='/tmp'))
|
capture_stdout=True, cwd='/tmp'))
|
||||||
for project in projects if not git_config.IsId(project.revisionExpr)]
|
for project in projects if not git_config.IsId(project.revisionExpr)]
|
||||||
for proj, gitcmd in project_gitcmds:
|
for proj, gitcmd in project_gitcmds:
|
||||||
if gitcmd.Wait():
|
if gitcmd.Wait():
|
||||||
print('FATAL: Failed to retrieve revisionExpr for %s' % proj)
|
print('FATAL: Failed to retrieve revisionExpr for %s' % proj)
|
||||||
@ -63,6 +66,7 @@ def _set_project_revisions(projects):
|
|||||||
(proj.remote.url, proj.revisionExpr))
|
(proj.remote.url, proj.revisionExpr))
|
||||||
proj.revisionExpr = 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
|
||||||
|
|
||||||
@ -77,6 +81,7 @@ def _manifest_groups(manifest):
|
|||||||
groups = 'default,platform-' + platform.system().lower()
|
groups = 'default,platform-' + platform.system().lower()
|
||||||
return groups
|
return groups
|
||||||
|
|
||||||
|
|
||||||
def generate_gitc_manifest(gitc_manifest, manifest, paths=None):
|
def generate_gitc_manifest(gitc_manifest, manifest, paths=None):
|
||||||
"""Generate a manifest for shafsd to use for this GITC client.
|
"""Generate a manifest for shafsd to use for this GITC client.
|
||||||
|
|
||||||
@ -104,11 +109,11 @@ def generate_gitc_manifest(gitc_manifest, manifest, paths=None):
|
|||||||
if not proj.upstream and not git_config.IsId(proj.revisionExpr):
|
if not proj.upstream and not git_config.IsId(proj.revisionExpr):
|
||||||
proj.upstream = proj.revisionExpr
|
proj.upstream = proj.revisionExpr
|
||||||
|
|
||||||
if not path in gitc_manifest.paths:
|
if path not in gitc_manifest.paths:
|
||||||
# Any new projects need their first revision, even if we weren't asked
|
# Any new projects need their first revision, even if we weren't asked
|
||||||
# for them.
|
# for them.
|
||||||
projects.append(proj)
|
projects.append(proj)
|
||||||
elif not path in paths:
|
elif path not in paths:
|
||||||
# And copy revisions from the previous manifest if we're not updating
|
# And copy revisions from the previous manifest if we're not updating
|
||||||
# them now.
|
# them now.
|
||||||
gitc_proj = gitc_manifest.paths[path]
|
gitc_proj = gitc_manifest.paths[path]
|
||||||
@ -121,7 +126,7 @@ def generate_gitc_manifest(gitc_manifest, manifest, paths=None):
|
|||||||
index = 0
|
index = 0
|
||||||
while index < len(projects):
|
while index < len(projects):
|
||||||
_set_project_revisions(
|
_set_project_revisions(
|
||||||
projects[index:(index+NUM_BATCH_RETRIEVE_REVISIONID)])
|
projects[index:(index + NUM_BATCH_RETRIEVE_REVISIONID)])
|
||||||
index += NUM_BATCH_RETRIEVE_REVISIONID
|
index += NUM_BATCH_RETRIEVE_REVISIONID
|
||||||
|
|
||||||
if gitc_manifest is not None:
|
if gitc_manifest is not None:
|
||||||
@ -140,6 +145,7 @@ def generate_gitc_manifest(gitc_manifest, manifest, paths=None):
|
|||||||
# Save the manifest.
|
# Save the manifest.
|
||||||
save_manifest(manifest)
|
save_manifest(manifest)
|
||||||
|
|
||||||
|
|
||||||
def save_manifest(manifest, client_dir=None):
|
def save_manifest(manifest, client_dir=None):
|
||||||
"""Save the manifest file in the client_dir.
|
"""Save the manifest file in the client_dir.
|
||||||
|
|
||||||
|
202
hooks/commit-msg
202
hooks/commit-msg
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# From Gerrit Code Review 2.14.6
|
# From Gerrit Code Review 3.1.3
|
||||||
#
|
#
|
||||||
# Part of Gerrit Code Review (https://www.gerritcodereview.com/)
|
# Part of Gerrit Code Review (https://www.gerritcodereview.com/)
|
||||||
#
|
#
|
||||||
@ -16,176 +16,48 @@
|
|||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
|
||||||
|
|
||||||
unset GREP_OPTIONS
|
# avoid [[ which is not POSIX sh.
|
||||||
|
if test "$#" != 1 ; then
|
||||||
|
echo "$0 requires an argument."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
CHANGE_ID_AFTER="Bug|Depends-On|Issue|Test|Feature|Fixes|Fixed"
|
if test ! -f "$1" ; then
|
||||||
MSG="$1"
|
echo "file does not exist: $1"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# Check for, and add if missing, a unique Change-Id
|
# Do not create a change id if requested
|
||||||
#
|
if test "false" = "`git config --bool --get gerrit.createChangeId`" ; then
|
||||||
add_ChangeId() {
|
exit 0
|
||||||
clean_message=`sed -e '
|
fi
|
||||||
/^diff --git .*/{
|
|
||||||
s///
|
|
||||||
q
|
|
||||||
}
|
|
||||||
/^Signed-off-by:/d
|
|
||||||
/^#/d
|
|
||||||
' "$MSG" | git stripspace`
|
|
||||||
if test -z "$clean_message"
|
|
||||||
then
|
|
||||||
return
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Do not add Change-Id to temp commits
|
# $RANDOM will be undefined if not using bash, so don't use set -u
|
||||||
if echo "$clean_message" | head -1 | grep -q '^\(fixup\|squash\)!'
|
random=$( (whoami ; hostname ; date; cat $1 ; echo $RANDOM) | git hash-object --stdin)
|
||||||
then
|
dest="$1.tmp.${random}"
|
||||||
return
|
|
||||||
fi
|
|
||||||
|
|
||||||
if test "false" = "`git config --bool --get gerrit.createChangeId`"
|
trap 'rm -f "${dest}"' EXIT
|
||||||
then
|
|
||||||
return
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Does Change-Id: already exist? if so, exit (no change).
|
if ! git stripspace --strip-comments < "$1" > "${dest}" ; then
|
||||||
if grep -i '^Change-Id:' "$MSG" >/dev/null
|
echo "cannot strip comments from $1"
|
||||||
then
|
exit 1
|
||||||
return
|
fi
|
||||||
fi
|
|
||||||
|
|
||||||
id=`_gen_ChangeId`
|
if test ! -s "${dest}" ; then
|
||||||
T="$MSG.tmp.$$"
|
echo "file is empty: $1"
|
||||||
AWK=awk
|
exit 1
|
||||||
if [ -x /usr/xpg4/bin/awk ]; then
|
fi
|
||||||
# Solaris AWK is just too broken
|
|
||||||
AWK=/usr/xpg4/bin/awk
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Get core.commentChar from git config or use default symbol
|
# Avoid the --in-place option which only appeared in Git 2.8
|
||||||
commentChar=`git config --get core.commentChar`
|
# Avoid the --if-exists option which only appeared in Git 2.15
|
||||||
commentChar=${commentChar:-#}
|
if ! git -c trailer.ifexists=doNothing interpret-trailers \
|
||||||
|
--trailer "Change-Id: I${random}" < "$1" > "${dest}" ; then
|
||||||
|
echo "cannot insert change-id line in $1"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# How this works:
|
if ! mv "${dest}" "$1" ; then
|
||||||
# - parse the commit message as (textLine+ blankLine*)*
|
echo "cannot mv ${dest} to $1"
|
||||||
# - assume textLine+ to be a footer until proven otherwise
|
exit 1
|
||||||
# - exception: the first block is not footer (as it is the title)
|
fi
|
||||||
# - read textLine+ into a variable
|
|
||||||
# - then count blankLines
|
|
||||||
# - once the next textLine appears, print textLine+ blankLine* as these
|
|
||||||
# aren't footer
|
|
||||||
# - in END, the last textLine+ block is available for footer parsing
|
|
||||||
$AWK '
|
|
||||||
BEGIN {
|
|
||||||
# while we start with the assumption that textLine+
|
|
||||||
# is a footer, the first block is not.
|
|
||||||
isFooter = 0
|
|
||||||
footerComment = 0
|
|
||||||
blankLines = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
# Skip lines starting with commentChar without any spaces before it.
|
|
||||||
/^'"$commentChar"'/ { next }
|
|
||||||
|
|
||||||
# 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.
|
|
||||||
# If more than one line before the diff was empty, strip all but one.
|
|
||||||
/^diff --git / {
|
|
||||||
blankLines = 0
|
|
||||||
while (getline) { }
|
|
||||||
next
|
|
||||||
}
|
|
||||||
|
|
||||||
# Count blank lines outside footer comments
|
|
||||||
/^$/ && (footerComment == 0) {
|
|
||||||
blankLines++
|
|
||||||
next
|
|
||||||
}
|
|
||||||
|
|
||||||
# Catch footer comment
|
|
||||||
/^\[[a-zA-Z0-9-]+:/ && (isFooter == 1) {
|
|
||||||
footerComment = 1
|
|
||||||
}
|
|
||||||
|
|
||||||
/]$/ && (footerComment == 1) {
|
|
||||||
footerComment = 2
|
|
||||||
}
|
|
||||||
|
|
||||||
# We have a non-blank line after blank lines. Handle this.
|
|
||||||
(blankLines > 0) {
|
|
||||||
print lines
|
|
||||||
for (i = 0; i < blankLines; i++) {
|
|
||||||
print ""
|
|
||||||
}
|
|
||||||
|
|
||||||
lines = ""
|
|
||||||
blankLines = 0
|
|
||||||
isFooter = 1
|
|
||||||
footerComment = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
# Detect that the current block is not the footer
|
|
||||||
(footerComment == 0) && (!/^\[?[a-zA-Z0-9-]+:/ || /^[a-zA-Z0-9-]+:\/\//) {
|
|
||||||
isFooter = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
# We need this information about the current last comment line
|
|
||||||
if (footerComment == 2) {
|
|
||||||
footerComment = 0
|
|
||||||
}
|
|
||||||
if (lines != "") {
|
|
||||||
lines = lines "\n";
|
|
||||||
}
|
|
||||||
lines = lines $0
|
|
||||||
}
|
|
||||||
|
|
||||||
# Footer handling:
|
|
||||||
# If the last block is considered a footer, splice in the Change-Id at the
|
|
||||||
# right place.
|
|
||||||
# Look for the right place to inject Change-Id by considering
|
|
||||||
# CHANGE_ID_AFTER. Keys listed in it (case insensitive) come first,
|
|
||||||
# then Change-Id, then everything else (eg. Signed-off-by:).
|
|
||||||
#
|
|
||||||
# Otherwise just print the last block, a new line and the Change-Id as a
|
|
||||||
# block of its own.
|
|
||||||
END {
|
|
||||||
unprinted = 1
|
|
||||||
if (isFooter == 0) {
|
|
||||||
print lines "\n"
|
|
||||||
lines = ""
|
|
||||||
}
|
|
||||||
changeIdAfter = "^(" tolower("'"$CHANGE_ID_AFTER"'") "):"
|
|
||||||
numlines = split(lines, footer, "\n")
|
|
||||||
for (line = 1; line <= numlines; line++) {
|
|
||||||
if (unprinted && match(tolower(footer[line]), changeIdAfter) != 1) {
|
|
||||||
unprinted = 0
|
|
||||||
print "Change-Id: I'"$id"'"
|
|
||||||
}
|
|
||||||
print footer[line]
|
|
||||||
}
|
|
||||||
if (unprinted) {
|
|
||||||
print "Change-Id: I'"$id"'"
|
|
||||||
}
|
|
||||||
}' "$MSG" > "$T" && mv "$T" "$MSG" || rm -f "$T"
|
|
||||||
}
|
|
||||||
_gen_ChangeIdInput() {
|
|
||||||
echo "tree `git write-tree`"
|
|
||||||
if parent=`git rev-parse "HEAD^0" 2>/dev/null`
|
|
||||||
then
|
|
||||||
echo "parent $parent"
|
|
||||||
fi
|
|
||||||
echo "author `git var GIT_AUTHOR_IDENT`"
|
|
||||||
echo "committer `git var GIT_COMMITTER_IDENT`"
|
|
||||||
echo
|
|
||||||
printf '%s' "$clean_message"
|
|
||||||
}
|
|
||||||
_gen_ChangeId() {
|
|
||||||
_gen_ChangeIdInput |
|
|
||||||
git hash-object -t commit --stdin
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
add_ChangeId
|
|
||||||
|
107
main.py
107
main.py
@ -26,6 +26,7 @@ import getpass
|
|||||||
import netrc
|
import netrc
|
||||||
import optparse
|
import optparse
|
||||||
import os
|
import os
|
||||||
|
import shlex
|
||||||
import sys
|
import sys
|
||||||
import textwrap
|
import textwrap
|
||||||
import time
|
import time
|
||||||
@ -47,8 +48,8 @@ except ImportError:
|
|||||||
from color import SetDefaultColoring
|
from color import SetDefaultColoring
|
||||||
import event_log
|
import event_log
|
||||||
from repo_trace import SetTrace
|
from repo_trace import SetTrace
|
||||||
from git_command import git, GitCommand, user_agent
|
from git_command import user_agent
|
||||||
from git_config import init_ssh, close_ssh
|
from git_config import init_ssh, close_ssh, RepoConfig
|
||||||
from command import InteractiveCommand
|
from command import InteractiveCommand
|
||||||
from command import MirrorSafeCommand
|
from command import MirrorSafeCommand
|
||||||
from command import GitcAvailableCommand, GitcClientCommand
|
from command import GitcAvailableCommand, GitcClientCommand
|
||||||
@ -69,7 +70,35 @@ from wrapper import WrapperPath, Wrapper
|
|||||||
from subcmds import all_commands
|
from subcmds import all_commands
|
||||||
|
|
||||||
if not is_python3():
|
if not is_python3():
|
||||||
input = raw_input
|
input = raw_input # noqa: F821
|
||||||
|
|
||||||
|
# NB: These do not need to be kept in sync with the repo launcher script.
|
||||||
|
# These may be much newer as it allows the repo launcher to roll between
|
||||||
|
# different repo releases while source versions might require a newer python.
|
||||||
|
#
|
||||||
|
# The soft version is when we start warning users that the version is old and
|
||||||
|
# we'll be dropping support for it. We'll refuse to work with versions older
|
||||||
|
# than the hard version.
|
||||||
|
#
|
||||||
|
# python-3.6 is in Ubuntu Bionic.
|
||||||
|
MIN_PYTHON_VERSION_SOFT = (3, 6)
|
||||||
|
MIN_PYTHON_VERSION_HARD = (3, 4)
|
||||||
|
|
||||||
|
if sys.version_info.major < 3:
|
||||||
|
print('repo: warning: Python 2 is no longer supported; '
|
||||||
|
'Please upgrade to Python {}.{}+.'.format(*MIN_PYTHON_VERSION_SOFT),
|
||||||
|
file=sys.stderr)
|
||||||
|
else:
|
||||||
|
if sys.version_info < MIN_PYTHON_VERSION_HARD:
|
||||||
|
print('repo: error: Python 3 version is too old; '
|
||||||
|
'Please upgrade to Python {}.{}+.'.format(*MIN_PYTHON_VERSION_SOFT),
|
||||||
|
file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
elif sys.version_info < MIN_PYTHON_VERSION_SOFT:
|
||||||
|
print('repo: warning: your Python 3 version is no longer supported; '
|
||||||
|
'Please upgrade to Python {}.{}+.'.format(*MIN_PYTHON_VERSION_SOFT),
|
||||||
|
file=sys.stderr)
|
||||||
|
|
||||||
|
|
||||||
global_options = optparse.OptionParser(
|
global_options = optparse.OptionParser(
|
||||||
usage='repo [-p|--paginate|--no-pager] COMMAND [ARGS]',
|
usage='repo [-p|--paginate|--no-pager] COMMAND [ARGS]',
|
||||||
@ -80,7 +109,7 @@ global_options.add_option('-p', '--paginate',
|
|||||||
dest='pager', action='store_true',
|
dest='pager', action='store_true',
|
||||||
help='display command output in the pager')
|
help='display command output in the pager')
|
||||||
global_options.add_option('--no-pager',
|
global_options.add_option('--no-pager',
|
||||||
dest='no_pager', action='store_true',
|
dest='pager', action='store_false',
|
||||||
help='disable the pager')
|
help='disable the pager')
|
||||||
global_options.add_option('--color',
|
global_options.add_option('--color',
|
||||||
choices=('auto', 'always', 'never'), default=None,
|
choices=('auto', 'always', 'never'), default=None,
|
||||||
@ -101,6 +130,7 @@ global_options.add_option('--event-log',
|
|||||||
dest='event_log', action='store',
|
dest='event_log', action='store',
|
||||||
help='filename of event log to append timeline to')
|
help='filename of event log to append timeline to')
|
||||||
|
|
||||||
|
|
||||||
class _Repo(object):
|
class _Repo(object):
|
||||||
def __init__(self, repodir):
|
def __init__(self, repodir):
|
||||||
self.repodir = repodir
|
self.repodir = repodir
|
||||||
@ -126,6 +156,9 @@ class _Repo(object):
|
|||||||
argv = []
|
argv = []
|
||||||
gopts, _gargs = global_options.parse_args(glob)
|
gopts, _gargs = global_options.parse_args(glob)
|
||||||
|
|
||||||
|
name, alias_args = self._ExpandAlias(name)
|
||||||
|
argv = alias_args + argv
|
||||||
|
|
||||||
if gopts.help:
|
if gopts.help:
|
||||||
global_options.print_help()
|
global_options.print_help()
|
||||||
commands = ' '.join(sorted(self.commands))
|
commands = ' '.join(sorted(self.commands))
|
||||||
@ -136,6 +169,27 @@ class _Repo(object):
|
|||||||
|
|
||||||
return (name, gopts, argv)
|
return (name, gopts, argv)
|
||||||
|
|
||||||
|
def _ExpandAlias(self, name):
|
||||||
|
"""Look up user registered aliases."""
|
||||||
|
# We don't resolve aliases for existing subcommands. This matches git.
|
||||||
|
if name in self.commands:
|
||||||
|
return name, []
|
||||||
|
|
||||||
|
key = 'alias.%s' % (name,)
|
||||||
|
alias = RepoConfig.ForRepository(self.repodir).GetString(key)
|
||||||
|
if alias is None:
|
||||||
|
alias = RepoConfig.ForUser().GetString(key)
|
||||||
|
if alias is None:
|
||||||
|
return name, []
|
||||||
|
|
||||||
|
args = alias.strip().split(' ', 1)
|
||||||
|
name = args[0]
|
||||||
|
if len(args) == 2:
|
||||||
|
args = shlex.split(args[1])
|
||||||
|
else:
|
||||||
|
args = []
|
||||||
|
return name, args
|
||||||
|
|
||||||
def _Run(self, name, gopts, argv):
|
def _Run(self, name, gopts, argv):
|
||||||
"""Execute the requested subcommand."""
|
"""Execute the requested subcommand."""
|
||||||
result = 0
|
result = 0
|
||||||
@ -188,12 +242,12 @@ class _Repo(object):
|
|||||||
copts = cmd.ReadEnvironmentOptions(copts)
|
copts = cmd.ReadEnvironmentOptions(copts)
|
||||||
except NoManifestException as e:
|
except NoManifestException as e:
|
||||||
print('error: in `%s`: %s' % (' '.join([name] + argv), str(e)),
|
print('error: in `%s`: %s' % (' '.join([name] + argv), str(e)),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
print('error: manifest missing or unreadable -- please run init',
|
print('error: manifest missing or unreadable -- please run init',
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
if not gopts.no_pager and not isinstance(cmd, InteractiveCommand):
|
if gopts.pager is not False and not isinstance(cmd, InteractiveCommand):
|
||||||
config = cmd.manifest.globalConfig
|
config = cmd.manifest.globalConfig
|
||||||
if gopts.pager:
|
if gopts.pager:
|
||||||
use_pager = True
|
use_pager = True
|
||||||
@ -211,9 +265,9 @@ class _Repo(object):
|
|||||||
cmd.ValidateOptions(copts, cargs)
|
cmd.ValidateOptions(copts, cargs)
|
||||||
result = cmd.Execute(copts, cargs)
|
result = cmd.Execute(copts, cargs)
|
||||||
except (DownloadError, ManifestInvalidRevisionError,
|
except (DownloadError, ManifestInvalidRevisionError,
|
||||||
NoManifestException) as e:
|
NoManifestException) as e:
|
||||||
print('error: in `%s`: %s' % (' '.join([name] + argv), str(e)),
|
print('error: in `%s`: %s' % (' '.join([name] + argv), str(e)),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
if isinstance(e, NoManifestException):
|
if isinstance(e, NoManifestException):
|
||||||
print('error: manifest missing or unreadable -- please run init',
|
print('error: manifest missing or unreadable -- please run init',
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
@ -228,7 +282,8 @@ class _Repo(object):
|
|||||||
if e.name:
|
if e.name:
|
||||||
print('error: project group must be enabled for project %s' % e.name, file=sys.stderr)
|
print('error: project group must be enabled for project %s' % e.name, file=sys.stderr)
|
||||||
else:
|
else:
|
||||||
print('error: project group must be enabled for the project in the current directory', file=sys.stderr)
|
print('error: project group must be enabled for the project in the current directory',
|
||||||
|
file=sys.stderr)
|
||||||
result = 1
|
result = 1
|
||||||
except SystemExit as e:
|
except SystemExit as e:
|
||||||
if e.code:
|
if e.code:
|
||||||
@ -285,7 +340,7 @@ def _CheckWrapperVersion(ver_str, repo_path):
|
|||||||
repo: error:
|
repo: error:
|
||||||
!!! Your version of repo %s is too old.
|
!!! Your version of repo %s is too old.
|
||||||
!!! We need at least version %s.
|
!!! We need at least version %s.
|
||||||
!!! A new repo command (%s) is available.
|
!!! A new version of repo (%s) is available.
|
||||||
!!! You must upgrade before you can continue:
|
!!! You must upgrade before you can continue:
|
||||||
|
|
||||||
cp %s %s
|
cp %s %s
|
||||||
@ -294,17 +349,19 @@ repo: error:
|
|||||||
|
|
||||||
if exp > ver:
|
if exp > ver:
|
||||||
print("""
|
print("""
|
||||||
... A new repo command (%5s) is available.
|
... A new version of repo (%s) is available.
|
||||||
... You should upgrade soon:
|
... You should upgrade soon:
|
||||||
|
|
||||||
cp %s %s
|
cp %s %s
|
||||||
""" % (exp_str, WrapperPath(), repo_path), file=sys.stderr)
|
""" % (exp_str, WrapperPath(), repo_path), file=sys.stderr)
|
||||||
|
|
||||||
|
|
||||||
def _CheckRepoDir(repo_dir):
|
def _CheckRepoDir(repo_dir):
|
||||||
if not repo_dir:
|
if not repo_dir:
|
||||||
print('no --repo-dir argument', file=sys.stderr)
|
print('no --repo-dir argument', file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
def _PruneOptions(argv, opt):
|
def _PruneOptions(argv, opt):
|
||||||
i = 0
|
i = 0
|
||||||
while i < len(argv):
|
while i < len(argv):
|
||||||
@ -320,6 +377,7 @@ def _PruneOptions(argv, opt):
|
|||||||
continue
|
continue
|
||||||
i += 1
|
i += 1
|
||||||
|
|
||||||
|
|
||||||
class _UserAgentHandler(urllib.request.BaseHandler):
|
class _UserAgentHandler(urllib.request.BaseHandler):
|
||||||
def http_request(self, req):
|
def http_request(self, req):
|
||||||
req.add_header('User-Agent', user_agent.repo)
|
req.add_header('User-Agent', user_agent.repo)
|
||||||
@ -329,6 +387,7 @@ class _UserAgentHandler(urllib.request.BaseHandler):
|
|||||||
req.add_header('User-Agent', user_agent.repo)
|
req.add_header('User-Agent', user_agent.repo)
|
||||||
return req
|
return req
|
||||||
|
|
||||||
|
|
||||||
def _AddPasswordFromUserInput(handler, msg, req):
|
def _AddPasswordFromUserInput(handler, msg, req):
|
||||||
# If repo could not find auth info from netrc, try to get it from user input
|
# If repo could not find auth info from netrc, try to get it from user input
|
||||||
url = req.get_full_url()
|
url = req.get_full_url()
|
||||||
@ -342,22 +401,24 @@ def _AddPasswordFromUserInput(handler, msg, req):
|
|||||||
return
|
return
|
||||||
handler.passwd.add_password(None, url, user, password)
|
handler.passwd.add_password(None, url, user, password)
|
||||||
|
|
||||||
|
|
||||||
class _BasicAuthHandler(urllib.request.HTTPBasicAuthHandler):
|
class _BasicAuthHandler(urllib.request.HTTPBasicAuthHandler):
|
||||||
def http_error_401(self, req, fp, code, msg, headers):
|
def http_error_401(self, req, fp, code, msg, headers):
|
||||||
_AddPasswordFromUserInput(self, msg, req)
|
_AddPasswordFromUserInput(self, msg, req)
|
||||||
return urllib.request.HTTPBasicAuthHandler.http_error_401(
|
return urllib.request.HTTPBasicAuthHandler.http_error_401(
|
||||||
self, req, fp, code, msg, headers)
|
self, req, fp, code, msg, headers)
|
||||||
|
|
||||||
def http_error_auth_reqed(self, authreq, host, req, headers):
|
def http_error_auth_reqed(self, authreq, host, req, headers):
|
||||||
try:
|
try:
|
||||||
old_add_header = req.add_header
|
old_add_header = req.add_header
|
||||||
|
|
||||||
def _add_header(name, val):
|
def _add_header(name, val):
|
||||||
val = val.replace('\n', '')
|
val = val.replace('\n', '')
|
||||||
old_add_header(name, val)
|
old_add_header(name, val)
|
||||||
req.add_header = _add_header
|
req.add_header = _add_header
|
||||||
return urllib.request.AbstractBasicAuthHandler.http_error_auth_reqed(
|
return urllib.request.AbstractBasicAuthHandler.http_error_auth_reqed(
|
||||||
self, authreq, host, req, headers)
|
self, authreq, host, req, headers)
|
||||||
except:
|
except Exception:
|
||||||
reset = getattr(self, 'reset_retry_count', None)
|
reset = getattr(self, 'reset_retry_count', None)
|
||||||
if reset is not None:
|
if reset is not None:
|
||||||
reset()
|
reset()
|
||||||
@ -365,22 +426,24 @@ class _BasicAuthHandler(urllib.request.HTTPBasicAuthHandler):
|
|||||||
self.retried = 0
|
self.retried = 0
|
||||||
raise
|
raise
|
||||||
|
|
||||||
|
|
||||||
class _DigestAuthHandler(urllib.request.HTTPDigestAuthHandler):
|
class _DigestAuthHandler(urllib.request.HTTPDigestAuthHandler):
|
||||||
def http_error_401(self, req, fp, code, msg, headers):
|
def http_error_401(self, req, fp, code, msg, headers):
|
||||||
_AddPasswordFromUserInput(self, msg, req)
|
_AddPasswordFromUserInput(self, msg, req)
|
||||||
return urllib.request.HTTPDigestAuthHandler.http_error_401(
|
return urllib.request.HTTPDigestAuthHandler.http_error_401(
|
||||||
self, req, fp, code, msg, headers)
|
self, req, fp, code, msg, headers)
|
||||||
|
|
||||||
def http_error_auth_reqed(self, auth_header, host, req, headers):
|
def http_error_auth_reqed(self, auth_header, host, req, headers):
|
||||||
try:
|
try:
|
||||||
old_add_header = req.add_header
|
old_add_header = req.add_header
|
||||||
|
|
||||||
def _add_header(name, val):
|
def _add_header(name, val):
|
||||||
val = val.replace('\n', '')
|
val = val.replace('\n', '')
|
||||||
old_add_header(name, val)
|
old_add_header(name, val)
|
||||||
req.add_header = _add_header
|
req.add_header = _add_header
|
||||||
return urllib.request.AbstractDigestAuthHandler.http_error_auth_reqed(
|
return urllib.request.AbstractDigestAuthHandler.http_error_auth_reqed(
|
||||||
self, auth_header, host, req, headers)
|
self, auth_header, host, req, headers)
|
||||||
except:
|
except Exception:
|
||||||
reset = getattr(self, 'reset_retry_count', None)
|
reset = getattr(self, 'reset_retry_count', None)
|
||||||
if reset is not None:
|
if reset is not None:
|
||||||
reset()
|
reset()
|
||||||
@ -388,6 +451,7 @@ class _DigestAuthHandler(urllib.request.HTTPDigestAuthHandler):
|
|||||||
self.retried = 0
|
self.retried = 0
|
||||||
raise
|
raise
|
||||||
|
|
||||||
|
|
||||||
class _KerberosAuthHandler(urllib.request.BaseHandler):
|
class _KerberosAuthHandler(urllib.request.BaseHandler):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.retried = 0
|
self.retried = 0
|
||||||
@ -406,7 +470,7 @@ class _KerberosAuthHandler(urllib.request.BaseHandler):
|
|||||||
|
|
||||||
if self.retried > 3:
|
if self.retried > 3:
|
||||||
raise urllib.request.HTTPError(req.get_full_url(), 401,
|
raise urllib.request.HTTPError(req.get_full_url(), 401,
|
||||||
"Negotiate auth failed", headers, None)
|
"Negotiate auth failed", headers, None)
|
||||||
else:
|
else:
|
||||||
self.retried += 1
|
self.retried += 1
|
||||||
|
|
||||||
@ -422,7 +486,7 @@ class _KerberosAuthHandler(urllib.request.BaseHandler):
|
|||||||
return response
|
return response
|
||||||
except kerberos.GSSError:
|
except kerberos.GSSError:
|
||||||
return None
|
return None
|
||||||
except:
|
except Exception:
|
||||||
self.reset_retry_count()
|
self.reset_retry_count()
|
||||||
raise
|
raise
|
||||||
finally:
|
finally:
|
||||||
@ -468,6 +532,7 @@ class _KerberosAuthHandler(urllib.request.BaseHandler):
|
|||||||
kerberos.authGSSClientClean(self.context)
|
kerberos.authGSSClientClean(self.context)
|
||||||
self.context = None
|
self.context = None
|
||||||
|
|
||||||
|
|
||||||
def init_http():
|
def init_http():
|
||||||
handlers = [_UserAgentHandler()]
|
handlers = [_UserAgentHandler()]
|
||||||
|
|
||||||
@ -476,7 +541,7 @@ def init_http():
|
|||||||
n = netrc.netrc()
|
n = netrc.netrc()
|
||||||
for host in n.hosts:
|
for host in n.hosts:
|
||||||
p = n.hosts[host]
|
p = n.hosts[host]
|
||||||
mgr.add_password(p[1], 'http://%s/' % host, p[0], p[2])
|
mgr.add_password(p[1], 'http://%s/' % host, p[0], p[2])
|
||||||
mgr.add_password(p[1], 'https://%s/' % host, p[0], p[2])
|
mgr.add_password(p[1], 'https://%s/' % host, p[0], p[2])
|
||||||
except netrc.NetrcParseError:
|
except netrc.NetrcParseError:
|
||||||
pass
|
pass
|
||||||
@ -495,6 +560,7 @@ def init_http():
|
|||||||
handlers.append(urllib.request.HTTPSHandler(debuglevel=1))
|
handlers.append(urllib.request.HTTPSHandler(debuglevel=1))
|
||||||
urllib.request.install_opener(urllib.request.build_opener(*handlers))
|
urllib.request.install_opener(urllib.request.build_opener(*handlers))
|
||||||
|
|
||||||
|
|
||||||
def _Main(argv):
|
def _Main(argv):
|
||||||
result = 0
|
result = 0
|
||||||
|
|
||||||
@ -551,5 +617,6 @@ def _Main(argv):
|
|||||||
TerminatePager()
|
TerminatePager()
|
||||||
sys.exit(result)
|
sys.exit(result)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
_Main(sys.argv[1:])
|
_Main(sys.argv[1:])
|
||||||
|
172
manifest_xml.py
172
manifest_xml.py
@ -56,6 +56,7 @@ urllib.parse.uses_netloc.extend([
|
|||||||
'sso',
|
'sso',
|
||||||
'rpc'])
|
'rpc'])
|
||||||
|
|
||||||
|
|
||||||
class _Default(object):
|
class _Default(object):
|
||||||
"""Project defaults within the manifest."""
|
"""Project defaults within the manifest."""
|
||||||
|
|
||||||
@ -74,6 +75,7 @@ class _Default(object):
|
|||||||
def __ne__(self, other):
|
def __ne__(self, other):
|
||||||
return self.__dict__ != other.__dict__
|
return self.__dict__ != other.__dict__
|
||||||
|
|
||||||
|
|
||||||
class _XmlRemote(object):
|
class _XmlRemote(object):
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
name,
|
name,
|
||||||
@ -127,6 +129,7 @@ class _XmlRemote(object):
|
|||||||
orig_name=self.name,
|
orig_name=self.name,
|
||||||
fetchUrl=self.fetchUrl)
|
fetchUrl=self.fetchUrl)
|
||||||
|
|
||||||
|
|
||||||
class XmlManifest(object):
|
class XmlManifest(object):
|
||||||
"""manages the repo configuration file"""
|
"""manages the repo configuration file"""
|
||||||
|
|
||||||
@ -140,12 +143,20 @@ class XmlManifest(object):
|
|||||||
self._load_local_manifests = True
|
self._load_local_manifests = True
|
||||||
|
|
||||||
self.repoProject = MetaProject(self, 'repo',
|
self.repoProject = MetaProject(self, 'repo',
|
||||||
gitdir = os.path.join(repodir, 'repo/.git'),
|
gitdir=os.path.join(repodir, 'repo/.git'),
|
||||||
worktree = os.path.join(repodir, 'repo'))
|
worktree=os.path.join(repodir, 'repo'))
|
||||||
|
|
||||||
self.manifestProject = MetaProject(self, 'manifests',
|
mp = MetaProject(self, 'manifests',
|
||||||
gitdir = os.path.join(repodir, 'manifests.git'),
|
gitdir=os.path.join(repodir, 'manifests.git'),
|
||||||
worktree = os.path.join(repodir, 'manifests'))
|
worktree=os.path.join(repodir, 'manifests'))
|
||||||
|
self.manifestProject = mp
|
||||||
|
|
||||||
|
# This is a bit hacky, but we're in a chicken & egg situation: all the
|
||||||
|
# normal repo settings live in the manifestProject which we just setup
|
||||||
|
# above, so we couldn't easily query before that. We assume Project()
|
||||||
|
# init doesn't care if this changes afterwards.
|
||||||
|
if mp.config.GetBoolean('repo.worktree'):
|
||||||
|
mp.use_git_worktrees = True
|
||||||
|
|
||||||
self._Unload()
|
self._Unload()
|
||||||
|
|
||||||
@ -180,12 +191,27 @@ class XmlManifest(object):
|
|||||||
"""
|
"""
|
||||||
self.Override(name)
|
self.Override(name)
|
||||||
|
|
||||||
try:
|
# Old versions of repo would generate symlinks we need to clean up.
|
||||||
if os.path.lexists(self.manifestFile):
|
if os.path.lexists(self.manifestFile):
|
||||||
platform_utils.remove(self.manifestFile)
|
platform_utils.remove(self.manifestFile)
|
||||||
platform_utils.symlink(os.path.join('manifests', name), self.manifestFile)
|
# This file is interpreted as if it existed inside the manifest repo.
|
||||||
except OSError as e:
|
# That allows us to use <include> with the relative file name.
|
||||||
raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
|
with open(self.manifestFile, 'w') as fp:
|
||||||
|
fp.write("""<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--
|
||||||
|
DO NOT EDIT THIS FILE! It is generated by repo and changes will be discarded.
|
||||||
|
If you want to use a different manifest, use `repo init -m <file>` instead.
|
||||||
|
|
||||||
|
If you want to customize your checkout by overriding manifest settings, use
|
||||||
|
the local_manifests/ directory instead.
|
||||||
|
|
||||||
|
For more information on repo manifests, check out:
|
||||||
|
https://gerrit.googlesource.com/git-repo/+/HEAD/docs/manifest-format.md
|
||||||
|
-->
|
||||||
|
<manifest>
|
||||||
|
<include name="%s" />
|
||||||
|
</manifest>
|
||||||
|
""" % (name,))
|
||||||
|
|
||||||
def _RemoteToXml(self, r, doc, root):
|
def _RemoteToXml(self, r, doc, root):
|
||||||
e = doc.createElement('remote')
|
e = doc.createElement('remote')
|
||||||
@ -224,7 +250,7 @@ class XmlManifest(object):
|
|||||||
if self.notice:
|
if self.notice:
|
||||||
notice_element = root.appendChild(doc.createElement('notice'))
|
notice_element = root.appendChild(doc.createElement('notice'))
|
||||||
notice_lines = self.notice.splitlines()
|
notice_lines = self.notice.splitlines()
|
||||||
indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
|
indented_notice = ('\n'.join(" " * 4 + line for line in notice_lines))[4:]
|
||||||
notice_element.appendChild(doc.createTextNode(indented_notice))
|
notice_element.appendChild(doc.createTextNode(indented_notice))
|
||||||
|
|
||||||
d = self.default
|
d = self.default
|
||||||
@ -424,6 +450,10 @@ class XmlManifest(object):
|
|||||||
def IsMirror(self):
|
def IsMirror(self):
|
||||||
return self.manifestProject.config.GetBoolean('repo.mirror')
|
return self.manifestProject.config.GetBoolean('repo.mirror')
|
||||||
|
|
||||||
|
@property
|
||||||
|
def UseGitWorktrees(self):
|
||||||
|
return self.manifestProject.config.GetBoolean('repo.worktree')
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def IsArchive(self):
|
def IsArchive(self):
|
||||||
return self.manifestProject.config.GetBoolean('repo.archive')
|
return self.manifestProject.config.GetBoolean('repo.archive')
|
||||||
@ -462,12 +492,12 @@ class XmlManifest(object):
|
|||||||
self.localManifestWarning = True
|
self.localManifestWarning = True
|
||||||
print('warning: %s is deprecated; put local manifests '
|
print('warning: %s is deprecated; put local manifests '
|
||||||
'in `%s` instead' % (LOCAL_MANIFEST_NAME,
|
'in `%s` instead' % (LOCAL_MANIFEST_NAME,
|
||||||
os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
|
os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
nodes.append(self._ParseManifestXml(local, self.repodir))
|
nodes.append(self._ParseManifestXml(local, self.repodir))
|
||||||
|
|
||||||
local_dir = os.path.abspath(os.path.join(self.repodir,
|
local_dir = os.path.abspath(os.path.join(self.repodir,
|
||||||
LOCAL_MANIFESTS_DIR_NAME))
|
LOCAL_MANIFESTS_DIR_NAME))
|
||||||
try:
|
try:
|
||||||
for local_file in sorted(platform_utils.listdir(local_dir)):
|
for local_file in sorted(platform_utils.listdir(local_dir)):
|
||||||
if local_file.endswith('.xml'):
|
if local_file.endswith('.xml'):
|
||||||
@ -512,7 +542,7 @@ class XmlManifest(object):
|
|||||||
fp = os.path.join(include_root, name)
|
fp = os.path.join(include_root, name)
|
||||||
if not os.path.isfile(fp):
|
if not os.path.isfile(fp):
|
||||||
raise ManifestParseError("include %s doesn't exist or isn't a file"
|
raise ManifestParseError("include %s doesn't exist or isn't a file"
|
||||||
% (name,))
|
% (name,))
|
||||||
try:
|
try:
|
||||||
nodes.extend(self._ParseManifestXml(fp, include_root))
|
nodes.extend(self._ParseManifestXml(fp, include_root))
|
||||||
# should isolate this to the exact exception, but that's
|
# should isolate this to the exact exception, but that's
|
||||||
@ -655,7 +685,6 @@ class XmlManifest(object):
|
|||||||
if self._repo_hooks_project and (self._repo_hooks_project.name == name):
|
if self._repo_hooks_project and (self._repo_hooks_project.name == name):
|
||||||
self._repo_hooks_project = None
|
self._repo_hooks_project = None
|
||||||
|
|
||||||
|
|
||||||
def _AddMetaProjectMirror(self, m):
|
def _AddMetaProjectMirror(self, m):
|
||||||
name = None
|
name = None
|
||||||
m_url = m.GetRemote(m.remote.name).url
|
m_url = m.GetRemote(m.remote.name).url
|
||||||
@ -682,15 +711,15 @@ class XmlManifest(object):
|
|||||||
if name not in self._projects:
|
if name not in self._projects:
|
||||||
m.PreSync()
|
m.PreSync()
|
||||||
gitdir = os.path.join(self.topdir, '%s.git' % name)
|
gitdir = os.path.join(self.topdir, '%s.git' % name)
|
||||||
project = Project(manifest = self,
|
project = Project(manifest=self,
|
||||||
name = name,
|
name=name,
|
||||||
remote = remote.ToRemoteSpec(name),
|
remote=remote.ToRemoteSpec(name),
|
||||||
gitdir = gitdir,
|
gitdir=gitdir,
|
||||||
objdir = gitdir,
|
objdir=gitdir,
|
||||||
worktree = None,
|
worktree=None,
|
||||||
relpath = name or None,
|
relpath=name or None,
|
||||||
revisionExpr = m.revisionExpr,
|
revisionExpr=m.revisionExpr,
|
||||||
revisionId = None)
|
revisionId=None)
|
||||||
self._projects[project.name] = [project]
|
self._projects[project.name] = [project]
|
||||||
self._paths[project.relpath] = project
|
self._paths[project.relpath] = project
|
||||||
|
|
||||||
@ -798,7 +827,7 @@ class XmlManifest(object):
|
|||||||
def _UnjoinName(self, parent_name, name):
|
def _UnjoinName(self, parent_name, name):
|
||||||
return os.path.relpath(name, parent_name)
|
return os.path.relpath(name, parent_name)
|
||||||
|
|
||||||
def _ParseProject(self, node, parent = None, **extra_proj_attrs):
|
def _ParseProject(self, node, parent=None, **extra_proj_attrs):
|
||||||
"""
|
"""
|
||||||
reads a <project> element from the manifest file
|
reads a <project> element from the manifest file
|
||||||
"""
|
"""
|
||||||
@ -811,21 +840,21 @@ class XmlManifest(object):
|
|||||||
remote = self._default.remote
|
remote = self._default.remote
|
||||||
if remote is None:
|
if remote is None:
|
||||||
raise ManifestParseError("no remote for project %s within %s" %
|
raise ManifestParseError("no remote for project %s within %s" %
|
||||||
(name, self.manifestFile))
|
(name, self.manifestFile))
|
||||||
|
|
||||||
revisionExpr = node.getAttribute('revision') or remote.revision
|
revisionExpr = node.getAttribute('revision') or remote.revision
|
||||||
if not revisionExpr:
|
if not revisionExpr:
|
||||||
revisionExpr = self._default.revisionExpr
|
revisionExpr = self._default.revisionExpr
|
||||||
if not revisionExpr:
|
if not revisionExpr:
|
||||||
raise ManifestParseError("no revision for project %s within %s" %
|
raise ManifestParseError("no revision for project %s within %s" %
|
||||||
(name, self.manifestFile))
|
(name, self.manifestFile))
|
||||||
|
|
||||||
path = node.getAttribute('path')
|
path = node.getAttribute('path')
|
||||||
if not path:
|
if not path:
|
||||||
path = name
|
path = name
|
||||||
if path.startswith('/'):
|
if path.startswith('/'):
|
||||||
raise ManifestParseError("project %s path cannot be absolute in %s" %
|
raise ManifestParseError("project %s path cannot be absolute in %s" %
|
||||||
(name, self.manifestFile))
|
(name, self.manifestFile))
|
||||||
|
|
||||||
rebase = node.getAttribute('rebase')
|
rebase = node.getAttribute('rebase')
|
||||||
if not rebase:
|
if not rebase:
|
||||||
@ -855,7 +884,7 @@ class XmlManifest(object):
|
|||||||
if clone_depth:
|
if clone_depth:
|
||||||
try:
|
try:
|
||||||
clone_depth = int(clone_depth)
|
clone_depth = int(clone_depth)
|
||||||
if clone_depth <= 0:
|
if clone_depth <= 0:
|
||||||
raise ValueError()
|
raise ValueError()
|
||||||
except ValueError:
|
except ValueError:
|
||||||
raise ManifestParseError('invalid clone-depth %s in %s' %
|
raise ManifestParseError('invalid clone-depth %s in %s' %
|
||||||
@ -871,8 +900,10 @@ class XmlManifest(object):
|
|||||||
groups = self._ParseGroups(groups)
|
groups = self._ParseGroups(groups)
|
||||||
|
|
||||||
if parent is None:
|
if parent is None:
|
||||||
relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
|
relpath, worktree, gitdir, objdir, use_git_worktrees = \
|
||||||
|
self.GetProjectPaths(name, path)
|
||||||
else:
|
else:
|
||||||
|
use_git_worktrees = False
|
||||||
relpath, worktree, gitdir, objdir = \
|
relpath, worktree, gitdir, objdir = \
|
||||||
self.GetSubprojectPaths(parent, name, path)
|
self.GetSubprojectPaths(parent, name, path)
|
||||||
|
|
||||||
@ -883,24 +914,25 @@ class XmlManifest(object):
|
|||||||
if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
|
if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
|
||||||
gitdir = os.path.join(self.topdir, '%s.git' % path)
|
gitdir = os.path.join(self.topdir, '%s.git' % path)
|
||||||
|
|
||||||
project = Project(manifest = self,
|
project = Project(manifest=self,
|
||||||
name = name,
|
name=name,
|
||||||
remote = remote.ToRemoteSpec(name),
|
remote=remote.ToRemoteSpec(name),
|
||||||
gitdir = gitdir,
|
gitdir=gitdir,
|
||||||
objdir = objdir,
|
objdir=objdir,
|
||||||
worktree = worktree,
|
worktree=worktree,
|
||||||
relpath = relpath,
|
relpath=relpath,
|
||||||
revisionExpr = revisionExpr,
|
revisionExpr=revisionExpr,
|
||||||
revisionId = None,
|
revisionId=None,
|
||||||
rebase = rebase,
|
rebase=rebase,
|
||||||
groups = groups,
|
groups=groups,
|
||||||
sync_c = sync_c,
|
sync_c=sync_c,
|
||||||
sync_s = sync_s,
|
sync_s=sync_s,
|
||||||
sync_tags = sync_tags,
|
sync_tags=sync_tags,
|
||||||
clone_depth = clone_depth,
|
clone_depth=clone_depth,
|
||||||
upstream = upstream,
|
upstream=upstream,
|
||||||
parent = parent,
|
parent=parent,
|
||||||
dest_branch = dest_branch,
|
dest_branch=dest_branch,
|
||||||
|
use_git_worktrees=use_git_worktrees,
|
||||||
**extra_proj_attrs)
|
**extra_proj_attrs)
|
||||||
|
|
||||||
for n in node.childNodes:
|
for n in node.childNodes:
|
||||||
@ -911,11 +943,12 @@ class XmlManifest(object):
|
|||||||
if n.nodeName == 'annotation':
|
if n.nodeName == 'annotation':
|
||||||
self._ParseAnnotation(project, n)
|
self._ParseAnnotation(project, n)
|
||||||
if n.nodeName == 'project':
|
if n.nodeName == 'project':
|
||||||
project.subprojects.append(self._ParseProject(n, parent = project))
|
project.subprojects.append(self._ParseProject(n, parent=project))
|
||||||
|
|
||||||
return project
|
return project
|
||||||
|
|
||||||
def GetProjectPaths(self, name, path):
|
def GetProjectPaths(self, name, path):
|
||||||
|
use_git_worktrees = False
|
||||||
relpath = path
|
relpath = path
|
||||||
if self.IsMirror:
|
if self.IsMirror:
|
||||||
worktree = None
|
worktree = None
|
||||||
@ -924,8 +957,15 @@ class XmlManifest(object):
|
|||||||
else:
|
else:
|
||||||
worktree = os.path.join(self.topdir, path).replace('\\', '/')
|
worktree = os.path.join(self.topdir, path).replace('\\', '/')
|
||||||
gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
|
gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
|
||||||
objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
|
# We allow people to mix git worktrees & non-git worktrees for now.
|
||||||
return relpath, worktree, gitdir, objdir
|
# This allows for in situ migration of repo clients.
|
||||||
|
if os.path.exists(gitdir) or not self.UseGitWorktrees:
|
||||||
|
objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
|
||||||
|
else:
|
||||||
|
use_git_worktrees = True
|
||||||
|
gitdir = os.path.join(self.repodir, 'worktrees', '%s.git' % name)
|
||||||
|
objdir = gitdir
|
||||||
|
return relpath, worktree, gitdir, objdir, use_git_worktrees
|
||||||
|
|
||||||
def GetProjectsWithName(self, name):
|
def GetProjectsWithName(self, name):
|
||||||
return self._projects.get(name, [])
|
return self._projects.get(name, [])
|
||||||
@ -985,19 +1025,30 @@ class XmlManifest(object):
|
|||||||
# Assume paths might be used on case-insensitive filesystems.
|
# Assume paths might be used on case-insensitive filesystems.
|
||||||
path = path.lower()
|
path = path.lower()
|
||||||
|
|
||||||
|
# Split up the path by its components. We can't use os.path.sep exclusively
|
||||||
|
# as some platforms (like Windows) will convert / to \ and that bypasses all
|
||||||
|
# our constructed logic here. Especially since manifest authors only use
|
||||||
|
# / in their paths.
|
||||||
|
resep = re.compile(r'[/%s]' % re.escape(os.path.sep))
|
||||||
|
parts = resep.split(path)
|
||||||
|
|
||||||
# Some people use src="." to create stable links to projects. Lets allow
|
# Some people use src="." to create stable links to projects. Lets allow
|
||||||
# that but reject all other uses of "." to keep things simple.
|
# that but reject all other uses of "." to keep things simple.
|
||||||
parts = path.split(os.path.sep)
|
|
||||||
if parts != ['.']:
|
if parts != ['.']:
|
||||||
for part in set(parts):
|
for part in set(parts):
|
||||||
if part in {'.', '..', '.git'} or part.startswith('.repo'):
|
if part in {'.', '..', '.git'} or part.startswith('.repo'):
|
||||||
return 'bad component: %s' % (part,)
|
return 'bad component: %s' % (part,)
|
||||||
|
|
||||||
if not symlink and path.endswith(os.path.sep):
|
if not symlink and resep.match(path[-1]):
|
||||||
return 'dirs not allowed'
|
return 'dirs not allowed'
|
||||||
|
|
||||||
|
# NB: The two abspath checks here are to handle platforms with multiple
|
||||||
|
# filesystem path styles (e.g. Windows).
|
||||||
norm = os.path.normpath(path)
|
norm = os.path.normpath(path)
|
||||||
if norm == '..' or norm.startswith('../') or norm.startswith(os.path.sep):
|
if (norm == '..' or
|
||||||
|
(len(norm) >= 3 and norm.startswith('..') and resep.match(norm[0])) or
|
||||||
|
os.path.isabs(norm) or
|
||||||
|
norm.startswith('/')):
|
||||||
return 'path cannot be outside'
|
return 'path cannot be outside'
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
@ -1054,7 +1105,7 @@ class XmlManifest(object):
|
|||||||
keep = "true"
|
keep = "true"
|
||||||
if keep != "true" and keep != "false":
|
if keep != "true" and keep != "false":
|
||||||
raise ManifestParseError('optional "keep" attribute must be '
|
raise ManifestParseError('optional "keep" attribute must be '
|
||||||
'"true" or "false"')
|
'"true" or "false"')
|
||||||
project.AddAnnotation(name, value, keep)
|
project.AddAnnotation(name, value, keep)
|
||||||
|
|
||||||
def _get_remote(self, node):
|
def _get_remote(self, node):
|
||||||
@ -1065,7 +1116,7 @@ class XmlManifest(object):
|
|||||||
v = self._remotes.get(name)
|
v = self._remotes.get(name)
|
||||||
if not v:
|
if not v:
|
||||||
raise ManifestParseError("remote %s not defined in %s" %
|
raise ManifestParseError("remote %s not defined in %s" %
|
||||||
(name, self.manifestFile))
|
(name, self.manifestFile))
|
||||||
return v
|
return v
|
||||||
|
|
||||||
def _reqatt(self, node, attname):
|
def _reqatt(self, node, attname):
|
||||||
@ -1075,7 +1126,7 @@ class XmlManifest(object):
|
|||||||
v = node.getAttribute(attname)
|
v = node.getAttribute(attname)
|
||||||
if not v:
|
if not v:
|
||||||
raise ManifestParseError("no %s in <%s> within %s" %
|
raise ManifestParseError("no %s in <%s> within %s" %
|
||||||
(attname, node.nodeName, self.manifestFile))
|
(attname, node.nodeName, self.manifestFile))
|
||||||
return v
|
return v
|
||||||
|
|
||||||
def projectsDiff(self, manifest):
|
def projectsDiff(self, manifest):
|
||||||
@ -1093,7 +1144,7 @@ class XmlManifest(object):
|
|||||||
diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
|
diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
|
||||||
|
|
||||||
for proj in fromKeys:
|
for proj in fromKeys:
|
||||||
if not proj in toKeys:
|
if proj not in toKeys:
|
||||||
diff['removed'].append(fromProjects[proj])
|
diff['removed'].append(fromProjects[proj])
|
||||||
else:
|
else:
|
||||||
fromProj = fromProjects[proj]
|
fromProj = fromProjects[proj]
|
||||||
@ -1125,7 +1176,7 @@ class GitcManifest(XmlManifest):
|
|||||||
gitc_client_name)
|
gitc_client_name)
|
||||||
self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest')
|
self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest')
|
||||||
|
|
||||||
def _ParseProject(self, node, parent = None):
|
def _ParseProject(self, node, parent=None):
|
||||||
"""Override _ParseProject and add support for GITC specific attributes."""
|
"""Override _ParseProject and add support for GITC specific attributes."""
|
||||||
return super(GitcManifest, self)._ParseProject(
|
return super(GitcManifest, self)._ParseProject(
|
||||||
node, parent=parent, old_revision=node.getAttribute('old-revision'))
|
node, parent=parent, old_revision=node.getAttribute('old-revision'))
|
||||||
@ -1134,4 +1185,3 @@ class GitcManifest(XmlManifest):
|
|||||||
"""Output GITC Specific Project attributes"""
|
"""Output GITC Specific Project attributes"""
|
||||||
if p.old_revision:
|
if p.old_revision:
|
||||||
e.setAttribute('old-revision', str(p.old_revision))
|
e.setAttribute('old-revision', str(p.old_revision))
|
||||||
|
|
||||||
|
13
pager.py
13
pager.py
@ -27,6 +27,7 @@ pager_process = None
|
|||||||
old_stdout = None
|
old_stdout = None
|
||||||
old_stderr = None
|
old_stderr = None
|
||||||
|
|
||||||
|
|
||||||
def RunPager(globalConfig):
|
def RunPager(globalConfig):
|
||||||
if not os.isatty(0) or not os.isatty(1):
|
if not os.isatty(0) or not os.isatty(1):
|
||||||
return
|
return
|
||||||
@ -35,33 +36,37 @@ def RunPager(globalConfig):
|
|||||||
return
|
return
|
||||||
|
|
||||||
if platform_utils.isWindows():
|
if platform_utils.isWindows():
|
||||||
_PipePager(pager);
|
_PipePager(pager)
|
||||||
else:
|
else:
|
||||||
_ForkPager(pager)
|
_ForkPager(pager)
|
||||||
|
|
||||||
|
|
||||||
def TerminatePager():
|
def TerminatePager():
|
||||||
global pager_process, old_stdout, old_stderr
|
global pager_process, old_stdout, old_stderr
|
||||||
if pager_process:
|
if pager_process:
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
sys.stderr.flush()
|
sys.stderr.flush()
|
||||||
pager_process.stdin.close()
|
pager_process.stdin.close()
|
||||||
pager_process.wait();
|
pager_process.wait()
|
||||||
pager_process = None
|
pager_process = None
|
||||||
# Restore initial stdout/err in case there is more output in this process
|
# Restore initial stdout/err in case there is more output in this process
|
||||||
# after shutting down the pager process
|
# after shutting down the pager process
|
||||||
sys.stdout = old_stdout
|
sys.stdout = old_stdout
|
||||||
sys.stderr = old_stderr
|
sys.stderr = old_stderr
|
||||||
|
|
||||||
|
|
||||||
def _PipePager(pager):
|
def _PipePager(pager):
|
||||||
global pager_process, old_stdout, old_stderr
|
global pager_process, old_stdout, old_stderr
|
||||||
assert pager_process is None, "Only one active pager process at a time"
|
assert pager_process is None, "Only one active pager process at a time"
|
||||||
# Create pager process, piping stdout/err into its stdin
|
# Create pager process, piping stdout/err into its stdin
|
||||||
pager_process = subprocess.Popen([pager], stdin=subprocess.PIPE, stdout=sys.stdout, stderr=sys.stderr)
|
pager_process = subprocess.Popen([pager], stdin=subprocess.PIPE, stdout=sys.stdout,
|
||||||
|
stderr=sys.stderr)
|
||||||
old_stdout = sys.stdout
|
old_stdout = sys.stdout
|
||||||
old_stderr = sys.stderr
|
old_stderr = sys.stderr
|
||||||
sys.stdout = pager_process.stdin
|
sys.stdout = pager_process.stdin
|
||||||
sys.stderr = pager_process.stdin
|
sys.stderr = pager_process.stdin
|
||||||
|
|
||||||
|
|
||||||
def _ForkPager(pager):
|
def _ForkPager(pager):
|
||||||
global active
|
global active
|
||||||
# This process turns into the pager; a child it forks will
|
# This process turns into the pager; a child it forks will
|
||||||
@ -88,6 +93,7 @@ def _ForkPager(pager):
|
|||||||
print("fatal: cannot start pager '%s'" % pager, file=sys.stderr)
|
print("fatal: cannot start pager '%s'" % pager, file=sys.stderr)
|
||||||
sys.exit(255)
|
sys.exit(255)
|
||||||
|
|
||||||
|
|
||||||
def _SelectPager(globalConfig):
|
def _SelectPager(globalConfig):
|
||||||
try:
|
try:
|
||||||
return os.environ['GIT_PAGER']
|
return os.environ['GIT_PAGER']
|
||||||
@ -105,6 +111,7 @@ def _SelectPager(globalConfig):
|
|||||||
|
|
||||||
return 'less'
|
return 'less'
|
||||||
|
|
||||||
|
|
||||||
def _BecomePager(pager):
|
def _BecomePager(pager):
|
||||||
# Delaying execution of the pager until we have output
|
# Delaying execution of the pager until we have output
|
||||||
# ready works around a long-standing bug in popularly
|
# ready works around a long-standing bug in popularly
|
||||||
|
@ -92,6 +92,7 @@ class _FileDescriptorStreamsNonBlocking(FileDescriptorStreams):
|
|||||||
"""
|
"""
|
||||||
class Stream(object):
|
class Stream(object):
|
||||||
""" Encapsulates a file descriptor """
|
""" Encapsulates a file descriptor """
|
||||||
|
|
||||||
def __init__(self, fd, dest, std_name):
|
def __init__(self, fd, dest, std_name):
|
||||||
self.fd = fd
|
self.fd = fd
|
||||||
self.dest = dest
|
self.dest = dest
|
||||||
@ -125,6 +126,7 @@ class _FileDescriptorStreamsThreads(FileDescriptorStreams):
|
|||||||
non blocking I/O. This implementation requires creating threads issuing
|
non blocking I/O. This implementation requires creating threads issuing
|
||||||
blocking read operations on file descriptors.
|
blocking read operations on file descriptors.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(_FileDescriptorStreamsThreads, self).__init__()
|
super(_FileDescriptorStreamsThreads, self).__init__()
|
||||||
# The queue is shared accross all threads so we can simulate the
|
# The queue is shared accross all threads so we can simulate the
|
||||||
@ -144,12 +146,14 @@ class _FileDescriptorStreamsThreads(FileDescriptorStreams):
|
|||||||
|
|
||||||
class QueueItem(object):
|
class QueueItem(object):
|
||||||
""" Item put in the shared queue """
|
""" Item put in the shared queue """
|
||||||
|
|
||||||
def __init__(self, stream, data):
|
def __init__(self, stream, data):
|
||||||
self.stream = stream
|
self.stream = stream
|
||||||
self.data = data
|
self.data = data
|
||||||
|
|
||||||
class Stream(object):
|
class Stream(object):
|
||||||
""" Encapsulates a file descriptor """
|
""" Encapsulates a file descriptor """
|
||||||
|
|
||||||
def __init__(self, fd, dest, std_name, queue):
|
def __init__(self, fd, dest, std_name, queue):
|
||||||
self.fd = fd
|
self.fd = fd
|
||||||
self.dest = dest
|
self.dest = dest
|
||||||
@ -175,7 +179,7 @@ class _FileDescriptorStreamsThreads(FileDescriptorStreams):
|
|||||||
for line in iter(self.fd.readline, b''):
|
for line in iter(self.fd.readline, b''):
|
||||||
self.queue.put(_FileDescriptorStreamsThreads.QueueItem(self, line))
|
self.queue.put(_FileDescriptorStreamsThreads.QueueItem(self, line))
|
||||||
self.fd.close()
|
self.fd.close()
|
||||||
self.queue.put(_FileDescriptorStreamsThreads.QueueItem(self, None))
|
self.queue.put(_FileDescriptorStreamsThreads.QueueItem(self, b''))
|
||||||
|
|
||||||
|
|
||||||
def symlink(source, link_name):
|
def symlink(source, link_name):
|
||||||
|
@ -152,7 +152,8 @@ def create_dirsymlink(source, link_name):
|
|||||||
|
|
||||||
|
|
||||||
def _create_symlink(source, link_name, dwFlags):
|
def _create_symlink(source, link_name, dwFlags):
|
||||||
if not CreateSymbolicLinkW(link_name, source, dwFlags | SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE):
|
if not CreateSymbolicLinkW(link_name, source,
|
||||||
|
dwFlags | SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE):
|
||||||
# See https://github.com/golang/go/pull/24307/files#diff-b87bc12e4da2497308f9ef746086e4f0
|
# See https://github.com/golang/go/pull/24307/files#diff-b87bc12e4da2497308f9ef746086e4f0
|
||||||
# "the unprivileged create flag is unsupported below Windows 10 (1703, v10.0.14972).
|
# "the unprivileged create flag is unsupported below Windows 10 (1703, v10.0.14972).
|
||||||
# retry without it."
|
# retry without it."
|
||||||
@ -218,8 +219,8 @@ def _preserve_encoding(source, target):
|
|||||||
if is_python3():
|
if is_python3():
|
||||||
return target
|
return target
|
||||||
|
|
||||||
if isinstance(source, unicode):
|
if isinstance(source, unicode): # noqa: F821
|
||||||
return unicode(target)
|
return unicode(target) # noqa: F821
|
||||||
return str(target)
|
return str(target)
|
||||||
|
|
||||||
|
|
||||||
|
37
progress.py
37
progress.py
@ -26,6 +26,7 @@ _NOT_TTY = not os.isatty(2)
|
|||||||
# column 0.
|
# column 0.
|
||||||
CSI_ERASE_LINE = '\x1b[2K'
|
CSI_ERASE_LINE = '\x1b[2K'
|
||||||
|
|
||||||
|
|
||||||
class Progress(object):
|
class Progress(object):
|
||||||
def __init__(self, title, total=0, units='', print_newline=False,
|
def __init__(self, title, total=0, units='', print_newline=False,
|
||||||
always_print_percentage=False):
|
always_print_percentage=False):
|
||||||
@ -53,9 +54,9 @@ class Progress(object):
|
|||||||
|
|
||||||
if self._total <= 0:
|
if self._total <= 0:
|
||||||
sys.stderr.write('%s\r%s: %d,' % (
|
sys.stderr.write('%s\r%s: %d,' % (
|
||||||
CSI_ERASE_LINE,
|
CSI_ERASE_LINE,
|
||||||
self._title,
|
self._title,
|
||||||
self._done))
|
self._done))
|
||||||
sys.stderr.flush()
|
sys.stderr.flush()
|
||||||
else:
|
else:
|
||||||
p = (100 * self._done) / self._total
|
p = (100 * self._done) / self._total
|
||||||
@ -63,13 +64,13 @@ class Progress(object):
|
|||||||
if self._lastp != p or self._always_print_percentage:
|
if self._lastp != p or self._always_print_percentage:
|
||||||
self._lastp = p
|
self._lastp = p
|
||||||
sys.stderr.write('%s\r%s: %3d%% (%d%s/%d%s)%s%s%s' % (
|
sys.stderr.write('%s\r%s: %3d%% (%d%s/%d%s)%s%s%s' % (
|
||||||
CSI_ERASE_LINE,
|
CSI_ERASE_LINE,
|
||||||
self._title,
|
self._title,
|
||||||
p,
|
p,
|
||||||
self._done, self._units,
|
self._done, self._units,
|
||||||
self._total, self._units,
|
self._total, self._units,
|
||||||
' ' if msg else '', msg,
|
' ' if msg else '', msg,
|
||||||
"\n" if self._print_newline else ""))
|
"\n" if self._print_newline else ""))
|
||||||
sys.stderr.flush()
|
sys.stderr.flush()
|
||||||
|
|
||||||
def end(self):
|
def end(self):
|
||||||
@ -78,16 +79,16 @@ class Progress(object):
|
|||||||
|
|
||||||
if self._total <= 0:
|
if self._total <= 0:
|
||||||
sys.stderr.write('%s\r%s: %d, done.\n' % (
|
sys.stderr.write('%s\r%s: %d, done.\n' % (
|
||||||
CSI_ERASE_LINE,
|
CSI_ERASE_LINE,
|
||||||
self._title,
|
self._title,
|
||||||
self._done))
|
self._done))
|
||||||
sys.stderr.flush()
|
sys.stderr.flush()
|
||||||
else:
|
else:
|
||||||
p = (100 * self._done) / self._total
|
p = (100 * self._done) / self._total
|
||||||
sys.stderr.write('%s\r%s: %3d%% (%d%s/%d%s), done.\n' % (
|
sys.stderr.write('%s\r%s: %3d%% (%d%s/%d%s), done.\n' % (
|
||||||
CSI_ERASE_LINE,
|
CSI_ERASE_LINE,
|
||||||
self._title,
|
self._title,
|
||||||
p,
|
p,
|
||||||
self._done, self._units,
|
self._done, self._units,
|
||||||
self._total, self._units))
|
self._total, self._units))
|
||||||
sys.stderr.flush()
|
sys.stderr.flush()
|
||||||
|
433
project.py
433
project.py
@ -52,7 +52,7 @@ else:
|
|||||||
import urlparse
|
import urlparse
|
||||||
urllib = imp.new_module('urllib')
|
urllib = imp.new_module('urllib')
|
||||||
urllib.parse = urlparse
|
urllib.parse = urlparse
|
||||||
input = raw_input
|
input = raw_input # noqa: F821
|
||||||
|
|
||||||
|
|
||||||
def _lwrite(path, content):
|
def _lwrite(path, content):
|
||||||
@ -85,6 +85,7 @@ def not_rev(r):
|
|||||||
def sq(r):
|
def sq(r):
|
||||||
return "'" + r.replace("'", "'\''") + "'"
|
return "'" + r.replace("'", "'\''") + "'"
|
||||||
|
|
||||||
|
|
||||||
_project_hook_list = None
|
_project_hook_list = None
|
||||||
|
|
||||||
|
|
||||||
@ -197,7 +198,9 @@ class ReviewableBranch(object):
|
|||||||
return self._base_exists
|
return self._base_exists
|
||||||
|
|
||||||
def UploadForReview(self, people,
|
def UploadForReview(self, people,
|
||||||
|
dryrun=False,
|
||||||
auto_topic=False,
|
auto_topic=False,
|
||||||
|
hashtags=(),
|
||||||
draft=False,
|
draft=False,
|
||||||
private=False,
|
private=False,
|
||||||
notify=None,
|
notify=None,
|
||||||
@ -205,9 +208,11 @@ class ReviewableBranch(object):
|
|||||||
dest_branch=None,
|
dest_branch=None,
|
||||||
validate_certs=True,
|
validate_certs=True,
|
||||||
push_options=None):
|
push_options=None):
|
||||||
self.project.UploadForReview(self.name,
|
self.project.UploadForReview(branch=self.name,
|
||||||
people,
|
people=people,
|
||||||
|
dryrun=dryrun,
|
||||||
auto_topic=auto_topic,
|
auto_topic=auto_topic,
|
||||||
|
hashtags=hashtags,
|
||||||
draft=draft,
|
draft=draft,
|
||||||
private=private,
|
private=private,
|
||||||
notify=notify,
|
notify=notify,
|
||||||
@ -270,7 +275,12 @@ def _SafeExpandPath(base, subpath, skipfinal=False):
|
|||||||
NB: We rely on a number of paths already being filtered out while parsing the
|
NB: We rely on a number of paths already being filtered out while parsing the
|
||||||
manifest. See the validation logic in manifest_xml.py for more details.
|
manifest. See the validation logic in manifest_xml.py for more details.
|
||||||
"""
|
"""
|
||||||
components = subpath.split(os.path.sep)
|
# Split up the path by its components. We can't use os.path.sep exclusively
|
||||||
|
# as some platforms (like Windows) will convert / to \ and that bypasses all
|
||||||
|
# our constructed logic here. Especially since manifest authors only use
|
||||||
|
# / in their paths.
|
||||||
|
resep = re.compile(r'[/%s]' % re.escape(os.path.sep))
|
||||||
|
components = resep.split(subpath)
|
||||||
if skipfinal:
|
if skipfinal:
|
||||||
# Whether the caller handles the final component itself.
|
# Whether the caller handles the final component itself.
|
||||||
finalpart = components.pop()
|
finalpart = components.pop()
|
||||||
@ -861,6 +871,7 @@ class Project(object):
|
|||||||
clone_depth=None,
|
clone_depth=None,
|
||||||
upstream=None,
|
upstream=None,
|
||||||
parent=None,
|
parent=None,
|
||||||
|
use_git_worktrees=False,
|
||||||
is_derived=False,
|
is_derived=False,
|
||||||
dest_branch=None,
|
dest_branch=None,
|
||||||
optimized_fetch=False,
|
optimized_fetch=False,
|
||||||
@ -884,6 +895,7 @@ class Project(object):
|
|||||||
sync_tags: The `sync-tags` attribute of manifest.xml's project element.
|
sync_tags: The `sync-tags` attribute of manifest.xml's project element.
|
||||||
upstream: The `upstream` attribute of manifest.xml's project element.
|
upstream: The `upstream` attribute of manifest.xml's project element.
|
||||||
parent: The parent Project object.
|
parent: The parent Project object.
|
||||||
|
use_git_worktrees: Whether to use `git worktree` for this project.
|
||||||
is_derived: False if the project was explicitly defined in the manifest;
|
is_derived: False if the project was explicitly defined in the manifest;
|
||||||
True if the project is a discovered submodule.
|
True if the project is a discovered submodule.
|
||||||
dest_branch: The branch to which to push changes for review by default.
|
dest_branch: The branch to which to push changes for review by default.
|
||||||
@ -918,6 +930,10 @@ class Project(object):
|
|||||||
self.clone_depth = clone_depth
|
self.clone_depth = clone_depth
|
||||||
self.upstream = upstream
|
self.upstream = upstream
|
||||||
self.parent = parent
|
self.parent = parent
|
||||||
|
# NB: Do not use this setting in __init__ to change behavior so that the
|
||||||
|
# manifest.git checkout can inspect & change it after instantiating. See
|
||||||
|
# the XmlManifest init code for more info.
|
||||||
|
self.use_git_worktrees = use_git_worktrees
|
||||||
self.is_derived = is_derived
|
self.is_derived = is_derived
|
||||||
self.optimized_fetch = optimized_fetch
|
self.optimized_fetch = optimized_fetch
|
||||||
self.subprojects = []
|
self.subprojects = []
|
||||||
@ -970,11 +986,9 @@ class Project(object):
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
def IsRebaseInProgress(self):
|
def IsRebaseInProgress(self):
|
||||||
w = self.worktree
|
return (os.path.exists(self.work_git.GetDotgitPath('rebase-apply')) or
|
||||||
g = os.path.join(w, '.git')
|
os.path.exists(self.work_git.GetDotgitPath('rebase-merge')) or
|
||||||
return os.path.exists(os.path.join(g, 'rebase-apply')) \
|
os.path.exists(os.path.join(self.worktree, '.dotest')))
|
||||||
or os.path.exists(os.path.join(g, 'rebase-merge')) \
|
|
||||||
or os.path.exists(os.path.join(w, '.dotest'))
|
|
||||||
|
|
||||||
def IsDirty(self, consider_untracked=True):
|
def IsDirty(self, consider_untracked=True):
|
||||||
"""Is the working directory modified in some way?
|
"""Is the working directory modified in some way?
|
||||||
@ -1256,9 +1270,7 @@ class Project(object):
|
|||||||
print(line[:-1])
|
print(line[:-1])
|
||||||
return p.Wait() == 0
|
return p.Wait() == 0
|
||||||
|
|
||||||
|
|
||||||
# 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?
|
||||||
If so, returns the SHA-1 hash of the last published
|
If so, returns the SHA-1 hash of the last published
|
||||||
@ -1331,7 +1343,9 @@ class Project(object):
|
|||||||
|
|
||||||
def UploadForReview(self, branch=None,
|
def UploadForReview(self, branch=None,
|
||||||
people=([], []),
|
people=([], []),
|
||||||
|
dryrun=False,
|
||||||
auto_topic=False,
|
auto_topic=False,
|
||||||
|
hashtags=(),
|
||||||
draft=False,
|
draft=False,
|
||||||
private=False,
|
private=False,
|
||||||
notify=None,
|
notify=None,
|
||||||
@ -1367,6 +1381,8 @@ class Project(object):
|
|||||||
if url is None:
|
if url is None:
|
||||||
raise UploadError('review not configured')
|
raise UploadError('review not configured')
|
||||||
cmd = ['push']
|
cmd = ['push']
|
||||||
|
if dryrun:
|
||||||
|
cmd.append('-n')
|
||||||
|
|
||||||
if url.startswith('ssh://'):
|
if url.startswith('ssh://'):
|
||||||
cmd.append('--receive-pack=gerrit receive-pack')
|
cmd.append('--receive-pack=gerrit receive-pack')
|
||||||
@ -1389,6 +1405,7 @@ class Project(object):
|
|||||||
opts = []
|
opts = []
|
||||||
if auto_topic:
|
if auto_topic:
|
||||||
opts += ['topic=' + branch.name]
|
opts += ['topic=' + branch.name]
|
||||||
|
opts += ['t=%s' % p for p in hashtags]
|
||||||
|
|
||||||
opts += ['r=%s' % p for p in people[0]]
|
opts += ['r=%s' % p for p in people[0]]
|
||||||
opts += ['cc=%s' % p for p in people[1]]
|
opts += ['cc=%s' % p for p in people[1]]
|
||||||
@ -1410,9 +1427,7 @@ class Project(object):
|
|||||||
R_HEADS + branch.name,
|
R_HEADS + branch.name,
|
||||||
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
|
||||||
|
|
||||||
@ -1430,11 +1445,12 @@ class Project(object):
|
|||||||
|
|
||||||
def Sync_NetworkHalf(self,
|
def Sync_NetworkHalf(self,
|
||||||
quiet=False,
|
quiet=False,
|
||||||
|
verbose=False,
|
||||||
is_new=None,
|
is_new=None,
|
||||||
current_branch_only=False,
|
current_branch_only=False,
|
||||||
force_sync=False,
|
force_sync=False,
|
||||||
clone_bundle=True,
|
clone_bundle=True,
|
||||||
no_tags=False,
|
tags=True,
|
||||||
archive=False,
|
archive=False,
|
||||||
optimized_fetch=False,
|
optimized_fetch=False,
|
||||||
prune=False,
|
prune=False,
|
||||||
@ -1473,9 +1489,9 @@ class Project(object):
|
|||||||
if is_new is None:
|
if is_new is None:
|
||||||
is_new = not self.Exists
|
is_new = not self.Exists
|
||||||
if is_new:
|
if is_new:
|
||||||
self._InitGitDir(force_sync=force_sync)
|
self._InitGitDir(force_sync=force_sync, quiet=quiet)
|
||||||
else:
|
else:
|
||||||
self._UpdateHooks()
|
self._UpdateHooks(quiet=quiet)
|
||||||
self._InitRemote()
|
self._InitRemote()
|
||||||
|
|
||||||
if is_new:
|
if is_new:
|
||||||
@ -1489,9 +1505,9 @@ class Project(object):
|
|||||||
else:
|
else:
|
||||||
alt_dir = None
|
alt_dir = None
|
||||||
|
|
||||||
if clone_bundle \
|
if (clone_bundle
|
||||||
and alt_dir is None \
|
and alt_dir is None
|
||||||
and self._ApplyCloneBundle(initial=is_new, quiet=quiet):
|
and self._ApplyCloneBundle(initial=is_new, quiet=quiet, verbose=verbose)):
|
||||||
is_new = False
|
is_new = False
|
||||||
|
|
||||||
if not current_branch_only:
|
if not current_branch_only:
|
||||||
@ -1503,25 +1519,25 @@ class Project(object):
|
|||||||
elif self.manifest.default.sync_c:
|
elif self.manifest.default.sync_c:
|
||||||
current_branch_only = True
|
current_branch_only = True
|
||||||
|
|
||||||
if not no_tags:
|
if not self.sync_tags:
|
||||||
if not self.sync_tags:
|
tags = False
|
||||||
no_tags = True
|
|
||||||
|
|
||||||
if self.clone_depth:
|
if self.clone_depth:
|
||||||
depth = self.clone_depth
|
depth = self.clone_depth
|
||||||
else:
|
else:
|
||||||
depth = self.manifest.manifestProject.config.GetString('repo.depth')
|
depth = self.manifest.manifestProject.config.GetString('repo.depth')
|
||||||
|
|
||||||
need_to_fetch = not (optimized_fetch and
|
# See if we can skip the network fetch entirely.
|
||||||
(ID_RE.match(self.revisionExpr) and
|
if not (optimized_fetch and
|
||||||
self._CheckForImmutableRevision()))
|
(ID_RE.match(self.revisionExpr) and
|
||||||
if (need_to_fetch and
|
self._CheckForImmutableRevision())):
|
||||||
not self._RemoteFetch(initial=is_new, quiet=quiet, alt_dir=alt_dir,
|
if not self._RemoteFetch(
|
||||||
current_branch_only=current_branch_only,
|
initial=is_new, quiet=quiet, verbose=verbose, alt_dir=alt_dir,
|
||||||
no_tags=no_tags, prune=prune, depth=depth,
|
current_branch_only=current_branch_only,
|
||||||
submodules=submodules, force_sync=force_sync,
|
tags=tags, prune=prune, depth=depth,
|
||||||
clone_filter=clone_filter)):
|
submodules=submodules, force_sync=force_sync,
|
||||||
return False
|
clone_filter=clone_filter):
|
||||||
|
return False
|
||||||
|
|
||||||
mp = self.manifest.manifestProject
|
mp = self.manifest.manifestProject
|
||||||
dissociate = mp.config.GetBoolean('repo.dissociate')
|
dissociate = mp.config.GetBoolean('repo.dissociate')
|
||||||
@ -1819,21 +1835,123 @@ class Project(object):
|
|||||||
patch_id,
|
patch_id,
|
||||||
self.bare_git.rev_parse('FETCH_HEAD'))
|
self.bare_git.rev_parse('FETCH_HEAD'))
|
||||||
|
|
||||||
|
def DeleteWorktree(self, quiet=False, force=False):
|
||||||
|
"""Delete the source checkout and any other housekeeping tasks.
|
||||||
|
|
||||||
|
This currently leaves behind the internal .repo/ cache state. This helps
|
||||||
|
when switching branches or manifest changes get reverted as we don't have
|
||||||
|
to redownload all the git objects. But we should do some GC at some point.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
quiet: Whether to hide normal messages.
|
||||||
|
force: Always delete tree even if dirty.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
True if the worktree was completely cleaned out.
|
||||||
|
"""
|
||||||
|
if self.IsDirty():
|
||||||
|
if force:
|
||||||
|
print('warning: %s: Removing dirty project: uncommitted changes lost.' %
|
||||||
|
(self.relpath,), file=sys.stderr)
|
||||||
|
else:
|
||||||
|
print('error: %s: Cannot remove project: uncommitted changes are '
|
||||||
|
'present.\n' % (self.relpath,), file=sys.stderr)
|
||||||
|
return False
|
||||||
|
|
||||||
|
if not quiet:
|
||||||
|
print('%s: Deleting obsolete checkout.' % (self.relpath,))
|
||||||
|
|
||||||
|
# Unlock and delink from the main worktree. We don't use git's worktree
|
||||||
|
# remove because it will recursively delete projects -- we handle that
|
||||||
|
# ourselves below. https://crbug.com/git/48
|
||||||
|
if self.use_git_worktrees:
|
||||||
|
needle = platform_utils.realpath(self.gitdir)
|
||||||
|
# Find the git worktree commondir under .repo/worktrees/.
|
||||||
|
output = self.bare_git.worktree('list', '--porcelain').splitlines()[0]
|
||||||
|
assert output.startswith('worktree '), output
|
||||||
|
commondir = output[9:]
|
||||||
|
# Walk each of the git worktrees to see where they point.
|
||||||
|
configs = os.path.join(commondir, 'worktrees')
|
||||||
|
for name in os.listdir(configs):
|
||||||
|
gitdir = os.path.join(configs, name, 'gitdir')
|
||||||
|
with open(gitdir) as fp:
|
||||||
|
relpath = fp.read().strip()
|
||||||
|
# Resolve the checkout path and see if it matches this project.
|
||||||
|
fullpath = platform_utils.realpath(os.path.join(configs, name, relpath))
|
||||||
|
if fullpath == needle:
|
||||||
|
platform_utils.rmtree(os.path.join(configs, name))
|
||||||
|
|
||||||
|
# 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 to remove plain files first in case of git worktrees. If this fails
|
||||||
|
# for any reason, we'll fall back to rmtree, and that'll display errors if
|
||||||
|
# it can't remove things either.
|
||||||
|
try:
|
||||||
|
platform_utils.remove(self.gitdir)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
try:
|
||||||
|
platform_utils.rmtree(self.gitdir)
|
||||||
|
except OSError as e:
|
||||||
|
if e.errno != errno.ENOENT:
|
||||||
|
print('error: %s: %s' % (self.gitdir, e), file=sys.stderr)
|
||||||
|
print('error: %s: Failed to delete obsolete checkout; remove manually, '
|
||||||
|
'then run `repo sync -l`.' % (self.relpath,), file=sys.stderr)
|
||||||
|
return False
|
||||||
|
|
||||||
|
# Delete everything under the worktree, except for directories that contain
|
||||||
|
# another git project.
|
||||||
|
dirs_to_remove = []
|
||||||
|
failed = False
|
||||||
|
for root, dirs, files in platform_utils.walk(self.worktree):
|
||||||
|
for f in files:
|
||||||
|
path = os.path.join(root, f)
|
||||||
|
try:
|
||||||
|
platform_utils.remove(path)
|
||||||
|
except OSError as e:
|
||||||
|
if e.errno != errno.ENOENT:
|
||||||
|
print('error: %s: Failed to remove: %s' % (path, e), 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 platform_utils.islink(d):
|
||||||
|
try:
|
||||||
|
platform_utils.remove(d)
|
||||||
|
except OSError as e:
|
||||||
|
if e.errno != errno.ENOENT:
|
||||||
|
print('error: %s: Failed to remove: %s' % (d, e), file=sys.stderr)
|
||||||
|
failed = True
|
||||||
|
elif not platform_utils.listdir(d):
|
||||||
|
try:
|
||||||
|
platform_utils.rmdir(d)
|
||||||
|
except OSError as e:
|
||||||
|
if e.errno != errno.ENOENT:
|
||||||
|
print('error: %s: Failed to remove: %s' % (d, e), file=sys.stderr)
|
||||||
|
failed = True
|
||||||
|
if failed:
|
||||||
|
print('error: %s: Failed to delete obsolete checkout.' % (self.relpath,),
|
||||||
|
file=sys.stderr)
|
||||||
|
print(' Remove manually, then run `repo sync -l`.', file=sys.stderr)
|
||||||
|
return False
|
||||||
|
|
||||||
|
# Try deleting parent dirs if they are empty.
|
||||||
|
path = self.worktree
|
||||||
|
while path != self.manifest.topdir:
|
||||||
|
try:
|
||||||
|
platform_utils.rmdir(path)
|
||||||
|
except OSError as e:
|
||||||
|
if e.errno != errno.ENOENT:
|
||||||
|
break
|
||||||
|
path = os.path.dirname(path)
|
||||||
|
|
||||||
|
return True
|
||||||
|
|
||||||
# Branch Management ##
|
# Branch Management ##
|
||||||
|
|
||||||
def GetHeadPath(self):
|
|
||||||
"""Return the full path to the HEAD ref."""
|
|
||||||
dotgit = os.path.join(self.worktree, '.git')
|
|
||||||
if os.path.isfile(dotgit):
|
|
||||||
# Git worktrees use a "gitdir:" syntax to point to the scratch space.
|
|
||||||
with open(dotgit) as fp:
|
|
||||||
setting = fp.read()
|
|
||||||
assert setting.startswith('gitdir:')
|
|
||||||
gitdir = setting.split(':', 1)[1].strip()
|
|
||||||
dotgit = os.path.join(self.worktree, gitdir)
|
|
||||||
return os.path.join(dotgit, HEAD)
|
|
||||||
|
|
||||||
def StartBranch(self, name, branch_merge='', revision=None):
|
def StartBranch(self, name, branch_merge='', revision=None):
|
||||||
"""Create a new branch off the manifest's revision.
|
"""Create a new branch off the manifest's revision.
|
||||||
"""
|
"""
|
||||||
@ -1867,13 +1985,9 @@ class Project(object):
|
|||||||
except KeyError:
|
except KeyError:
|
||||||
head = None
|
head = None
|
||||||
if revid and head and revid == head:
|
if revid and head and revid == head:
|
||||||
ref = os.path.join(self.gitdir, R_HEADS + name)
|
ref = R_HEADS + name
|
||||||
try:
|
self.work_git.update_ref(ref, revid)
|
||||||
os.makedirs(os.path.dirname(ref))
|
self.work_git.symbolic_ref(HEAD, ref)
|
||||||
except OSError:
|
|
||||||
pass
|
|
||||||
_lwrite(ref, '%s\n' % revid)
|
|
||||||
_lwrite(self.GetHeadPath(), 'ref: %s%s\n' % (R_HEADS, name))
|
|
||||||
branch.Save()
|
branch.Save()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
@ -1920,7 +2034,8 @@ class Project(object):
|
|||||||
# Same revision; just update HEAD to point to the new
|
# Same revision; just update HEAD to point to the new
|
||||||
# target branch, but otherwise take no other action.
|
# target branch, but otherwise take no other action.
|
||||||
#
|
#
|
||||||
_lwrite(self.GetHeadPath(), 'ref: %s%s\n' % (R_HEADS, name))
|
_lwrite(self.work_git.GetDotgitPath(subpath=HEAD),
|
||||||
|
'ref: %s%s\n' % (R_HEADS, name))
|
||||||
return True
|
return True
|
||||||
|
|
||||||
return GitCommand(self,
|
return GitCommand(self,
|
||||||
@ -1953,7 +2068,7 @@ class Project(object):
|
|||||||
|
|
||||||
revid = self.GetRevisionId(all_refs)
|
revid = self.GetRevisionId(all_refs)
|
||||||
if head == revid:
|
if head == revid:
|
||||||
_lwrite(self.GetHeadPath(), '%s\n' % revid)
|
_lwrite(self.work_git.GetDotgitPath(subpath=HEAD), '%s\n' % revid)
|
||||||
else:
|
else:
|
||||||
self._Checkout(revid, quiet=True)
|
self._Checkout(revid, quiet=True)
|
||||||
|
|
||||||
@ -2019,9 +2134,7 @@ class Project(object):
|
|||||||
kept.append(ReviewableBranch(self, branch, base))
|
kept.append(ReviewableBranch(self, branch, base))
|
||||||
return kept
|
return kept
|
||||||
|
|
||||||
|
|
||||||
# Submodule Management ##
|
# Submodule Management ##
|
||||||
|
|
||||||
def GetRegisteredSubprojects(self):
|
def GetRegisteredSubprojects(self):
|
||||||
result = []
|
result = []
|
||||||
|
|
||||||
@ -2172,8 +2285,25 @@ class Project(object):
|
|||||||
result.extend(subproject.GetDerivedSubprojects())
|
result.extend(subproject.GetDerivedSubprojects())
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
# Direct Git Commands ##
|
# Direct Git Commands ##
|
||||||
|
def EnableRepositoryExtension(self, key, value='true', version=1):
|
||||||
|
"""Enable git repository extension |key| with |value|.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
key: The extension to enabled. Omit the "extensions." prefix.
|
||||||
|
value: The value to use for the extension.
|
||||||
|
version: The minimum git repository version needed.
|
||||||
|
"""
|
||||||
|
# Make sure the git repo version is new enough already.
|
||||||
|
found_version = self.config.GetInt('core.repositoryFormatVersion')
|
||||||
|
if found_version is None:
|
||||||
|
found_version = 0
|
||||||
|
if found_version < version:
|
||||||
|
self.config.SetString('core.repositoryFormatVersion', str(version))
|
||||||
|
|
||||||
|
# Enable the extension!
|
||||||
|
self.config.SetString('extensions.%s' % (key,), value)
|
||||||
|
|
||||||
def _CheckForImmutableRevision(self):
|
def _CheckForImmutableRevision(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
|
||||||
@ -2201,8 +2331,9 @@ class Project(object):
|
|||||||
current_branch_only=False,
|
current_branch_only=False,
|
||||||
initial=False,
|
initial=False,
|
||||||
quiet=False,
|
quiet=False,
|
||||||
|
verbose=False,
|
||||||
alt_dir=None,
|
alt_dir=None,
|
||||||
no_tags=False,
|
tags=True,
|
||||||
prune=False,
|
prune=False,
|
||||||
depth=None,
|
depth=None,
|
||||||
submodules=False,
|
submodules=False,
|
||||||
@ -2231,7 +2362,7 @@ class Project(object):
|
|||||||
|
|
||||||
if is_sha1 or tag_name is not None:
|
if is_sha1 or tag_name is not None:
|
||||||
if self._CheckForImmutableRevision():
|
if self._CheckForImmutableRevision():
|
||||||
if not quiet:
|
if verbose:
|
||||||
print('Skipped fetching project %s (already have persistent ref)'
|
print('Skipped fetching project %s (already have persistent ref)'
|
||||||
% self.name)
|
% self.name)
|
||||||
return True
|
return True
|
||||||
@ -2301,7 +2432,7 @@ class Project(object):
|
|||||||
if clone_filter:
|
if clone_filter:
|
||||||
git_require((2, 19, 0), fail=True, msg='partial clones')
|
git_require((2, 19, 0), fail=True, msg='partial clones')
|
||||||
cmd.append('--filter=%s' % clone_filter)
|
cmd.append('--filter=%s' % clone_filter)
|
||||||
self.config.SetString('extensions.partialclone', self.remote.name)
|
self.EnableRepositoryExtension('partialclone', self.remote.name)
|
||||||
|
|
||||||
if depth:
|
if depth:
|
||||||
cmd.append('--depth=%s' % depth)
|
cmd.append('--depth=%s' % depth)
|
||||||
@ -2341,7 +2472,7 @@ class Project(object):
|
|||||||
else:
|
else:
|
||||||
branch = self.revisionExpr
|
branch = self.revisionExpr
|
||||||
if (not self.manifest.IsMirror and is_sha1 and depth
|
if (not self.manifest.IsMirror and is_sha1 and depth
|
||||||
and git_require((1, 8, 3))):
|
and git_require((1, 8, 3))):
|
||||||
# Shallow checkout of a specific commit, fetch from that commit and not
|
# Shallow checkout of a specific commit, fetch from that commit and not
|
||||||
# the heads only as the commit might be deeper in the history.
|
# the heads only as the commit might be deeper in the history.
|
||||||
spec.append(branch)
|
spec.append(branch)
|
||||||
@ -2360,7 +2491,7 @@ class Project(object):
|
|||||||
|
|
||||||
# If using depth then we should not get all the tags since they may
|
# If using depth then we should not get all the tags since they may
|
||||||
# be outside of the depth.
|
# be outside of the depth.
|
||||||
if no_tags or depth:
|
if not tags or depth:
|
||||||
cmd.append('--no-tags')
|
cmd.append('--no-tags')
|
||||||
else:
|
else:
|
||||||
cmd.append('--tags')
|
cmd.append('--tags')
|
||||||
@ -2370,7 +2501,8 @@ class Project(object):
|
|||||||
|
|
||||||
ok = False
|
ok = False
|
||||||
for _i in range(2):
|
for _i in range(2):
|
||||||
gitcmd = GitCommand(self, cmd, bare=True, ssh_proxy=ssh_proxy)
|
gitcmd = GitCommand(self, cmd, bare=True, ssh_proxy=ssh_proxy,
|
||||||
|
merge_output=True, capture_stdout=not verbose)
|
||||||
ret = gitcmd.Wait()
|
ret = gitcmd.Wait()
|
||||||
if ret == 0:
|
if ret == 0:
|
||||||
ok = True
|
ok = True
|
||||||
@ -2393,6 +2525,8 @@ class Project(object):
|
|||||||
elif ret < 0:
|
elif ret < 0:
|
||||||
# Git died with a signal, exit immediately
|
# Git died with a signal, exit immediately
|
||||||
break
|
break
|
||||||
|
if not verbose:
|
||||||
|
print('%s:\n%s' % (self.name, gitcmd.stdout), file=sys.stderr)
|
||||||
time.sleep(random.randint(30, 45))
|
time.sleep(random.randint(30, 45))
|
||||||
|
|
||||||
if initial:
|
if initial:
|
||||||
@ -2408,21 +2542,17 @@ class Project(object):
|
|||||||
# got what we wanted, else trigger a second run of all
|
# got what we wanted, else trigger a second run of all
|
||||||
# refs.
|
# refs.
|
||||||
if not self._CheckForImmutableRevision():
|
if not self._CheckForImmutableRevision():
|
||||||
if current_branch_only and depth:
|
# Sync the current branch only with depth set to None.
|
||||||
# Sync the current branch only with depth set to None
|
# We always pass depth=None down to avoid infinite recursion.
|
||||||
return self._RemoteFetch(name=name,
|
return self._RemoteFetch(
|
||||||
current_branch_only=current_branch_only,
|
name=name, quiet=quiet, verbose=verbose,
|
||||||
initial=False, quiet=quiet, alt_dir=alt_dir,
|
current_branch_only=current_branch_only and depth,
|
||||||
depth=None, clone_filter=clone_filter)
|
initial=False, alt_dir=alt_dir,
|
||||||
else:
|
depth=None, clone_filter=clone_filter)
|
||||||
# Avoid infinite recursion: sync all branches with depth set to None
|
|
||||||
return self._RemoteFetch(name=name, current_branch_only=False,
|
|
||||||
initial=False, quiet=quiet, alt_dir=alt_dir,
|
|
||||||
depth=None, clone_filter=clone_filter)
|
|
||||||
|
|
||||||
return ok
|
return ok
|
||||||
|
|
||||||
def _ApplyCloneBundle(self, initial=False, quiet=False):
|
def _ApplyCloneBundle(self, initial=False, quiet=False, verbose=False):
|
||||||
if initial and \
|
if initial and \
|
||||||
(self.manifest.manifestProject.config.GetString('repo.depth') or
|
(self.manifest.manifestProject.config.GetString('repo.depth') or
|
||||||
self.clone_depth):
|
self.clone_depth):
|
||||||
@ -2446,7 +2576,8 @@ class Project(object):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
if not exist_dst:
|
if not exist_dst:
|
||||||
exist_dst = self._FetchBundle(bundle_url, bundle_tmp, bundle_dst, quiet)
|
exist_dst = self._FetchBundle(bundle_url, bundle_tmp, bundle_dst, quiet,
|
||||||
|
verbose)
|
||||||
if not exist_dst:
|
if not exist_dst:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
@ -2467,13 +2598,13 @@ class Project(object):
|
|||||||
platform_utils.remove(bundle_tmp)
|
platform_utils.remove(bundle_tmp)
|
||||||
return ok
|
return ok
|
||||||
|
|
||||||
def _FetchBundle(self, srcUrl, tmpPath, dstPath, quiet):
|
def _FetchBundle(self, srcUrl, tmpPath, dstPath, quiet, verbose):
|
||||||
if os.path.exists(dstPath):
|
if os.path.exists(dstPath):
|
||||||
platform_utils.remove(dstPath)
|
platform_utils.remove(dstPath)
|
||||||
|
|
||||||
cmd = ['curl', '--fail', '--output', tmpPath, '--netrc', '--location']
|
cmd = ['curl', '--fail', '--output', tmpPath, '--netrc', '--location']
|
||||||
if quiet:
|
if quiet:
|
||||||
cmd += ['--silent']
|
cmd += ['--silent', '--show-error']
|
||||||
if os.path.exists(tmpPath):
|
if os.path.exists(tmpPath):
|
||||||
size = os.stat(tmpPath).st_size
|
size = os.stat(tmpPath).st_size
|
||||||
if size >= 1024:
|
if size >= 1024:
|
||||||
@ -2495,12 +2626,17 @@ class Project(object):
|
|||||||
|
|
||||||
if IsTrace():
|
if IsTrace():
|
||||||
Trace('%s', ' '.join(cmd))
|
Trace('%s', ' '.join(cmd))
|
||||||
|
if verbose:
|
||||||
|
print('%s: Downloading bundle: %s' % (self.name, srcUrl))
|
||||||
|
stdout = None if verbose else subprocess.PIPE
|
||||||
|
stderr = None if verbose else subprocess.STDOUT
|
||||||
try:
|
try:
|
||||||
proc = subprocess.Popen(cmd)
|
proc = subprocess.Popen(cmd, stdout=stdout, stderr=stderr)
|
||||||
except OSError:
|
except OSError:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
curlret = proc.wait()
|
(output, _) = proc.communicate()
|
||||||
|
curlret = proc.returncode
|
||||||
|
|
||||||
if curlret == 22:
|
if curlret == 22:
|
||||||
# From curl man page:
|
# From curl man page:
|
||||||
@ -2511,6 +2647,8 @@ class Project(object):
|
|||||||
print("Server does not provide clone.bundle; ignoring.",
|
print("Server does not provide clone.bundle; ignoring.",
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
return False
|
return False
|
||||||
|
elif curlret and not verbose and output:
|
||||||
|
print('%s' % output, file=sys.stderr)
|
||||||
|
|
||||||
if os.path.exists(tmpPath):
|
if os.path.exists(tmpPath):
|
||||||
if curlret == 0 and self._IsValidBundle(tmpPath, quiet):
|
if curlret == 0 and self._IsValidBundle(tmpPath, quiet):
|
||||||
@ -2592,13 +2730,13 @@ class Project(object):
|
|||||||
raise GitError('%s rebase %s ' % (self.name, upstream))
|
raise GitError('%s rebase %s ' % (self.name, upstream))
|
||||||
|
|
||||||
def _FastForward(self, head, ffonly=False):
|
def _FastForward(self, head, ffonly=False):
|
||||||
cmd = ['merge', head]
|
cmd = ['merge', '--no-stat', head]
|
||||||
if ffonly:
|
if ffonly:
|
||||||
cmd.append("--ff-only")
|
cmd.append("--ff-only")
|
||||||
if GitCommand(self, cmd).Wait() != 0:
|
if GitCommand(self, cmd).Wait() != 0:
|
||||||
raise GitError('%s merge %s ' % (self.name, head))
|
raise GitError('%s merge %s ' % (self.name, head))
|
||||||
|
|
||||||
def _InitGitDir(self, mirror_git=None, force_sync=False):
|
def _InitGitDir(self, mirror_git=None, force_sync=False, quiet=False):
|
||||||
init_git_dir = not os.path.exists(self.gitdir)
|
init_git_dir = not os.path.exists(self.gitdir)
|
||||||
init_obj_dir = not os.path.exists(self.objdir)
|
init_obj_dir = not os.path.exists(self.objdir)
|
||||||
try:
|
try:
|
||||||
@ -2607,6 +2745,11 @@ class Project(object):
|
|||||||
os.makedirs(self.objdir)
|
os.makedirs(self.objdir)
|
||||||
self.bare_objdir.init()
|
self.bare_objdir.init()
|
||||||
|
|
||||||
|
# Enable per-worktree config file support if possible. This is more a
|
||||||
|
# nice-to-have feature for users rather than a hard requirement.
|
||||||
|
if self.use_git_worktrees and git_require((2, 19, 0)):
|
||||||
|
self.EnableRepositoryExtension('worktreeConfig')
|
||||||
|
|
||||||
# If we have a separate directory to hold refs, initialize it as well.
|
# If we have a separate directory to hold refs, initialize it as well.
|
||||||
if self.objdir != self.gitdir:
|
if self.objdir != self.gitdir:
|
||||||
if init_git_dir:
|
if init_git_dir:
|
||||||
@ -2626,8 +2769,9 @@ class Project(object):
|
|||||||
if self.worktree and os.path.exists(platform_utils.realpath
|
if self.worktree and os.path.exists(platform_utils.realpath
|
||||||
(self.worktree)):
|
(self.worktree)):
|
||||||
platform_utils.rmtree(platform_utils.realpath(self.worktree))
|
platform_utils.rmtree(platform_utils.realpath(self.worktree))
|
||||||
return self._InitGitDir(mirror_git=mirror_git, force_sync=False)
|
return self._InitGitDir(mirror_git=mirror_git, force_sync=False,
|
||||||
except:
|
quiet=quiet)
|
||||||
|
except Exception:
|
||||||
raise e
|
raise e
|
||||||
raise e
|
raise e
|
||||||
|
|
||||||
@ -2640,13 +2784,15 @@ class Project(object):
|
|||||||
mirror_git = os.path.join(ref_dir, self.name + '.git')
|
mirror_git = os.path.join(ref_dir, self.name + '.git')
|
||||||
repo_git = os.path.join(ref_dir, '.repo', 'projects',
|
repo_git = os.path.join(ref_dir, '.repo', 'projects',
|
||||||
self.relpath + '.git')
|
self.relpath + '.git')
|
||||||
|
worktrees_git = os.path.join(ref_dir, '.repo', 'worktrees',
|
||||||
|
self.name + '.git')
|
||||||
|
|
||||||
if os.path.exists(mirror_git):
|
if os.path.exists(mirror_git):
|
||||||
ref_dir = mirror_git
|
ref_dir = mirror_git
|
||||||
|
|
||||||
elif os.path.exists(repo_git):
|
elif os.path.exists(repo_git):
|
||||||
ref_dir = repo_git
|
ref_dir = repo_git
|
||||||
|
elif os.path.exists(worktrees_git):
|
||||||
|
ref_dir = worktrees_git
|
||||||
else:
|
else:
|
||||||
ref_dir = None
|
ref_dir = None
|
||||||
|
|
||||||
@ -2658,7 +2804,7 @@ class Project(object):
|
|||||||
_lwrite(os.path.join(self.gitdir, 'objects/info/alternates'),
|
_lwrite(os.path.join(self.gitdir, 'objects/info/alternates'),
|
||||||
os.path.join(ref_dir, 'objects') + '\n')
|
os.path.join(ref_dir, 'objects') + '\n')
|
||||||
|
|
||||||
self._UpdateHooks()
|
self._UpdateHooks(quiet=quiet)
|
||||||
|
|
||||||
m = self.manifest.manifestProject.config
|
m = self.manifest.manifestProject.config
|
||||||
for key in ['user.name', 'user.email']:
|
for key in ['user.name', 'user.email']:
|
||||||
@ -2677,11 +2823,11 @@ class Project(object):
|
|||||||
platform_utils.rmtree(self.gitdir)
|
platform_utils.rmtree(self.gitdir)
|
||||||
raise
|
raise
|
||||||
|
|
||||||
def _UpdateHooks(self):
|
def _UpdateHooks(self, quiet=False):
|
||||||
if os.path.exists(self.gitdir):
|
if os.path.exists(self.gitdir):
|
||||||
self._InitHooks()
|
self._InitHooks(quiet=quiet)
|
||||||
|
|
||||||
def _InitHooks(self):
|
def _InitHooks(self, quiet=False):
|
||||||
hooks = platform_utils.realpath(self._gitdir_path('hooks'))
|
hooks = platform_utils.realpath(self._gitdir_path('hooks'))
|
||||||
if not os.path.exists(hooks):
|
if not os.path.exists(hooks):
|
||||||
os.makedirs(hooks)
|
os.makedirs(hooks)
|
||||||
@ -2701,18 +2847,23 @@ class Project(object):
|
|||||||
if platform_utils.islink(dst):
|
if platform_utils.islink(dst):
|
||||||
continue
|
continue
|
||||||
if os.path.exists(dst):
|
if os.path.exists(dst):
|
||||||
if filecmp.cmp(stock_hook, dst, shallow=False):
|
# If the files are the same, we'll leave it alone. We create symlinks
|
||||||
platform_utils.remove(dst)
|
# below by default but fallback to hardlinks if the OS blocks them.
|
||||||
else:
|
# So if we're here, it's probably because we made a hardlink below.
|
||||||
_warn("%s: Not replacing locally modified %s hook",
|
if not filecmp.cmp(stock_hook, dst, shallow=False):
|
||||||
self.relpath, name)
|
if not quiet:
|
||||||
continue
|
_warn("%s: Not replacing locally modified %s hook",
|
||||||
|
self.relpath, name)
|
||||||
|
continue
|
||||||
try:
|
try:
|
||||||
platform_utils.symlink(
|
platform_utils.symlink(
|
||||||
os.path.relpath(stock_hook, os.path.dirname(dst)), dst)
|
os.path.relpath(stock_hook, os.path.dirname(dst)), dst)
|
||||||
except OSError as e:
|
except OSError as e:
|
||||||
if e.errno == errno.EPERM:
|
if e.errno == errno.EPERM:
|
||||||
raise GitError(self._get_symlink_error_message())
|
try:
|
||||||
|
os.link(stock_hook, dst)
|
||||||
|
except OSError:
|
||||||
|
raise GitError(self._get_symlink_error_message())
|
||||||
else:
|
else:
|
||||||
raise
|
raise
|
||||||
|
|
||||||
@ -2753,6 +2904,10 @@ 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):
|
||||||
|
# Git worktrees don't use symlinks to share at all.
|
||||||
|
if self.use_git_worktrees:
|
||||||
|
return
|
||||||
|
|
||||||
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:
|
||||||
@ -2760,9 +2915,31 @@ class Project(object):
|
|||||||
symlink_dirs += self.working_tree_dirs
|
symlink_dirs += self.working_tree_dirs
|
||||||
to_symlink = symlink_files + symlink_dirs
|
to_symlink = symlink_files + symlink_dirs
|
||||||
for name in set(to_symlink):
|
for name in set(to_symlink):
|
||||||
dst = platform_utils.realpath(os.path.join(destdir, name))
|
# Try to self-heal a bit in simple cases.
|
||||||
|
dst_path = os.path.join(destdir, name)
|
||||||
|
src_path = os.path.join(srcdir, name)
|
||||||
|
|
||||||
|
if name in self.working_tree_dirs:
|
||||||
|
# If the dir is missing under .repo/projects/, create it.
|
||||||
|
if not os.path.exists(src_path):
|
||||||
|
os.makedirs(src_path)
|
||||||
|
|
||||||
|
elif name in self.working_tree_files:
|
||||||
|
# If it's a file under the checkout .git/ and the .repo/projects/ has
|
||||||
|
# nothing, move the file under the .repo/projects/ tree.
|
||||||
|
if not os.path.exists(src_path) and os.path.isfile(dst_path):
|
||||||
|
platform_utils.rename(dst_path, src_path)
|
||||||
|
|
||||||
|
# If the path exists under the .repo/projects/ and there's no symlink
|
||||||
|
# under the checkout .git/, recreate the symlink.
|
||||||
|
if name in self.working_tree_dirs or name in self.working_tree_files:
|
||||||
|
if os.path.exists(src_path) and not os.path.exists(dst_path):
|
||||||
|
platform_utils.symlink(
|
||||||
|
os.path.relpath(src_path, os.path.dirname(dst_path)), dst_path)
|
||||||
|
|
||||||
|
dst = platform_utils.realpath(dst_path)
|
||||||
if os.path.lexists(dst):
|
if os.path.lexists(dst):
|
||||||
src = platform_utils.realpath(os.path.join(srcdir, name))
|
src = platform_utils.realpath(src_path)
|
||||||
# Fail if the links are pointing to the wrong place
|
# Fail if the links are pointing to the wrong place
|
||||||
if src != dst:
|
if src != dst:
|
||||||
_error('%s is different in %s vs %s', name, destdir, srcdir)
|
_error('%s is different in %s vs %s', name, destdir, srcdir)
|
||||||
@ -2830,11 +3007,41 @@ class Project(object):
|
|||||||
else:
|
else:
|
||||||
raise
|
raise
|
||||||
|
|
||||||
|
def _InitGitWorktree(self):
|
||||||
|
"""Init the project using git worktrees."""
|
||||||
|
self.bare_git.worktree('prune')
|
||||||
|
self.bare_git.worktree('add', '-ff', '--checkout', '--detach', '--lock',
|
||||||
|
self.worktree, self.GetRevisionId())
|
||||||
|
|
||||||
|
# Rewrite the internal state files to use relative paths between the
|
||||||
|
# checkouts & worktrees.
|
||||||
|
dotgit = os.path.join(self.worktree, '.git')
|
||||||
|
with open(dotgit, 'r') as fp:
|
||||||
|
# Figure out the checkout->worktree path.
|
||||||
|
setting = fp.read()
|
||||||
|
assert setting.startswith('gitdir:')
|
||||||
|
git_worktree_path = setting.split(':', 1)[1].strip()
|
||||||
|
# Some platforms (e.g. Windows) won't let us update dotgit in situ because
|
||||||
|
# of file permissions. Delete it and recreate it from scratch to avoid.
|
||||||
|
platform_utils.remove(dotgit)
|
||||||
|
# Use relative path from checkout->worktree.
|
||||||
|
with open(dotgit, 'w') as fp:
|
||||||
|
print('gitdir:', os.path.relpath(git_worktree_path, self.worktree),
|
||||||
|
file=fp)
|
||||||
|
# Use relative path from worktree->checkout.
|
||||||
|
with open(os.path.join(git_worktree_path, 'gitdir'), 'w') as fp:
|
||||||
|
print(os.path.relpath(dotgit, git_worktree_path), file=fp)
|
||||||
|
|
||||||
def _InitWorkTree(self, force_sync=False, submodules=False):
|
def _InitWorkTree(self, force_sync=False, submodules=False):
|
||||||
realdotgit = os.path.join(self.worktree, '.git')
|
realdotgit = os.path.join(self.worktree, '.git')
|
||||||
tmpdotgit = realdotgit + '.tmp'
|
tmpdotgit = realdotgit + '.tmp'
|
||||||
init_dotgit = not os.path.exists(realdotgit)
|
init_dotgit = not os.path.exists(realdotgit)
|
||||||
if init_dotgit:
|
if init_dotgit:
|
||||||
|
if self.use_git_worktrees:
|
||||||
|
self._InitGitWorktree()
|
||||||
|
self._CopyAndLinkFiles()
|
||||||
|
return
|
||||||
|
|
||||||
dotgit = tmpdotgit
|
dotgit = tmpdotgit
|
||||||
platform_utils.rmtree(tmpdotgit, ignore_errors=True)
|
platform_utils.rmtree(tmpdotgit, ignore_errors=True)
|
||||||
os.makedirs(tmpdotgit)
|
os.makedirs(tmpdotgit)
|
||||||
@ -2850,7 +3057,7 @@ class Project(object):
|
|||||||
try:
|
try:
|
||||||
platform_utils.rmtree(dotgit)
|
platform_utils.rmtree(dotgit)
|
||||||
return self._InitWorkTree(force_sync=False, submodules=submodules)
|
return self._InitWorkTree(force_sync=False, submodules=submodules)
|
||||||
except:
|
except Exception:
|
||||||
raise e
|
raise e
|
||||||
raise e
|
raise e
|
||||||
|
|
||||||
@ -3012,11 +3219,28 @@ class Project(object):
|
|||||||
finally:
|
finally:
|
||||||
p.Wait()
|
p.Wait()
|
||||||
|
|
||||||
def GetHead(self):
|
def GetDotgitPath(self, subpath=None):
|
||||||
|
"""Return the full path to the .git dir.
|
||||||
|
|
||||||
|
As a convenience, append |subpath| if provided.
|
||||||
|
"""
|
||||||
if self._bare:
|
if self._bare:
|
||||||
path = os.path.join(self._project.gitdir, HEAD)
|
dotgit = self._gitdir
|
||||||
else:
|
else:
|
||||||
path = self._project.GetHeadPath()
|
dotgit = os.path.join(self._project.worktree, '.git')
|
||||||
|
if os.path.isfile(dotgit):
|
||||||
|
# Git worktrees use a "gitdir:" syntax to point to the scratch space.
|
||||||
|
with open(dotgit) as fp:
|
||||||
|
setting = fp.read()
|
||||||
|
assert setting.startswith('gitdir:')
|
||||||
|
gitdir = setting.split(':', 1)[1].strip()
|
||||||
|
dotgit = os.path.normpath(os.path.join(self._project.worktree, gitdir))
|
||||||
|
|
||||||
|
return dotgit if subpath is None else os.path.join(dotgit, subpath)
|
||||||
|
|
||||||
|
def GetHead(self):
|
||||||
|
"""Return the ref that HEAD points to."""
|
||||||
|
path = self.GetDotgitPath(subpath=HEAD)
|
||||||
try:
|
try:
|
||||||
with open(path) as fd:
|
with open(path) as fd:
|
||||||
line = fd.readline()
|
line = fd.readline()
|
||||||
@ -3111,9 +3335,6 @@ class Project(object):
|
|||||||
raise TypeError('%s() got an unexpected keyword argument %r'
|
raise TypeError('%s() got an unexpected keyword argument %r'
|
||||||
% (name, k))
|
% (name, k))
|
||||||
if config is not None:
|
if config is not None:
|
||||||
if not git_require((1, 7, 2)):
|
|
||||||
raise ValueError('cannot set config on command line for %s()'
|
|
||||||
% name)
|
|
||||||
for k, v in config.items():
|
for k, v in config.items():
|
||||||
cmdv.append('-c')
|
cmdv.append('-c')
|
||||||
cmdv.append('%s=%s' % (k, v))
|
cmdv.append('%s=%s' % (k, v))
|
||||||
|
@ -16,5 +16,6 @@
|
|||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
def is_python3():
|
def is_python3():
|
||||||
return sys.version_info[0] == 3
|
return sys.version_info[0] == 3
|
||||||
|
2
release/README.md
Normal file
2
release/README.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
These are helper tools for managing official releases.
|
||||||
|
See the [release process](../docs/release-process.md) document for more details.
|
114
release/sign-launcher.py
Executable file
114
release/sign-launcher.py
Executable file
@ -0,0 +1,114 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
# Copyright (C) 2020 The Android Open Source Project
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
"""Helper tool for signing repo launcher scripts correctly.
|
||||||
|
|
||||||
|
This is intended to be run only by the official Repo release managers.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import os
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
|
||||||
|
import util
|
||||||
|
|
||||||
|
|
||||||
|
def sign(opts):
|
||||||
|
"""Sign the launcher!"""
|
||||||
|
output = ''
|
||||||
|
for key in opts.keys:
|
||||||
|
# We use ! at the end of the key so that gpg uses this specific key.
|
||||||
|
# Otherwise it uses the key as a lookup into the overall key and uses the
|
||||||
|
# default signing key. i.e. It will see that KEYID_RSA is a subkey of
|
||||||
|
# another key, and use the primary key to sign instead of the subkey.
|
||||||
|
cmd = ['gpg', '--homedir', opts.gpgdir, '-u', f'{key}!', '--batch', '--yes',
|
||||||
|
'--armor', '--detach-sign', '--output', '-', opts.launcher]
|
||||||
|
ret = util.run(opts, cmd, encoding='utf-8', stdout=subprocess.PIPE)
|
||||||
|
output += ret.stdout
|
||||||
|
|
||||||
|
# Save the combined signatures into one file.
|
||||||
|
with open(f'{opts.launcher}.asc', 'w', encoding='utf-8') as fp:
|
||||||
|
fp.write(output)
|
||||||
|
|
||||||
|
|
||||||
|
def check(opts):
|
||||||
|
"""Check the signature."""
|
||||||
|
util.run(opts, ['gpg', '--verify', f'{opts.launcher}.asc'])
|
||||||
|
|
||||||
|
|
||||||
|
def postmsg(opts):
|
||||||
|
"""Helpful info to show at the end for release manager."""
|
||||||
|
print(f"""
|
||||||
|
Repo launcher bucket:
|
||||||
|
gs://git-repo-downloads/
|
||||||
|
|
||||||
|
To upload this launcher directly:
|
||||||
|
gsutil cp -a public-read {opts.launcher} {opts.launcher}.asc gs://git-repo-downloads/
|
||||||
|
|
||||||
|
NB: You probably want to upload it with a specific version first, e.g.:
|
||||||
|
gsutil cp -a public-read {opts.launcher} gs://git-repo-downloads/repo-3.0
|
||||||
|
gsutil cp -a public-read {opts.launcher}.asc gs://git-repo-downloads/repo-3.0.asc
|
||||||
|
""")
|
||||||
|
|
||||||
|
|
||||||
|
def get_parser():
|
||||||
|
"""Get a CLI parser."""
|
||||||
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
|
parser.add_argument('-n', '--dry-run',
|
||||||
|
dest='dryrun', action='store_true',
|
||||||
|
help='show everything that would be done')
|
||||||
|
parser.add_argument('--gpgdir',
|
||||||
|
default=os.path.join(util.HOMEDIR, '.gnupg', 'repo'),
|
||||||
|
help='path to dedicated gpg dir with release keys '
|
||||||
|
'(default: ~/.gnupg/repo/)')
|
||||||
|
parser.add_argument('--keyid', dest='keys', default=[], action='append',
|
||||||
|
help='alternative signing keys to use')
|
||||||
|
parser.add_argument('launcher',
|
||||||
|
default=os.path.join(util.TOPDIR, 'repo'), nargs='?',
|
||||||
|
help='the launcher script to sign')
|
||||||
|
return parser
|
||||||
|
|
||||||
|
|
||||||
|
def main(argv):
|
||||||
|
"""The main func!"""
|
||||||
|
parser = get_parser()
|
||||||
|
opts = parser.parse_args(argv)
|
||||||
|
|
||||||
|
if not os.path.exists(opts.gpgdir):
|
||||||
|
parser.error(f'--gpgdir does not exist: {opts.gpgdir}')
|
||||||
|
if not os.path.exists(opts.launcher):
|
||||||
|
parser.error(f'launcher does not exist: {opts.launcher}')
|
||||||
|
|
||||||
|
opts.launcher = os.path.relpath(opts.launcher)
|
||||||
|
print(f'Signing "{opts.launcher}" launcher script and saving to '
|
||||||
|
f'"{opts.launcher}.asc"')
|
||||||
|
|
||||||
|
if opts.keys:
|
||||||
|
print(f'Using custom keys to sign: {" ".join(opts.keys)}')
|
||||||
|
else:
|
||||||
|
print('Using official Repo release keys to sign')
|
||||||
|
opts.keys = [util.KEYID_DSA, util.KEYID_RSA, util.KEYID_ECC]
|
||||||
|
util.import_release_key(opts)
|
||||||
|
|
||||||
|
sign(opts)
|
||||||
|
check(opts)
|
||||||
|
postmsg(opts)
|
||||||
|
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.exit(main(sys.argv[1:]))
|
135
release/sign-tag.py
Executable file
135
release/sign-tag.py
Executable file
@ -0,0 +1,135 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
# Copyright (C) 2020 The Android Open Source Project
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
"""Helper tool for signing repo release tags correctly.
|
||||||
|
|
||||||
|
This is intended to be run only by the official Repo release managers.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
|
||||||
|
import util
|
||||||
|
|
||||||
|
|
||||||
|
# We currently sign with the old DSA key as it's been around the longest.
|
||||||
|
# We should transition to RSA by Jun 2020, and ECC by Jun 2021.
|
||||||
|
KEYID = util.KEYID_DSA
|
||||||
|
|
||||||
|
# Regular expression to validate tag names.
|
||||||
|
RE_VALID_TAG = r'^v([0-9]+[.])+[0-9]+$'
|
||||||
|
|
||||||
|
|
||||||
|
def sign(opts):
|
||||||
|
"""Tag the commit & sign it!"""
|
||||||
|
# We use ! at the end of the key so that gpg uses this specific key.
|
||||||
|
# Otherwise it uses the key as a lookup into the overall key and uses the
|
||||||
|
# default signing key. i.e. It will see that KEYID_RSA is a subkey of
|
||||||
|
# another key, and use the primary key to sign instead of the subkey.
|
||||||
|
cmd = ['git', 'tag', '-s', opts.tag, '-u', f'{opts.key}!',
|
||||||
|
'-m', f'repo {opts.tag}', opts.commit]
|
||||||
|
|
||||||
|
key = 'GNUPGHOME'
|
||||||
|
print('+', f'export {key}="{opts.gpgdir}"')
|
||||||
|
oldvalue = os.getenv(key)
|
||||||
|
os.putenv(key, opts.gpgdir)
|
||||||
|
util.run(opts, cmd)
|
||||||
|
if oldvalue is None:
|
||||||
|
os.unsetenv(key)
|
||||||
|
else:
|
||||||
|
os.putenv(key, oldvalue)
|
||||||
|
|
||||||
|
|
||||||
|
def check(opts):
|
||||||
|
"""Check the signature."""
|
||||||
|
util.run(opts, ['git', 'tag', '--verify', opts.tag])
|
||||||
|
|
||||||
|
|
||||||
|
def postmsg(opts):
|
||||||
|
"""Helpful info to show at the end for release manager."""
|
||||||
|
cmd = ['git', 'rev-parse', 'remotes/origin/stable']
|
||||||
|
ret = util.run(opts, cmd, encoding='utf-8', stdout=subprocess.PIPE)
|
||||||
|
current_release = ret.stdout.strip()
|
||||||
|
|
||||||
|
cmd = ['git', 'log', '--format=%h (%aN) %s', '--no-merges',
|
||||||
|
f'remotes/origin/stable..{opts.tag}']
|
||||||
|
ret = util.run(opts, cmd, encoding='utf-8', stdout=subprocess.PIPE)
|
||||||
|
shortlog = ret.stdout.strip()
|
||||||
|
|
||||||
|
print(f"""
|
||||||
|
Here's the short log since the last release.
|
||||||
|
{shortlog}
|
||||||
|
|
||||||
|
To push release to the public:
|
||||||
|
git push origin {opts.commit}:stable {opts.tag} -n
|
||||||
|
NB: People will start upgrading to this version immediately.
|
||||||
|
|
||||||
|
To roll back a release:
|
||||||
|
git push origin --force {current_release}:stable -n
|
||||||
|
""")
|
||||||
|
|
||||||
|
|
||||||
|
def get_parser():
|
||||||
|
"""Get a CLI parser."""
|
||||||
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
|
parser.add_argument('-n', '--dry-run',
|
||||||
|
dest='dryrun', action='store_true',
|
||||||
|
help='show everything that would be done')
|
||||||
|
parser.add_argument('--gpgdir',
|
||||||
|
default=os.path.join(util.HOMEDIR, '.gnupg', 'repo'),
|
||||||
|
help='path to dedicated gpg dir with release keys '
|
||||||
|
'(default: ~/.gnupg/repo/)')
|
||||||
|
parser.add_argument('-f', '--force', action='store_true',
|
||||||
|
help='force signing of any tag')
|
||||||
|
parser.add_argument('--keyid', dest='key',
|
||||||
|
help='alternative signing key to use')
|
||||||
|
parser.add_argument('tag',
|
||||||
|
help='the tag to create (e.g. "v2.0")')
|
||||||
|
parser.add_argument('commit', default='HEAD', nargs='?',
|
||||||
|
help='the commit to tag')
|
||||||
|
return parser
|
||||||
|
|
||||||
|
|
||||||
|
def main(argv):
|
||||||
|
"""The main func!"""
|
||||||
|
parser = get_parser()
|
||||||
|
opts = parser.parse_args(argv)
|
||||||
|
|
||||||
|
if not os.path.exists(opts.gpgdir):
|
||||||
|
parser.error(f'--gpgdir does not exist: {opts.gpgdir}')
|
||||||
|
|
||||||
|
if not opts.force and not re.match(RE_VALID_TAG, opts.tag):
|
||||||
|
parser.error(f'tag "{opts.tag}" does not match regex "{RE_VALID_TAG}"; '
|
||||||
|
'use --force to sign anyways')
|
||||||
|
|
||||||
|
if opts.key:
|
||||||
|
print(f'Using custom key to sign: {opts.key}')
|
||||||
|
else:
|
||||||
|
print('Using official Repo release key to sign')
|
||||||
|
opts.key = KEYID
|
||||||
|
util.import_release_key(opts)
|
||||||
|
|
||||||
|
sign(opts)
|
||||||
|
check(opts)
|
||||||
|
postmsg(opts)
|
||||||
|
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.exit(main(sys.argv[1:]))
|
73
release/util.py
Normal file
73
release/util.py
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
# Copyright (C) 2020 The Android Open Source Project
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
"""Random utility code for release tools."""
|
||||||
|
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
assert sys.version_info >= (3, 6), 'This module requires Python 3.6+'
|
||||||
|
|
||||||
|
|
||||||
|
TOPDIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||||
|
HOMEDIR = os.path.expanduser('~')
|
||||||
|
|
||||||
|
|
||||||
|
# These are the release keys we sign with.
|
||||||
|
KEYID_DSA = '8BB9AD793E8E6153AF0F9A4416530D5E920F5C65'
|
||||||
|
KEYID_RSA = 'A34A13BE8E76BFF46A0C022DA2E75A824AAB9624'
|
||||||
|
KEYID_ECC = 'E1F9040D7A3F6DAFAC897CD3D3B95DA243E48A39'
|
||||||
|
|
||||||
|
|
||||||
|
def cmdstr(cmd):
|
||||||
|
"""Get a nicely quoted shell command."""
|
||||||
|
ret = []
|
||||||
|
for arg in cmd:
|
||||||
|
if not re.match(r'^[a-zA-Z0-9/_.=-]+$', arg):
|
||||||
|
arg = f'"{arg}"'
|
||||||
|
ret.append(arg)
|
||||||
|
return ' '.join(ret)
|
||||||
|
|
||||||
|
|
||||||
|
def run(opts, cmd, check=True, **kwargs):
|
||||||
|
"""Helper around subprocess.run to include logging."""
|
||||||
|
print('+', cmdstr(cmd))
|
||||||
|
if opts.dryrun:
|
||||||
|
cmd = ['true', '--'] + cmd
|
||||||
|
try:
|
||||||
|
return subprocess.run(cmd, check=check, **kwargs)
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
print(f'aborting: {e}', file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
def import_release_key(opts):
|
||||||
|
"""Import the public key of the official release repo signing key."""
|
||||||
|
# Extract the key from our repo launcher.
|
||||||
|
launcher = getattr(opts, 'launcher', os.path.join(TOPDIR, 'repo'))
|
||||||
|
print(f'Importing keys from "{launcher}" launcher script')
|
||||||
|
with open(launcher, encoding='utf-8') as fp:
|
||||||
|
data = fp.read()
|
||||||
|
|
||||||
|
keys = re.findall(
|
||||||
|
r'\n-----BEGIN PGP PUBLIC KEY BLOCK-----\n[^-]*'
|
||||||
|
r'\n-----END PGP PUBLIC KEY BLOCK-----\n', data, flags=re.M)
|
||||||
|
run(opts, ['gpg', '--import'], input='\n'.join(keys).encode('utf-8'))
|
||||||
|
|
||||||
|
print('Marking keys as fully trusted')
|
||||||
|
run(opts, ['gpg', '--import-ownertrust'],
|
||||||
|
input=f'{KEYID_DSA}:6:\n'.encode('utf-8'))
|
701
repo
701
repo
@ -1,5 +1,19 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding:utf-8 -*-
|
# -*- coding:utf-8 -*-
|
||||||
|
#
|
||||||
|
# Copyright (C) 2008 The Android Open Source Project
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
"""Repo launcher.
|
"""Repo launcher.
|
||||||
|
|
||||||
@ -10,21 +24,44 @@ copy of repo in the checkout.
|
|||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
|
import datetime
|
||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
|
import shlex
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
# Keep basic logic in sync with repo_trace.py.
|
||||||
|
class Trace(object):
|
||||||
|
"""Trace helper logic."""
|
||||||
|
|
||||||
|
REPO_TRACE = 'REPO_TRACE'
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.set(os.environ.get(self.REPO_TRACE) == '1')
|
||||||
|
|
||||||
|
def set(self, value):
|
||||||
|
self.enabled = bool(value)
|
||||||
|
|
||||||
|
def print(self, *args, **kwargs):
|
||||||
|
if self.enabled:
|
||||||
|
print(*args, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
|
trace = Trace()
|
||||||
|
|
||||||
|
|
||||||
def exec_command(cmd):
|
def exec_command(cmd):
|
||||||
"""Execute |cmd| or return None on failure."""
|
"""Execute |cmd| or return None on failure."""
|
||||||
|
trace.print(':', ' '.join(cmd))
|
||||||
try:
|
try:
|
||||||
if platform.system() == 'Windows':
|
if platform.system() == 'Windows':
|
||||||
ret = subprocess.call(cmd)
|
ret = subprocess.call(cmd)
|
||||||
sys.exit(ret)
|
sys.exit(ret)
|
||||||
else:
|
else:
|
||||||
os.execvp(cmd[0], cmd)
|
os.execvp(cmd[0], cmd)
|
||||||
except:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
@ -83,14 +120,11 @@ def check_python_version():
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
# TODO(vapier): Enable this on Windows once we have Python 3 issues fixed.
|
check_python_version()
|
||||||
if platform.system() != 'Windows':
|
|
||||||
check_python_version()
|
|
||||||
|
|
||||||
|
|
||||||
# repo default configuration
|
# repo default configuration
|
||||||
#
|
#
|
||||||
import os
|
|
||||||
REPO_URL = os.environ.get('REPO_URL', None)
|
REPO_URL = os.environ.get('REPO_URL', None)
|
||||||
if not REPO_URL:
|
if not REPO_URL:
|
||||||
REPO_URL = 'https://gerrit.googlesource.com/git-repo'
|
REPO_URL = 'https://gerrit.googlesource.com/git-repo'
|
||||||
@ -98,25 +132,11 @@ REPO_REV = os.environ.get('REPO_REV')
|
|||||||
if not REPO_REV:
|
if not REPO_REV:
|
||||||
REPO_REV = 'stable'
|
REPO_REV = 'stable'
|
||||||
|
|
||||||
# Copyright (C) 2008 Google Inc.
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
# increment this whenever we make important changes to this script
|
# increment this whenever we make important changes to this script
|
||||||
VERSION = (2, 0)
|
VERSION = (2, 4)
|
||||||
|
|
||||||
# increment this if the MAINTAINER_KEYS block is modified
|
# increment this if the MAINTAINER_KEYS block is modified
|
||||||
KEYRING_VERSION = (2, 0)
|
KEYRING_VERSION = (2, 3)
|
||||||
|
|
||||||
# Each individual key entry is created by using:
|
# Each individual key entry is created by using:
|
||||||
# gpg --armor --export keyid
|
# gpg --armor --export keyid
|
||||||
@ -124,7 +144,6 @@ MAINTAINER_KEYS = """
|
|||||||
|
|
||||||
Repo Maintainer <repo@android.kernel.org>
|
Repo Maintainer <repo@android.kernel.org>
|
||||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
Version: GnuPG v1.4.2.2 (GNU/Linux)
|
|
||||||
|
|
||||||
mQGiBEj3ugERBACrLJh/ZPyVSKeClMuznFIrsQ+hpNnmJGw1a9GXKYKk8qHPhAZf
|
mQGiBEj3ugERBACrLJh/ZPyVSKeClMuznFIrsQ+hpNnmJGw1a9GXKYKk8qHPhAZf
|
||||||
WKtrBqAVMNRLhL85oSlekRz98u41H5si5zcuv+IXJDF5MJYcB8f22wAy15lUqPWi
|
WKtrBqAVMNRLhL85oSlekRz98u41H5si5zcuv+IXJDF5MJYcB8f22wAy15lUqPWi
|
||||||
@ -160,8 +179,39 @@ p3v5ILwfC7hVx4jHSnOgZ65L9s8EQdVr1ckN9243yta7rNgwfcqb60ILMFF1BRk/
|
|||||||
5xGrFy8tfAaeBMIQ17gvFSp/suc9DYO0ICK2BISzq+F+ZiAKsjMYOBNdH/h0zobQ
|
5xGrFy8tfAaeBMIQ17gvFSp/suc9DYO0ICK2BISzq+F+ZiAKsjMYOBNdH/h0zobQ
|
||||||
HTHs37+/QLMomGEGKZMWi0dShU2J5mNRQu3Hhxl3hHDVbt5CeJBb26aQcQrFz69W
|
HTHs37+/QLMomGEGKZMWi0dShU2J5mNRQu3Hhxl3hHDVbt5CeJBb26aQcQrFz69W
|
||||||
zE3GNvmJosh6leayjtI9P2A6iEkEGBECAAkFAkj3uiACGwwACgkQFlMNXpIPXGWp
|
zE3GNvmJosh6leayjtI9P2A6iEkEGBECAAkFAkj3uiACGwwACgkQFlMNXpIPXGWp
|
||||||
TACbBS+Up3RpfYVfd63c1cDdlru13pQAn3NQy/SN858MkxN+zym86UBgOad2
|
TACbBS+Up3RpfYVfd63c1cDdlru13pQAn3NQy/SN858MkxN+zym86UBgOad2uQIN
|
||||||
=CMiZ
|
BF5FqOoBEAC8aRtWEtXzeuoQhdFrLTqYs2dy6kl9y+j3DMQYAMs8je582qzUigIO
|
||||||
|
ZZxq7T/3WQgghsdw9yPvdzlw9tKdet2TJkR1mtBfSjZQrkKwR0pQP4AD7t/90Whu
|
||||||
|
R8Wlu8ysapE2hLxMH5Y2znRQX2LkUYmk0K2ik9AgZEh3AFEg3YLl2pGnSjeSp3ch
|
||||||
|
cLX2n/rVZf5LXluZGRG+iov1Ka+8m+UqzohMA1DYNECJW6KPgXsNX++i8/iwZVic
|
||||||
|
PWzhRJSQC+QiAZNsKT6HNNKs97YCUVzhjBLnRSxRBPkr0hS/VMWY2V4pbASljWyd
|
||||||
|
GYmlDcxheLne0yjes0bJAdvig5rB42FOV0FCM4bDYOVwKfZ7SpzGCYXxtlwe0XNG
|
||||||
|
tLW9WA6tICVqNZ/JNiRTBLrsGSkyrEhDPKnIHlHRI5Zux6IHwMVB0lQKHjSop+t6
|
||||||
|
oyubqWcPCGGYdz2QGQHNz7huC/Zn0wS4hsoiSwPv6HCq3jNyUkOJ7wZ3ouv60p2I
|
||||||
|
kPurgviVaRaPSKTYdKfkcJOtFeqOh1na5IHkXsD9rNctB7tSgfsm0G6qJIVe3ZmJ
|
||||||
|
7QAyHBfuLrAWCq5xS8EHDlvxPdAD8EEsa9T32YxcHKIkxr1eSwrUrKb8cPhWq1pp
|
||||||
|
Jiylw6G1fZ02VKixqmPC4oFMyg1PO8L2tcQTrnVmZvfFGiaekHKdhQARAQABiQKW
|
||||||
|
BBgRAgAgFiEEi7mteT6OYVOvD5pEFlMNXpIPXGUFAl5FqOoCGwICQAkQFlMNXpIP
|
||||||
|
XGXBdCAEGQEKAB0WIQSjShO+jna/9GoMAi2i51qCSquWJAUCXkWo6gAKCRCi51qC
|
||||||
|
SquWJLzgD/0YEZYS7yKxhP+kk94TcTYMBMSZpU5KFClB77yu4SI1LeXq4ocBT4sp
|
||||||
|
EPaOsQiIx//j59J67b7CBe4UeRA6D2n0pw+bCKuc731DFi5X9C1zq3a7E67SQ2yd
|
||||||
|
FbYE2fnpVnMqb62g4sTh7JmdxEtXCWBUWL0OEoWouBW1PkFDHx2kYLC7YpZt3+4t
|
||||||
|
VtNhSfV8NS6PF8ep3JXHVd2wsC3DQtggeId5GM44o8N0SkwQHNjK8ZD+VZ74ZnhZ
|
||||||
|
HeyHskomiOC61LrZWQvxD6VqtfnBQ5GvONO8QuhkiFwMMOnpPVj2k7ngSkd5o27K
|
||||||
|
6c53ZESOlR4bAfl0i3RZYC9B5KerGkBE3dTgTzmGjOaahl2eLz4LDPdTwMtS+sAU
|
||||||
|
1hPPvZTQeYDdV62bOWUyteMoJu354GgZPQ9eItWYixpNCyOGNcJXl6xk3/OuoP6f
|
||||||
|
MciFV8aMxs/7mUR8q1Ei3X9MKu+bbODYj2rC1tMkLj1OaAJkfvRuYrKsQpoUsn4q
|
||||||
|
VT9+aciNpU/I7M30watlWo7RfUFI3zaGdMDcMFju1cWt2Un8E3gtscGufzbz1Z5Z
|
||||||
|
Gak+tCOWUyuYNWX3noit7Dk6+3JGHGaQettldNu2PLM9SbIXd2EaqK/eEv9BS3dd
|
||||||
|
ItkZwzyZXSaQ9UqAceY1AHskJJ5KVXIRLuhP5jBWWo3fnRMyMYt2nwNBAJ9B9TA8
|
||||||
|
VlBniwIl5EzCvOFOTGrtewCdHOvr3N3ieypGz1BzyCN9tJMO3G24MwReRal9Fgkr
|
||||||
|
BgEEAdpHDwEBB0BhPE/je6OuKgWzJ1mnrUmHhn4IMOHp+58+T5kHU3Oy6YjXBBgR
|
||||||
|
AgAgFiEEi7mteT6OYVOvD5pEFlMNXpIPXGUFAl5FqX0CGwIAgQkQFlMNXpIPXGV2
|
||||||
|
IAQZFggAHRYhBOH5BA16P22vrIl809O5XaJD5Io5BQJeRal9AAoJENO5XaJD5Io5
|
||||||
|
MEkA/3uLmiwANOcgE0zB9zga0T/KkYhYOWFx7zRyDhrTf9spAPwIfSBOAGtwxjLO
|
||||||
|
DCce5OaQJl/YuGHvXq2yx5h7T8pdAZ+PAJ4qfIk2LLSidsplTDXOKhOQAuOqUQCf
|
||||||
|
cZ7aFsJF4PtcDrfdejyAxbtsSHI=
|
||||||
|
=82Tj
|
||||||
-----END PGP PUBLIC KEY BLOCK-----
|
-----END PGP PUBLIC KEY BLOCK-----
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@ -202,101 +252,169 @@ home_dot_repo = os.path.expanduser('~/.repoconfig')
|
|||||||
gpg_dir = os.path.join(home_dot_repo, 'gnupg')
|
gpg_dir = os.path.join(home_dot_repo, 'gnupg')
|
||||||
|
|
||||||
extra_args = []
|
extra_args = []
|
||||||
init_optparse = optparse.OptionParser(usage="repo init -u url [options]")
|
|
||||||
|
|
||||||
# Logging
|
|
||||||
group = init_optparse.add_option_group('Logging options')
|
|
||||||
group.add_option('-q', '--quiet',
|
|
||||||
dest="quiet", action="store_true", default=False,
|
|
||||||
help="be quiet")
|
|
||||||
|
|
||||||
# Manifest
|
|
||||||
group = init_optparse.add_option_group('Manifest options')
|
|
||||||
group.add_option('-u', '--manifest-url',
|
|
||||||
dest='manifest_url',
|
|
||||||
help='manifest repository location', metavar='URL')
|
|
||||||
group.add_option('-b', '--manifest-branch',
|
|
||||||
dest='manifest_branch',
|
|
||||||
help='manifest branch or revision', metavar='REVISION')
|
|
||||||
group.add_option('-m', '--manifest-name',
|
|
||||||
dest='manifest_name',
|
|
||||||
help='initial manifest file', metavar='NAME.xml')
|
|
||||||
group.add_option('--current-branch',
|
|
||||||
dest='current_branch_only', action='store_true',
|
|
||||||
help='fetch only current manifest branch from server')
|
|
||||||
group.add_option('--mirror',
|
|
||||||
dest='mirror', action='store_true',
|
|
||||||
help='create a replica of the remote repositories '
|
|
||||||
'rather than a client working directory')
|
|
||||||
group.add_option('--reference',
|
|
||||||
dest='reference',
|
|
||||||
help='location of mirror directory', metavar='DIR')
|
|
||||||
group.add_option('--dissociate',
|
|
||||||
dest='dissociate', action='store_true',
|
|
||||||
help='dissociate from reference mirrors after clone')
|
|
||||||
group.add_option('--depth', type='int', default=None,
|
|
||||||
dest='depth',
|
|
||||||
help='create a shallow clone with given depth; see git clone')
|
|
||||||
group.add_option('--partial-clone', action='store_true',
|
|
||||||
dest='partial_clone',
|
|
||||||
help='perform partial clone (https://git-scm.com/'
|
|
||||||
'docs/gitrepository-layout#_code_partialclone_code)')
|
|
||||||
group.add_option('--clone-filter', action='store', default='blob:none',
|
|
||||||
dest='clone_filter',
|
|
||||||
help='filter for use with --partial-clone [default: %default]')
|
|
||||||
group.add_option('--archive',
|
|
||||||
dest='archive', action='store_true',
|
|
||||||
help='checkout an archive instead of a git repository for '
|
|
||||||
'each project. See git archive.')
|
|
||||||
group.add_option('--submodules',
|
|
||||||
dest='submodules', action='store_true',
|
|
||||||
help='sync any submodules associated with the manifest repo')
|
|
||||||
group.add_option('-g', '--groups',
|
|
||||||
dest='groups', default='default',
|
|
||||||
help='restrict manifest projects to ones with specified '
|
|
||||||
'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]',
|
|
||||||
metavar='GROUP')
|
|
||||||
group.add_option('-p', '--platform',
|
|
||||||
dest='platform', default="auto",
|
|
||||||
help='restrict manifest projects to ones with a specified '
|
|
||||||
'platform group [auto|all|none|linux|darwin|...]',
|
|
||||||
metavar='PLATFORM')
|
|
||||||
group.add_option('--no-clone-bundle',
|
|
||||||
dest='no_clone_bundle', action='store_true',
|
|
||||||
help='disable use of /clone.bundle on HTTP/HTTPS')
|
|
||||||
group.add_option('--no-tags',
|
|
||||||
dest='no_tags', action='store_true',
|
|
||||||
help="don't fetch tags in the manifest")
|
|
||||||
|
|
||||||
|
|
||||||
# Tool
|
def GetParser(gitc_init=False):
|
||||||
group = init_optparse.add_option_group('repo Version options')
|
"""Setup the CLI parser."""
|
||||||
group.add_option('--repo-url',
|
if gitc_init:
|
||||||
dest='repo_url',
|
usage = 'repo gitc-init -u url -c client [options]'
|
||||||
help='repo repository location ($REPO_URL)', metavar='URL')
|
else:
|
||||||
group.add_option('--repo-branch',
|
usage = 'repo init -u url [options]'
|
||||||
dest='repo_branch',
|
|
||||||
help='repo branch or revision ($REPO_REV)', metavar='REVISION')
|
|
||||||
group.add_option('--no-repo-verify',
|
|
||||||
dest='no_repo_verify', action='store_true',
|
|
||||||
help='do not verify repo source code')
|
|
||||||
|
|
||||||
# Other
|
parser = optparse.OptionParser(usage=usage)
|
||||||
group = init_optparse.add_option_group('Other options')
|
|
||||||
group.add_option('--config-name',
|
# Logging.
|
||||||
dest='config_name', action="store_true", default=False,
|
group = parser.add_option_group('Logging options')
|
||||||
help='Always prompt for name/e-mail')
|
group.add_option('-v', '--verbose',
|
||||||
|
dest='output_mode', action='store_true',
|
||||||
|
help='show all output')
|
||||||
|
group.add_option('-q', '--quiet',
|
||||||
|
dest='output_mode', action='store_false',
|
||||||
|
help='only show errors')
|
||||||
|
|
||||||
|
# Manifest.
|
||||||
|
group = parser.add_option_group('Manifest options')
|
||||||
|
group.add_option('-u', '--manifest-url',
|
||||||
|
help='manifest repository location', metavar='URL')
|
||||||
|
group.add_option('-b', '--manifest-branch',
|
||||||
|
help='manifest branch or revision', metavar='REVISION')
|
||||||
|
group.add_option('-m', '--manifest-name',
|
||||||
|
help='initial manifest file', metavar='NAME.xml')
|
||||||
|
cbr_opts = ['--current-branch']
|
||||||
|
# The gitc-init subcommand allocates -c itself, but a lot of init users
|
||||||
|
# want -c, so try to satisfy both as best we can.
|
||||||
|
if not gitc_init:
|
||||||
|
cbr_opts += ['-c']
|
||||||
|
group.add_option(*cbr_opts,
|
||||||
|
dest='current_branch_only', action='store_true',
|
||||||
|
help='fetch only current manifest branch from server')
|
||||||
|
group.add_option('--mirror', action='store_true',
|
||||||
|
help='create a replica of the remote repositories '
|
||||||
|
'rather than a client working directory')
|
||||||
|
group.add_option('--reference',
|
||||||
|
help='location of mirror directory', metavar='DIR')
|
||||||
|
group.add_option('--dissociate', action='store_true',
|
||||||
|
help='dissociate from reference mirrors after clone')
|
||||||
|
group.add_option('--depth', type='int', default=None,
|
||||||
|
help='create a shallow clone with given depth; '
|
||||||
|
'see git clone')
|
||||||
|
group.add_option('--partial-clone', action='store_true',
|
||||||
|
help='perform partial clone (https://git-scm.com/'
|
||||||
|
'docs/gitrepository-layout#_code_partialclone_code)')
|
||||||
|
group.add_option('--clone-filter', action='store', default='blob:none',
|
||||||
|
help='filter for use with --partial-clone '
|
||||||
|
'[default: %default]')
|
||||||
|
group.add_option('--worktree', action='store_true',
|
||||||
|
help=optparse.SUPPRESS_HELP)
|
||||||
|
group.add_option('--archive', action='store_true',
|
||||||
|
help='checkout an archive instead of a git repository for '
|
||||||
|
'each project. See git archive.')
|
||||||
|
group.add_option('--submodules', action='store_true',
|
||||||
|
help='sync any submodules associated with the manifest repo')
|
||||||
|
group.add_option('-g', '--groups', default='default',
|
||||||
|
help='restrict manifest projects to ones with specified '
|
||||||
|
'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]',
|
||||||
|
metavar='GROUP')
|
||||||
|
group.add_option('-p', '--platform', default='auto',
|
||||||
|
help='restrict manifest projects to ones with a specified '
|
||||||
|
'platform group [auto|all|none|linux|darwin|...]',
|
||||||
|
metavar='PLATFORM')
|
||||||
|
group.add_option('--no-clone-bundle',
|
||||||
|
dest='clone_bundle', default=True, action='store_false',
|
||||||
|
help='disable use of /clone.bundle on HTTP/HTTPS')
|
||||||
|
group.add_option('--no-tags',
|
||||||
|
dest='tags', default=True, action='store_false',
|
||||||
|
help="don't fetch tags in the manifest")
|
||||||
|
|
||||||
|
# Tool.
|
||||||
|
group = parser.add_option_group('repo Version options')
|
||||||
|
group.add_option('--repo-url', metavar='URL',
|
||||||
|
help='repo repository location ($REPO_URL)')
|
||||||
|
group.add_option('--repo-branch', metavar='REVISION',
|
||||||
|
help='repo branch or revision ($REPO_REV)')
|
||||||
|
group.add_option('--no-repo-verify',
|
||||||
|
dest='repo_verify', default=True, action='store_false',
|
||||||
|
help='do not verify repo source code')
|
||||||
|
|
||||||
|
# Other.
|
||||||
|
group = parser.add_option_group('Other options')
|
||||||
|
group.add_option('--config-name',
|
||||||
|
action='store_true', default=False,
|
||||||
|
help='Always prompt for name/e-mail')
|
||||||
|
|
||||||
|
# gitc-init specific settings.
|
||||||
|
if gitc_init:
|
||||||
|
group = parser.add_option_group('GITC options')
|
||||||
|
group.add_option('-f', '--manifest-file',
|
||||||
|
help='Optional manifest file to use for this GITC client.')
|
||||||
|
group.add_option('-c', '--gitc-client',
|
||||||
|
help='Name of the gitc_client instance to create or modify.')
|
||||||
|
|
||||||
|
return parser
|
||||||
|
|
||||||
|
|
||||||
def _GitcInitOptions(init_optparse_arg):
|
# This is a poor replacement for subprocess.run until we require Python 3.6+.
|
||||||
init_optparse_arg.set_usage("repo gitc-init -u url -c client [options]")
|
RunResult = collections.namedtuple(
|
||||||
g = init_optparse_arg.add_option_group('GITC options')
|
'RunResult', ('returncode', 'stdout', 'stderr'))
|
||||||
g.add_option('-f', '--manifest-file',
|
|
||||||
dest='manifest_file',
|
|
||||||
help='Optional manifest file to use for this GITC client.')
|
class RunError(Exception):
|
||||||
g.add_option('-c', '--gitc-client',
|
"""Error when running a command failed."""
|
||||||
dest='gitc_client',
|
|
||||||
help='The name of the gitc_client instance to create or modify.')
|
|
||||||
|
def run_command(cmd, **kwargs):
|
||||||
|
"""Run |cmd| and return its output."""
|
||||||
|
check = kwargs.pop('check', False)
|
||||||
|
if kwargs.pop('capture_output', False):
|
||||||
|
kwargs.setdefault('stdout', subprocess.PIPE)
|
||||||
|
kwargs.setdefault('stderr', subprocess.PIPE)
|
||||||
|
cmd_input = kwargs.pop('input', None)
|
||||||
|
|
||||||
|
def decode(output):
|
||||||
|
"""Decode |output| to text."""
|
||||||
|
if output is None:
|
||||||
|
return output
|
||||||
|
try:
|
||||||
|
return output.decode('utf-8')
|
||||||
|
except UnicodeError:
|
||||||
|
print('repo: warning: Invalid UTF-8 output:\ncmd: %r\n%r' % (cmd, output),
|
||||||
|
file=sys.stderr)
|
||||||
|
# TODO(vapier): Once we require Python 3, use 'backslashreplace'.
|
||||||
|
return output.decode('utf-8', 'replace')
|
||||||
|
|
||||||
|
# Run & package the results.
|
||||||
|
proc = subprocess.Popen(cmd, **kwargs)
|
||||||
|
(stdout, stderr) = proc.communicate(input=cmd_input)
|
||||||
|
dbg = ': ' + ' '.join(cmd)
|
||||||
|
if cmd_input is not None:
|
||||||
|
dbg += ' 0<|'
|
||||||
|
if stdout == subprocess.PIPE:
|
||||||
|
dbg += ' 1>|'
|
||||||
|
if stderr == subprocess.PIPE:
|
||||||
|
dbg += ' 2>|'
|
||||||
|
elif stderr == subprocess.STDOUT:
|
||||||
|
dbg += ' 2>&1'
|
||||||
|
trace.print(dbg)
|
||||||
|
ret = RunResult(proc.returncode, decode(stdout), decode(stderr))
|
||||||
|
|
||||||
|
# If things failed, print useful debugging output.
|
||||||
|
if check and ret.returncode:
|
||||||
|
print('repo: error: "%s" failed with exit status %s' %
|
||||||
|
(cmd[0], ret.returncode), file=sys.stderr)
|
||||||
|
print(' cwd: %s\n cmd: %r' %
|
||||||
|
(kwargs.get('cwd', os.getcwd()), cmd), file=sys.stderr)
|
||||||
|
|
||||||
|
def _print_output(name, output):
|
||||||
|
if output:
|
||||||
|
print(' %s:\n >> %s' % (name, '\n >> '.join(output.splitlines())),
|
||||||
|
file=sys.stderr)
|
||||||
|
|
||||||
|
_print_output('stdout', ret.stdout)
|
||||||
|
_print_output('stderr', ret.stderr)
|
||||||
|
raise RunError(ret)
|
||||||
|
|
||||||
|
return ret
|
||||||
|
|
||||||
|
|
||||||
_gitc_manifest_dir = None
|
_gitc_manifest_dir = None
|
||||||
|
|
||||||
@ -348,12 +466,13 @@ class CloneFailure(Exception):
|
|||||||
def _Init(args, gitc_init=False):
|
def _Init(args, gitc_init=False):
|
||||||
"""Installs repo by cloning it over the network.
|
"""Installs repo by cloning it over the network.
|
||||||
"""
|
"""
|
||||||
if gitc_init:
|
parser = GetParser(gitc_init=gitc_init)
|
||||||
_GitcInitOptions(init_optparse)
|
opt, args = parser.parse_args(args)
|
||||||
opt, args = init_optparse.parse_args(args)
|
|
||||||
if args:
|
if args:
|
||||||
init_optparse.print_usage()
|
parser.print_usage()
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
opt.quiet = opt.output_mode is False
|
||||||
|
opt.verbose = opt.output_mode is True
|
||||||
|
|
||||||
url = opt.repo_url
|
url = opt.repo_url
|
||||||
if not url:
|
if not url:
|
||||||
@ -404,7 +523,7 @@ def _Init(args, gitc_init=False):
|
|||||||
|
|
||||||
_CheckGitVersion()
|
_CheckGitVersion()
|
||||||
try:
|
try:
|
||||||
if opt.no_repo_verify:
|
if not opt.repo_verify:
|
||||||
do_verify = False
|
do_verify = False
|
||||||
else:
|
else:
|
||||||
if NeedSetupGnuPG():
|
if NeedSetupGnuPG():
|
||||||
@ -412,8 +531,10 @@ def _Init(args, gitc_init=False):
|
|||||||
else:
|
else:
|
||||||
do_verify = True
|
do_verify = True
|
||||||
|
|
||||||
|
if not opt.quiet:
|
||||||
|
print('Downloading Repo source from', url)
|
||||||
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, not opt.no_clone_bundle)
|
_Clone(url, dst, opt.clone_bundle, opt.quiet, opt.verbose)
|
||||||
|
|
||||||
if do_verify:
|
if do_verify:
|
||||||
rev = _Verify(dst, branch, opt.quiet)
|
rev = _Verify(dst, branch, opt.quiet)
|
||||||
@ -433,15 +554,34 @@ def _Init(args, gitc_init=False):
|
|||||||
raise
|
raise
|
||||||
|
|
||||||
|
|
||||||
|
def run_git(*args, **kwargs):
|
||||||
|
"""Run git and return execution details."""
|
||||||
|
kwargs.setdefault('capture_output', True)
|
||||||
|
kwargs.setdefault('check', True)
|
||||||
|
try:
|
||||||
|
return run_command([GIT] + list(args), **kwargs)
|
||||||
|
except OSError as e:
|
||||||
|
print(file=sys.stderr)
|
||||||
|
print('repo: error: "%s" is not available' % GIT, file=sys.stderr)
|
||||||
|
print('repo: error: %s' % e, file=sys.stderr)
|
||||||
|
print(file=sys.stderr)
|
||||||
|
print('Please make sure %s is installed and in your path.' % GIT,
|
||||||
|
file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
except RunError:
|
||||||
|
raise CloneFailure()
|
||||||
|
|
||||||
|
|
||||||
# The git version info broken down into components for easy analysis.
|
# The git version info broken down into components for easy analysis.
|
||||||
# Similar to Python's sys.version_info.
|
# Similar to Python's sys.version_info.
|
||||||
GitVersion = collections.namedtuple(
|
GitVersion = collections.namedtuple(
|
||||||
'GitVersion', ('major', 'minor', 'micro', 'full'))
|
'GitVersion', ('major', 'minor', 'micro', 'full'))
|
||||||
|
|
||||||
|
|
||||||
def ParseGitVersion(ver_str=None):
|
def ParseGitVersion(ver_str=None):
|
||||||
if ver_str is None:
|
if ver_str is None:
|
||||||
# Load the version ourselves.
|
# Load the version ourselves.
|
||||||
ver_str = _GetGitVersion()
|
ver_str = run_git('--version').stdout
|
||||||
|
|
||||||
if not ver_str.startswith('git version '):
|
if not ver_str.startswith('git version '):
|
||||||
return None
|
return None
|
||||||
@ -458,31 +598,8 @@ def ParseGitVersion(ver_str=None):
|
|||||||
return GitVersion(*to_tuple)
|
return GitVersion(*to_tuple)
|
||||||
|
|
||||||
|
|
||||||
def _GetGitVersion():
|
|
||||||
cmd = [GIT, '--version']
|
|
||||||
try:
|
|
||||||
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE)
|
|
||||||
except OSError as e:
|
|
||||||
print(file=sys.stderr)
|
|
||||||
print("fatal: '%s' is not available" % GIT, file=sys.stderr)
|
|
||||||
print('fatal: %s' % e, file=sys.stderr)
|
|
||||||
print(file=sys.stderr)
|
|
||||||
print('Please make sure %s is installed and in your path.' % GIT,
|
|
||||||
file=sys.stderr)
|
|
||||||
raise
|
|
||||||
|
|
||||||
ver_str = proc.stdout.read().strip()
|
|
||||||
proc.stdout.close()
|
|
||||||
proc.wait()
|
|
||||||
return ver_str.decode('utf-8')
|
|
||||||
|
|
||||||
|
|
||||||
def _CheckGitVersion():
|
def _CheckGitVersion():
|
||||||
try:
|
ver_act = ParseGitVersion()
|
||||||
ver_act = ParseGitVersion()
|
|
||||||
except OSError:
|
|
||||||
raise CloneFailure()
|
|
||||||
|
|
||||||
if ver_act is None:
|
if ver_act is None:
|
||||||
print('fatal: unable to detect git version', file=sys.stderr)
|
print('fatal: unable to detect git version', file=sys.stderr)
|
||||||
raise CloneFailure()
|
raise CloneFailure()
|
||||||
@ -493,6 +610,39 @@ def _CheckGitVersion():
|
|||||||
raise CloneFailure()
|
raise CloneFailure()
|
||||||
|
|
||||||
|
|
||||||
|
def SetGitTrace2ParentSid(env=None):
|
||||||
|
"""Set up GIT_TRACE2_PARENT_SID for git tracing."""
|
||||||
|
# We roughly follow the format git itself uses in trace2/tr2_sid.c.
|
||||||
|
# (1) Be unique (2) be valid filename (3) be fixed length.
|
||||||
|
#
|
||||||
|
# Since we always export this variable, we try to avoid more expensive calls.
|
||||||
|
# e.g. We don't attempt hostname lookups or hashing the results.
|
||||||
|
if env is None:
|
||||||
|
env = os.environ
|
||||||
|
|
||||||
|
KEY = 'GIT_TRACE2_PARENT_SID'
|
||||||
|
|
||||||
|
now = datetime.datetime.utcnow()
|
||||||
|
value = 'repo-%s-P%08x' % (now.strftime('%Y%m%dT%H%M%SZ'), os.getpid())
|
||||||
|
|
||||||
|
# If it's already set, then append ourselves.
|
||||||
|
if KEY in env:
|
||||||
|
value = env[KEY] + '/' + value
|
||||||
|
|
||||||
|
_setenv(KEY, value, env=env)
|
||||||
|
|
||||||
|
|
||||||
|
def _setenv(key, value, env=None):
|
||||||
|
"""Set |key| in the OS environment |env| to |value|."""
|
||||||
|
if env is None:
|
||||||
|
env = os.environ
|
||||||
|
# Environment handling across systems is messy.
|
||||||
|
try:
|
||||||
|
env[key] = value
|
||||||
|
except UnicodeEncodeError:
|
||||||
|
env[key] = value.encode()
|
||||||
|
|
||||||
|
|
||||||
def NeedSetupGnuPG():
|
def NeedSetupGnuPG():
|
||||||
if not os.path.isdir(home_dot_repo):
|
if not os.path.isdir(home_dot_repo):
|
||||||
return True
|
return True
|
||||||
@ -528,43 +678,54 @@ def SetupGnuPG(quiet):
|
|||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
env = os.environ.copy()
|
if not quiet:
|
||||||
|
print('repo: Updating release signing keys to keyset ver %s' %
|
||||||
|
('.'.join(str(x) for x in KEYRING_VERSION),))
|
||||||
|
# NB: We use --homedir (and cwd below) because some environments (Windows) do
|
||||||
|
# not correctly handle full native paths. We avoid the issue by changing to
|
||||||
|
# the right dir with cwd=gpg_dir before executing gpg, and then telling gpg to
|
||||||
|
# use the cwd (.) as its homedir which leaves the path resolution logic to it.
|
||||||
|
cmd = ['gpg', '--homedir', '.', '--import']
|
||||||
try:
|
try:
|
||||||
env['GNUPGHOME'] = gpg_dir
|
# gpg can be pretty chatty. Always capture the output and if something goes
|
||||||
except UnicodeEncodeError:
|
# wrong, the builtin check failure will dump stdout & stderr for debugging.
|
||||||
env['GNUPGHOME'] = gpg_dir.encode()
|
run_command(cmd, stdin=subprocess.PIPE, capture_output=True,
|
||||||
|
cwd=gpg_dir, check=True,
|
||||||
cmd = ['gpg', '--import']
|
input=MAINTAINER_KEYS.encode('utf-8'))
|
||||||
try:
|
except OSError:
|
||||||
proc = subprocess.Popen(cmd,
|
|
||||||
env=env,
|
|
||||||
stdin=subprocess.PIPE)
|
|
||||||
except OSError as e:
|
|
||||||
if not quiet:
|
if not quiet:
|
||||||
print('warning: gpg (GnuPG) is not available.', file=sys.stderr)
|
print('warning: gpg (GnuPG) is not available.', file=sys.stderr)
|
||||||
print('warning: Installing it is strongly encouraged.', file=sys.stderr)
|
print('warning: Installing it is strongly encouraged.', file=sys.stderr)
|
||||||
print(file=sys.stderr)
|
print(file=sys.stderr)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
proc.stdin.write(MAINTAINER_KEYS.encode('utf-8'))
|
|
||||||
proc.stdin.close()
|
|
||||||
|
|
||||||
if proc.wait() != 0:
|
|
||||||
print('fatal: registering repo maintainer keys failed', file=sys.stderr)
|
|
||||||
sys.exit(1)
|
|
||||||
print()
|
|
||||||
|
|
||||||
with open(os.path.join(home_dot_repo, 'keyring-version'), 'w') as fd:
|
with open(os.path.join(home_dot_repo, 'keyring-version'), 'w') as fd:
|
||||||
fd.write('.'.join(map(str, KEYRING_VERSION)) + '\n')
|
fd.write('.'.join(map(str, KEYRING_VERSION)) + '\n')
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def _SetConfig(local, name, value):
|
def _SetConfig(cwd, name, value):
|
||||||
"""Set a git configuration option to the specified value.
|
"""Set a git configuration option to the specified value.
|
||||||
"""
|
"""
|
||||||
cmd = [GIT, 'config', name, value]
|
run_git('config', name, value, cwd=cwd)
|
||||||
if subprocess.Popen(cmd, cwd=local).wait() != 0:
|
|
||||||
raise CloneFailure()
|
|
||||||
|
def _GetRepoConfig(name):
|
||||||
|
"""Read a repo configuration option."""
|
||||||
|
config = os.path.join(home_dot_repo, 'config')
|
||||||
|
if not os.path.exists(config):
|
||||||
|
return None
|
||||||
|
|
||||||
|
cmd = ['config', '--file', config, '--get', name]
|
||||||
|
ret = run_git(*cmd, check=False)
|
||||||
|
if ret.returncode == 0:
|
||||||
|
return ret.stdout
|
||||||
|
elif ret.returncode == 1:
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
print('repo: error: git %s failed:\n%s' % (' '.join(cmd), ret.stderr),
|
||||||
|
file=sys.stderr)
|
||||||
|
raise RunError()
|
||||||
|
|
||||||
|
|
||||||
def _InitHttp():
|
def _InitHttp():
|
||||||
@ -578,7 +739,7 @@ def _InitHttp():
|
|||||||
p = n.hosts[host]
|
p = n.hosts[host]
|
||||||
mgr.add_password(p[1], 'http://%s/' % host, p[0], p[2])
|
mgr.add_password(p[1], 'http://%s/' % host, p[0], p[2])
|
||||||
mgr.add_password(p[1], 'https://%s/' % host, p[0], p[2])
|
mgr.add_password(p[1], 'https://%s/' % host, p[0], p[2])
|
||||||
except:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
handlers.append(urllib.request.HTTPBasicAuthHandler(mgr))
|
handlers.append(urllib.request.HTTPBasicAuthHandler(mgr))
|
||||||
handlers.append(urllib.request.HTTPDigestAuthHandler(mgr))
|
handlers.append(urllib.request.HTTPDigestAuthHandler(mgr))
|
||||||
@ -592,11 +753,8 @@ def _InitHttp():
|
|||||||
urllib.request.install_opener(urllib.request.build_opener(*handlers))
|
urllib.request.install_opener(urllib.request.build_opener(*handlers))
|
||||||
|
|
||||||
|
|
||||||
def _Fetch(url, local, src, quiet):
|
def _Fetch(url, cwd, src, quiet, verbose):
|
||||||
if not quiet:
|
cmd = ['fetch']
|
||||||
print('Get %s' % url, file=sys.stderr)
|
|
||||||
|
|
||||||
cmd = [GIT, 'fetch']
|
|
||||||
if quiet:
|
if quiet:
|
||||||
cmd.append('--quiet')
|
cmd.append('--quiet')
|
||||||
err = subprocess.PIPE
|
err = subprocess.PIPE
|
||||||
@ -605,26 +763,17 @@ def _Fetch(url, local, src, quiet):
|
|||||||
cmd.append(src)
|
cmd.append(src)
|
||||||
cmd.append('+refs/heads/*:refs/remotes/origin/*')
|
cmd.append('+refs/heads/*:refs/remotes/origin/*')
|
||||||
cmd.append('+refs/tags/*:refs/tags/*')
|
cmd.append('+refs/tags/*:refs/tags/*')
|
||||||
|
run_git(*cmd, stderr=err, cwd=cwd)
|
||||||
proc = subprocess.Popen(cmd, cwd=local, stderr=err)
|
|
||||||
if err:
|
|
||||||
proc.stderr.read()
|
|
||||||
proc.stderr.close()
|
|
||||||
if proc.wait() != 0:
|
|
||||||
raise CloneFailure()
|
|
||||||
|
|
||||||
|
|
||||||
def _DownloadBundle(url, local, quiet):
|
def _DownloadBundle(url, cwd, quiet, verbose):
|
||||||
if not url.endswith('/'):
|
if not url.endswith('/'):
|
||||||
url += '/'
|
url += '/'
|
||||||
url += 'clone.bundle'
|
url += 'clone.bundle'
|
||||||
|
|
||||||
proc = subprocess.Popen(
|
ret = run_git('config', '--get-regexp', 'url.*.insteadof', cwd=cwd,
|
||||||
[GIT, 'config', '--get-regexp', 'url.*.insteadof'],
|
check=False)
|
||||||
cwd=local,
|
for line in ret.stdout.splitlines():
|
||||||
stdout=subprocess.PIPE)
|
|
||||||
for line in proc.stdout:
|
|
||||||
line = line.decode('utf-8')
|
|
||||||
m = re.compile(r'^url\.(.*)\.insteadof (.*)$').match(line)
|
m = re.compile(r'^url\.(.*)\.insteadof (.*)$').match(line)
|
||||||
if m:
|
if m:
|
||||||
new_url = m.group(1)
|
new_url = m.group(1)
|
||||||
@ -632,13 +781,11 @@ def _DownloadBundle(url, local, quiet):
|
|||||||
if url.startswith(old_url):
|
if url.startswith(old_url):
|
||||||
url = new_url + url[len(old_url):]
|
url = new_url + url[len(old_url):]
|
||||||
break
|
break
|
||||||
proc.stdout.close()
|
|
||||||
proc.wait()
|
|
||||||
|
|
||||||
if not url.startswith('http:') and not url.startswith('https:'):
|
if not url.startswith('http:') and not url.startswith('https:'):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
dest = open(os.path.join(local, '.git', 'clone.bundle'), 'w+b')
|
dest = open(os.path.join(cwd, '.git', 'clone.bundle'), 'w+b')
|
||||||
try:
|
try:
|
||||||
try:
|
try:
|
||||||
r = urllib.request.urlopen(url)
|
r = urllib.request.urlopen(url)
|
||||||
@ -653,8 +800,8 @@ def _DownloadBundle(url, local, quiet):
|
|||||||
print('fatal: error %s' % e.reason, file=sys.stderr)
|
print('fatal: error %s' % e.reason, file=sys.stderr)
|
||||||
raise CloneFailure()
|
raise CloneFailure()
|
||||||
try:
|
try:
|
||||||
if not quiet:
|
if verbose:
|
||||||
print('Get %s' % url, file=sys.stderr)
|
print('Downloading clone bundle %s' % url, file=sys.stderr)
|
||||||
while True:
|
while True:
|
||||||
buf = r.read(8192)
|
buf = r.read(8192)
|
||||||
if not buf:
|
if not buf:
|
||||||
@ -666,67 +813,48 @@ def _DownloadBundle(url, local, quiet):
|
|||||||
dest.close()
|
dest.close()
|
||||||
|
|
||||||
|
|
||||||
def _ImportBundle(local):
|
def _ImportBundle(cwd):
|
||||||
path = os.path.join(local, '.git', 'clone.bundle')
|
path = os.path.join(cwd, '.git', 'clone.bundle')
|
||||||
try:
|
try:
|
||||||
_Fetch(local, local, path, True)
|
_Fetch(cwd, cwd, path, True, False)
|
||||||
finally:
|
finally:
|
||||||
os.remove(path)
|
os.remove(path)
|
||||||
|
|
||||||
|
|
||||||
def _Clone(url, local, quiet, clone_bundle):
|
def _Clone(url, cwd, clone_bundle, quiet, verbose):
|
||||||
"""Clones a git repository to a new subdirectory of repodir
|
"""Clones a git repository to a new subdirectory of repodir
|
||||||
"""
|
"""
|
||||||
|
if verbose:
|
||||||
|
print('Cloning git repository', url)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
os.mkdir(local)
|
os.mkdir(cwd)
|
||||||
except OSError as e:
|
except OSError as e:
|
||||||
print('fatal: cannot make %s directory: %s' % (local, e.strerror),
|
print('fatal: cannot make %s directory: %s' % (cwd, e.strerror),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
raise CloneFailure()
|
raise CloneFailure()
|
||||||
|
|
||||||
cmd = [GIT, 'init', '--quiet']
|
run_git('init', '--quiet', cwd=cwd)
|
||||||
try:
|
|
||||||
proc = subprocess.Popen(cmd, cwd=local)
|
|
||||||
except OSError as e:
|
|
||||||
print(file=sys.stderr)
|
|
||||||
print("fatal: '%s' is not available" % GIT, file=sys.stderr)
|
|
||||||
print('fatal: %s' % e, file=sys.stderr)
|
|
||||||
print(file=sys.stderr)
|
|
||||||
print('Please make sure %s is installed and in your path.' % GIT,
|
|
||||||
file=sys.stderr)
|
|
||||||
raise CloneFailure()
|
|
||||||
if proc.wait() != 0:
|
|
||||||
print('fatal: could not create %s' % local, file=sys.stderr)
|
|
||||||
raise CloneFailure()
|
|
||||||
|
|
||||||
_InitHttp()
|
_InitHttp()
|
||||||
_SetConfig(local, 'remote.origin.url', url)
|
_SetConfig(cwd, 'remote.origin.url', url)
|
||||||
_SetConfig(local,
|
_SetConfig(cwd,
|
||||||
'remote.origin.fetch',
|
'remote.origin.fetch',
|
||||||
'+refs/heads/*:refs/remotes/origin/*')
|
'+refs/heads/*:refs/remotes/origin/*')
|
||||||
if clone_bundle and _DownloadBundle(url, local, quiet):
|
if clone_bundle and _DownloadBundle(url, cwd, quiet, verbose):
|
||||||
_ImportBundle(local)
|
_ImportBundle(cwd)
|
||||||
_Fetch(url, local, 'origin', quiet)
|
_Fetch(url, cwd, 'origin', quiet, verbose)
|
||||||
|
|
||||||
|
|
||||||
def _Verify(cwd, branch, quiet):
|
def _Verify(cwd, branch, quiet):
|
||||||
"""Verify the branch has been signed by a tag.
|
"""Verify the branch has been signed by a tag.
|
||||||
"""
|
"""
|
||||||
cmd = [GIT, 'describe', 'origin/%s' % branch]
|
try:
|
||||||
proc = subprocess.Popen(cmd,
|
ret = run_git('describe', 'origin/%s' % branch, cwd=cwd)
|
||||||
stdout=subprocess.PIPE,
|
cur = ret.stdout.strip()
|
||||||
stderr=subprocess.PIPE,
|
except CloneFailure:
|
||||||
cwd=cwd)
|
|
||||||
cur = proc.stdout.read().strip().decode('utf-8')
|
|
||||||
proc.stdout.close()
|
|
||||||
|
|
||||||
proc.stderr.read()
|
|
||||||
proc.stderr.close()
|
|
||||||
|
|
||||||
if proc.wait() != 0 or not cur:
|
|
||||||
print(file=sys.stderr)
|
|
||||||
print("fatal: branch '%s' has not been signed" % branch, file=sys.stderr)
|
print("fatal: branch '%s' has not been signed" % branch, file=sys.stderr)
|
||||||
raise CloneFailure()
|
raise
|
||||||
|
|
||||||
m = re.compile(r'^(.*)-[0-9]{1,}-g[0-9a-f]{1,}$').match(cur)
|
m = re.compile(r'^(.*)-[0-9]{1,}-g[0-9a-f]{1,}$').match(cur)
|
||||||
if m:
|
if m:
|
||||||
@ -738,52 +866,26 @@ def _Verify(cwd, branch, quiet):
|
|||||||
print(file=sys.stderr)
|
print(file=sys.stderr)
|
||||||
|
|
||||||
env = os.environ.copy()
|
env = os.environ.copy()
|
||||||
try:
|
_setenv('GNUPGHOME', gpg_dir, env)
|
||||||
env['GNUPGHOME'] = gpg_dir
|
run_git('tag', '-v', cur, cwd=cwd, env=env)
|
||||||
except UnicodeEncodeError:
|
|
||||||
env['GNUPGHOME'] = gpg_dir.encode()
|
|
||||||
|
|
||||||
cmd = [GIT, 'tag', '-v', cur]
|
|
||||||
proc = subprocess.Popen(cmd,
|
|
||||||
stdout=subprocess.PIPE,
|
|
||||||
stderr=subprocess.PIPE,
|
|
||||||
cwd=cwd,
|
|
||||||
env=env)
|
|
||||||
out = proc.stdout.read().decode('utf-8')
|
|
||||||
proc.stdout.close()
|
|
||||||
|
|
||||||
err = proc.stderr.read().decode('utf-8')
|
|
||||||
proc.stderr.close()
|
|
||||||
|
|
||||||
if proc.wait() != 0:
|
|
||||||
print(file=sys.stderr)
|
|
||||||
print(out, file=sys.stderr)
|
|
||||||
print(err, file=sys.stderr)
|
|
||||||
print(file=sys.stderr)
|
|
||||||
raise CloneFailure()
|
|
||||||
return '%s^0' % cur
|
return '%s^0' % cur
|
||||||
|
|
||||||
|
|
||||||
def _Checkout(cwd, branch, rev, quiet):
|
def _Checkout(cwd, branch, rev, quiet):
|
||||||
"""Checkout an upstream branch into the repository and track it.
|
"""Checkout an upstream branch into the repository and track it.
|
||||||
"""
|
"""
|
||||||
cmd = [GIT, 'update-ref', 'refs/heads/default', rev]
|
run_git('update-ref', 'refs/heads/default', rev, cwd=cwd)
|
||||||
if subprocess.Popen(cmd, cwd=cwd).wait() != 0:
|
|
||||||
raise CloneFailure()
|
|
||||||
|
|
||||||
_SetConfig(cwd, 'branch.default.remote', 'origin')
|
_SetConfig(cwd, 'branch.default.remote', 'origin')
|
||||||
_SetConfig(cwd, 'branch.default.merge', 'refs/heads/%s' % branch)
|
_SetConfig(cwd, 'branch.default.merge', 'refs/heads/%s' % branch)
|
||||||
|
|
||||||
cmd = [GIT, 'symbolic-ref', 'HEAD', 'refs/heads/default']
|
run_git('symbolic-ref', 'HEAD', 'refs/heads/default', cwd=cwd)
|
||||||
if subprocess.Popen(cmd, cwd=cwd).wait() != 0:
|
|
||||||
raise CloneFailure()
|
|
||||||
|
|
||||||
cmd = [GIT, 'read-tree', '--reset', '-u']
|
cmd = ['read-tree', '--reset', '-u']
|
||||||
if not quiet:
|
if not quiet:
|
||||||
cmd.append('-v')
|
cmd.append('-v')
|
||||||
cmd.append('HEAD')
|
cmd.append('HEAD')
|
||||||
if subprocess.Popen(cmd, cwd=cwd).wait() != 0:
|
run_git(*cmd, cwd=cwd)
|
||||||
raise CloneFailure()
|
|
||||||
|
|
||||||
|
|
||||||
def _FindRepo():
|
def _FindRepo():
|
||||||
@ -806,6 +908,26 @@ def _FindRepo():
|
|||||||
|
|
||||||
class _Options(object):
|
class _Options(object):
|
||||||
help = False
|
help = False
|
||||||
|
version = False
|
||||||
|
|
||||||
|
|
||||||
|
def _ExpandAlias(name):
|
||||||
|
"""Look up user registered aliases."""
|
||||||
|
# We don't resolve aliases for existing subcommands. This matches git.
|
||||||
|
if name in {'gitc-init', 'help', 'init'}:
|
||||||
|
return name, []
|
||||||
|
|
||||||
|
alias = _GetRepoConfig('alias.%s' % (name,))
|
||||||
|
if alias is None:
|
||||||
|
return name, []
|
||||||
|
|
||||||
|
args = alias.strip().split(' ', 1)
|
||||||
|
name = args[0]
|
||||||
|
if len(args) == 2:
|
||||||
|
args = shlex.split(args[1])
|
||||||
|
else:
|
||||||
|
args = []
|
||||||
|
return name, args
|
||||||
|
|
||||||
|
|
||||||
def _ParseArguments(args):
|
def _ParseArguments(args):
|
||||||
@ -817,7 +939,10 @@ def _ParseArguments(args):
|
|||||||
a = args[i]
|
a = args[i]
|
||||||
if a == '-h' or a == '--help':
|
if a == '-h' or a == '--help':
|
||||||
opt.help = True
|
opt.help = True
|
||||||
|
elif a == '--version':
|
||||||
|
opt.version = True
|
||||||
|
elif a == '--trace':
|
||||||
|
trace.set(True)
|
||||||
elif not a.startswith('-'):
|
elif not a.startswith('-'):
|
||||||
cmd = a
|
cmd = a
|
||||||
arg = args[i + 1:]
|
arg = args[i + 1:]
|
||||||
@ -848,12 +973,9 @@ For access to the full online help, install repo ("repo init").
|
|||||||
|
|
||||||
def _Help(args):
|
def _Help(args):
|
||||||
if args:
|
if args:
|
||||||
if args[0] == 'init':
|
if args[0] in {'init', 'gitc-init'}:
|
||||||
init_optparse.print_help()
|
parser = GetParser(gitc_init=args[0] == 'gitc-init')
|
||||||
sys.exit(0)
|
parser.print_help()
|
||||||
elif args[0] == 'gitc-init':
|
|
||||||
_GitcInitOptions(init_optparse)
|
|
||||||
init_optparse.print_help()
|
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
else:
|
else:
|
||||||
print("error: '%s' is not a bootstrap command.\n"
|
print("error: '%s' is not a bootstrap command.\n"
|
||||||
@ -864,6 +986,16 @@ def _Help(args):
|
|||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
def _Version():
|
||||||
|
"""Show version information."""
|
||||||
|
print('<repo not installed>')
|
||||||
|
print('repo launcher version %s' % ('.'.join(str(x) for x in VERSION),))
|
||||||
|
print(' (from %s)' % (__file__,))
|
||||||
|
print('git %s' % (ParseGitVersion().full,))
|
||||||
|
print('Python %s' % sys.version)
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
||||||
def _NotInstalled():
|
def _NotInstalled():
|
||||||
print('error: repo is not installed. Use "repo init" to install it here.',
|
print('error: repo is not installed. Use "repo init" to install it here.',
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
@ -896,19 +1028,10 @@ def _SetDefaultsTo(gitdir):
|
|||||||
global REPO_REV
|
global REPO_REV
|
||||||
|
|
||||||
REPO_URL = gitdir
|
REPO_URL = gitdir
|
||||||
proc = subprocess.Popen([GIT,
|
try:
|
||||||
'--git-dir=%s' % gitdir,
|
ret = run_git('--git-dir=%s' % gitdir, 'symbolic-ref', 'HEAD')
|
||||||
'symbolic-ref',
|
REPO_REV = ret.stdout.strip()
|
||||||
'HEAD'],
|
except CloneFailure:
|
||||||
stdout=subprocess.PIPE,
|
|
||||||
stderr=subprocess.PIPE)
|
|
||||||
REPO_REV = proc.stdout.read().strip().decode('utf-8')
|
|
||||||
proc.stdout.close()
|
|
||||||
|
|
||||||
proc.stderr.read()
|
|
||||||
proc.stderr.close()
|
|
||||||
|
|
||||||
if proc.wait() != 0:
|
|
||||||
print('fatal: %s has no current branch' % gitdir, file=sys.stderr)
|
print('fatal: %s has no current branch' % gitdir, file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
@ -916,6 +1039,9 @@ def _SetDefaultsTo(gitdir):
|
|||||||
def main(orig_args):
|
def main(orig_args):
|
||||||
cmd, opt, args = _ParseArguments(orig_args)
|
cmd, opt, args = _ParseArguments(orig_args)
|
||||||
|
|
||||||
|
# We run this early as we run some git commands ourselves.
|
||||||
|
SetGitTrace2ParentSid()
|
||||||
|
|
||||||
repo_main, rel_repo_dir = None, None
|
repo_main, rel_repo_dir = None, None
|
||||||
# Don't use the local repo copy, make sure to switch to the gitc client first.
|
# Don't use the local repo copy, make sure to switch to the gitc client first.
|
||||||
if cmd != 'gitc-init':
|
if cmd != 'gitc-init':
|
||||||
@ -932,10 +1058,17 @@ def main(orig_args):
|
|||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
if not repo_main:
|
if not repo_main:
|
||||||
|
# Only expand aliases here since we'll be parsing the CLI ourselves.
|
||||||
|
# If we had repo_main, alias expansion would happen in main.py.
|
||||||
|
cmd, alias_args = _ExpandAlias(cmd)
|
||||||
|
args = alias_args + args
|
||||||
|
|
||||||
if opt.help:
|
if opt.help:
|
||||||
_Usage()
|
_Usage()
|
||||||
if cmd == 'help':
|
if cmd == 'help':
|
||||||
_Help(args)
|
_Help(args)
|
||||||
|
if opt.version or cmd == 'version':
|
||||||
|
_Version()
|
||||||
if not cmd:
|
if not cmd:
|
||||||
_NotInstalled()
|
_NotInstalled()
|
||||||
if cmd == 'init' or cmd == 'gitc-init':
|
if cmd == 'init' or cmd == 'gitc-init':
|
||||||
|
@ -28,13 +28,16 @@ REPO_TRACE = 'REPO_TRACE'
|
|||||||
|
|
||||||
_TRACE = os.environ.get(REPO_TRACE) == '1'
|
_TRACE = os.environ.get(REPO_TRACE) == '1'
|
||||||
|
|
||||||
|
|
||||||
def IsTrace():
|
def IsTrace():
|
||||||
return _TRACE
|
return _TRACE
|
||||||
|
|
||||||
|
|
||||||
def SetTrace():
|
def SetTrace():
|
||||||
global _TRACE
|
global _TRACE
|
||||||
_TRACE = True
|
_TRACE = True
|
||||||
|
|
||||||
|
|
||||||
def Trace(fmt, *args):
|
def Trace(fmt, *args):
|
||||||
if IsTrace():
|
if IsTrace():
|
||||||
print(fmt % args, file=sys.stderr)
|
print(fmt % args, file=sys.stderr)
|
||||||
|
@ -42,9 +42,11 @@ def main(argv):
|
|||||||
"""The main entry."""
|
"""The main entry."""
|
||||||
# Add the repo tree to PYTHONPATH as the tests expect to be able to import
|
# Add the repo tree to PYTHONPATH as the tests expect to be able to import
|
||||||
# modules directly.
|
# modules directly.
|
||||||
topdir = os.path.dirname(os.path.realpath(__file__))
|
pythonpath = os.path.dirname(os.path.realpath(__file__))
|
||||||
pythonpath = os.environ.get('PYTHONPATH', '')
|
oldpythonpath = os.environ.get('PYTHONPATH', None)
|
||||||
os.environ['PYTHONPATH'] = '%s:%s' % (topdir, pythonpath)
|
if oldpythonpath is not None:
|
||||||
|
pythonpath += os.pathsep + oldpythonpath
|
||||||
|
os.environ['PYTHONPATH'] = pythonpath
|
||||||
|
|
||||||
return run_pytest('pytest', argv)
|
return run_pytest('pytest', argv)
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ for py in os.listdir(my_dir):
|
|||||||
cmd = getattr(mod, clsn)()
|
cmd = getattr(mod, clsn)()
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
raise SyntaxError('%s/%s does not define class %s' % (
|
raise SyntaxError('%s/%s does not define class %s' % (
|
||||||
__name__, py, clsn))
|
__name__, py, clsn))
|
||||||
|
|
||||||
name = name.replace('_', '-')
|
name = name.replace('_', '-')
|
||||||
cmd.NAME = name
|
cmd.NAME = name
|
||||||
|
@ -15,12 +15,15 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import sys
|
|
||||||
from command import Command
|
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
|
import sys
|
||||||
|
|
||||||
|
from command import Command
|
||||||
from git_command import git
|
from git_command import git
|
||||||
from progress import Progress
|
from progress import Progress
|
||||||
|
|
||||||
|
|
||||||
class Abandon(Command):
|
class Abandon(Command):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Permanently abandon a development branch"
|
helpSummary = "Permanently abandon a development branch"
|
||||||
@ -32,7 +35,11 @@ deleting it (and all its history) from your local repository.
|
|||||||
|
|
||||||
It is equivalent to "git branch -D <branchname>".
|
It is equivalent to "git branch -D <branchname>".
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def _Options(self, p):
|
def _Options(self, p):
|
||||||
|
p.add_option('-q', '--quiet',
|
||||||
|
action='store_true', default=False,
|
||||||
|
help='be quiet')
|
||||||
p.add_option('--all',
|
p.add_option('--all',
|
||||||
dest='all', action='store_true',
|
dest='all', action='store_true',
|
||||||
help='delete all branches in all projects')
|
help='delete all branches in all projects')
|
||||||
@ -79,21 +86,24 @@ It is equivalent to "git branch -D <branchname>".
|
|||||||
|
|
||||||
if err:
|
if err:
|
||||||
for br in err.keys():
|
for br in err.keys():
|
||||||
err_msg = "error: cannot abandon %s" %br
|
err_msg = "error: cannot abandon %s" % br
|
||||||
print(err_msg, file=sys.stderr)
|
print(err_msg, file=sys.stderr)
|
||||||
for proj in err[br]:
|
for proj in err[br]:
|
||||||
print(' '*len(err_msg) + " | %s" % proj.relpath, file=sys.stderr)
|
print(' ' * len(err_msg) + " | %s" % proj.relpath, file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
elif not success:
|
elif not success:
|
||||||
print('error: no project has local branch(es) : %s' % nb,
|
print('error: no project has local branch(es) : %s' % nb,
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
else:
|
else:
|
||||||
print('Abandoned branches:', file=sys.stderr)
|
# Everything below here is displaying status.
|
||||||
|
if opt.quiet:
|
||||||
|
return
|
||||||
|
print('Abandoned branches:')
|
||||||
for br in success.keys():
|
for br in success.keys():
|
||||||
if len(all_projects) > 1 and len(all_projects) == len(success[br]):
|
if len(all_projects) > 1 and len(all_projects) == len(success[br]):
|
||||||
result = "all project"
|
result = "all project"
|
||||||
else:
|
else:
|
||||||
result = "%s" % (
|
result = "%s" % (
|
||||||
('\n'+' '*width + '| ').join(p.relpath for p in success[br]))
|
('\n' + ' ' * width + '| ').join(p.relpath for p in success[br]))
|
||||||
print("%s%s| %s\n" % (br,' '*(width-len(br)), result),file=sys.stderr)
|
print("%s%s| %s\n" % (br, ' ' * (width - len(br)), result))
|
||||||
|
@ -19,13 +19,15 @@ import sys
|
|||||||
from color import Coloring
|
from color import Coloring
|
||||||
from command import Command
|
from command import Command
|
||||||
|
|
||||||
|
|
||||||
class BranchColoring(Coloring):
|
class BranchColoring(Coloring):
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
Coloring.__init__(self, config, 'branch')
|
Coloring.__init__(self, config, 'branch')
|
||||||
self.current = self.printer('current', fg='green')
|
self.current = self.printer('current', fg='green')
|
||||||
self.local = self.printer('local')
|
self.local = self.printer('local')
|
||||||
self.notinproject = self.printer('notinproject', fg='red')
|
self.notinproject = self.printer('notinproject', fg='red')
|
||||||
|
|
||||||
|
|
||||||
class BranchInfo(object):
|
class BranchInfo(object):
|
||||||
def __init__(self, name):
|
def __init__(self, name):
|
||||||
self.name = name
|
self.name = name
|
||||||
@ -158,7 +160,7 @@ is shown, then the branch appears in all projects.
|
|||||||
for b in i.projects:
|
for b in i.projects:
|
||||||
have.add(b.project)
|
have.add(b.project)
|
||||||
for p in projects:
|
for p in projects:
|
||||||
if not p in have:
|
if p not in have:
|
||||||
paths.append(p.relpath)
|
paths.append(p.relpath)
|
||||||
|
|
||||||
s = ' %s %s' % (in_type, ', '.join(paths))
|
s = ' %s %s' % (in_type, ', '.join(paths))
|
||||||
@ -170,11 +172,11 @@ is shown, then the branch appears in all projects.
|
|||||||
fmt = out.current if i.IsCurrent else out.write
|
fmt = out.current if i.IsCurrent else out.write
|
||||||
for p in paths:
|
for p in paths:
|
||||||
out.nl()
|
out.nl()
|
||||||
fmt(width*' ' + ' %s' % p)
|
fmt(width * ' ' + ' %s' % p)
|
||||||
fmt = out.write
|
fmt = out.write
|
||||||
for p in non_cur_paths:
|
for p in non_cur_paths:
|
||||||
out.nl()
|
out.nl()
|
||||||
fmt(width*' ' + ' %s' % p)
|
fmt(width * ' ' + ' %s' % p)
|
||||||
else:
|
else:
|
||||||
out.write(' in all projects')
|
out.write(' in all projects')
|
||||||
out.nl()
|
out.nl()
|
||||||
|
@ -19,6 +19,7 @@ import sys
|
|||||||
from command import Command
|
from command import Command
|
||||||
from progress import Progress
|
from progress import Progress
|
||||||
|
|
||||||
|
|
||||||
class Checkout(Command):
|
class Checkout(Command):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Checkout a branch for development"
|
helpSummary = "Checkout a branch for development"
|
||||||
|
@ -22,6 +22,7 @@ from git_command import GitCommand
|
|||||||
|
|
||||||
CHANGE_ID_RE = re.compile(r'^\s*Change-Id: I([0-9a-f]{40})\s*$')
|
CHANGE_ID_RE = re.compile(r'^\s*Change-Id: I([0-9a-f]{40})\s*$')
|
||||||
|
|
||||||
|
|
||||||
class CherryPick(Command):
|
class CherryPick(Command):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Cherry-pick a change."
|
helpSummary = "Cherry-pick a change."
|
||||||
@ -46,8 +47,8 @@ change id will be added.
|
|||||||
|
|
||||||
p = GitCommand(None,
|
p = GitCommand(None,
|
||||||
['rev-parse', '--verify', reference],
|
['rev-parse', '--verify', reference],
|
||||||
capture_stdout = True,
|
capture_stdout=True,
|
||||||
capture_stderr = True)
|
capture_stderr=True)
|
||||||
if p.Wait() != 0:
|
if p.Wait() != 0:
|
||||||
print(p.stderr, file=sys.stderr)
|
print(p.stderr, file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
@ -61,8 +62,8 @@ change id will be added.
|
|||||||
|
|
||||||
p = GitCommand(None,
|
p = GitCommand(None,
|
||||||
['cherry-pick', sha1],
|
['cherry-pick', sha1],
|
||||||
capture_stdout = True,
|
capture_stdout=True,
|
||||||
capture_stderr = True)
|
capture_stderr=True)
|
||||||
status = p.Wait()
|
status = p.Wait()
|
||||||
|
|
||||||
print(p.stdout, file=sys.stdout)
|
print(p.stdout, file=sys.stdout)
|
||||||
@ -74,9 +75,9 @@ change id will be added.
|
|||||||
new_msg = self._Reformat(old_msg, sha1)
|
new_msg = self._Reformat(old_msg, sha1)
|
||||||
|
|
||||||
p = GitCommand(None, ['commit', '--amend', '-F', '-'],
|
p = GitCommand(None, ['commit', '--amend', '-F', '-'],
|
||||||
provide_stdin = True,
|
provide_stdin=True,
|
||||||
capture_stdout = True,
|
capture_stdout=True,
|
||||||
capture_stderr = True)
|
capture_stderr=True)
|
||||||
p.stdin.write(new_msg)
|
p.stdin.write(new_msg)
|
||||||
p.stdin.close()
|
p.stdin.close()
|
||||||
if p.Wait() != 0:
|
if p.Wait() != 0:
|
||||||
@ -97,7 +98,7 @@ change id will be added.
|
|||||||
|
|
||||||
def _StripHeader(self, commit_msg):
|
def _StripHeader(self, commit_msg):
|
||||||
lines = commit_msg.splitlines()
|
lines = commit_msg.splitlines()
|
||||||
return "\n".join(lines[lines.index("")+1:])
|
return "\n".join(lines[lines.index("") + 1:])
|
||||||
|
|
||||||
def _Reformat(self, old_msg, sha1):
|
def _Reformat(self, old_msg, sha1):
|
||||||
new_msg = []
|
new_msg = []
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
from command import PagedCommand
|
from command import PagedCommand
|
||||||
|
|
||||||
|
|
||||||
class Diff(PagedCommand):
|
class Diff(PagedCommand):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Show changes between commit and working tree"
|
helpSummary = "Show changes between commit and working tree"
|
||||||
@ -28,10 +29,6 @@ to the Unix 'patch' command.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
def _Options(self, p):
|
def _Options(self, p):
|
||||||
def cmd(option, opt_str, value, parser):
|
|
||||||
setattr(parser.values, option.dest, list(parser.rargs))
|
|
||||||
while parser.rargs:
|
|
||||||
del parser.rargs[0]
|
|
||||||
p.add_option('-u', '--absolute',
|
p.add_option('-u', '--absolute',
|
||||||
dest='absolute', action='store_true',
|
dest='absolute', action='store_true',
|
||||||
help='Paths are relative to the repository root')
|
help='Paths are relative to the repository root')
|
||||||
|
@ -18,10 +18,12 @@ from color import Coloring
|
|||||||
from command import PagedCommand
|
from command import PagedCommand
|
||||||
from manifest_xml import XmlManifest
|
from manifest_xml import XmlManifest
|
||||||
|
|
||||||
|
|
||||||
class _Coloring(Coloring):
|
class _Coloring(Coloring):
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
Coloring.__init__(self, config, "status")
|
Coloring.__init__(self, config, "status")
|
||||||
|
|
||||||
|
|
||||||
class Diffmanifests(PagedCommand):
|
class Diffmanifests(PagedCommand):
|
||||||
""" A command to see logs in projects represented by manifests
|
""" A command to see logs in projects represented by manifests
|
||||||
|
|
||||||
@ -184,10 +186,10 @@ synced and their revisions won't be found.
|
|||||||
self.out = _Coloring(self.manifest.globalConfig)
|
self.out = _Coloring(self.manifest.globalConfig)
|
||||||
self.printText = self.out.nofmt_printer('text')
|
self.printText = self.out.nofmt_printer('text')
|
||||||
if opt.color:
|
if opt.color:
|
||||||
self.printProject = self.out.nofmt_printer('project', attr = 'bold')
|
self.printProject = self.out.nofmt_printer('project', attr='bold')
|
||||||
self.printAdded = self.out.nofmt_printer('green', fg = 'green', attr = 'bold')
|
self.printAdded = self.out.nofmt_printer('green', fg='green', attr='bold')
|
||||||
self.printRemoved = self.out.nofmt_printer('red', fg = 'red', attr = 'bold')
|
self.printRemoved = self.out.nofmt_printer('red', fg='red', attr='bold')
|
||||||
self.printRevision = self.out.nofmt_printer('revision', fg = 'yellow')
|
self.printRevision = self.out.nofmt_printer('revision', fg='yellow')
|
||||||
else:
|
else:
|
||||||
self.printProject = self.printAdded = self.printRemoved = self.printRevision = self.printText
|
self.printProject = self.printAdded = self.printRemoved = self.printRevision = self.printText
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ from error import GitError
|
|||||||
|
|
||||||
CHANGE_RE = re.compile(r'^([1-9][0-9]*)(?:[/\.-]([1-9][0-9]*))?$')
|
CHANGE_RE = re.compile(r'^([1-9][0-9]*)(?:[/\.-]([1-9][0-9]*))?$')
|
||||||
|
|
||||||
|
|
||||||
class Download(Command):
|
class Download(Command):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Download and checkout a change"
|
helpSummary = "Download and checkout a change"
|
||||||
@ -93,7 +94,7 @@ If no project is specified try to use current directory as a project.
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
if len(dl.commits) > 1:
|
if len(dl.commits) > 1:
|
||||||
print('[%s] %d/%d depends on %d unmerged changes:' \
|
print('[%s] %d/%d depends on %d unmerged changes:'
|
||||||
% (project.name, change_id, ps_id, len(dl.commits)),
|
% (project.name, change_id, ps_id, len(dl.commits)),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
for c in dl.commits:
|
for c in dl.commits:
|
||||||
@ -102,7 +103,7 @@ If no project is specified try to use current directory as a project.
|
|||||||
try:
|
try:
|
||||||
project._CherryPick(dl.commit)
|
project._CherryPick(dl.commit)
|
||||||
except GitError:
|
except GitError:
|
||||||
print('[%s] Could not complete the cherry-pick of %s' \
|
print('[%s] Could not complete the cherry-pick of %s'
|
||||||
% (project.name, dl.commit), file=sys.stderr)
|
% (project.name, dl.commit), file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@ from command import Command, MirrorSafeCommand
|
|||||||
import platform_utils
|
import platform_utils
|
||||||
|
|
||||||
_CAN_COLOR = [
|
_CAN_COLOR = [
|
||||||
'branch',
|
'branch',
|
||||||
'diff',
|
'diff',
|
||||||
'grep',
|
'grep',
|
||||||
'log',
|
'log',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
@ -127,7 +127,8 @@ without iterating through the remaining projects.
|
|||||||
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',
|
p.add_option('-i', '--inverse-regex',
|
||||||
dest='inverse_regex', action='store_true',
|
dest='inverse_regex', action='store_true',
|
||||||
help="Execute the command only on projects not matching regex or wildcard expression")
|
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")
|
||||||
@ -170,14 +171,14 @@ without iterating through the remaining projects.
|
|||||||
else:
|
else:
|
||||||
lrev = None
|
lrev = None
|
||||||
return {
|
return {
|
||||||
'name': project.name,
|
'name': project.name,
|
||||||
'relpath': project.relpath,
|
'relpath': project.relpath,
|
||||||
'remote_name': project.remote.name,
|
'remote_name': project.remote.name,
|
||||||
'lrev': lrev,
|
'lrev': lrev,
|
||||||
'rrev': project.revisionExpr,
|
'rrev': project.revisionExpr,
|
||||||
'annotations': dict((a.name, a.value) for a in project.annotations),
|
'annotations': dict((a.name, a.value) for a in project.annotations),
|
||||||
'gitdir': project.gitdir,
|
'gitdir': project.gitdir,
|
||||||
'worktree': project.worktree,
|
'worktree': project.worktree,
|
||||||
}
|
}
|
||||||
|
|
||||||
def ValidateOptions(self, opt, args):
|
def ValidateOptions(self, opt, args):
|
||||||
@ -195,9 +196,9 @@ without iterating through the remaining projects.
|
|||||||
cmd.append(cmd[0])
|
cmd.append(cmd[0])
|
||||||
cmd.extend(opt.command[1:])
|
cmd.extend(opt.command[1:])
|
||||||
|
|
||||||
if opt.project_header \
|
if opt.project_header \
|
||||||
and not shell \
|
and not shell \
|
||||||
and cmd[0] == 'git':
|
and cmd[0] == 'git':
|
||||||
# If this is a direct git command that can enable colorized
|
# If this is a direct git command that can enable colorized
|
||||||
# output and the user prefers coloring, add --color into the
|
# output and the user prefers coloring, add --color into the
|
||||||
# command line because we are going to wrap the command into
|
# command line because we are going to wrap the command into
|
||||||
@ -220,7 +221,7 @@ without iterating through the remaining projects.
|
|||||||
|
|
||||||
smart_sync_manifest_name = "smart_sync_override.xml"
|
smart_sync_manifest_name = "smart_sync_override.xml"
|
||||||
smart_sync_manifest_path = os.path.join(
|
smart_sync_manifest_path = os.path.join(
|
||||||
self.manifest.manifestProject.worktree, smart_sync_manifest_name)
|
self.manifest.manifestProject.worktree, smart_sync_manifest_name)
|
||||||
|
|
||||||
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)
|
||||||
@ -238,8 +239,8 @@ without iterating through the remaining projects.
|
|||||||
try:
|
try:
|
||||||
config = self.manifest.manifestProject.config
|
config = self.manifest.manifestProject.config
|
||||||
results_it = pool.imap(
|
results_it = pool.imap(
|
||||||
DoWorkWrapper,
|
DoWorkWrapper,
|
||||||
self.ProjectArgs(projects, mirror, opt, cmd, shell, config))
|
self.ProjectArgs(projects, mirror, opt, cmd, shell, config))
|
||||||
pool.close()
|
pool.close()
|
||||||
for r in results_it:
|
for r in results_it:
|
||||||
rc = rc or r
|
rc = rc or r
|
||||||
@ -253,7 +254,7 @@ without iterating through the remaining projects.
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
# Catch any other exceptions raised
|
# Catch any other exceptions raised
|
||||||
print('Got an error, terminating the pool: %s: %s' %
|
print('Got an error, terminating the pool: %s: %s' %
|
||||||
(type(e).__name__, e),
|
(type(e).__name__, e),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
pool.terminate()
|
pool.terminate()
|
||||||
rc = rc or getattr(e, 'errno', 1)
|
rc = rc or getattr(e, 'errno', 1)
|
||||||
@ -268,7 +269,7 @@ without iterating through the remaining projects.
|
|||||||
project = self._SerializeProject(p)
|
project = self._SerializeProject(p)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print('Project list error on project %s: %s: %s' %
|
print('Project list error on project %s: %s: %s' %
|
||||||
(p.name, type(e).__name__, e),
|
(p.name, type(e).__name__, e),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
return
|
return
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
@ -277,6 +278,7 @@ without iterating through the remaining projects.
|
|||||||
return
|
return
|
||||||
yield [mirror, opt, cmd, shell, cnt, config, project]
|
yield [mirror, opt, cmd, shell, cnt, config, project]
|
||||||
|
|
||||||
|
|
||||||
class WorkerKeyboardInterrupt(Exception):
|
class WorkerKeyboardInterrupt(Exception):
|
||||||
""" Keyboard interrupt exception for worker processes. """
|
""" Keyboard interrupt exception for worker processes. """
|
||||||
pass
|
pass
|
||||||
@ -285,6 +287,7 @@ class WorkerKeyboardInterrupt(Exception):
|
|||||||
def InitWorker():
|
def InitWorker():
|
||||||
signal.signal(signal.SIGINT, signal.SIG_IGN)
|
signal.signal(signal.SIGINT, signal.SIG_IGN)
|
||||||
|
|
||||||
|
|
||||||
def DoWorkWrapper(args):
|
def DoWorkWrapper(args):
|
||||||
""" A wrapper around the DoWork() method.
|
""" A wrapper around the DoWork() method.
|
||||||
|
|
||||||
@ -303,11 +306,10 @@ def DoWorkWrapper(args):
|
|||||||
|
|
||||||
def DoWork(project, mirror, opt, cmd, shell, cnt, config):
|
def DoWork(project, mirror, opt, cmd, shell, cnt, config):
|
||||||
env = os.environ.copy()
|
env = os.environ.copy()
|
||||||
|
|
||||||
def setenv(name, val):
|
def setenv(name, val):
|
||||||
if val is None:
|
if val is None:
|
||||||
val = ''
|
val = ''
|
||||||
if hasattr(val, 'encode'):
|
|
||||||
val = val.encode()
|
|
||||||
env[name] = val
|
env[name] = val
|
||||||
|
|
||||||
setenv('REPO_PROJECT', project['name'])
|
setenv('REPO_PROJECT', project['name'])
|
||||||
@ -331,7 +333,7 @@ def DoWork(project, mirror, opt, cmd, shell, cnt, config):
|
|||||||
if opt.ignore_missing:
|
if opt.ignore_missing:
|
||||||
return 0
|
return 0
|
||||||
if ((opt.project_header and opt.verbose)
|
if ((opt.project_header and opt.verbose)
|
||||||
or not opt.project_header):
|
or not opt.project_header):
|
||||||
print('skipping %s/' % project['relpath'], file=sys.stderr)
|
print('skipping %s/' % project['relpath'], file=sys.stderr)
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
|
@ -22,7 +22,8 @@ import platform_utils
|
|||||||
|
|
||||||
from pyversion import is_python3
|
from pyversion import is_python3
|
||||||
if not is_python3():
|
if not is_python3():
|
||||||
input = raw_input
|
input = raw_input # noqa: F821
|
||||||
|
|
||||||
|
|
||||||
class GitcDelete(Command, GitcClientCommand):
|
class GitcDelete(Command, GitcClientCommand):
|
||||||
common = True
|
common = True
|
||||||
|
@ -62,7 +62,8 @@ use for this GITC client.
|
|||||||
def Execute(self, opt, args):
|
def Execute(self, opt, args):
|
||||||
gitc_client = gitc_utils.parse_clientdir(os.getcwd())
|
gitc_client = gitc_utils.parse_clientdir(os.getcwd())
|
||||||
if not gitc_client or (opt.gitc_client and gitc_client != opt.gitc_client):
|
if not gitc_client or (opt.gitc_client and gitc_client != opt.gitc_client):
|
||||||
print('fatal: Please update your repo command. See go/gitc for instructions.', file=sys.stderr)
|
print('fatal: Please update your repo command. See go/gitc for instructions.',
|
||||||
|
file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
self.client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
|
self.client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
|
||||||
gitc_client)
|
gitc_client)
|
||||||
|
@ -21,7 +21,8 @@ import sys
|
|||||||
from color import Coloring
|
from color import Coloring
|
||||||
from command import PagedCommand
|
from command import PagedCommand
|
||||||
from error import GitError
|
from error import GitError
|
||||||
from git_command import git_require, GitCommand
|
from git_command import GitCommand
|
||||||
|
|
||||||
|
|
||||||
class GrepColoring(Coloring):
|
class GrepColoring(Coloring):
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
@ -29,6 +30,7 @@ class GrepColoring(Coloring):
|
|||||||
self.project = self.printer('project', attr='bold')
|
self.project = self.printer('project', attr='bold')
|
||||||
self.fail = self.printer('fail', fg='red')
|
self.fail = self.printer('fail', fg='red')
|
||||||
|
|
||||||
|
|
||||||
class Grep(PagedCommand):
|
class Grep(PagedCommand):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Print lines matching a pattern"
|
helpSummary = "Print lines matching a pattern"
|
||||||
@ -156,12 +158,11 @@ contain a line that matches both expressions:
|
|||||||
action='callback', callback=carry,
|
action='callback', callback=carry,
|
||||||
help='Show only file names not containing matching lines')
|
help='Show only file names not containing matching lines')
|
||||||
|
|
||||||
|
|
||||||
def Execute(self, opt, args):
|
def Execute(self, opt, args):
|
||||||
out = GrepColoring(self.manifest.manifestProject.config)
|
out = GrepColoring(self.manifest.manifestProject.config)
|
||||||
|
|
||||||
cmd_argv = ['grep']
|
cmd_argv = ['grep']
|
||||||
if out.is_on and git_require((1, 6, 3)):
|
if out.is_on:
|
||||||
cmd_argv.append('--color')
|
cmd_argv.append('--color')
|
||||||
cmd_argv.extend(getattr(opt, 'cmd_argv', []))
|
cmd_argv.extend(getattr(opt, 'cmd_argv', []))
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ from color import Coloring
|
|||||||
from command import PagedCommand, MirrorSafeCommand, GitcAvailableCommand, GitcClientCommand
|
from command import PagedCommand, MirrorSafeCommand, GitcAvailableCommand, GitcClientCommand
|
||||||
import gitc_utils
|
import gitc_utils
|
||||||
|
|
||||||
|
|
||||||
class Help(PagedCommand, MirrorSafeCommand):
|
class Help(PagedCommand, MirrorSafeCommand):
|
||||||
common = False
|
common = False
|
||||||
helpSummary = "Display detailed help on a command"
|
helpSummary = "Display detailed help on a command"
|
||||||
@ -72,13 +73,13 @@ Displays detailed usage information about a command.
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
commandNames = list(sorted([name
|
commandNames = list(sorted([name
|
||||||
for name, command in self.commands.items()
|
for name, command in self.commands.items()
|
||||||
if command.common and gitc_supported(command)]))
|
if command.common and gitc_supported(command)]))
|
||||||
self._PrintCommands(commandNames)
|
self._PrintCommands(commandNames)
|
||||||
|
|
||||||
print(
|
print(
|
||||||
"See 'repo help <command>' for more information on a specific command.\n"
|
"See 'repo help <command>' for more information on a specific command.\n"
|
||||||
"See 'repo help --all' for a complete list of recognized commands.")
|
"See 'repo help --all' for a complete list of recognized commands.")
|
||||||
|
|
||||||
def _PrintCommandHelp(self, cmd, header_prefix=''):
|
def _PrintCommandHelp(self, cmd, header_prefix=''):
|
||||||
class _Out(Coloring):
|
class _Out(Coloring):
|
||||||
|
@ -18,10 +18,12 @@ from command import PagedCommand
|
|||||||
from color import Coloring
|
from color import Coloring
|
||||||
from git_refs import R_M
|
from git_refs import R_M
|
||||||
|
|
||||||
|
|
||||||
class _Coloring(Coloring):
|
class _Coloring(Coloring):
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
Coloring.__init__(self, config, "status")
|
Coloring.__init__(self, config, "status")
|
||||||
|
|
||||||
|
|
||||||
class Info(PagedCommand):
|
class Info(PagedCommand):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Get info on the manifest branch, current branch or unmerged branches"
|
helpSummary = "Get info on the manifest branch, current branch or unmerged branches"
|
||||||
@ -41,15 +43,14 @@ class Info(PagedCommand):
|
|||||||
dest="local", action="store_true",
|
dest="local", action="store_true",
|
||||||
help="Disable all remote operations")
|
help="Disable all remote operations")
|
||||||
|
|
||||||
|
|
||||||
def Execute(self, opt, args):
|
def Execute(self, opt, args):
|
||||||
self.out = _Coloring(self.manifest.globalConfig)
|
self.out = _Coloring(self.manifest.globalConfig)
|
||||||
self.heading = self.out.printer('heading', attr = 'bold')
|
self.heading = self.out.printer('heading', attr='bold')
|
||||||
self.headtext = self.out.nofmt_printer('headtext', fg = 'yellow')
|
self.headtext = self.out.nofmt_printer('headtext', fg='yellow')
|
||||||
self.redtext = self.out.printer('redtext', fg = 'red')
|
self.redtext = self.out.printer('redtext', fg='red')
|
||||||
self.sha = self.out.printer("sha", fg = 'yellow')
|
self.sha = self.out.printer("sha", fg='yellow')
|
||||||
self.text = self.out.nofmt_printer('text')
|
self.text = self.out.nofmt_printer('text')
|
||||||
self.dimtext = self.out.printer('dimtext', attr = 'dim')
|
self.dimtext = self.out.printer('dimtext', attr='dim')
|
||||||
|
|
||||||
self.opt = opt
|
self.opt = opt
|
||||||
|
|
||||||
@ -122,7 +123,7 @@ class Info(PagedCommand):
|
|||||||
self.printSeparator()
|
self.printSeparator()
|
||||||
|
|
||||||
def findRemoteLocalDiff(self, project):
|
def findRemoteLocalDiff(self, project):
|
||||||
#Fetch all the latest commits
|
# Fetch all the latest commits.
|
||||||
if not self.opt.local:
|
if not self.opt.local:
|
||||||
project.Sync_NetworkHalf(quiet=True, current_branch_only=True)
|
project.Sync_NetworkHalf(quiet=True, current_branch_only=True)
|
||||||
|
|
||||||
@ -195,16 +196,16 @@ class Info(PagedCommand):
|
|||||||
commits = branch.commits
|
commits = branch.commits
|
||||||
date = branch.date
|
date = branch.date
|
||||||
self.text('%s %-33s (%2d commit%s, %s)' % (
|
self.text('%s %-33s (%2d commit%s, %s)' % (
|
||||||
branch.name == project.CurrentBranch and '*' or ' ',
|
branch.name == project.CurrentBranch and '*' or ' ',
|
||||||
branch.name,
|
branch.name,
|
||||||
len(commits),
|
len(commits),
|
||||||
len(commits) != 1 and 's' or '',
|
len(commits) != 1 and 's' or '',
|
||||||
date))
|
date))
|
||||||
self.out.nl()
|
self.out.nl()
|
||||||
|
|
||||||
for commit in commits:
|
for commit in commits:
|
||||||
split = commit.split()
|
split = commit.split()
|
||||||
self.text('{0:38}{1} '.format('','-'))
|
self.text('{0:38}{1} '.format('', '-'))
|
||||||
self.sha(split[0] + " ")
|
self.sha(split[0] + " ")
|
||||||
self.text(" ".join(split[1:]))
|
self.text(" ".join(split[1:]))
|
||||||
self.out.nl()
|
self.out.nl()
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
|
import optparse
|
||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
import re
|
import re
|
||||||
@ -37,6 +39,7 @@ from git_config import GitConfig
|
|||||||
from git_command import git_require, MIN_GIT_VERSION_SOFT, MIN_GIT_VERSION_HARD
|
from git_command import git_require, MIN_GIT_VERSION_SOFT, MIN_GIT_VERSION_HARD
|
||||||
import platform_utils
|
import platform_utils
|
||||||
|
|
||||||
|
|
||||||
class Init(InteractiveCommand, MirrorSafeCommand):
|
class Init(InteractiveCommand, MirrorSafeCommand):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Initialize repo in the current directory"
|
helpSummary = "Initialize repo in the current directory"
|
||||||
@ -84,9 +87,12 @@ to update the working directory files.
|
|||||||
def _Options(self, p, gitc_init=False):
|
def _Options(self, p, gitc_init=False):
|
||||||
# Logging
|
# Logging
|
||||||
g = p.add_option_group('Logging options')
|
g = p.add_option_group('Logging options')
|
||||||
|
g.add_option('-v', '--verbose',
|
||||||
|
dest='output_mode', action='store_true',
|
||||||
|
help='show all output')
|
||||||
g.add_option('-q', '--quiet',
|
g.add_option('-q', '--quiet',
|
||||||
dest="quiet", action="store_true", default=False,
|
dest='output_mode', action='store_false',
|
||||||
help="be quiet")
|
help='only show errors')
|
||||||
|
|
||||||
# Manifest
|
# Manifest
|
||||||
g = p.add_option_group('Manifest options')
|
g = p.add_option_group('Manifest options')
|
||||||
@ -127,6 +133,10 @@ to update the working directory files.
|
|||||||
g.add_option('--clone-filter', action='store', default='blob:none',
|
g.add_option('--clone-filter', action='store', default='blob:none',
|
||||||
dest='clone_filter',
|
dest='clone_filter',
|
||||||
help='filter for use with --partial-clone [default: %default]')
|
help='filter for use with --partial-clone [default: %default]')
|
||||||
|
# TODO(vapier): Expose option with real help text once this has been in the
|
||||||
|
# wild for a while w/out significant bug reports. Goal is by ~Sep 2020.
|
||||||
|
g.add_option('--worktree', action='store_true',
|
||||||
|
help=optparse.SUPPRESS_HELP)
|
||||||
g.add_option('--archive',
|
g.add_option('--archive',
|
||||||
dest='archive', action='store_true',
|
dest='archive', action='store_true',
|
||||||
help='checkout an archive instead of a git repository for '
|
help='checkout an archive instead of a git repository for '
|
||||||
@ -145,10 +155,10 @@ to update the working directory files.
|
|||||||
'platform group [auto|all|none|linux|darwin|...]',
|
'platform group [auto|all|none|linux|darwin|...]',
|
||||||
metavar='PLATFORM')
|
metavar='PLATFORM')
|
||||||
g.add_option('--no-clone-bundle',
|
g.add_option('--no-clone-bundle',
|
||||||
dest='no_clone_bundle', action='store_true',
|
dest='clone_bundle', default=True, action='store_false',
|
||||||
help='disable use of /clone.bundle on HTTP/HTTPS')
|
help='disable use of /clone.bundle on HTTP/HTTPS')
|
||||||
g.add_option('--no-tags',
|
g.add_option('--no-tags',
|
||||||
dest='no_tags', action='store_true',
|
dest='tags', default=True, action='store_false',
|
||||||
help="don't fetch tags in the manifest")
|
help="don't fetch tags in the manifest")
|
||||||
|
|
||||||
# Tool
|
# Tool
|
||||||
@ -160,7 +170,7 @@ to update the working directory files.
|
|||||||
dest='repo_branch',
|
dest='repo_branch',
|
||||||
help='repo branch or revision', metavar='REVISION')
|
help='repo branch or revision', metavar='REVISION')
|
||||||
g.add_option('--no-repo-verify',
|
g.add_option('--no-repo-verify',
|
||||||
dest='no_repo_verify', action='store_true',
|
dest='repo_verify', default=True, action='store_false',
|
||||||
help='do not verify repo source code')
|
help='do not verify repo source code')
|
||||||
|
|
||||||
# Other
|
# Other
|
||||||
@ -183,7 +193,8 @@ to update the working directory files.
|
|||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
if not opt.quiet:
|
if not opt.quiet:
|
||||||
print('Get %s' % GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),
|
print('Downloading manifest from %s' %
|
||||||
|
(GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
|
|
||||||
# The manifest project object doesn't keep track of the path on the
|
# The manifest project object doesn't keep track of the path on the
|
||||||
@ -223,7 +234,7 @@ to update the working directory files.
|
|||||||
platformize = lambda x: 'platform-' + x
|
platformize = lambda x: 'platform-' + x
|
||||||
if opt.platform == 'auto':
|
if opt.platform == 'auto':
|
||||||
if (not opt.mirror and
|
if (not opt.mirror and
|
||||||
not m.config.GetString('repo.mirror') == 'true'):
|
not m.config.GetString('repo.mirror') == 'true'):
|
||||||
groups.append(platformize(platform.system().lower()))
|
groups.append(platformize(platform.system().lower()))
|
||||||
elif opt.platform == 'all':
|
elif opt.platform == 'all':
|
||||||
groups.extend(map(platformize, all_platforms))
|
groups.extend(map(platformize, all_platforms))
|
||||||
@ -245,6 +256,20 @@ to update the working directory files.
|
|||||||
if opt.dissociate:
|
if opt.dissociate:
|
||||||
m.config.SetString('repo.dissociate', 'true')
|
m.config.SetString('repo.dissociate', 'true')
|
||||||
|
|
||||||
|
if opt.worktree:
|
||||||
|
if opt.mirror:
|
||||||
|
print('fatal: --mirror and --worktree are incompatible',
|
||||||
|
file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
if opt.submodules:
|
||||||
|
print('fatal: --submodules and --worktree are incompatible',
|
||||||
|
file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
m.config.SetString('repo.worktree', 'true')
|
||||||
|
if is_new:
|
||||||
|
m.use_git_worktrees = True
|
||||||
|
print('warning: --worktree is experimental!', file=sys.stderr)
|
||||||
|
|
||||||
if opt.archive:
|
if opt.archive:
|
||||||
if is_new:
|
if is_new:
|
||||||
m.config.SetString('repo.archive', 'true')
|
m.config.SetString('repo.archive', 'true')
|
||||||
@ -279,11 +304,11 @@ to update the working directory files.
|
|||||||
if opt.submodules:
|
if opt.submodules:
|
||||||
m.config.SetString('repo.submodules', 'true')
|
m.config.SetString('repo.submodules', 'true')
|
||||||
|
|
||||||
if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet,
|
if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet, verbose=opt.verbose,
|
||||||
clone_bundle=not opt.no_clone_bundle,
|
clone_bundle=opt.clone_bundle,
|
||||||
current_branch_only=opt.current_branch_only,
|
current_branch_only=opt.current_branch_only,
|
||||||
no_tags=opt.no_tags, submodules=opt.submodules,
|
tags=opt.tags, submodules=opt.submodules,
|
||||||
clone_filter=opt.clone_filter):
|
clone_filter=opt.clone_filter):
|
||||||
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)
|
||||||
|
|
||||||
@ -326,7 +351,7 @@ to update the working directory files.
|
|||||||
return value
|
return value
|
||||||
return a
|
return a
|
||||||
|
|
||||||
def _ShouldConfigureUser(self):
|
def _ShouldConfigureUser(self, opt):
|
||||||
gc = self.manifest.globalConfig
|
gc = self.manifest.globalConfig
|
||||||
mp = self.manifest.manifestProject
|
mp = self.manifest.manifestProject
|
||||||
|
|
||||||
@ -338,21 +363,24 @@ to update the working directory files.
|
|||||||
mp.config.SetString('user.name', gc.GetString('user.name'))
|
mp.config.SetString('user.name', gc.GetString('user.name'))
|
||||||
mp.config.SetString('user.email', gc.GetString('user.email'))
|
mp.config.SetString('user.email', gc.GetString('user.email'))
|
||||||
|
|
||||||
print()
|
if not opt.quiet:
|
||||||
print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'),
|
print()
|
||||||
mp.config.GetString('user.email')))
|
print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'),
|
||||||
print('If you want to change this, please re-run \'repo init\' with --config-name')
|
mp.config.GetString('user.email')))
|
||||||
|
print("If you want to change this, please re-run 'repo init' with --config-name")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def _ConfigureUser(self):
|
def _ConfigureUser(self, opt):
|
||||||
mp = self.manifest.manifestProject
|
mp = self.manifest.manifestProject
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
print()
|
if not opt.quiet:
|
||||||
name = self._Prompt('Your Name', mp.UserName)
|
print()
|
||||||
|
name = self._Prompt('Your Name', mp.UserName)
|
||||||
email = self._Prompt('Your Email', mp.UserEmail)
|
email = self._Prompt('Your Email', mp.UserEmail)
|
||||||
|
|
||||||
print()
|
if not opt.quiet:
|
||||||
|
print()
|
||||||
print('Your identity is: %s <%s>' % (name, email))
|
print('Your identity is: %s <%s>' % (name, email))
|
||||||
print('is this correct [y/N]? ', end='')
|
print('is this correct [y/N]? ', end='')
|
||||||
# TODO: When we require Python 3, use flush=True w/print above.
|
# TODO: When we require Python 3, use flush=True w/print above.
|
||||||
@ -424,15 +452,16 @@ to update the working directory files.
|
|||||||
# We store the depth in the main manifest project.
|
# We store the depth in the main manifest project.
|
||||||
self.manifest.manifestProject.config.SetString('repo.depth', depth)
|
self.manifest.manifestProject.config.SetString('repo.depth', depth)
|
||||||
|
|
||||||
def _DisplayResult(self):
|
def _DisplayResult(self, opt):
|
||||||
if self.manifest.IsMirror:
|
if self.manifest.IsMirror:
|
||||||
init_type = 'mirror '
|
init_type = 'mirror '
|
||||||
else:
|
else:
|
||||||
init_type = ''
|
init_type = ''
|
||||||
|
|
||||||
print()
|
if not opt.quiet:
|
||||||
print('repo %shas been initialized in %s'
|
print()
|
||||||
% (init_type, self.manifest.topdir))
|
print('repo %shas been initialized in %s' %
|
||||||
|
(init_type, self.manifest.topdir))
|
||||||
|
|
||||||
current_dir = os.getcwd()
|
current_dir = os.getcwd()
|
||||||
if current_dir != self.manifest.topdir:
|
if current_dir != self.manifest.topdir:
|
||||||
@ -458,12 +487,19 @@ to update the working directory files.
|
|||||||
% ('.'.join(str(x) for x in MIN_GIT_VERSION_SOFT),),
|
% ('.'.join(str(x) for x in MIN_GIT_VERSION_SOFT),),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
|
|
||||||
|
opt.quiet = opt.output_mode is False
|
||||||
|
opt.verbose = opt.output_mode is True
|
||||||
|
|
||||||
|
if opt.worktree:
|
||||||
|
# Older versions of git supported worktree, but had dangerous gc bugs.
|
||||||
|
git_require((2, 15, 0), fail=True, msg='git gc worktree corruption')
|
||||||
|
|
||||||
self._SyncManifest(opt)
|
self._SyncManifest(opt)
|
||||||
self._LinkManifest(opt.manifest_name)
|
self._LinkManifest(opt.manifest_name)
|
||||||
|
|
||||||
if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror:
|
if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror:
|
||||||
if opt.config_name or self._ShouldConfigureUser():
|
if opt.config_name or self._ShouldConfigureUser(opt):
|
||||||
self._ConfigureUser()
|
self._ConfigureUser(opt)
|
||||||
self._ConfigureColor()
|
self._ConfigureColor()
|
||||||
|
|
||||||
self._DisplayResult()
|
self._DisplayResult(opt)
|
||||||
|
@ -15,10 +15,10 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import sys
|
|
||||||
|
|
||||||
from command import Command, MirrorSafeCommand
|
from command import Command, MirrorSafeCommand
|
||||||
|
|
||||||
|
|
||||||
class List(Command, MirrorSafeCommand):
|
class List(Command, MirrorSafeCommand):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "List projects and their associated directories"
|
helpSummary = "List projects and their associated directories"
|
||||||
@ -77,7 +77,7 @@ This is similar to running: repo forall -c 'echo "$REPO_PATH : $REPO_PROJECT"'.
|
|||||||
lines = []
|
lines = []
|
||||||
for project in projects:
|
for project in projects:
|
||||||
if opt.name_only and not opt.path_only:
|
if opt.name_only and not opt.path_only:
|
||||||
lines.append("%s" % ( project.name))
|
lines.append("%s" % (project.name))
|
||||||
elif opt.path_only and not opt.name_only:
|
elif opt.path_only and not opt.name_only:
|
||||||
lines.append("%s" % (_getpath(project)))
|
lines.append("%s" % (_getpath(project)))
|
||||||
else:
|
else:
|
||||||
|
@ -20,11 +20,12 @@ import sys
|
|||||||
|
|
||||||
from command import PagedCommand
|
from command import PagedCommand
|
||||||
|
|
||||||
|
|
||||||
class Manifest(PagedCommand):
|
class Manifest(PagedCommand):
|
||||||
common = False
|
common = False
|
||||||
helpSummary = "Manifest inspection utility"
|
helpSummary = "Manifest inspection utility"
|
||||||
helpUsage = """
|
helpUsage = """
|
||||||
%prog [-o {-|NAME.xml} [-r]]
|
%prog [-o {-|NAME.xml}] [-m MANIFEST.xml] [-r]
|
||||||
"""
|
"""
|
||||||
_helpDescription = """
|
_helpDescription = """
|
||||||
|
|
||||||
@ -49,6 +50,8 @@ in a Git repository for use during future 'repo init' invocations.
|
|||||||
p.add_option('-r', '--revision-as-HEAD',
|
p.add_option('-r', '--revision-as-HEAD',
|
||||||
dest='peg_rev', action='store_true',
|
dest='peg_rev', action='store_true',
|
||||||
help='Save revisions as current HEAD')
|
help='Save revisions as current HEAD')
|
||||||
|
p.add_option('-m', '--manifest-name',
|
||||||
|
help='temporary manifest to use for this sync', metavar='NAME.xml')
|
||||||
p.add_option('--suppress-upstream-revision', dest='peg_rev_upstream',
|
p.add_option('--suppress-upstream-revision', dest='peg_rev_upstream',
|
||||||
default=True, action='store_false',
|
default=True, action='store_false',
|
||||||
help='If in -r mode, do not write the upstream field. '
|
help='If in -r mode, do not write the upstream field. '
|
||||||
@ -61,13 +64,17 @@ in a Git repository for use during future 'repo init' invocations.
|
|||||||
metavar='-|NAME.xml')
|
metavar='-|NAME.xml')
|
||||||
|
|
||||||
def _Output(self, opt):
|
def _Output(self, opt):
|
||||||
|
# If alternate manifest is specified, override the manifest file that we're using.
|
||||||
|
if opt.manifest_name:
|
||||||
|
self.manifest.Override(opt.manifest_name, False)
|
||||||
|
|
||||||
if opt.output_file == '-':
|
if opt.output_file == '-':
|
||||||
fd = sys.stdout
|
fd = sys.stdout
|
||||||
else:
|
else:
|
||||||
fd = open(opt.output_file, 'w')
|
fd = open(opt.output_file, 'w')
|
||||||
self.manifest.Save(fd,
|
self.manifest.Save(fd,
|
||||||
peg_rev = opt.peg_rev,
|
peg_rev=opt.peg_rev,
|
||||||
peg_rev_upstream = opt.peg_rev_upstream)
|
peg_rev_upstream=opt.peg_rev_upstream)
|
||||||
fd.close()
|
fd.close()
|
||||||
if opt.output_file != '-':
|
if opt.output_file != '-':
|
||||||
print('Saved manifest to %s' % opt.output_file, file=sys.stderr)
|
print('Saved manifest to %s' % opt.output_file, file=sys.stderr)
|
||||||
|
@ -18,6 +18,7 @@ from __future__ import print_function
|
|||||||
from color import Coloring
|
from color import Coloring
|
||||||
from command import PagedCommand
|
from command import PagedCommand
|
||||||
|
|
||||||
|
|
||||||
class Prune(PagedCommand):
|
class Prune(PagedCommand):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Prune (delete) already merged topics"
|
helpSummary = "Prune (delete) already merged topics"
|
||||||
|
@ -43,8 +43,8 @@ branch but need to incorporate new upstream changes "underneath" them.
|
|||||||
|
|
||||||
def _Options(self, p):
|
def _Options(self, p):
|
||||||
p.add_option('-i', '--interactive',
|
p.add_option('-i', '--interactive',
|
||||||
dest="interactive", action="store_true",
|
dest="interactive", action="store_true",
|
||||||
help="interactive rebase (single project only)")
|
help="interactive rebase (single project only)")
|
||||||
|
|
||||||
p.add_option('--fail-fast',
|
p.add_option('--fail-fast',
|
||||||
dest='fail_fast', action='store_true',
|
dest='fail_fast', action='store_true',
|
||||||
@ -53,7 +53,7 @@ branch but need to incorporate new upstream changes "underneath" them.
|
|||||||
dest='force_rebase', action='store_true',
|
dest='force_rebase', action='store_true',
|
||||||
help='Pass --force-rebase to git rebase')
|
help='Pass --force-rebase to git rebase')
|
||||||
p.add_option('--no-ff',
|
p.add_option('--no-ff',
|
||||||
dest='no_ff', action='store_true',
|
dest='ff', default=True, action='store_false',
|
||||||
help='Pass --no-ff to git rebase')
|
help='Pass --no-ff to git rebase')
|
||||||
p.add_option('-q', '--quiet',
|
p.add_option('-q', '--quiet',
|
||||||
dest='quiet', action='store_true',
|
dest='quiet', action='store_true',
|
||||||
@ -82,7 +82,7 @@ branch but need to incorporate new upstream changes "underneath" them.
|
|||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
if len(args) == 1:
|
if len(args) == 1:
|
||||||
print('note: project %s is mapped to more than one path' % (args[0],),
|
print('note: project %s is mapped to more than one path' % (args[0],),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
# Setup the common git rebase args that we use for all projects.
|
# Setup the common git rebase args that we use for all projects.
|
||||||
@ -93,7 +93,7 @@ branch but need to incorporate new upstream changes "underneath" them.
|
|||||||
common_args.append('--quiet')
|
common_args.append('--quiet')
|
||||||
if opt.force_rebase:
|
if opt.force_rebase:
|
||||||
common_args.append('--force-rebase')
|
common_args.append('--force-rebase')
|
||||||
if opt.no_ff:
|
if not opt.ff:
|
||||||
common_args.append('--no-ff')
|
common_args.append('--no-ff')
|
||||||
if opt.autosquash:
|
if opt.autosquash:
|
||||||
common_args.append('--autosquash')
|
common_args.append('--autosquash')
|
||||||
|
@ -22,6 +22,7 @@ from command import Command, MirrorSafeCommand
|
|||||||
from subcmds.sync import _PostRepoUpgrade
|
from subcmds.sync import _PostRepoUpgrade
|
||||||
from subcmds.sync import _PostRepoFetch
|
from subcmds.sync import _PostRepoFetch
|
||||||
|
|
||||||
|
|
||||||
class Selfupdate(Command, MirrorSafeCommand):
|
class Selfupdate(Command, MirrorSafeCommand):
|
||||||
common = False
|
common = False
|
||||||
helpSummary = "Update repo to the latest version"
|
helpSummary = "Update repo to the latest version"
|
||||||
@ -39,7 +40,7 @@ need to be performed by an end-user.
|
|||||||
def _Options(self, p):
|
def _Options(self, p):
|
||||||
g = p.add_option_group('repo Version options')
|
g = p.add_option_group('repo Version options')
|
||||||
g.add_option('--no-repo-verify',
|
g.add_option('--no-repo-verify',
|
||||||
dest='no_repo_verify', action='store_true',
|
dest='repo_verify', default=True, action='store_false',
|
||||||
help='do not verify repo source code')
|
help='do not verify repo source code')
|
||||||
g.add_option('--repo-upgraded',
|
g.add_option('--repo-upgraded',
|
||||||
dest='repo_upgraded', action='store_true',
|
dest='repo_upgraded', action='store_true',
|
||||||
@ -59,5 +60,5 @@ need to be performed by an end-user.
|
|||||||
|
|
||||||
rp.bare_git.gc('--auto')
|
rp.bare_git.gc('--auto')
|
||||||
_PostRepoFetch(rp,
|
_PostRepoFetch(rp,
|
||||||
no_repo_verify = opt.no_repo_verify,
|
repo_verify=opt.repo_verify,
|
||||||
verbose = True)
|
verbose=True)
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
from subcmds.sync import Sync
|
from subcmds.sync import Sync
|
||||||
|
|
||||||
|
|
||||||
class Smartsync(Sync):
|
class Smartsync(Sync):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Update working tree to the latest known good revision"
|
helpSummary = "Update working tree to the latest known good revision"
|
||||||
|
@ -21,6 +21,7 @@ from color import Coloring
|
|||||||
from command import InteractiveCommand
|
from command import InteractiveCommand
|
||||||
from git_command import GitCommand
|
from git_command import GitCommand
|
||||||
|
|
||||||
|
|
||||||
class _ProjectList(Coloring):
|
class _ProjectList(Coloring):
|
||||||
def __init__(self, gc):
|
def __init__(self, gc):
|
||||||
Coloring.__init__(self, gc, 'interactive')
|
Coloring.__init__(self, gc, 'interactive')
|
||||||
@ -28,6 +29,7 @@ class _ProjectList(Coloring):
|
|||||||
self.header = self.printer('header', attr='bold')
|
self.header = self.printer('header', attr='bold')
|
||||||
self.help = self.printer('help', fg='red', attr='bold')
|
self.help = self.printer('help', fg='red', attr='bold')
|
||||||
|
|
||||||
|
|
||||||
class Stage(InteractiveCommand):
|
class Stage(InteractiveCommand):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Stage file(s) for commit"
|
helpSummary = "Stage file(s) for commit"
|
||||||
@ -105,6 +107,7 @@ The '%prog' command stages files to prepare the next commit.
|
|||||||
continue
|
continue
|
||||||
print('Bye.')
|
print('Bye.')
|
||||||
|
|
||||||
|
|
||||||
def _AddI(project):
|
def _AddI(project):
|
||||||
p = GitCommand(project, ['add', '--interactive'], bare=False)
|
p = GitCommand(project, ['add', '--interactive'], bare=False)
|
||||||
p.Wait()
|
p.Wait()
|
||||||
|
@ -25,6 +25,7 @@ import gitc_utils
|
|||||||
from progress import Progress
|
from progress import Progress
|
||||||
from project import SyncBuffer
|
from project import SyncBuffer
|
||||||
|
|
||||||
|
|
||||||
class Start(Command):
|
class Start(Command):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Start a new branch for development"
|
helpSummary = "Start a new branch for development"
|
||||||
@ -60,7 +61,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:
|
||||||
projects = ['.',] # start it in the local project by default
|
projects = ['.'] # start it in the local project by default
|
||||||
|
|
||||||
all_projects = self.GetProjects(projects,
|
all_projects = self.GetProjects(projects,
|
||||||
missing_ok=bool(self.gitc_manifest))
|
missing_ok=bool(self.gitc_manifest))
|
||||||
@ -113,7 +114,7 @@ revision specified in the manifest.
|
|||||||
branch_merge = self.manifest.default.revisionExpr
|
branch_merge = self.manifest.default.revisionExpr
|
||||||
|
|
||||||
if not project.StartBranch(
|
if not project.StartBranch(
|
||||||
nb, branch_merge=branch_merge, revision=opt.revision):
|
nb, branch_merge=branch_merge, revision=opt.revision):
|
||||||
err.append(project)
|
err.append(project)
|
||||||
pm.end()
|
pm.end()
|
||||||
|
|
||||||
|
@ -16,6 +16,10 @@
|
|||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
|
import glob
|
||||||
|
import itertools
|
||||||
|
import os
|
||||||
|
|
||||||
from command import PagedCommand
|
from command import PagedCommand
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@ -23,14 +27,10 @@ try:
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
import dummy_threading as _threading
|
import dummy_threading as _threading
|
||||||
|
|
||||||
import glob
|
|
||||||
|
|
||||||
import itertools
|
|
||||||
import os
|
|
||||||
|
|
||||||
from color import Coloring
|
from color import Coloring
|
||||||
import platform_utils
|
import platform_utils
|
||||||
|
|
||||||
|
|
||||||
class Status(PagedCommand):
|
class Status(PagedCommand):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Show the working tree status"
|
helpSummary = "Show the working tree status"
|
||||||
@ -126,8 +126,8 @@ the following meanings:
|
|||||||
continue
|
continue
|
||||||
if item in proj_dirs_parents:
|
if item in proj_dirs_parents:
|
||||||
self._FindOrphans(glob.glob('%s/.*' % item) +
|
self._FindOrphans(glob.glob('%s/.*' % item) +
|
||||||
glob.glob('%s/*' % item),
|
glob.glob('%s/*' % item),
|
||||||
proj_dirs, proj_dirs_parents, outstring)
|
proj_dirs, proj_dirs_parents, outstring)
|
||||||
continue
|
continue
|
||||||
outstring.append(''.join([status_header, item, '/']))
|
outstring.append(''.join([status_header, item, '/']))
|
||||||
|
|
||||||
@ -170,8 +170,8 @@ the following meanings:
|
|||||||
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')
|
||||||
self.untracked = self.printer('untracked', fg = 'red')
|
self.untracked = self.printer('untracked', fg='red')
|
||||||
|
|
||||||
orig_path = os.getcwd()
|
orig_path = os.getcwd()
|
||||||
try:
|
try:
|
||||||
@ -179,8 +179,8 @@ the following meanings:
|
|||||||
|
|
||||||
outstring = []
|
outstring = []
|
||||||
self._FindOrphans(glob.glob('.*') +
|
self._FindOrphans(glob.glob('.*') +
|
||||||
glob.glob('*'),
|
glob.glob('*'),
|
||||||
proj_dirs, proj_dirs_parents, outstring)
|
proj_dirs, proj_dirs_parents, outstring)
|
||||||
|
|
||||||
if outstring:
|
if outstring:
|
||||||
output = StatusColoring(self.manifest.globalConfig)
|
output = StatusColoring(self.manifest.globalConfig)
|
||||||
|
205
subcmds/sync.py
205
subcmds/sync.py
@ -15,6 +15,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import netrc
|
import netrc
|
||||||
from optparse import SUPPRESS_HELP
|
from optparse import SUPPRESS_HELP
|
||||||
@ -53,6 +54,7 @@ except ImportError:
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
import resource
|
import resource
|
||||||
|
|
||||||
def _rlimit_nofile():
|
def _rlimit_nofile():
|
||||||
return resource.getrlimit(resource.RLIMIT_NOFILE)
|
return resource.getrlimit(resource.RLIMIT_NOFILE)
|
||||||
except ImportError:
|
except ImportError:
|
||||||
@ -81,13 +83,16 @@ from manifest_xml import GitcManifest
|
|||||||
|
|
||||||
_ONE_DAY_S = 24 * 60 * 60
|
_ONE_DAY_S = 24 * 60 * 60
|
||||||
|
|
||||||
|
|
||||||
class _FetchError(Exception):
|
class _FetchError(Exception):
|
||||||
"""Internal error thrown in _FetchHelper() when we don't want stack trace."""
|
"""Internal error thrown in _FetchHelper() when we don't want stack trace."""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
class _CheckoutError(Exception):
|
class _CheckoutError(Exception):
|
||||||
"""Internal error thrown in _CheckoutOne() when we don't want stack trace."""
|
"""Internal error thrown in _CheckoutOne() when we don't want stack trace."""
|
||||||
|
|
||||||
|
|
||||||
class Sync(Command, MirrorSafeCommand):
|
class Sync(Command, MirrorSafeCommand):
|
||||||
jobs = 1
|
jobs = 1
|
||||||
common = True
|
common = True
|
||||||
@ -217,7 +222,7 @@ later is required to fix a server side protocol bug.
|
|||||||
p.add_option('-l', '--local-only',
|
p.add_option('-l', '--local-only',
|
||||||
dest='local_only', action='store_true',
|
dest='local_only', action='store_true',
|
||||||
help="only update working tree, don't fetch")
|
help="only update working tree, don't fetch")
|
||||||
p.add_option('--no-manifest-update','--nmu',
|
p.add_option('--no-manifest-update', '--nmu',
|
||||||
dest='mp_update', action='store_false', default='true',
|
dest='mp_update', action='store_false', default='true',
|
||||||
help='use the existing manifest checkout as-is. '
|
help='use the existing manifest checkout as-is. '
|
||||||
'(do not update to the latest revision)')
|
'(do not update to the latest revision)')
|
||||||
@ -230,9 +235,12 @@ later is required to fix a server side protocol bug.
|
|||||||
p.add_option('-c', '--current-branch',
|
p.add_option('-c', '--current-branch',
|
||||||
dest='current_branch_only', action='store_true',
|
dest='current_branch_only', action='store_true',
|
||||||
help='fetch only current branch from server')
|
help='fetch only current branch from server')
|
||||||
|
p.add_option('-v', '--verbose',
|
||||||
|
dest='output_mode', action='store_true',
|
||||||
|
help='show all sync output')
|
||||||
p.add_option('-q', '--quiet',
|
p.add_option('-q', '--quiet',
|
||||||
dest='quiet', action='store_true',
|
dest='output_mode', action='store_false',
|
||||||
help='be more quiet')
|
help='only show errors')
|
||||||
p.add_option('-j', '--jobs',
|
p.add_option('-j', '--jobs',
|
||||||
dest='jobs', action='store', type='int',
|
dest='jobs', action='store', type='int',
|
||||||
help="projects to fetch simultaneously (default %d)" % self.jobs)
|
help="projects to fetch simultaneously (default %d)" % self.jobs)
|
||||||
@ -240,7 +248,7 @@ later is required to fix a server side protocol bug.
|
|||||||
dest='manifest_name',
|
dest='manifest_name',
|
||||||
help='temporary manifest to use for this sync', metavar='NAME.xml')
|
help='temporary manifest to use for this sync', metavar='NAME.xml')
|
||||||
p.add_option('--no-clone-bundle',
|
p.add_option('--no-clone-bundle',
|
||||||
dest='no_clone_bundle', action='store_true',
|
dest='clone_bundle', default=True, action='store_false',
|
||||||
help='disable use of /clone.bundle on HTTP/HTTPS')
|
help='disable use of /clone.bundle on HTTP/HTTPS')
|
||||||
p.add_option('-u', '--manifest-server-username', action='store',
|
p.add_option('-u', '--manifest-server-username', action='store',
|
||||||
dest='manifest_server_username',
|
dest='manifest_server_username',
|
||||||
@ -252,7 +260,7 @@ later is required to fix a server side protocol bug.
|
|||||||
dest='fetch_submodules', action='store_true',
|
dest='fetch_submodules', action='store_true',
|
||||||
help='fetch submodules from server')
|
help='fetch submodules from server')
|
||||||
p.add_option('--no-tags',
|
p.add_option('--no-tags',
|
||||||
dest='no_tags', action='store_true',
|
dest='tags', default=True, action='store_false',
|
||||||
help="don't fetch tags")
|
help="don't fetch tags")
|
||||||
p.add_option('--optimized-fetch',
|
p.add_option('--optimized-fetch',
|
||||||
dest='optimized_fetch', action='store_true',
|
dest='optimized_fetch', action='store_true',
|
||||||
@ -269,7 +277,7 @@ later is required to fix a server side protocol bug.
|
|||||||
|
|
||||||
g = p.add_option_group('repo Version options')
|
g = p.add_option_group('repo Version options')
|
||||||
g.add_option('--no-repo-verify',
|
g.add_option('--no-repo-verify',
|
||||||
dest='no_repo_verify', action='store_true',
|
dest='repo_verify', default=True, action='store_false',
|
||||||
help='do not verify repo source code')
|
help='do not verify repo source code')
|
||||||
g.add_option('--repo-upgraded',
|
g.add_option('--repo-upgraded',
|
||||||
dest='repo_upgraded', action='store_true',
|
dest='repo_upgraded', action='store_true',
|
||||||
@ -327,14 +335,15 @@ later is required to fix a server side protocol bug.
|
|||||||
try:
|
try:
|
||||||
try:
|
try:
|
||||||
success = project.Sync_NetworkHalf(
|
success = project.Sync_NetworkHalf(
|
||||||
quiet=opt.quiet,
|
quiet=opt.quiet,
|
||||||
current_branch_only=opt.current_branch_only,
|
verbose=opt.verbose,
|
||||||
force_sync=opt.force_sync,
|
current_branch_only=opt.current_branch_only,
|
||||||
clone_bundle=not opt.no_clone_bundle,
|
force_sync=opt.force_sync,
|
||||||
no_tags=opt.no_tags, archive=self.manifest.IsArchive,
|
clone_bundle=opt.clone_bundle,
|
||||||
optimized_fetch=opt.optimized_fetch,
|
tags=opt.tags, archive=self.manifest.IsArchive,
|
||||||
prune=opt.prune,
|
optimized_fetch=opt.optimized_fetch,
|
||||||
clone_filter=clone_filter)
|
prune=opt.prune,
|
||||||
|
clone_filter=clone_filter)
|
||||||
self._fetch_times.Set(project, time.time() - start)
|
self._fetch_times.Set(project, time.time() - start)
|
||||||
|
|
||||||
# Lock around all the rest of the code, since printing, updating a set
|
# Lock around all the rest of the code, since printing, updating a set
|
||||||
@ -355,8 +364,8 @@ later is required to fix a server side protocol bug.
|
|||||||
except _FetchError:
|
except _FetchError:
|
||||||
pass
|
pass
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print('error: Cannot fetch %s (%s: %s)' \
|
print('error: Cannot fetch %s (%s: %s)'
|
||||||
% (project.name, type(e).__name__, str(e)), file=sys.stderr)
|
% (project.name, type(e).__name__, str(e)), file=sys.stderr)
|
||||||
err_event.set()
|
err_event.set()
|
||||||
raise
|
raise
|
||||||
finally:
|
finally:
|
||||||
@ -396,8 +405,8 @@ later is required to fix a server side protocol bug.
|
|||||||
err_event=err_event,
|
err_event=err_event,
|
||||||
clone_filter=self.manifest.CloneFilter)
|
clone_filter=self.manifest.CloneFilter)
|
||||||
if self.jobs > 1:
|
if self.jobs > 1:
|
||||||
t = _threading.Thread(target = self._FetchProjectList,
|
t = _threading.Thread(target=self._FetchProjectList,
|
||||||
kwargs = kwargs)
|
kwargs=kwargs)
|
||||||
# Ensure that Ctrl-C will not freeze the repo process.
|
# Ensure that Ctrl-C will not freeze the repo process.
|
||||||
t.daemon = True
|
t.daemon = True
|
||||||
threads.add(t)
|
threads.add(t)
|
||||||
@ -561,12 +570,12 @@ later is required to fix a server side protocol bug.
|
|||||||
gc_gitdirs = {}
|
gc_gitdirs = {}
|
||||||
for project in projects:
|
for project in projects:
|
||||||
# Make sure pruning never kicks in with shared projects.
|
# Make sure pruning never kicks in with shared projects.
|
||||||
if len(project.manifest.GetProjectsWithName(project.name)) > 1:
|
if (not project.use_git_worktrees and
|
||||||
|
len(project.manifest.GetProjectsWithName(project.name)) > 1):
|
||||||
print('%s: Shared project %s found, disabling pruning.' %
|
print('%s: Shared project %s found, disabling pruning.' %
|
||||||
(project.relpath, project.name))
|
(project.relpath, project.name))
|
||||||
if git_require((2, 7, 0)):
|
if git_require((2, 7, 0)):
|
||||||
project.config.SetString('core.repositoryFormatVersion', '1')
|
project.EnableRepositoryExtension('preciousObjects')
|
||||||
project.config.SetString('extensions.preciousObjects', 'true')
|
|
||||||
else:
|
else:
|
||||||
# This isn't perfect, but it's the best we can do with old git.
|
# This isn't perfect, but it's the best we can do with old git.
|
||||||
print('%s: WARNING: shared projects are unreliable when using old '
|
print('%s: WARNING: shared projects are unreliable when using old '
|
||||||
@ -576,8 +585,7 @@ later is required to fix a server side protocol bug.
|
|||||||
project.config.SetString('gc.pruneExpire', 'never')
|
project.config.SetString('gc.pruneExpire', 'never')
|
||||||
gc_gitdirs[project.gitdir] = project.bare_git
|
gc_gitdirs[project.gitdir] = project.bare_git
|
||||||
|
|
||||||
has_dash_c = git_require((1, 7, 2))
|
if multiprocessing:
|
||||||
if multiprocessing and has_dash_c:
|
|
||||||
cpu_count = multiprocessing.cpu_count()
|
cpu_count = multiprocessing.cpu_count()
|
||||||
else:
|
else:
|
||||||
cpu_count = 1
|
cpu_count = 1
|
||||||
@ -599,7 +607,7 @@ later is required to fix a server side protocol bug.
|
|||||||
bare_git.gc('--auto', config=config)
|
bare_git.gc('--auto', config=config)
|
||||||
except GitError:
|
except GitError:
|
||||||
err_event.set()
|
err_event.set()
|
||||||
except:
|
except Exception:
|
||||||
err_event.set()
|
err_event.set()
|
||||||
raise
|
raise
|
||||||
finally:
|
finally:
|
||||||
@ -624,65 +632,6 @@ 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:
|
|
||||||
platform_utils.rmtree(os.path.join(path, '.git'))
|
|
||||||
except OSError as e:
|
|
||||||
print('Failed to remove %s (%s)' % (os.path.join(path, '.git'), str(e)), 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 platform_utils.walk(path):
|
|
||||||
for f in files:
|
|
||||||
try:
|
|
||||||
platform_utils.remove(os.path.join(root, f))
|
|
||||||
except OSError as e:
|
|
||||||
print('Failed to remove %s (%s)' % (os.path.join(root, f), str(e)), 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 platform_utils.islink(d):
|
|
||||||
try:
|
|
||||||
platform_utils.remove(d)
|
|
||||||
except OSError as e:
|
|
||||||
print('Failed to remove %s (%s)' % (os.path.join(root, d), str(e)), file=sys.stderr)
|
|
||||||
failed = True
|
|
||||||
elif len(platform_utils.listdir(d)) == 0:
|
|
||||||
try:
|
|
||||||
platform_utils.rmdir(d)
|
|
||||||
except OSError as e:
|
|
||||||
print('Failed to remove %s (%s)' % (os.path.join(root, d), str(e)), 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(platform_utils.listdir(project_dir)) == 0:
|
|
||||||
platform_utils.rmdir(project_dir)
|
|
||||||
else:
|
|
||||||
break
|
|
||||||
project_dir = os.path.dirname(project_dir)
|
|
||||||
|
|
||||||
return 0
|
|
||||||
|
|
||||||
def UpdateProjectList(self, opt):
|
def UpdateProjectList(self, opt):
|
||||||
new_project_paths = []
|
new_project_paths = []
|
||||||
for project in self.GetProjects(None, missing_ok=True):
|
for project in self.GetProjects(None, missing_ok=True):
|
||||||
@ -704,28 +653,20 @@ later is required to fix a server side protocol bug.
|
|||||||
gitdir = os.path.join(self.manifest.topdir, path, '.git')
|
gitdir = os.path.join(self.manifest.topdir, path, '.git')
|
||||||
if os.path.exists(gitdir):
|
if os.path.exists(gitdir):
|
||||||
project = Project(
|
project = Project(
|
||||||
manifest = self.manifest,
|
manifest=self.manifest,
|
||||||
name = path,
|
name=path,
|
||||||
remote = RemoteSpec('origin'),
|
remote=RemoteSpec('origin'),
|
||||||
gitdir = gitdir,
|
gitdir=gitdir,
|
||||||
objdir = gitdir,
|
objdir=gitdir,
|
||||||
worktree = os.path.join(self.manifest.topdir, path),
|
use_git_worktrees=os.path.isfile(gitdir),
|
||||||
relpath = path,
|
worktree=os.path.join(self.manifest.topdir, path),
|
||||||
revisionExpr = 'HEAD',
|
relpath=path,
|
||||||
revisionId = None,
|
revisionExpr='HEAD',
|
||||||
groups = None)
|
revisionId=None,
|
||||||
|
groups=None)
|
||||||
if project.IsDirty() and opt.force_remove_dirty:
|
if not project.DeleteWorktree(
|
||||||
print('WARNING: Removing dirty project "%s": uncommitted changes '
|
quiet=opt.quiet,
|
||||||
'erased' % project.relpath, file=sys.stderr)
|
force=opt.force_remove_dirty):
|
||||||
self._DeleteProject(project.worktree)
|
|
||||||
elif project.IsDirty():
|
|
||||||
print('error: Cannot remove project "%s": uncommitted changes '
|
|
||||||
'are present' % project.relpath, file=sys.stderr)
|
|
||||||
print(' commit changes, then run sync again',
|
|
||||||
file=sys.stderr)
|
|
||||||
return 1
|
|
||||||
elif self._DeleteProject(project.worktree):
|
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
new_project_paths.sort()
|
new_project_paths.sort()
|
||||||
@ -744,7 +685,7 @@ later is required to fix a server side protocol bug.
|
|||||||
if not opt.quiet:
|
if not opt.quiet:
|
||||||
print('Using manifest server %s' % manifest_server)
|
print('Using manifest server %s' % manifest_server)
|
||||||
|
|
||||||
if not '@' in manifest_server:
|
if '@' not in manifest_server:
|
||||||
username = None
|
username = None
|
||||||
password = None
|
password = None
|
||||||
if opt.manifest_server_username and opt.manifest_server_password:
|
if opt.manifest_server_username and opt.manifest_server_password:
|
||||||
@ -787,13 +728,13 @@ later is required to fix a server side protocol bug.
|
|||||||
if branch.startswith(R_HEADS):
|
if branch.startswith(R_HEADS):
|
||||||
branch = branch[len(R_HEADS):]
|
branch = branch[len(R_HEADS):]
|
||||||
|
|
||||||
env = os.environ.copy()
|
if 'SYNC_TARGET' in os.environ:
|
||||||
if 'SYNC_TARGET' in env:
|
target = os.environ('SYNC_TARGET')
|
||||||
target = env['SYNC_TARGET']
|
|
||||||
[success, manifest_str] = server.GetApprovedManifest(branch, target)
|
[success, manifest_str] = server.GetApprovedManifest(branch, target)
|
||||||
elif 'TARGET_PRODUCT' in env and 'TARGET_BUILD_VARIANT' in env:
|
elif ('TARGET_PRODUCT' in os.environ and
|
||||||
target = '%s-%s' % (env['TARGET_PRODUCT'],
|
'TARGET_BUILD_VARIANT' in os.environ):
|
||||||
env['TARGET_BUILD_VARIANT'])
|
target = '%s-%s' % (os.environ('TARGET_PRODUCT'),
|
||||||
|
os.environ('TARGET_BUILD_VARIANT'))
|
||||||
[success, manifest_str] = server.GetApprovedManifest(branch, target)
|
[success, manifest_str] = server.GetApprovedManifest(branch, target)
|
||||||
else:
|
else:
|
||||||
[success, manifest_str] = server.GetApprovedManifest(branch)
|
[success, manifest_str] = server.GetApprovedManifest(branch)
|
||||||
@ -832,9 +773,9 @@ later is required to fix a server side protocol bug.
|
|||||||
"""Fetch & update the local manifest project."""
|
"""Fetch & update the local manifest project."""
|
||||||
if not opt.local_only:
|
if not opt.local_only:
|
||||||
start = time.time()
|
start = time.time()
|
||||||
success = mp.Sync_NetworkHalf(quiet=opt.quiet,
|
success = mp.Sync_NetworkHalf(quiet=opt.quiet, verbose=opt.verbose,
|
||||||
current_branch_only=opt.current_branch_only,
|
current_branch_only=opt.current_branch_only,
|
||||||
no_tags=opt.no_tags,
|
tags=opt.tags,
|
||||||
optimized_fetch=opt.optimized_fetch,
|
optimized_fetch=opt.optimized_fetch,
|
||||||
submodules=self.manifest.HasSubmodules,
|
submodules=self.manifest.HasSubmodules,
|
||||||
clone_filter=self.manifest.CloneFilter)
|
clone_filter=self.manifest.CloneFilter)
|
||||||
@ -880,12 +821,15 @@ later is required to fix a server side protocol bug.
|
|||||||
soft_limit, _ = _rlimit_nofile()
|
soft_limit, _ = _rlimit_nofile()
|
||||||
self.jobs = min(self.jobs, (soft_limit - 5) // 3)
|
self.jobs = min(self.jobs, (soft_limit - 5) // 3)
|
||||||
|
|
||||||
|
opt.quiet = opt.output_mode is False
|
||||||
|
opt.verbose = opt.output_mode is True
|
||||||
|
|
||||||
if opt.manifest_name:
|
if opt.manifest_name:
|
||||||
self.manifest.Override(opt.manifest_name)
|
self.manifest.Override(opt.manifest_name)
|
||||||
|
|
||||||
manifest_name = opt.manifest_name
|
manifest_name = opt.manifest_name
|
||||||
smart_sync_manifest_path = os.path.join(
|
smart_sync_manifest_path = os.path.join(
|
||||||
self.manifest.manifestProject.worktree, 'smart_sync_override.xml')
|
self.manifest.manifestProject.worktree, 'smart_sync_override.xml')
|
||||||
|
|
||||||
if opt.smart_sync or opt.smart_tag:
|
if opt.smart_sync or opt.smart_tag:
|
||||||
manifest_name = self._SmartSyncSetup(opt, smart_sync_manifest_path)
|
manifest_name = self._SmartSyncSetup(opt, smart_sync_manifest_path)
|
||||||
@ -967,7 +911,7 @@ later is required to fix a server side protocol bug.
|
|||||||
|
|
||||||
fetched = self._Fetch(to_fetch, opt, err_event)
|
fetched = self._Fetch(to_fetch, opt, err_event)
|
||||||
|
|
||||||
_PostRepoFetch(rp, opt.no_repo_verify)
|
_PostRepoFetch(rp, opt.repo_verify)
|
||||||
if opt.network_only:
|
if opt.network_only:
|
||||||
# bail out now; the rest touches the working tree
|
# bail out now; the rest touches the working tree
|
||||||
if err_event.isSet():
|
if err_event.isSet():
|
||||||
@ -1044,6 +988,10 @@ later is required to fix a server side protocol bug.
|
|||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
if not opt.quiet:
|
||||||
|
print('repo sync has finished successfully.')
|
||||||
|
|
||||||
|
|
||||||
def _PostRepoUpgrade(manifest, quiet=False):
|
def _PostRepoUpgrade(manifest, quiet=False):
|
||||||
wrapper = Wrapper()
|
wrapper = Wrapper()
|
||||||
if wrapper.NeedSetupGnuPG():
|
if wrapper.NeedSetupGnuPG():
|
||||||
@ -1052,11 +1000,12 @@ def _PostRepoUpgrade(manifest, quiet=False):
|
|||||||
if project.Exists:
|
if project.Exists:
|
||||||
project.PostRepoUpgrade()
|
project.PostRepoUpgrade()
|
||||||
|
|
||||||
def _PostRepoFetch(rp, no_repo_verify=False, verbose=False):
|
|
||||||
|
def _PostRepoFetch(rp, repo_verify=True, verbose=False):
|
||||||
if rp.HasChanges:
|
if rp.HasChanges:
|
||||||
print('info: A new version of repo is available', file=sys.stderr)
|
print('info: A new version of repo is available', file=sys.stderr)
|
||||||
print(file=sys.stderr)
|
print(file=sys.stderr)
|
||||||
if no_repo_verify or _VerifyTag(rp):
|
if not repo_verify or _VerifyTag(rp):
|
||||||
syncbuf = SyncBuffer(rp.config)
|
syncbuf = SyncBuffer(rp.config)
|
||||||
rp.Sync_LocalHalf(syncbuf)
|
rp.Sync_LocalHalf(syncbuf)
|
||||||
if not syncbuf.Finish():
|
if not syncbuf.Finish():
|
||||||
@ -1070,6 +1019,7 @@ def _PostRepoFetch(rp, no_repo_verify=False, verbose=False):
|
|||||||
print('repo version %s is current' % rp.work_git.describe(HEAD),
|
print('repo version %s is current' % rp.work_git.describe(HEAD),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
|
|
||||||
|
|
||||||
def _VerifyTag(project):
|
def _VerifyTag(project):
|
||||||
gpg_dir = os.path.expanduser('~/.repoconfig/gnupg')
|
gpg_dir = os.path.expanduser('~/.repoconfig/gnupg')
|
||||||
if not os.path.exists(gpg_dir):
|
if not os.path.exists(gpg_dir):
|
||||||
@ -1095,14 +1045,14 @@ def _VerifyTag(project):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
env = os.environ.copy()
|
env = os.environ.copy()
|
||||||
env['GIT_DIR'] = project.gitdir.encode()
|
env['GIT_DIR'] = project.gitdir
|
||||||
env['GNUPGHOME'] = gpg_dir.encode()
|
env['GNUPGHOME'] = gpg_dir
|
||||||
|
|
||||||
cmd = [GIT, 'tag', '-v', cur]
|
cmd = [GIT, 'tag', '-v', cur]
|
||||||
proc = subprocess.Popen(cmd,
|
proc = subprocess.Popen(cmd,
|
||||||
stdout = subprocess.PIPE,
|
stdout=subprocess.PIPE,
|
||||||
stderr = subprocess.PIPE,
|
stderr=subprocess.PIPE,
|
||||||
env = env)
|
env=env)
|
||||||
out = proc.stdout.read()
|
out = proc.stdout.read()
|
||||||
proc.stdout.close()
|
proc.stdout.close()
|
||||||
|
|
||||||
@ -1136,7 +1086,7 @@ class _FetchTimes(object):
|
|||||||
old = self._times.get(name, t)
|
old = self._times.get(name, t)
|
||||||
self._seen.add(name)
|
self._seen.add(name)
|
||||||
a = self._ALPHA
|
a = self._ALPHA
|
||||||
self._times[name] = (a*t) + ((1-a) * old)
|
self._times[name] = (a * t) + ((1 - a) * old)
|
||||||
|
|
||||||
def _Load(self):
|
def _Load(self):
|
||||||
if self._times is None:
|
if self._times is None:
|
||||||
@ -1174,6 +1124,8 @@ class _FetchTimes(object):
|
|||||||
# and supporting persistent-http[s]. It cannot change hosts from
|
# and supporting persistent-http[s]. It cannot change hosts from
|
||||||
# request to request like the normal transport, the real url
|
# request to request like the normal transport, the real url
|
||||||
# is passed during initialization.
|
# is passed during initialization.
|
||||||
|
|
||||||
|
|
||||||
class PersistentTransport(xmlrpc.client.Transport):
|
class PersistentTransport(xmlrpc.client.Transport):
|
||||||
def __init__(self, orig_host):
|
def __init__(self, orig_host):
|
||||||
self.orig_host = orig_host
|
self.orig_host = orig_host
|
||||||
@ -1184,7 +1136,7 @@ class PersistentTransport(xmlrpc.client.Transport):
|
|||||||
# Since we're only using them for HTTP, copy the file temporarily,
|
# Since we're only using them for HTTP, copy the file temporarily,
|
||||||
# stripping those prefixes away.
|
# stripping those prefixes away.
|
||||||
if cookiefile:
|
if cookiefile:
|
||||||
tmpcookiefile = tempfile.NamedTemporaryFile()
|
tmpcookiefile = tempfile.NamedTemporaryFile(mode='w')
|
||||||
tmpcookiefile.write("# HTTP Cookie File")
|
tmpcookiefile.write("# HTTP Cookie File")
|
||||||
try:
|
try:
|
||||||
with open(cookiefile) as f:
|
with open(cookiefile) as f:
|
||||||
@ -1208,7 +1160,7 @@ class PersistentTransport(xmlrpc.client.Transport):
|
|||||||
if proxy:
|
if proxy:
|
||||||
proxyhandler = urllib.request.ProxyHandler({
|
proxyhandler = urllib.request.ProxyHandler({
|
||||||
"http": proxy,
|
"http": proxy,
|
||||||
"https": proxy })
|
"https": proxy})
|
||||||
|
|
||||||
opener = urllib.request.build_opener(
|
opener = urllib.request.build_opener(
|
||||||
urllib.request.HTTPCookieProcessor(cookiejar),
|
urllib.request.HTTPCookieProcessor(cookiejar),
|
||||||
@ -1265,4 +1217,3 @@ class PersistentTransport(xmlrpc.client.Transport):
|
|||||||
|
|
||||||
def close(self):
|
def close(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@ -27,12 +27,13 @@ from project import RepoHook
|
|||||||
|
|
||||||
from pyversion import is_python3
|
from pyversion import is_python3
|
||||||
if not is_python3():
|
if not is_python3():
|
||||||
input = raw_input
|
input = raw_input # noqa: F821
|
||||||
else:
|
else:
|
||||||
unicode = str
|
unicode = str
|
||||||
|
|
||||||
UNUSUAL_COMMIT_THRESHOLD = 5
|
UNUSUAL_COMMIT_THRESHOLD = 5
|
||||||
|
|
||||||
|
|
||||||
def _ConfirmManyUploads(multiple_branches=False):
|
def _ConfirmManyUploads(multiple_branches=False):
|
||||||
if multiple_branches:
|
if multiple_branches:
|
||||||
print('ATTENTION: One or more branches has an unusually high number '
|
print('ATTENTION: One or more branches has an unusually high number '
|
||||||
@ -44,17 +45,20 @@ def _ConfirmManyUploads(multiple_branches=False):
|
|||||||
answer = input("If you are sure you intend to do this, type 'yes': ").strip()
|
answer = input("If you are sure you intend to do this, type 'yes': ").strip()
|
||||||
return answer == "yes"
|
return answer == "yes"
|
||||||
|
|
||||||
|
|
||||||
def _die(fmt, *args):
|
def _die(fmt, *args):
|
||||||
msg = fmt % args
|
msg = fmt % args
|
||||||
print('error: %s' % msg, file=sys.stderr)
|
print('error: %s' % msg, file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
def _SplitEmails(values):
|
def _SplitEmails(values):
|
||||||
result = []
|
result = []
|
||||||
for value in values:
|
for value in values:
|
||||||
result.extend([s.strip() for s in value.split(',')])
|
result.extend([s.strip() for s in value.split(',')])
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
class Upload(InteractiveCommand):
|
class Upload(InteractiveCommand):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "Upload changes for code review"
|
helpSummary = "Upload changes for code review"
|
||||||
@ -126,6 +130,12 @@ is set to "true" then repo will assume you always want the equivalent
|
|||||||
of the -t option to the repo command. If unset or set to "false" then
|
of the -t option to the repo command. If unset or set to "false" then
|
||||||
repo will make use of only the command line option.
|
repo will make use of only the command line option.
|
||||||
|
|
||||||
|
review.URL.uploadhashtags:
|
||||||
|
|
||||||
|
To add hashtags whenever uploading a commit, you can set a per-project
|
||||||
|
or global Git option to do so. The value of review.URL.uploadhashtags
|
||||||
|
will be used as comma delimited hashtags like the --hashtags option.
|
||||||
|
|
||||||
# References
|
# References
|
||||||
|
|
||||||
Gerrit Code Review: https://www.gerritcodereview.com/
|
Gerrit Code Review: https://www.gerritcodereview.com/
|
||||||
@ -136,14 +146,20 @@ Gerrit Code Review: https://www.gerritcodereview.com/
|
|||||||
p.add_option('-t',
|
p.add_option('-t',
|
||||||
dest='auto_topic', action='store_true',
|
dest='auto_topic', action='store_true',
|
||||||
help='Send local branch name to Gerrit Code Review')
|
help='Send local branch name to Gerrit Code Review')
|
||||||
|
p.add_option('--hashtag', '--ht',
|
||||||
|
dest='hashtags', action='append', default=[],
|
||||||
|
help='Add hashtags (comma delimited) to the review.')
|
||||||
|
p.add_option('--hashtag-branch', '--htb',
|
||||||
|
action='store_true',
|
||||||
|
help='Add local branch name as a hashtag.')
|
||||||
p.add_option('--re', '--reviewers',
|
p.add_option('--re', '--reviewers',
|
||||||
type='string', action='append', dest='reviewers',
|
type='string', action='append', dest='reviewers',
|
||||||
help='Request reviews from these people.')
|
help='Request reviews from these people.')
|
||||||
p.add_option('--cc',
|
p.add_option('--cc',
|
||||||
type='string', action='append', dest='cc',
|
type='string', action='append', dest='cc',
|
||||||
help='Also send email to these email addresses.')
|
help='Also send email to these email addresses.')
|
||||||
p.add_option('--br',
|
p.add_option('--br',
|
||||||
type='string', action='store', dest='branch',
|
type='string', action='store', dest='branch',
|
||||||
help='Branch to upload.')
|
help='Branch to upload.')
|
||||||
p.add_option('--cbr', '--current-branch',
|
p.add_option('--cbr', '--current-branch',
|
||||||
dest='current_branch', action='store_true',
|
dest='current_branch', action='store_true',
|
||||||
@ -168,6 +184,15 @@ Gerrit Code Review: https://www.gerritcodereview.com/
|
|||||||
type='string', action='store', dest='dest_branch',
|
type='string', action='store', dest='dest_branch',
|
||||||
metavar='BRANCH',
|
metavar='BRANCH',
|
||||||
help='Submit for review on this target branch.')
|
help='Submit for review on this target branch.')
|
||||||
|
p.add_option('-n', '--dry-run',
|
||||||
|
dest='dryrun', default=False, action='store_true',
|
||||||
|
help='Do everything except actually upload the CL.')
|
||||||
|
p.add_option('-y', '--yes',
|
||||||
|
default=False, action='store_true',
|
||||||
|
help='Answer yes to all safe prompts.')
|
||||||
|
p.add_option('--no-cert-checks',
|
||||||
|
dest='validate_certs', action='store_false', default=True,
|
||||||
|
help='Disable verifying ssl certs (unsafe).')
|
||||||
|
|
||||||
# Options relating to upload hook. Note that verify and no-verify are NOT
|
# Options relating to upload hook. Note that verify and no-verify are NOT
|
||||||
# opposites of each other, which is why they store to different locations.
|
# opposites of each other, which is why they store to different locations.
|
||||||
@ -185,15 +210,16 @@ Gerrit Code Review: https://www.gerritcodereview.com/
|
|||||||
# Never run upload hooks, but upload anyway (AKA bypass hooks).
|
# Never run upload hooks, but upload anyway (AKA bypass hooks).
|
||||||
# - no-verify=True, verify=True:
|
# - no-verify=True, verify=True:
|
||||||
# Invalid
|
# Invalid
|
||||||
p.add_option('--no-cert-checks',
|
g = p.add_option_group('Upload hooks')
|
||||||
dest='validate_certs', action='store_false', default=True,
|
g.add_option('--no-verify',
|
||||||
help='Disable verifying ssl certs (unsafe).')
|
|
||||||
p.add_option('--no-verify',
|
|
||||||
dest='bypass_hooks', action='store_true',
|
dest='bypass_hooks', action='store_true',
|
||||||
help='Do not run the upload hook.')
|
help='Do not run the upload hook.')
|
||||||
p.add_option('--verify',
|
g.add_option('--verify',
|
||||||
dest='allow_all_hooks', action='store_true',
|
dest='allow_all_hooks', action='store_true',
|
||||||
help='Run the upload hook without prompting.')
|
help='Run the upload hook without prompting.')
|
||||||
|
g.add_option('--ignore-hooks',
|
||||||
|
dest='ignore_hooks', action='store_true',
|
||||||
|
help='Do not abort uploading if upload hooks fail.')
|
||||||
|
|
||||||
def _SingleBranch(self, opt, branch, people):
|
def _SingleBranch(self, opt, branch, people):
|
||||||
project = branch.project
|
project = branch.project
|
||||||
@ -214,18 +240,22 @@ Gerrit Code Review: https://www.gerritcodereview.com/
|
|||||||
print('Upload project %s/ to remote branch %s%s:' %
|
print('Upload project %s/ to remote branch %s%s:' %
|
||||||
(project.relpath, destination, ' (draft)' if opt.draft else ''))
|
(project.relpath, destination, ' (draft)' if opt.draft else ''))
|
||||||
print(' branch %s (%2d commit%s, %s):' % (
|
print(' branch %s (%2d commit%s, %s):' % (
|
||||||
name,
|
name,
|
||||||
len(commit_list),
|
len(commit_list),
|
||||||
len(commit_list) != 1 and 's' or '',
|
len(commit_list) != 1 and 's' or '',
|
||||||
date))
|
date))
|
||||||
for commit in commit_list:
|
for commit in commit_list:
|
||||||
print(' %s' % commit)
|
print(' %s' % commit)
|
||||||
|
|
||||||
print('to %s (y/N)? ' % remote.review, end='')
|
print('to %s (y/N)? ' % remote.review, end='')
|
||||||
# TODO: When we require Python 3, use flush=True w/print above.
|
# TODO: When we require Python 3, use flush=True w/print above.
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
answer = sys.stdin.readline().strip().lower()
|
if opt.yes:
|
||||||
answer = answer in ('y', 'yes', '1', 'true', 't')
|
print('<--yes>')
|
||||||
|
answer = True
|
||||||
|
else:
|
||||||
|
answer = sys.stdin.readline().strip().lower()
|
||||||
|
answer = answer in ('y', 'yes', '1', 'true', 't')
|
||||||
|
|
||||||
if answer:
|
if answer:
|
||||||
if len(branch.commits) > UNUSUAL_COMMIT_THRESHOLD:
|
if len(branch.commits) > UNUSUAL_COMMIT_THRESHOLD:
|
||||||
@ -322,12 +352,12 @@ Gerrit Code Review: https://www.gerritcodereview.com/
|
|||||||
|
|
||||||
key = 'review.%s.autoreviewer' % project.GetBranch(name).remote.review
|
key = 'review.%s.autoreviewer' % project.GetBranch(name).remote.review
|
||||||
raw_list = project.config.GetString(key)
|
raw_list = project.config.GetString(key)
|
||||||
if not raw_list is None:
|
if raw_list is not None:
|
||||||
people[0].extend([entry.strip() for entry in raw_list.split(',')])
|
people[0].extend([entry.strip() for entry in raw_list.split(',')])
|
||||||
|
|
||||||
key = 'review.%s.autocopy' % project.GetBranch(name).remote.review
|
key = 'review.%s.autocopy' % project.GetBranch(name).remote.review
|
||||||
raw_list = project.config.GetString(key)
|
raw_list = project.config.GetString(key)
|
||||||
if not raw_list is None and len(people[0]) > 0:
|
if raw_list is not None and len(people[0]) > 0:
|
||||||
people[1].extend([entry.strip() for entry in raw_list.split(',')])
|
people[1].extend([entry.strip() for entry in raw_list.split(',')])
|
||||||
|
|
||||||
def _FindGerritChange(self, branch):
|
def _FindGerritChange(self, branch):
|
||||||
@ -364,7 +394,11 @@ Gerrit Code Review: https://www.gerritcodereview.com/
|
|||||||
print('Continue uploading? (y/N) ', end='')
|
print('Continue uploading? (y/N) ', end='')
|
||||||
# TODO: When we require Python 3, use flush=True w/print above.
|
# TODO: When we require Python 3, use flush=True w/print above.
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
a = sys.stdin.readline().strip().lower()
|
if opt.yes:
|
||||||
|
print('<--yes>')
|
||||||
|
a = 'yes'
|
||||||
|
else:
|
||||||
|
a = sys.stdin.readline().strip().lower()
|
||||||
if a not in ('y', 'yes', 't', 'true', 'on'):
|
if a not in ('y', 'yes', 't', 'true', 'on'):
|
||||||
print("skipping upload", file=sys.stderr)
|
print("skipping upload", file=sys.stderr)
|
||||||
branch.uploaded = False
|
branch.uploaded = False
|
||||||
@ -376,6 +410,22 @@ Gerrit Code Review: https://www.gerritcodereview.com/
|
|||||||
key = 'review.%s.uploadtopic' % branch.project.remote.review
|
key = 'review.%s.uploadtopic' % branch.project.remote.review
|
||||||
opt.auto_topic = branch.project.config.GetBoolean(key)
|
opt.auto_topic = branch.project.config.GetBoolean(key)
|
||||||
|
|
||||||
|
# Check if hashtags should be included.
|
||||||
|
def _ExpandHashtag(value):
|
||||||
|
"""Split |value| up into comma delimited tags."""
|
||||||
|
if not value:
|
||||||
|
return
|
||||||
|
for tag in value.split(','):
|
||||||
|
tag = tag.strip()
|
||||||
|
if tag:
|
||||||
|
yield tag
|
||||||
|
key = 'review.%s.uploadhashtags' % branch.project.remote.review
|
||||||
|
hashtags = set(_ExpandHashtag(branch.project.config.GetString(key)))
|
||||||
|
for tag in opt.hashtags:
|
||||||
|
hashtags.update(_ExpandHashtag(tag))
|
||||||
|
if opt.hashtag_branch:
|
||||||
|
hashtags.add(branch.name)
|
||||||
|
|
||||||
destination = opt.dest_branch or branch.project.dest_branch
|
destination = opt.dest_branch or branch.project.dest_branch
|
||||||
|
|
||||||
# Make sure our local branch is not setup to track a different remote branch
|
# Make sure our local branch is not setup to track a different remote branch
|
||||||
@ -392,7 +442,9 @@ Gerrit Code Review: https://www.gerritcodereview.com/
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
branch.UploadForReview(people,
|
branch.UploadForReview(people,
|
||||||
|
dryrun=opt.dryrun,
|
||||||
auto_topic=opt.auto_topic,
|
auto_topic=opt.auto_topic,
|
||||||
|
hashtags=hashtags,
|
||||||
draft=opt.draft,
|
draft=opt.draft,
|
||||||
private=opt.private,
|
private=opt.private,
|
||||||
notify=None if opt.notify else 'NONE',
|
notify=None if opt.notify else 'NONE',
|
||||||
@ -418,18 +470,18 @@ Gerrit Code Review: https://www.gerritcodereview.com/
|
|||||||
else:
|
else:
|
||||||
fmt = '\n (%s)'
|
fmt = '\n (%s)'
|
||||||
print(('[FAILED] %-15s %-15s' + fmt) % (
|
print(('[FAILED] %-15s %-15s' + fmt) % (
|
||||||
branch.project.relpath + '/', \
|
branch.project.relpath + '/',
|
||||||
branch.name, \
|
branch.name,
|
||||||
str(branch.error)),
|
str(branch.error)),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
print()
|
print()
|
||||||
|
|
||||||
for branch in todo:
|
for branch in todo:
|
||||||
if branch.uploaded:
|
if branch.uploaded:
|
||||||
print('[OK ] %-15s %s' % (
|
print('[OK ] %-15s %s' % (
|
||||||
branch.project.relpath + '/',
|
branch.project.relpath + '/',
|
||||||
branch.name),
|
branch.name),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
|
|
||||||
if have_errors:
|
if have_errors:
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
@ -437,14 +489,14 @@ Gerrit Code Review: https://www.gerritcodereview.com/
|
|||||||
def _GetMergeBranch(self, project):
|
def _GetMergeBranch(self, project):
|
||||||
p = GitCommand(project,
|
p = GitCommand(project,
|
||||||
['rev-parse', '--abbrev-ref', 'HEAD'],
|
['rev-parse', '--abbrev-ref', 'HEAD'],
|
||||||
capture_stdout = True,
|
capture_stdout=True,
|
||||||
capture_stderr = True)
|
capture_stderr=True)
|
||||||
p.Wait()
|
p.Wait()
|
||||||
local_branch = p.stdout.strip()
|
local_branch = p.stdout.strip()
|
||||||
p = GitCommand(project,
|
p = GitCommand(project,
|
||||||
['config', '--get', 'branch.%s.merge' % local_branch],
|
['config', '--get', 'branch.%s.merge' % local_branch],
|
||||||
capture_stdout = True,
|
capture_stdout=True,
|
||||||
capture_stderr = True)
|
capture_stderr=True)
|
||||||
p.Wait()
|
p.Wait()
|
||||||
merge_branch = p.stdout.strip()
|
merge_branch = p.stdout.strip()
|
||||||
return merge_branch
|
return merge_branch
|
||||||
@ -478,8 +530,12 @@ Gerrit Code Review: https://www.gerritcodereview.com/
|
|||||||
pending.append((project, avail))
|
pending.append((project, avail))
|
||||||
|
|
||||||
if not pending:
|
if not pending:
|
||||||
print("no branches ready for upload", file=sys.stderr)
|
if branch is None:
|
||||||
return
|
print('repo: error: no branches ready for upload', file=sys.stderr)
|
||||||
|
else:
|
||||||
|
print('repo: error: no branches named "%s" ready for upload' %
|
||||||
|
(branch,), file=sys.stderr)
|
||||||
|
return 1
|
||||||
|
|
||||||
if not opt.bypass_hooks:
|
if not opt.bypass_hooks:
|
||||||
hook = RepoHook('pre-upload', self.manifest.repo_hooks_project,
|
hook = RepoHook('pre-upload', self.manifest.repo_hooks_project,
|
||||||
@ -488,12 +544,24 @@ Gerrit Code Review: https://www.gerritcodereview.com/
|
|||||||
abort_if_user_denies=True)
|
abort_if_user_denies=True)
|
||||||
pending_proj_names = [project.name for (project, available) in pending]
|
pending_proj_names = [project.name for (project, available) in pending]
|
||||||
pending_worktrees = [project.worktree for (project, available) in pending]
|
pending_worktrees = [project.worktree for (project, available) in pending]
|
||||||
|
passed = True
|
||||||
try:
|
try:
|
||||||
hook.Run(opt.allow_all_hooks, project_list=pending_proj_names,
|
hook.Run(opt.allow_all_hooks, project_list=pending_proj_names,
|
||||||
worktree_list=pending_worktrees)
|
worktree_list=pending_worktrees)
|
||||||
|
except SystemExit:
|
||||||
|
passed = False
|
||||||
|
if not opt.ignore_hooks:
|
||||||
|
raise
|
||||||
except HookError as e:
|
except HookError as e:
|
||||||
|
passed = False
|
||||||
print("ERROR: %s" % str(e), file=sys.stderr)
|
print("ERROR: %s" % str(e), file=sys.stderr)
|
||||||
return
|
|
||||||
|
if not passed:
|
||||||
|
if opt.ignore_hooks:
|
||||||
|
print('\nWARNING: pre-upload hooks failed, but uploading anyways.',
|
||||||
|
file=sys.stderr)
|
||||||
|
else:
|
||||||
|
return
|
||||||
|
|
||||||
if opt.reviewers:
|
if opt.reviewers:
|
||||||
reviewers = _SplitEmails(opt.reviewers)
|
reviewers = _SplitEmails(opt.reviewers)
|
||||||
|
@ -20,6 +20,7 @@ from command import Command, MirrorSafeCommand
|
|||||||
from git_command import git, RepoSourceVersion, user_agent
|
from git_command import git, RepoSourceVersion, user_agent
|
||||||
from git_refs import HEAD
|
from git_refs import HEAD
|
||||||
|
|
||||||
|
|
||||||
class Version(Command, MirrorSafeCommand):
|
class Version(Command, MirrorSafeCommand):
|
||||||
wrapper_version = None
|
wrapper_version = None
|
||||||
wrapper_path = None
|
wrapper_path = None
|
||||||
|
10
tests/fixtures/test.gitconfig
vendored
10
tests/fixtures/test.gitconfig
vendored
@ -1,3 +1,13 @@
|
|||||||
[section]
|
[section]
|
||||||
empty
|
empty
|
||||||
nonempty = true
|
nonempty = true
|
||||||
|
boolinvalid = oops
|
||||||
|
booltrue = true
|
||||||
|
boolfalse = false
|
||||||
|
intinvalid = oops
|
||||||
|
inthex = 0x10
|
||||||
|
inthexk = 0x10k
|
||||||
|
int = 10
|
||||||
|
intk = 10k
|
||||||
|
intm = 10m
|
||||||
|
intg = 10g
|
||||||
|
@ -21,7 +21,13 @@ from __future__ import print_function
|
|||||||
import re
|
import re
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
try:
|
||||||
|
from unittest import mock
|
||||||
|
except ImportError:
|
||||||
|
import mock
|
||||||
|
|
||||||
import git_command
|
import git_command
|
||||||
|
import wrapper
|
||||||
|
|
||||||
|
|
||||||
class GitCallUnitTest(unittest.TestCase):
|
class GitCallUnitTest(unittest.TestCase):
|
||||||
@ -76,3 +82,45 @@ class UserAgentUnitTest(unittest.TestCase):
|
|||||||
# the general form.
|
# the general form.
|
||||||
m = re.match(r'^git/[^ ]+ ([^ ]+) git-repo/[^ ]+', ua)
|
m = re.match(r'^git/[^ ]+ ([^ ]+) git-repo/[^ ]+', ua)
|
||||||
self.assertIsNotNone(m)
|
self.assertIsNotNone(m)
|
||||||
|
|
||||||
|
|
||||||
|
class GitRequireTests(unittest.TestCase):
|
||||||
|
"""Test the git_require helper."""
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
ver = wrapper.GitVersion(1, 2, 3, 4)
|
||||||
|
mock.patch.object(git_command.git, 'version_tuple', return_value=ver).start()
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
mock.patch.stopall()
|
||||||
|
|
||||||
|
def test_older_nonfatal(self):
|
||||||
|
"""Test non-fatal require calls with old versions."""
|
||||||
|
self.assertFalse(git_command.git_require((2,)))
|
||||||
|
self.assertFalse(git_command.git_require((1, 3)))
|
||||||
|
self.assertFalse(git_command.git_require((1, 2, 4)))
|
||||||
|
self.assertFalse(git_command.git_require((1, 2, 3, 5)))
|
||||||
|
|
||||||
|
def test_newer_nonfatal(self):
|
||||||
|
"""Test non-fatal require calls with newer versions."""
|
||||||
|
self.assertTrue(git_command.git_require((0,)))
|
||||||
|
self.assertTrue(git_command.git_require((1, 0)))
|
||||||
|
self.assertTrue(git_command.git_require((1, 2, 0)))
|
||||||
|
self.assertTrue(git_command.git_require((1, 2, 3, 0)))
|
||||||
|
|
||||||
|
def test_equal_nonfatal(self):
|
||||||
|
"""Test require calls with equal values."""
|
||||||
|
self.assertTrue(git_command.git_require((1, 2, 3, 4), fail=False))
|
||||||
|
self.assertTrue(git_command.git_require((1, 2, 3, 4), fail=True))
|
||||||
|
|
||||||
|
def test_older_fatal(self):
|
||||||
|
"""Test fatal require calls with old versions."""
|
||||||
|
with self.assertRaises(SystemExit) as e:
|
||||||
|
git_command.git_require((2,), fail=True)
|
||||||
|
self.assertNotEqual(0, e.code)
|
||||||
|
|
||||||
|
def test_older_fatal_msg(self):
|
||||||
|
"""Test fatal require calls with old versions and message."""
|
||||||
|
with self.assertRaises(SystemExit) as e:
|
||||||
|
git_command.git_require((2,), fail=True, msg='so sad')
|
||||||
|
self.assertNotEqual(0, e.code)
|
||||||
|
@ -23,14 +23,17 @@ import unittest
|
|||||||
|
|
||||||
import git_config
|
import git_config
|
||||||
|
|
||||||
|
|
||||||
def fixture(*paths):
|
def fixture(*paths):
|
||||||
"""Return a path relative to test/fixtures.
|
"""Return a path relative to test/fixtures.
|
||||||
"""
|
"""
|
||||||
return os.path.join(os.path.dirname(__file__), 'fixtures', *paths)
|
return os.path.join(os.path.dirname(__file__), 'fixtures', *paths)
|
||||||
|
|
||||||
|
|
||||||
class GitConfigUnitTest(unittest.TestCase):
|
class GitConfigUnitTest(unittest.TestCase):
|
||||||
"""Tests the GitConfig class.
|
"""Tests the GitConfig class.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
"""Create a GitConfig object using the test.gitconfig fixture.
|
"""Create a GitConfig object using the test.gitconfig fixture.
|
||||||
"""
|
"""
|
||||||
@ -68,5 +71,43 @@ class GitConfigUnitTest(unittest.TestCase):
|
|||||||
val = config.GetString('empty')
|
val = config.GetString('empty')
|
||||||
self.assertEqual(val, None)
|
self.assertEqual(val, None)
|
||||||
|
|
||||||
|
def test_GetBoolean_undefined(self):
|
||||||
|
"""Test GetBoolean on key that doesn't exist."""
|
||||||
|
self.assertIsNone(self.config.GetBoolean('section.missing'))
|
||||||
|
|
||||||
|
def test_GetBoolean_invalid(self):
|
||||||
|
"""Test GetBoolean on invalid boolean value."""
|
||||||
|
self.assertIsNone(self.config.GetBoolean('section.boolinvalid'))
|
||||||
|
|
||||||
|
def test_GetBoolean_true(self):
|
||||||
|
"""Test GetBoolean on valid true boolean."""
|
||||||
|
self.assertTrue(self.config.GetBoolean('section.booltrue'))
|
||||||
|
|
||||||
|
def test_GetBoolean_false(self):
|
||||||
|
"""Test GetBoolean on valid false boolean."""
|
||||||
|
self.assertFalse(self.config.GetBoolean('section.boolfalse'))
|
||||||
|
|
||||||
|
def test_GetInt_undefined(self):
|
||||||
|
"""Test GetInt on key that doesn't exist."""
|
||||||
|
self.assertIsNone(self.config.GetInt('section.missing'))
|
||||||
|
|
||||||
|
def test_GetInt_invalid(self):
|
||||||
|
"""Test GetInt on invalid integer value."""
|
||||||
|
self.assertIsNone(self.config.GetBoolean('section.intinvalid'))
|
||||||
|
|
||||||
|
def test_GetInt_valid(self):
|
||||||
|
"""Test GetInt on valid integers."""
|
||||||
|
TESTS = (
|
||||||
|
('inthex', 16),
|
||||||
|
('inthexk', 16384),
|
||||||
|
('int', 10),
|
||||||
|
('intk', 10240),
|
||||||
|
('intm', 10485760),
|
||||||
|
('intg', 10737418240),
|
||||||
|
)
|
||||||
|
for key, value in TESTS:
|
||||||
|
self.assertEqual(value, self.config.GetInt('section.%s' % (key,)))
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
|
import os
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
import error
|
import error
|
||||||
@ -78,6 +79,11 @@ class ManifestValidateFilePaths(unittest.TestCase):
|
|||||||
# Block Unicode characters that get normalized out by filesystems.
|
# Block Unicode characters that get normalized out by filesystems.
|
||||||
u'foo\u200Cbar',
|
u'foo\u200Cbar',
|
||||||
)
|
)
|
||||||
|
# Make sure platforms that use path separators (e.g. Windows) are also
|
||||||
|
# rejected properly.
|
||||||
|
if os.path.sep != '/':
|
||||||
|
PATHS += tuple(x.replace('/', os.path.sep) for x in PATHS)
|
||||||
|
|
||||||
for path in PATHS:
|
for path in PATHS:
|
||||||
self.assertRaises(
|
self.assertRaises(
|
||||||
error.ManifestInvalidPathError, self.check_both, path, 'a')
|
error.ManifestInvalidPathError, self.check_both, path, 'a')
|
||||||
|
@ -27,6 +27,7 @@ import unittest
|
|||||||
|
|
||||||
import error
|
import error
|
||||||
import git_config
|
import git_config
|
||||||
|
import platform_utils
|
||||||
import project
|
import project
|
||||||
|
|
||||||
|
|
||||||
@ -40,7 +41,7 @@ def TempGitTree():
|
|||||||
subprocess.check_call(['git', 'init'], cwd=tempdir)
|
subprocess.check_call(['git', 'init'], cwd=tempdir)
|
||||||
yield tempdir
|
yield tempdir
|
||||||
finally:
|
finally:
|
||||||
shutil.rmtree(tempdir)
|
platform_utils.rmtree(tempdir)
|
||||||
|
|
||||||
|
|
||||||
class RepoHookShebang(unittest.TestCase):
|
class RepoHookShebang(unittest.TestCase):
|
||||||
@ -163,7 +164,7 @@ class CopyLinkTestCase(unittest.TestCase):
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def touch(path):
|
def touch(path):
|
||||||
with open(path, 'w') as f:
|
with open(path, 'w'):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def assertExists(self, path, msg=None):
|
def assertExists(self, path, msg=None):
|
||||||
@ -243,20 +244,22 @@ class CopyFile(CopyLinkTestCase):
|
|||||||
src = os.path.join(self.worktree, 'foo.txt')
|
src = os.path.join(self.worktree, 'foo.txt')
|
||||||
sym = os.path.join(self.worktree, 'sym')
|
sym = os.path.join(self.worktree, 'sym')
|
||||||
self.touch(src)
|
self.touch(src)
|
||||||
os.symlink('foo.txt', sym)
|
platform_utils.symlink('foo.txt', sym)
|
||||||
self.assertExists(sym)
|
self.assertExists(sym)
|
||||||
cf = self.CopyFile('sym', 'foo')
|
cf = self.CopyFile('sym', 'foo')
|
||||||
self.assertRaises(error.ManifestInvalidPathError, cf._Copy)
|
self.assertRaises(error.ManifestInvalidPathError, cf._Copy)
|
||||||
|
|
||||||
def test_src_block_symlink_traversal(self):
|
def test_src_block_symlink_traversal(self):
|
||||||
"""Do not allow reading through a symlink dir."""
|
"""Do not allow reading through a symlink dir."""
|
||||||
src = os.path.join(self.worktree, 'bar', 'passwd')
|
realfile = os.path.join(self.tempdir, 'file.txt')
|
||||||
os.symlink('/etc', os.path.join(self.worktree, 'bar'))
|
self.touch(realfile)
|
||||||
|
src = os.path.join(self.worktree, 'bar', 'file.txt')
|
||||||
|
platform_utils.symlink(self.tempdir, os.path.join(self.worktree, 'bar'))
|
||||||
self.assertExists(src)
|
self.assertExists(src)
|
||||||
cf = self.CopyFile('bar/foo.txt', 'foo')
|
cf = self.CopyFile('bar/file.txt', 'foo')
|
||||||
self.assertRaises(error.ManifestInvalidPathError, cf._Copy)
|
self.assertRaises(error.ManifestInvalidPathError, cf._Copy)
|
||||||
|
|
||||||
def test_src_block_dir(self):
|
def test_src_block_copy_from_dir(self):
|
||||||
"""Do not allow copying from a directory."""
|
"""Do not allow copying from a directory."""
|
||||||
src = os.path.join(self.worktree, 'dir')
|
src = os.path.join(self.worktree, 'dir')
|
||||||
os.makedirs(src)
|
os.makedirs(src)
|
||||||
@ -267,7 +270,7 @@ class CopyFile(CopyLinkTestCase):
|
|||||||
"""Do not allow writing to a symlink."""
|
"""Do not allow writing to a symlink."""
|
||||||
src = os.path.join(self.worktree, 'foo.txt')
|
src = os.path.join(self.worktree, 'foo.txt')
|
||||||
self.touch(src)
|
self.touch(src)
|
||||||
os.symlink('dest', os.path.join(self.topdir, 'sym'))
|
platform_utils.symlink('dest', os.path.join(self.topdir, 'sym'))
|
||||||
cf = self.CopyFile('foo.txt', 'sym')
|
cf = self.CopyFile('foo.txt', 'sym')
|
||||||
self.assertRaises(error.ManifestInvalidPathError, cf._Copy)
|
self.assertRaises(error.ManifestInvalidPathError, cf._Copy)
|
||||||
|
|
||||||
@ -275,11 +278,12 @@ class CopyFile(CopyLinkTestCase):
|
|||||||
"""Do not allow writing through a symlink dir."""
|
"""Do not allow writing through a symlink dir."""
|
||||||
src = os.path.join(self.worktree, 'foo.txt')
|
src = os.path.join(self.worktree, 'foo.txt')
|
||||||
self.touch(src)
|
self.touch(src)
|
||||||
os.symlink('/tmp', os.path.join(self.topdir, 'sym'))
|
platform_utils.symlink(tempfile.gettempdir(),
|
||||||
|
os.path.join(self.topdir, 'sym'))
|
||||||
cf = self.CopyFile('foo.txt', 'sym/foo.txt')
|
cf = self.CopyFile('foo.txt', 'sym/foo.txt')
|
||||||
self.assertRaises(error.ManifestInvalidPathError, cf._Copy)
|
self.assertRaises(error.ManifestInvalidPathError, cf._Copy)
|
||||||
|
|
||||||
def test_src_block_dir(self):
|
def test_src_block_copy_to_dir(self):
|
||||||
"""Do not allow copying to a directory."""
|
"""Do not allow copying to a directory."""
|
||||||
src = os.path.join(self.worktree, 'foo.txt')
|
src = os.path.join(self.worktree, 'foo.txt')
|
||||||
self.touch(src)
|
self.touch(src)
|
||||||
@ -303,7 +307,7 @@ class LinkFile(CopyLinkTestCase):
|
|||||||
dest = os.path.join(self.topdir, 'foo')
|
dest = os.path.join(self.topdir, 'foo')
|
||||||
self.assertExists(dest)
|
self.assertExists(dest)
|
||||||
self.assertTrue(os.path.islink(dest))
|
self.assertTrue(os.path.islink(dest))
|
||||||
self.assertEqual('git-project/foo.txt', os.readlink(dest))
|
self.assertEqual(os.path.join('git-project', 'foo.txt'), os.readlink(dest))
|
||||||
|
|
||||||
def test_src_subdir(self):
|
def test_src_subdir(self):
|
||||||
"""Link to a file in a subdir of a project."""
|
"""Link to a file in a subdir of a project."""
|
||||||
@ -320,7 +324,7 @@ class LinkFile(CopyLinkTestCase):
|
|||||||
lf = self.LinkFile('.', 'foo/bar')
|
lf = self.LinkFile('.', 'foo/bar')
|
||||||
lf._Link()
|
lf._Link()
|
||||||
self.assertExists(dest)
|
self.assertExists(dest)
|
||||||
self.assertEqual('../git-project', os.readlink(dest))
|
self.assertEqual(os.path.join('..', 'git-project'), os.readlink(dest))
|
||||||
|
|
||||||
def test_dest_subdir(self):
|
def test_dest_subdir(self):
|
||||||
"""Link a file to a subdir of a checkout."""
|
"""Link a file to a subdir of a checkout."""
|
||||||
@ -354,10 +358,10 @@ class LinkFile(CopyLinkTestCase):
|
|||||||
self.touch(src)
|
self.touch(src)
|
||||||
lf = self.LinkFile('foo.txt', 'sym')
|
lf = self.LinkFile('foo.txt', 'sym')
|
||||||
lf._Link()
|
lf._Link()
|
||||||
self.assertEqual('git-project/foo.txt', os.readlink(dest))
|
self.assertEqual(os.path.join('git-project', 'foo.txt'), os.readlink(dest))
|
||||||
|
|
||||||
# Point the symlink somewhere else.
|
# Point the symlink somewhere else.
|
||||||
os.unlink(dest)
|
os.unlink(dest)
|
||||||
os.symlink('/', dest)
|
platform_utils.symlink(self.tempdir, dest)
|
||||||
lf._Link()
|
lf._Link()
|
||||||
self.assertEqual('git-project/foo.txt', os.readlink(dest))
|
self.assertEqual(os.path.join('git-project', 'foo.txt'), os.readlink(dest))
|
||||||
|
@ -19,24 +19,67 @@
|
|||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
import re
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
from pyversion import is_python3
|
||||||
import wrapper
|
import wrapper
|
||||||
|
|
||||||
|
|
||||||
|
if is_python3():
|
||||||
|
from unittest import mock
|
||||||
|
from io import StringIO
|
||||||
|
else:
|
||||||
|
import mock
|
||||||
|
from StringIO import StringIO
|
||||||
|
|
||||||
|
|
||||||
def fixture(*paths):
|
def fixture(*paths):
|
||||||
"""Return a path relative to tests/fixtures.
|
"""Return a path relative to tests/fixtures.
|
||||||
"""
|
"""
|
||||||
return os.path.join(os.path.dirname(__file__), 'fixtures', *paths)
|
return os.path.join(os.path.dirname(__file__), 'fixtures', *paths)
|
||||||
|
|
||||||
class RepoWrapperUnitTest(unittest.TestCase):
|
|
||||||
"""Tests helper functions in the repo wrapper
|
class RepoWrapperTestCase(unittest.TestCase):
|
||||||
"""
|
"""TestCase for the wrapper module."""
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
"""Load the wrapper module every time
|
"""Load the wrapper module every time."""
|
||||||
"""
|
|
||||||
wrapper._wrapper_module = None
|
wrapper._wrapper_module = None
|
||||||
self.wrapper = wrapper.Wrapper()
|
self.wrapper = wrapper.Wrapper()
|
||||||
|
|
||||||
|
if not is_python3():
|
||||||
|
self.assertRegex = self.assertRegexpMatches
|
||||||
|
|
||||||
|
|
||||||
|
class RepoWrapperUnitTest(RepoWrapperTestCase):
|
||||||
|
"""Tests helper functions in the repo wrapper
|
||||||
|
"""
|
||||||
|
|
||||||
|
def test_version(self):
|
||||||
|
"""Make sure _Version works."""
|
||||||
|
with self.assertRaises(SystemExit) as e:
|
||||||
|
with mock.patch('sys.stdout', new_callable=StringIO) as stdout:
|
||||||
|
with mock.patch('sys.stderr', new_callable=StringIO) as stderr:
|
||||||
|
self.wrapper._Version()
|
||||||
|
self.assertEqual(0, e.exception.code)
|
||||||
|
self.assertEqual('', stderr.getvalue())
|
||||||
|
self.assertIn('repo launcher version', stdout.getvalue())
|
||||||
|
|
||||||
|
def test_init_parser(self):
|
||||||
|
"""Make sure 'init' GetParser works."""
|
||||||
|
parser = self.wrapper.GetParser(gitc_init=False)
|
||||||
|
opts, args = parser.parse_args([])
|
||||||
|
self.assertEqual([], args)
|
||||||
|
self.assertIsNone(opts.manifest_url)
|
||||||
|
|
||||||
|
def test_gitc_init_parser(self):
|
||||||
|
"""Make sure 'gitc-init' GetParser works."""
|
||||||
|
parser = self.wrapper.GetParser(gitc_init=True)
|
||||||
|
opts, args = parser.parse_args([])
|
||||||
|
self.assertEqual([], args)
|
||||||
|
self.assertIsNone(opts.manifest_file)
|
||||||
|
|
||||||
def test_get_gitc_manifest_dir_no_gitc(self):
|
def test_get_gitc_manifest_dir_no_gitc(self):
|
||||||
"""
|
"""
|
||||||
Test reading a missing gitc config file
|
Test reading a missing gitc config file
|
||||||
@ -72,9 +115,43 @@ class RepoWrapperUnitTest(unittest.TestCase):
|
|||||||
self.assertEqual(self.wrapper.gitc_parse_clientdir('/gitc/manifest-rw/test/extra'), 'test')
|
self.assertEqual(self.wrapper.gitc_parse_clientdir('/gitc/manifest-rw/test/extra'), 'test')
|
||||||
self.assertEqual(self.wrapper.gitc_parse_clientdir('/test/usr/local/google/gitc/test'), 'test')
|
self.assertEqual(self.wrapper.gitc_parse_clientdir('/test/usr/local/google/gitc/test'), 'test')
|
||||||
self.assertEqual(self.wrapper.gitc_parse_clientdir('/test/usr/local/google/gitc/test/'), 'test')
|
self.assertEqual(self.wrapper.gitc_parse_clientdir('/test/usr/local/google/gitc/test/'), 'test')
|
||||||
self.assertEqual(self.wrapper.gitc_parse_clientdir('/test/usr/local/google/gitc/test/extra'), 'test')
|
self.assertEqual(self.wrapper.gitc_parse_clientdir('/test/usr/local/google/gitc/test/extra'),
|
||||||
|
'test')
|
||||||
self.assertEqual(self.wrapper.gitc_parse_clientdir('/gitc/manifest-rw/'), None)
|
self.assertEqual(self.wrapper.gitc_parse_clientdir('/gitc/manifest-rw/'), None)
|
||||||
self.assertEqual(self.wrapper.gitc_parse_clientdir('/test/usr/local/google/gitc/'), None)
|
self.assertEqual(self.wrapper.gitc_parse_clientdir('/test/usr/local/google/gitc/'), None)
|
||||||
|
|
||||||
|
|
||||||
|
class SetGitTrace2ParentSid(RepoWrapperTestCase):
|
||||||
|
"""Check SetGitTrace2ParentSid behavior."""
|
||||||
|
|
||||||
|
KEY = 'GIT_TRACE2_PARENT_SID'
|
||||||
|
VALID_FORMAT = re.compile(r'^repo-[0-9]{8}T[0-9]{6}Z-P[0-9a-f]{8}$')
|
||||||
|
|
||||||
|
def test_first_set(self):
|
||||||
|
"""Test env var not yet set."""
|
||||||
|
env = {}
|
||||||
|
self.wrapper.SetGitTrace2ParentSid(env)
|
||||||
|
self.assertIn(self.KEY, env)
|
||||||
|
value = env[self.KEY]
|
||||||
|
self.assertRegex(value, self.VALID_FORMAT)
|
||||||
|
|
||||||
|
def test_append(self):
|
||||||
|
"""Test env var is appended."""
|
||||||
|
env = {self.KEY: 'pfx'}
|
||||||
|
self.wrapper.SetGitTrace2ParentSid(env)
|
||||||
|
self.assertIn(self.KEY, env)
|
||||||
|
value = env[self.KEY]
|
||||||
|
self.assertTrue(value.startswith('pfx/'))
|
||||||
|
self.assertRegex(value[4:], self.VALID_FORMAT)
|
||||||
|
|
||||||
|
def test_global_context(self):
|
||||||
|
"""Check os.environ gets updated by default."""
|
||||||
|
os.environ.pop(self.KEY, None)
|
||||||
|
self.wrapper.SetGitTrace2ParentSid()
|
||||||
|
self.assertIn(self.KEY, os.environ)
|
||||||
|
value = os.environ[self.KEY]
|
||||||
|
self.assertRegex(value, self.VALID_FORMAT)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
18
tox.ini
18
tox.ini
@ -17,6 +17,22 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist = py27, py36, py37, py38
|
envlist = py27, py36, py37, py38
|
||||||
|
|
||||||
|
[gh-actions]
|
||||||
|
python =
|
||||||
|
2.7: py27
|
||||||
|
3.6: py36
|
||||||
|
3.7: py37
|
||||||
|
3.8: py38
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps = pytest
|
deps = pytest
|
||||||
commands = {toxinidir}/run_tests
|
commands = {envpython} run_tests
|
||||||
|
setenv =
|
||||||
|
GIT_AUTHOR_NAME = Repo test author
|
||||||
|
GIT_COMMITTER_NAME = Repo test committer
|
||||||
|
EMAIL = repo@gerrit.nodomain
|
||||||
|
|
||||||
|
[testenv:py27]
|
||||||
|
deps =
|
||||||
|
mock
|
||||||
|
pytest
|
||||||
|
@ -27,7 +27,10 @@ import os
|
|||||||
def WrapperPath():
|
def WrapperPath():
|
||||||
return os.path.join(os.path.dirname(__file__), 'repo')
|
return os.path.join(os.path.dirname(__file__), 'repo')
|
||||||
|
|
||||||
|
|
||||||
_wrapper_module = None
|
_wrapper_module = None
|
||||||
|
|
||||||
|
|
||||||
def Wrapper():
|
def Wrapper():
|
||||||
global _wrapper_module
|
global _wrapper_module
|
||||||
if not _wrapper_module:
|
if not _wrapper_module:
|
||||||
|
Reference in New Issue
Block a user