Skip to content
Snippets Groups Projects
  1. Jul 05, 2023
  2. Jun 30, 2023
  3. Jun 29, 2023
    • Georges Racinet's avatar
      RHGitaly: CommitService.FindCommit implementation · 6e654158
      Georges Racinet authored
      This is now a direct application of `gitlab_revision_node_prefix()`.
      Perhaps worth of notice is the fact thay we stay purely async until
      the revision is resolved as a `NodePrefix`, and only spawn a thread
      once it is really needed (access to repository `Changelog`).
      6e654158
    • Georges Racinet's avatar
      CommitService.FindCommit: errors for corner cases · 5c477c33
      Georges Racinet authored
      As usual, the Rust reimplementation raises some questions, and we answer them.
      The case of empty (missing) revision was spotted because Gitaly returns
      the error about it even if the repo argument is missing.
      5c477c33
    • Georges Racinet's avatar
      RHGitaly: message::commit_for_node_prefix · 6b54aa74
      Georges Racinet authored
      This method is fairly simple, but it has the tremendous advantage
      to flatten three possible `RevlogError` into one, considerably
      simplifying error treatment for the caller.
      6b54aa74
    • Georges Racinet's avatar
      RHGitaly: repository loading helper for unary RPC methods · 8b6fdf35
      Georges Racinet authored
      This is in particular useful because it makes the return type of
      the `spawn_blocking` call explicit, a hint that the compiler would
      request even for so simple a method as `FindCommit`.
      
      Like `load_repo_and_stream()` it takes care of converting some errors
      into the proper `Status`, still letting the caller define what happens
      with `RepoSpecError`, which may have to differ from one request to the other.
      8b6fdf35
    • Georges Racinet's avatar
      RHGitaly: comment typo · 12caab4c
      Georges Racinet authored
      12caab4c
  4. Jun 16, 2023
    • Georges Racinet's avatar
      RHGitaly: GitLab revision resolution as node. · 734564f0
      Georges Racinet authored
      The `gitlab_revision_node_prefix()` function will be used in all
      gRPC methods that accept arguments that are single GitLab revisions.
      Even those that take ranges would use it, just less directly.
      
      `CommitService.FindCommit` would be the most straightforward case,
      but there are many more.
      
      Closes #126
      734564f0
    • Georges Racinet's avatar
      RHGitaly: reading the GitLab default branch file · c81b8f78
      Georges Racinet authored
      As noted in comment, this should really be in the `store` subdirectory,
      but that is a fight (data migration) for another day.
      c81b8f78
    • Georges Racinet's avatar
      RHGitaly: utilities to resolve refs as Nodes · 2c80b078
      Georges Racinet authored
      `gitlab::state::lookup_typed_ref_as_node` is the specialization of
      `map_lookup_typed_ref` to return `Node`s, hence it is working on a single
      stream of typed refs, whereas the higher level `gitlab::revision::full_ref_node`
      is the specialization of `map_full_ref` that works for any ref given by
      its full path.
      2c80b078
  5. Jun 15, 2023
  6. Jun 04, 2023
  7. Jun 14, 2023
    • Georges Racinet's avatar
      RHGitaly: gitlab::revision, only with `map_full_ref()` for now. · 5ac1a849
      Georges Racinet authored
      Of course it will grow the equivalenbt of Python's `gitlab_revision_changeset`,
      which is one of the most common helper functions in HGitaly, making
      the `FindCommit` gRPC method almost trivial.
      5ac1a849
    • Georges Racinet's avatar
      RHGitaly: reading keep-arounds state file · 725e8c52
      Georges Racinet authored
      This time, because there is no arbitrary name to consider, hence
      no bytes string, Tokio's `LinesStream` is perfectly suitable for
      our needs.
      725e8c52
    • Georges Racinet's avatar
      RHGitaly: reading GitLab ref files · bcab7028
      Georges Racinet authored
      This follows the file format and conventions defined in the server side
      `heptapod` Python package.
      
      Since everything is async, we actually provide Streams of TypedRef objects,
      and the `map_lookup_typed_ref` for the numerous use cases when one is looking
      for a specific ref.
      
      The file format is very primitive, so all we can do at this point is to
      perform a full scan, but it has room (version preamble) for more advanced
      formats in the future (e.g, append-only persistent hash map or similar).
      
      A preliminary version of this was using Tokio's `LineStream`, but this
      has several drawbacks:
      
      - it is unicode-centric, yielding `String`s
      - we had to implement our own `Stream`, keeping the `LineStream` as
        a field. Hence because `poll_next()` takes `&mut Pin<Self>` we had
        to write a pinning accessor, which is unsafe (see the doc for `std::pin`
        for more details).
      bcab7028
    • Georges Racinet's avatar
      RHGitaly: mapping file not found errors to `None` · 29fc9a2b
      Georges Racinet authored
      When a file contains a list of values, it is a common pattern that
      the absence of the file is equivalent to the list being empty.
      This `io_error_not_found_as_none` will help keeping duplication low
      (even if fairly trivial).
      29fc9a2b
  8. Jun 27, 2023
  9. Jun 07, 2023
  10. Jun 06, 2023
    • Georges Racinet's avatar
      FindCommit comparison tests: ensure only GitLab state files are used · 3c6b018d
      Georges Racinet authored
      Previously, the test was passing because the Python reference implementation
      of HGitaly relies on `scmutil.revsingle` for revisions not found in GitLab
      state files, including tags given in simple form (e.g. `v1.2.3`).
      
      But RHGitaly will rely on the GitLab state files only, hence we need to
      ensure that the tags state file contains the one we introduce, which is
      shadowing in the short SHA case
      
      The added GitLab sync has the effect of removing directly set tags that have
      no Mercurial counterpart from the GitLab state file, that's why it has to occur
      before `write_ref()` in this test of collision/shadowing were Mercurial and Git
      tags must have different names.
      3c6b018d
    • Georges Racinet's avatar
      revision: precedence rules in case of collisions · bbca598e
      Georges Racinet authored
      As illustrated with the new assertions in `test_compare_find_commit`,
      it turns out that in Gitaly, tags have precedence over branches
      (unsurprisingly) and over shortened commit ids, but not on full commit
      ids.
      bbca598e
  11. Jun 04, 2023
  12. May 26, 2023
  13. May 16, 2023
  14. May 15, 2023
    • Georges Racinet's avatar
      revision: support fully qualified tag refs · 88981e79
      Georges Racinet authored
      There was even an old TODO about that
      88981e79
    • Georges Racinet's avatar
      FindCommit: initial Gitaly Comparison test · 364d32a1
      Georges Racinet authored
      This method of the `CommitService` had no Gitaly Comparison test,
      because it was implemented before these tests were even considered.
      
      Such a test will be the main testing of the upcoming RHGitaly
      implementation.
      
      It turns out that we found a missing case: tag in the fully qualified
      ref notation (chances are that clients woud rather use `RefService.FindTag`
      but one never knows.
      364d32a1
    • Georges Racinet's avatar
      Gitaly Comparison tests: avoid side effect in normalization · 82cdf442
      Georges Racinet authored
      In some cases where a message attribute is missing, our normalization
      would have replaced it with a default (empty) value, leading to
      false positives.
      
      This is for instance the case of an empty `FindCommitResponse` (no
      commit attribute) that it would convert to a `FindCommitResponse` with
      an empy `commit` attribute (part of actual tests in the process of
      being written).
      82cdf442
    • Georges Racinet's avatar
      Gitaly Comparison tests: refactor message_to_git · 01c92a1f
      Georges Racinet authored
      A separate method for each "attribute path" gives us a bit more
      clarity (early return if `recurse` rather than a boolean available
      from outside the inner loop), and more room for improvement.
      01c92a1f
  15. May 14, 2023
    • Georges Racinet's avatar
      Gitaly Comparison test harness: always using the bundled Git · 8135fc70
      Georges Racinet authored
      Recent Gitaly versions come with two versions of Git (probably to
      test them in advance), and hence the path that we were trying is
      no longer valid.
      
      It is now mandatory of to the development setup (HDK) and to the CI base
      image to provide Gitaly with the bundled Git.
      The concept of "bundled Git" seems to go beyond vendoring, the
      compilation flag `WITH_BUNDLED_GIT=YesPlease` has the effect of
      putting self-sufficient Git executables in Gitaly bin directory, which
      the main executable knows how to find and select, provided that the
      `bin_dir` configuration item is correct (fixed in a preparation changeset).
      
      Using this bundled Git removes lots of confusion and timebombs
      such as the tests defaulting to a system-wide Git which suddenly can
      become outdated.
      8135fc70
    • Georges Racinet's avatar
      Gitaly Comparison test harness: cleanup refactoring · 5b697cb2
      Georges Racinet authored
      Since we only test one candidate `gitaly` executable, we don't
      need the loop.
      5b697cb2
    • Georges Racinet's avatar
      Gitaly Comparison test harness: fixing Gitaly bin_dir · 4250ce07
      Georges Racinet authored
      In case the `gitaly` executable is to be found in a subdirectory
      of `GITALY_INSTALL_DIR`, then that same subdirectory has to be
      provided as the `bin_dir` configuration item, so that Gitaly can
      find all its non-ruby bundled executables, notably the bundled Git.
      
      It was working until now because Gitaly falls back to a system-wide
      Git if the specified one is not found, whose version is acceptable
      in CI because the `heptapod-gitaly` base image is itself based on the
      `heptapod-base` image, which provides the Git version generally
      accepted by the target GitLab version.
      
      Since there is no doubt as to where the `gitaly` executable is supposed
      to sit, we're only testing one possibility (minimal change to keep the diff
      understable, to be refactored).
      4250ce07
  16. May 03, 2023
  17. May 01, 2023
Loading