summaryrefslogtreecommitdiffstats
path: root/scripts/qt/branch_qt.py
blob: e27c689ab53a62cf7e39deeaf1720c2491714ceb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
#!/usr/bin/env python3

# Copyright (C) 2021 The Qt Company Ltd.
# Contact: https://www.qt.io/licensing/
#
# You may use this file under the terms of the 3-clause BSD license.
# See the file LICENSE in qt/qtrepotools for details.
#

import argparse
import json
import logging
import os
import re
import requests
import subprocess
import sys

from typing import List, Optional, Iterable, Any
from configparser import ConfigParser
from enum import Enum
from textwrap import dedent
from pathlib import Path

import git  # type: ignore


Mode = Enum("Mode", "branch sync merge bump")

qt5_extra_repositories = [
    "qt/qtcoap",
    "qt/qtknx",
    "qt/qtmqtt",
    "qt/qtopcua",
    "qt/qtdeviceutilities",
]

qt6_extra_repositories = [
    "qt/qtdeviceutilities",
    "yocto/meta-boot2qt",
    "yocto/meta-qt6",
    "qt/qtinterfaceframework",
    "qt/qtapplicationmanager",
    "qt/tqtc-qmlcompilerplus",
]


skipped_submodules = ("qtqa", "qtrepotools")

GERRIT_HOST = "codereview.qt-project.org"
GERRIT_REST_URL = "https://" + GERRIT_HOST


log_level = logging.INFO
log_format = "%(asctime)s %(filename)s:%(lineno)d %(levelname)s: %(message)s"
logging.basicConfig(format=log_format, level=log_level)
log = logging.getLogger("branch_qt")
log.setLevel(log_level)
try:
    import coloredlogs  # type: ignore

    coloredlogs.install(level=log_level, logger=log, fmt=log_format)
except ImportError:
    pass


example_config_file = dedent(
    """\
    [gerrit]
    username = my_username
    password = some_password"""
)


class Credentials:
    """ Reads ~/.config/branch_qt.ini for Gerrit username and password. """

    def __init__(self) -> None:
        config_path = os.path.expanduser("~/.config/branch_qt.ini")
        self.config = ConfigParser()
        if not self.config.read(config_path):
            log.warning(
                f"File '{config_path}' does not exist or could not be parsed. "
                f"Example file: {example_config_file}"
            )
            exit(1)

    @property
    def username(self) -> str:
        return self.config["gerrit"]["username"]

    @property
    def password(self) -> str:
        return self.config["gerrit"]["password"]


def is_major_minor(version: str) -> bool:
    """ Check if a version string is of the format x.y """
    parts = version.split(".")
    return len(parts) == 2 and all(x.isdigit() for x in parts)


def is_major_minor_patch(version: str) -> bool:
    """ Check if a version string is of the format x.y.z """
    parts = version.split(".")
    return len(parts) == 3 and all(x.isdigit() for x in parts)


def get_repo_name(repo: git.Repo) -> str:
    return os.path.basename(repo.working_dir)


def versionCompare(version1: str, version2: str) -> int:
    def normalize(v) -> List[int]:
        return [int(x) for x in re.sub(r"(\.0+)*$", "", v).split(".")]

    def cmp(a, b) -> int:
        return (a > b) - (a < b)

    return cmp(normalize(version1), normalize(version2))


class QtBranching:
    def __init__(
        self,
        mode: Mode,
        fromBranch: str,
        fromVersion: str,
        toBranch: str,
        pretend: bool,
        skip_hooks: bool,
        direct: bool,
        reviewers: Optional[List[str]],
        repos: Optional[List[str]],
    ) -> None:
        self.mode = mode
        self.fromBranch = fromBranch
        self.fromVersion = fromVersion
        self.toBranch = toBranch
        self.pretend = pretend
        self.skip_hooks = skip_hooks
        self.direct = direct
        self.reviewers = reviewers
        self.repos = repos

        # Additional repositories that are not part of qt5.git:
        # use qt5_extra_repositories For Qt 5.x.y, otherwise use qt6 one(also for dev)
        if versionCompare(self.toBranch, "6.0") >= 0:
            self.extra_repositories = qt6_extra_repositories
        else:
            self.extra_repositories = qt5_extra_repositories

        log.info(f"{mode.name} from '{fromVersion} (on {fromBranch})' to '{toBranch}'")

    def subprocess_or_pretend(self, *args: Any, **kwargs: Any) -> None:
        if self.pretend:
            log.info(f"PRETEND: {args}, {kwargs}")
        else:
            subprocess.run(*args, **kwargs)

    def run(self) -> None:
        self.sanity_check()
        self.init_repository()

        if self.repos:
            # a list of custom repositories to process, instead of the default (everything)
            for repo_path in self.repos:
                self.process_repository(repo_path)
        else:
            self.process_qt5_repositories()
            for repo_path in self.extra_repositories:
                self.process_repository(repo_path)

        if self.mode == Mode["branch"]:
            log.info("Adjusting submodule branches in .gitmodules")
            self.subprocess_or_pretend(
                ["git", "commit", "-m", "Adjust submodule branches", ".gitmodules"]
            )
            # update the new and staging branch
            self.subprocess_or_pretend(
                [
                    "git",
                    "push",
                    "gerrit",
                    f"HEAD:refs/heads/{self.toBranch}",
                    f"HEAD:refs/staging/{self.toBranch}",
                ]
            )

    def process_qt5_repositories(self) -> None:
        repo = git.Repo(".")
        for submodule in repo.submodules:
            if submodule.name in skipped_submodules:
                continue
            # submodules that are ignored or in weird state need to be skipped
            if submodule.module_exists() and self.clean_submodule(submodule, self.fromBranch):
                repo = git.Repo(submodule.path)
                self.handle_module(repo)
            else:
                log.info(f"SKIPPING {submodule.name}")

    def process_repository(self, repo_path: str) -> None:
        log.info(f"Extra repository: '{repo_path}'")
        assert "/" in repo_path, f"Extra repository must be specified with namespace {repo_path}"
        repo = self.clone_extra_repo(path=repo_path, branch=self.fromBranch)
        if repo:
            self.handle_module(repo)
        else:
            log.warning(f"Could not handle '{repo_path}'.")

    def handle_module(self, repo: git.Repo) -> None:
        oldpath = os.path.abspath(os.curdir)
        try:
            os.chdir(repo.working_dir)
            if self.mode == Mode["merge"]:
                self.merge_repo(repo)
            elif self.mode == Mode["branch"]:
                self.branch_repo(repo)
            elif self.mode == Mode["sync"]:
                self.sync_repo(repo)
            elif self.mode == Mode["bump"]:
                self.version_bump_repo(repo)
            else:
                assert False, "This mode is not yet implemented"
        except FileNotFoundError:
            log.warning(f"{repo.path} does not exist, SKIPPING")
        finally:
            os.chdir(oldpath)

    def sanity_check(self) -> None:
        if self.mode == Mode["bump"]:
            assert self.fromVersion, "'--version' not set!"
            assert is_major_minor_patch(
                self.toBranch
            ), "Bumping must happen to a new minor version!"
        elif self.mode == Mode["branch"]:
            if self.fromBranch == "dev":
                assert is_major_minor(
                    self.toBranch
                ), f"Branching from dev must be to a minor version (a.b no {self.toBranch})"
            elif is_major_minor_patch(self.fromBranch):
                assert False, f"Cannot branch from release branch ({self.fromBranch})"
            elif is_major_minor(self.fromBranch):
                assert is_major_minor_patch(self.toBranch) and self.toBranch.startswith(
                    self.fromBranch + "."
                ), (
                    f"Branching from x.y ({self.fromBranch}) should result "
                    f"in x.y.z (not {self.toBranch})"
                )

    def init_repository(self) -> None:
        log.info("Fetching super module...")
        repo = git.Repo(".")
        self.checkout_and_pull_branch(repo, self.fromBranch)

        log.info("Running init-repository...")
        # This makes sure we have all submodules, and only the ones we want.
        # It also updates the submodules, so we are on the right branches.
        # Note: don't use --branch here, as it breaks idempotence.
        self.subprocess_or_pretend("./init-repository -f --module-subset=all,-ignore".split())

    def clean_submodule(self, submodule: git.Submodule, branch: str) -> bool:
        log.info(f"Cleaning repo: {submodule.path}")
        repo = git.Repo(submodule.path)
        try:
            self.checkout_and_pull_branch(repo, branch)
        except Exception:
            return False
        return True

    @staticmethod
    def checkout_and_pull_branch(repo: git.Repo, branch: str) -> None:
        """Make sure the repository is on the given branch and up to date."""
        remote = repo.remotes["gerrit"]
        remote.fetch()
        remote_branch = remote.refs[branch]
        # Now move to 'branch': either it already exists and we just check it out
        # or we run git checkout -b
        if branch in repo.references:
            repo.head.reference = repo.branches[branch]
            repo.head.ref.set_commit(remote_branch)
        else:
            assert branch in remote.refs, f"Branch {branch} does not exist for {repo.working_dir}"
            repo.create_head(branch, remote_branch).set_tracking_branch(remote_branch).checkout()
        repo.head.ref.checkout(force=True)

    def clone_extra_repo(self, path: str, branch: str) -> git.Repo:
        # checkout target branch
        try:
            name = path.split("/")[-1]
            repo = git.Repo(name)
            self.checkout_and_pull_branch(repo, branch)
        except IndexError:
            log.error(f"Branch {branch} not found in {path}.")
            return None
        except git.exc.NoSuchPathError:
            log.info(f"Cloning '{path}' into '{name}'")
            try:
                remote_url = f"ssh://{GERRIT_HOST}/{path}"
                repo = git.Repo.clone_from(remote_url, to_path=name, branch=branch)
                git.remote.Remote.add(repo, "gerrit", remote_url)
            except git.exc.GitCommandError:
                log.warning(f"SKIPPING {path} (does branch '{branch}' exist?)")
                return None
        assert repo.head.commit == repo.commit(
            branch
        ), f"Repository {repo} should be on branch '{branch}'"
        return repo

    def branch_repo(self, repo: git.Repo) -> None:
        repo_name = get_repo_name(repo)
        if repo_name in skipped_submodules:
            log.info(f"Skipping {repo_name} (not branched)")
            return

        log.info(
            f"Module: {repo_name} ({repo.working_dir}) - creating branch "
            f"'{self.toBranch}' from '{self.fromBranch}'"
        )
        if not self.pretend:
            repo.remotes["gerrit"].fetch()
        self.subprocess_or_pretend(
            f"git push -q gerrit gerrit/{self.fromBranch}:refs/heads/{self.toBranch}".split()
        )

        # We do not want to add the extra repos in .gitmodules
        if repo_name not in (extra_repo.split("/")[-1] for extra_repo in self.extra_repositories):
            self.subprocess_or_pretend(
                f"git config -f ../.gitmodules submodule.{repo_name}.branch "
                f"{self.toBranch}".split()
            )

    def merge_repo(self, repo: git.Repo) -> None:
        repo_name = get_repo_name(repo)
        log.info(f"Merge: {repo_name} ({self.fromBranch} -> {self.toBranch})")

        self.checkout_and_pull_branch(repo, self.toBranch)
        try:
            subprocess.run(
                f"git merge --ff-only --quiet gerrit/{self.fromBranch}".split(),
                check=True,
                stderr=subprocess.PIPE,
            )
            self.push(repo_name, self.toBranch)
        except subprocess.CalledProcessError:
            # The merge was not fast forward, try again
            try:
                log.info(f"  Attempting non ff merge for {repo_name}")
                subprocess.run(
                    [
                        "git",
                        "merge",
                        f"gerrit/{self.fromBranch}",
                        "--quiet",
                        "-m",
                        f"Merge {self.fromBranch} into {self.toBranch}",
                    ],
                    check=True,
                )
                self.push(repo_name, self.toBranch)
            except subprocess.CalledProcessError:
                log.warning(f"  Merge had conflicts. {repo_name} needs to be merged manually!")

    def sync_repo(self, repo: git.Repo) -> None:
        repo_name = get_repo_name(repo)
        log.info(f"Sync: {repo_name} ({self.fromBranch} -> {self.toBranch})")
        self.checkout_and_pull_branch(repo, self.toBranch)
        try:
            subprocess.run(
                f"git merge --ff-only --quiet gerrit/{self.fromBranch}".split(),
                check=True,
                stderr=subprocess.PIPE,
            )
            self.push(repo_name, self.toBranch)
        except Exception:
            log.exception(f"Could not sync repository: {repo_name}")

    def version_bump(self, file: str, pattern: str, repo: str) -> bool:
        with open(file, mode="r", encoding="utf-8") as f:
            content = f.read()

        match = re.search(pattern, content, flags=re.MULTILINE)
        if match is not None:
            if match.group(1) != self.fromVersion:
                log.warning(
                    f"--version ({self.fromVersion}) differs the one "
                    f"({match.group(1)}) parsed from {file}, SKIPPING"
                )
                return False
            log.info(f"bump {repo}:{file} from {self.fromVersion} to {self.toBranch}")
            i, j = match.span(1)
            with open(file, mode="w", encoding="utf-8") as f:
                f.write(content[:i] + self.toBranch + content[j:])
            return True

        log.warning(f"could not read version in {repo}, {file}, SKIPPING")
        return False

    def version_bump_repo(self, repo: git.Repo) -> None:
        repo_name = get_repo_name(repo)
        bumpers = {
            ".qmake.conf": r"^MODULE_VERSION *= *([0-9\.]+)\b.*",
            ".cmake.conf": r'^^set\(QT_REPO_MODULE_VERSION "([0-9.]+)"\)$',
            "conanfile.py": r'^ +version = "([0-9.]+)"$',
        }
        if repo_name == "qtbase":
            cmake = r'set\(QT_REPO_MODULE_VERSION "([0-9.]+)"\)'
            bumpers["util/cmake/pro2cmake.py"] = cmake
            bumpers.update(
                (f"{d}/.cmake.conf", cmake)
                for d in (
                    "src/plugins/sqldrivers",
                    "tests/auto/cmake/test_static_resources",
                    "tests/auto/cmake/test_generating_cpp_exports",
                    "tests/auto/cmake/mockplugins",
                )
            )
        elif repo_name == "qtnetworkauth":
            conanfile = "qtnetworkauth/([0-9.]+)"
            bumpers.update((str(p), conanfile) for p in Path("examples/").rglob("conanfile.txt"))

        bumped_files = []  # type: List[str]
        for file, pattern in bumpers.items():
            try:
                if self.version_bump(file, pattern, repo_name):
                    bumped_files.append(file)
            except FileNotFoundError:
                log.info(f"{repo_name}, {file} does not exist, SKIPPING")

        if repo_name == "qtbase":
            bumped_files.extend(self.bump_qtbase_datastream())

        repo.git.add(bumped_files)
        if not repo.is_dirty():
            log.warning(f"nothing to do for {repo_name}, is the version bump already done?")
            return
        repo.index.commit(f"Bump version to {self.toBranch}", skip_hooks=self.skip_hooks)
        self.push(repo_name, self.fromBranch)

    def push(self, project: str, branch: str) -> None:
        # In case user wants to use direct push
        if self.direct:
            # TODO: make this work for projects that don't have 'qt' as namespace
            query = {
                "q": f"project:qt/{project} branch:{branch} "
                "(status:staging OR status:staged OR status:integrating)"
            }
            response = requests.get(f"{GERRIT_REST_URL}/changes/", params=query)
            response.raise_for_status()
            assert response.text.startswith(")]}")
            query_result = json.loads(response.text[4:])
            if query_result:
                log.warning(
                    f"{project}, {branch} is busy (staged or integrating changes), SKIPPING!"
                )
                return
            self.subprocess_or_pretend(
                [
                    "git",
                    "push",
                    "gerrit",
                    f"HEAD:refs/heads/{branch}",
                    f"HEAD:refs/staging/{branch}",
                ]
            )
        else:  # Do formal codereview instead
            reviewerStr = f"%r={',r='.join(self.reviewers)}" if self.reviewers else ""
            self.subprocess_or_pretend(
                ["git", "push", "gerrit", f"HEAD:refs/for/{branch}{reviewerStr}"]
            )

    def bump_qtbase_datastream(self) -> Iterable[str]:
        """Update qdatastream.{h,cpp}'s Version enum.

        Only needed for major and minor version changes. Each minor
        version gets an entry in the enum, usually simply set to some
        earlier version, but set to a fresh number whenever there are
        material changes to the API. We need to add a new member to
        the enum, equal to the preceding member (but best expressed as
        what that one is equal to, when it's not a fresh number),
        adjust the default value to be the new member and document the
        new member.

        The updates rely on matching regexes in the files; some care
        is taken to be robust agsint updates to the file layout, but
        the code assumes no-one messes with it too badly.

        Returns a tuple of the files changed, that the caller should
        take into account; if no change is needed, this tuple is
        empty."""
        tomajor, tominor = (int(s) for s in self.toBranch.split(".")[:2])
        fromajor, frominor = (int(s) for s in self.fromVersion.split(".")[:2])
        if tomajor == fromajor and tominor == frominor:
            return ()
        stem = "src/corelib/serialization/qdatastream"
        log.info(f"Adjusting {stem}.[h/cpp]")
        datastream_h, datastream_cpp = f"{stem}.h", f"{stem}.cpp"
        tover, fromver = f"Qt_{tomajor}_{tominor}", f"Qt_{fromajor}_{frominor}"

        # datastream.h
        with open(datastream_h, mode="r", encoding="utf-8") as fd:
            datastream_h_content = fd.read()
        match = re.search(
            f"^ +{fromver} = (Qt_[0-9_]+),", datastream_h_content, flags=re.MULTILINE
        )
        if match is None:
            match = re.search(f"^ +{fromver} = [0-9]+,", datastream_h_content, flags=re.MULTILINE)
            assert match is not None, f"Missing {fromver} in {datastream_h}"
            wasver = fromver
        else:
            wasver = match.group(1)  # The version fromver is assigned equal to.

        # Version used in comparison should use the macro, but might
        # use old-style hex-format, numerically equal to it. Expect it
        # to use (fromajor, frominor + 1), that this script would
        # write, but fall back to matching a pattern in case weird has
        # happened.
        for tail in (
            rf"QT_VERSION_CHECK\({fromajor},\s*{frominor + 1},\s*[0-9]+\)",
            rf"0x0*{hex((fromajor << 8) | (frominor + 1))[2:]}[0-9a-fA-F][0-9a-fA-F]\b",
            r"QT_VERSION_CHECK\([1-9][0-9]*,\s*[0-9]+,\s*[0-9]+\)",
            r"0x0*[0-9a-fA-F]{5,}\b",
        ):
            check = re.compile(rf"^ *(# *if QT_VERSION >= ){tail}", flags=re.MULTILINE)
            if check.search(datastream_h_content) is not None:
                break
        else:
            log.warning(f"Failed to find Qt version check in {datastream_h}")
            # The check.sub() will be a no-op, but harmless.

        datastream_h_content = re.sub(
            # Add new version to enum, initially same as prior, update default to use it:
            "^( +)(Qt_DefaultCompiledVersion = )Qt_([0-9_]+)",
            rf"\g<1>{tover} = {wasver},\n\g<1>\g<2>{tover}",
            # Bump up the QT_VERSION_CHECK() in #ifdef:
            check.sub(
                rf"\g<1>QT_VERSION_CHECK({tomajor}, {tominor + 1}, 0)", datastream_h_content
            ),
            flags=re.MULTILINE,
        )
        with open(datastream_h, mode="w", encoding="utf-8") as fd:
            fd.write(datastream_h_content)

        # datastream.cpp
        with open(datastream_cpp, mode="r", encoding="utf-8") as fd:
            datastream_cpp_content = re.sub(
                # Add documentation for new version (a line like '\value Qt_6_4 Same as Qt_6_0'):
                rf"^( +\\value )({fromver} .+)$",
                rf"\g<1>\g<2>\n\g<1>{tover} Same as {wasver}",
                fd.read(),
                flags=re.MULTILINE,
            )
        with open(datastream_cpp, mode="w", encoding="utf-8") as fd:
            fd.write(datastream_cpp_content)

        return datastream_h, datastream_cpp


def parse_args() -> argparse.Namespace:
    parser = argparse.ArgumentParser(
        prog="branch_qt.py",
        formatter_class=argparse.RawTextHelpFormatter,
        description="Do various merge operations on Qt repositories",
    )
    parser.add_argument(
        "--mode",
        "-m",
        type=str,
        choices=["branch", "sync", "merge", "bump"],
        required=True,
        help=dedent(
            """\
            branch - start soft branching: create the "to" branch based on the "from" branch
                branch_qt.py -m branch --from 5.12 --to 5.12.4
                    Now 5.12.4 will exist, based on 5.12.
            sync - intermediate sync, to update a branch during soft-branching
                branch_qt.py -m sync --from 5.12 --to 5.12.4
                    Move the new branch fast-forward, assuming only 5.12 has new commits.
            merge - down-merge
                branch_qt.py -m merge --from 5.12 --to 5.12.4
                    Merges 5.12 into 5.12.4.
            bump - version bump, to move from 5.12.3 to 5.12.4:
                branch_qt.py -m bump --from dev --version 5.12.0 --to 5.13.0"""
        ),
    )
    parser.add_argument("--from", "-f", required=True, type=str, dest="fromBranch")
    parser.add_argument("--version", "-v", required=False, type=str, dest="fromVersion")
    parser.add_argument("--to", "-t", required=True, type=str, dest="toBranch")
    parser.add_argument(
        "--pretend",
        action="store_true",
        help="Make the changes to the repositories, but do not push to Gerrit.",
    )
    parser.add_argument("--skip-hooks", action="store_true", help="Do not run git commit hooks.")
    parser.add_argument(
        "--direct",
        action="store_true",
        help="Direct push changes in repos instead of sending changes for review",
    )
    parser.add_argument(
        "--reviewers",
        nargs="*",
        help="Optional list of reviewers. Ignored when '--direct' is used.",
    )
    parser.add_argument(
        "--repos",
        nargs="*",
        help="Optional list of repositories (instead of processing all repositories).",
    )
    return parser.parse_args(sys.argv[1:])


def gerrit_add_pushmaster() -> None:
    config = Credentials()
    auth = requests.auth.HTTPBasicAuth(config.username, config.password)
    r = requests.put(
        f"{GERRIT_REST_URL}/a/groups/Push Masters/members/{config.username}", auth=auth
    )
    r.raise_for_status()


def gerrit_remove_pushmaster() -> None:
    config = Credentials()
    auth = requests.auth.HTTPBasicAuth(config.username, config.password)
    r = requests.delete(
        f"{GERRIT_REST_URL}/a/groups/Push Masters/members/{config.username}", auth=auth
    )
    r.raise_for_status()


if __name__ == "__main__":
    args = parse_args()
    try:
        # If we want to do a review (or just pretend) user doesn't need to be in 'Push masters'
        if not args.pretend and args.direct:
            gerrit_add_pushmaster()

        branching = QtBranching(
            mode=Mode[args.mode],
            fromBranch=args.fromBranch,
            fromVersion=args.fromVersion,
            toBranch=args.toBranch,
            pretend=args.pretend,
            skip_hooks=args.skip_hooks,
            direct=args.direct,
            reviewers=args.reviewers,
            repos=args.repos,
        )
        branching.run()
    finally:
        if not args.pretend and args.direct:
            gerrit_remove_pushmaster()