Skip to content
Snippets Groups Projects
Commit 014d5f95 authored by Georges Racinet's avatar Georges Racinet
Browse files

State file for GitLab branches

As explained in the long docstring, this represents the latest
state of branches *transmitted* to GitLab, i.e. has to be considered
the state at beginning of transaction if there is an ongoing one (used
precisely to deduce changes to notify GitLab about) or the current
state if there is no ongoing transaction (read-only case).

The read-only case will be useful for HGitaly right away: instead
of doing expensive computations for each branch read, it will
leverage this file if available.
parent 73809d34
No related branches found
No related tags found
1 merge request!43State file for GitLab branches
......@@ -6,6 +6,49 @@
# SPDX-License-Identifier: GPL-2.0-or-later
"""Heptapod specific branch facilities.
GitLab branches:
GitLab branches are pointers to Mercurial changesets that the Rails
application believes to be actual Git branches. They are updated
automatically by each transaction, applying several rules tailored for
good interaction with other GitLab components. They are not implemented
as bookmarks because they are not meant to be exposed to Mercurial clients.
GitLab branches are kept in a file that represents the last state that was
exposed to other GitLab components (notably, the Rails application). In case
there is an ongoing transaction, the file represents the state at the
beginning of the transaction, and is updated at the end of transaction.
Its uses include:
- sending pre- and post-receive calls to the Rails application based on
comparisons with the previous state.
- fast querying by GitLab branch in HGitaly. While it is possible for HGitaly
to implement the mapping to GitLab branches in a stateless way, it is very
bad for performance to do it in all read operations.
The state cannot be reconstructed, since it records what other components
have already seen. But it can be reinitialized: GitLab will fail to update
the Merge Requests that should have been affected by the current transaction,
fail to create new Pipelines and generally miss all the consequences of
the current transaction. Initializing it at import or in an otherwise
empty transaction should not create any problem.
File format: version preamble (common to all versions):
- first 3 bytes: decimal string representation of the version number, padded
with left zeros (spaces also accepted for reading)
- byte 4: Unix End-Of-Line (LF, 0x10)
File format: version 1 (after version preamble)
- line-based, each line terminated the Unix way (LF, 0x10)
- one GitLab branch per line
- each line is made of the hexadecimal Mercurial changeset ID, followed by
exactly one space character, then by the GitLab branch name (bytes with
no encoding assumption). Example::
01ca23fe01ca23fe01ca23fe01ca23fe01ca23fe branch/default
Default GitLab branch:
This a GitLab branch, e.g., ``branch/default`` rather than a Mercurial
branch, e.g., ``default``.
......@@ -24,6 +67,50 @@
)
DEFAULT_GITLAB_BRANCH_FILE_NAME = b'default_gitlab_branch'
GITLAB_BRANCHES_FILE_NAME = b'gitlab.branches'
GITLAB_BRANCHES_FILE_CURRENT_VERSION = 1
def read_gitlab_branches_file_version(fobj):
"""Read the version and leave `fobj` at the start of actual data.
"""
version_line = fobj.read(4)
# TODO proper exception
assert version_line.endswith(b'\n')
return int(version_line) # ignores left 0 padding, whitespace and EOL
def write_gitlab_branches_file_version(
fobj,
version=GITLAB_BRANCHES_FILE_CURRENT_VERSION):
fobj.write(b"%03d\n" % version)
def read_gitlab_branches(repo):
"""Return the GitLab branches mapping, as a dict.
"""
# TODO proper exception
with repo.svfs(GITLAB_BRANCHES_FILE_NAME, mode=b'rb') as fobj:
# TODO proper exception
assert read_gitlab_branches_file_version(fobj) == 1
return {branch.strip(): sha for sha, branch in
(line.split(b' ', 1) for line in fobj)}
def write_gitlab_branches(repo, gl_branches):
"""Write the GitLab branches mapping atomically.
"""
with repo.lock():
with repo.svfs(GITLAB_BRANCHES_FILE_NAME,
mode=b'wb',
atomictemp=True,
checkambig=True) as fobj:
write_gitlab_branches_file_version(fobj)
for gl_branch, sha_hex in gl_branches.items():
fobj.write(b"%s %s\n" % (sha_hex, gl_branch))
# atomictempfile does not expose flush(), so there's no
# point trying an fsync(). Mercurial does not seem to use
# fsync() anyway.
def get_default_gitlab_branch(repo):
......
# Copyright 2020 Georges Racinet <georges.racinet@octobus.net>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
#
# SPDX-License-Identifier: GPL-2.0-or-later
from heptapod.testhelpers import RepoWrapper
from ..branch import (
GITLAB_BRANCHES_FILE_NAME,
read_gitlab_branches,
write_gitlab_branches,
)
def test_read_gitlab_branches_v1(tmpdir):
# this test depends on file layout details (so that it serves as a
# proof of non tautology of all these tests)
# and is specific to version 1 of the format.
wrapper = RepoWrapper.init(tmpdir)
sha1 = "fe54" * 10
sha2 = "5c34" * 10
tmpdir.join('.hg', 'store', GITLAB_BRANCHES_FILE_NAME.decode()
).write("\n".join((
"001",
"%s branch/some-branch" % sha1,
"%s even includes spaces" % sha2,
)))
repo = wrapper.repo
assert read_gitlab_branches(repo) == {
b'branch/some-branch': sha1.encode('ascii'),
b'even includes spaces': sha2.encode('ascii'),
}
def test_gitlab_branches_round_trip(tmpdir):
wrapper = RepoWrapper.init(tmpdir)
repo = wrapper.repo
branches = {b'topic/default/truc': b'01cafe34' * 5}
write_gitlab_branches(repo, branches)
assert read_gitlab_branches(repo) == branches
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment