Class: Gitlab::GitalyClient::CommitService

Inherits:
Object
  • Object
show all
Includes:
EncodingHelper, WithFeatureFlagActors
Defined in:
lib/gitlab/gitaly_client/commit_service.rb

Constant Summary collapse

WHITESPACE_CHANGES =
{
  'ignore_all_spaces' => Gitaly::CommitDiffRequest::WhitespaceChanges::WHITESPACE_CHANGES_IGNORE_ALL,
  'ignore_spaces' => Gitaly::CommitDiffRequest::WhitespaceChanges::WHITESPACE_CHANGES_IGNORE,
  'unspecified' => Gitaly::CommitDiffRequest::WhitespaceChanges::WHITESPACE_CHANGES_UNSPECIFIED
}.freeze
MERGE_COMMIT_DIFF_MODES =
{
  all_parents: Gitaly::FindChangedPathsRequest::MergeCommitDiffMode::MERGE_COMMIT_DIFF_MODE_ALL_PARENTS,
  include_merges: Gitaly::FindChangedPathsRequest::MergeCommitDiffMode::MERGE_COMMIT_DIFF_MODE_INCLUDE_MERGES
}.freeze
TREE_ENTRIES_DEFAULT_LIMIT =
100_000

Constants included from EncodingHelper

EncodingHelper::BOM_UTF8, EncodingHelper::ENCODING_CONFIDENCE_THRESHOLD, EncodingHelper::ESCAPED_CHARS, EncodingHelper::UNICODE_REPLACEMENT_CHARACTER

Instance Attribute Summary

Attributes included from WithFeatureFlagActors

#repository_actor

Instance Method Summary collapse

Methods included from WithFeatureFlagActors

#gitaly_client_call, #gitaly_feature_flag_actors, #group_actor, #project_actor, #user_actor

Methods included from EncodingHelper

#binary_io, #detect_binary?, #detect_encoding, #detect_libgit2_binary?, #encode!, #encode_binary, #encode_utf8, #encode_utf8_no_detect, #encode_utf8_with_escaping!, #encode_utf8_with_replacement_character, #strip_bom, #unquote_path

Constructor Details

#initialize(repository) ⇒ CommitService

Returns a new instance of CommitService.



22
23
24
25
26
27
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 22

def initialize(repository)
  @gitaly_repo = repository.gitaly_repository
  @repository = repository

  self.repository_actor = repository
end

Instance Method Details

#ancestor?(ancestor_id, child_id) ⇒ Boolean

Returns:

  • (Boolean)


41
42
43
44
45
46
47
48
49
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 41

def ancestor?(ancestor_id, child_id)
  request = Gitaly::CommitIsAncestorRequest.new(
    repository: @gitaly_repo,
    ancestor_id: ancestor_id,
    child_id: child_id
  )

  gitaly_client_call(@repository.storage, :commit_service, :commit_is_ancestor, request, timeout: GitalyClient.fast_timeout).value
end

#commit_count(ref, options = {}) ⇒ Object



180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 180

def commit_count(ref, options = {})
  request = Gitaly::CountCommitsRequest.new(
    repository: @gitaly_repo,
    revision: encode_binary(ref),
    all: !!options[:all],
    first_parent: !!options[:first_parent]
  )
  request.after = Google::Protobuf::Timestamp.new(seconds: options[:after].to_i) if options[:after].present?
  request.before = Google::Protobuf::Timestamp.new(seconds: options[:before].to_i) if options[:before].present?
  request.path = encode_binary(options[:path]) if options[:path].present?
  request.max_count = options[:max_count] if options[:max_count].present?

  gitaly_client_call(@repository.storage, :commit_service, :count_commits, request, timeout: GitalyClient.medium_timeout).count
end

#commit_deltas(commit) ⇒ Object



89
90
91
92
93
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 89

def commit_deltas(commit)
  request = Gitaly::CommitDeltaRequest.new(diff_from_parent_request_params(commit))
  response = gitaly_client_call(@repository.storage, :diff_service, :commit_delta, request, timeout: GitalyClient.fast_timeout)
  response.flat_map { |msg| msg.deltas.to_ary }
end

#commit_stats(revision) ⇒ Object



453
454
455
456
457
458
459
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 453

def commit_stats(revision)
  request = Gitaly::CommitStatsRequest.new(
    repository: @gitaly_repo,
    revision: encode_binary(revision)
  )
  gitaly_client_call(@repository.storage, :commit_service, :commit_stats, request, timeout: GitalyClient.medium_timeout)
end

#commits_by_message(query, revision: '', path: '', limit: 1000, offset: 0, literal_pathspec: true) ⇒ Object



389
390
391
392
393
394
395
396
397
398
399
400
401
402
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 389

def commits_by_message(query, revision: '', path: '', limit: 1000, offset: 0, literal_pathspec: true)
  request = Gitaly::CommitsByMessageRequest.new(
    repository: @gitaly_repo,
    query: query,
    revision: encode_binary(revision),
    path: encode_binary(path),
    limit: limit.to_i,
    offset: offset.to_i,
    global_options: parse_global_options!(literal_pathspec: literal_pathspec)
  )

  response = gitaly_client_call(@repository.storage, :commit_service, :commits_by_message, request, timeout: GitalyClient.medium_timeout)
  consume_commits_response(response)
end

#diff(from, to, options = {}) ⇒ Object



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
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 51

def diff(from, to, options = {})
  from_id = case from
            when NilClass
              Gitlab::Git::EMPTY_TREE_ID
            else
              if from.respond_to?(:oid)
                # This is meant to match a Rugged::Commit. This should be impossible in
                # the future.
                from.oid
              else
                from
              end
            end

  to_id = case to
          when NilClass
            Gitlab::Git::EMPTY_TREE_ID
          else
            if to.respond_to?(:oid)
              # This is meant to match a Rugged::Commit. This should be impossible in
              # the future.
              to.oid
            else
              to
            end
          end

  request_params = diff_between_commits_request_params(from_id, to_id, options)

  call_commit_diff(request_params, options)
end

#diff_from_parent(commit, options = {}) ⇒ Object



83
84
85
86
87
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 83

def diff_from_parent(commit, options = {})
  request_params = diff_from_parent_request_params(commit, options)

  call_commit_diff(request_params, options)
end

#diff_stats(left_commit_sha, right_commit_sha) ⇒ Object



239
240
241
242
243
244
245
246
247
248
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 239

def diff_stats(left_commit_sha, right_commit_sha)
  request = Gitaly::DiffStatsRequest.new(
    repository: @gitaly_repo,
    left_commit_id: left_commit_sha,
    right_commit_id: right_commit_sha
  )

  response = gitaly_client_call(@repository.storage, :diff_service, :diff_stats, request, timeout: GitalyClient.medium_timeout)
  response.flat_map { |rsp| rsp.stats.to_a }
end

#diverging_commit_count(from, to, max_count:) ⇒ Object



195
196
197
198
199
200
201
202
203
204
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 195

def diverging_commit_count(from, to, max_count:)
  request = Gitaly::CountDivergingCommitsRequest.new(
    repository: @gitaly_repo,
    from: encode_binary(from),
    to: encode_binary(to),
    max_count: max_count
  )
  response = gitaly_client_call(@repository.storage, :commit_service, :count_diverging_commits, request, timeout: GitalyClient.medium_timeout)
  [response.left_count, response.right_count]
end

#filter_shas_with_signatures(shas) ⇒ Object



516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 516

def filter_shas_with_signatures(shas)
  request = Gitaly::FilterShasWithSignaturesRequest.new(repository: @gitaly_repo)

  enum = Enumerator.new do |y|
    shas.each_slice(20) do |revs|
      request.shas = encode_repeated(revs)

      y.yield request

      request = Gitaly::FilterShasWithSignaturesRequest.new
    end
  end

  response = gitaly_client_call(@repository.storage, :commit_service, :filter_shas_with_signatures, enum, timeout: GitalyClient.fast_timeout)
  response.flat_map do |msg|
    msg.shas.map { |sha| EncodingHelper.encode!(sha) }
  end
end

#find_all_commits(opts = {}) ⇒ Object



293
294
295
296
297
298
299
300
301
302
303
304
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 293

def find_all_commits(opts = {})
  request = Gitaly::FindAllCommitsRequest.new(
    repository: @gitaly_repo,
    revision: opts[:ref].to_s,
    max_count: opts[:max_count].to_i,
    skip: opts[:skip].to_i
  )
  request.order = opts[:order].upcase if opts[:order].present?

  response = gitaly_client_call(@repository.storage, :commit_service, :find_all_commits, request, timeout: GitalyClient.medium_timeout)
  consume_commits_response(response)
end

#find_changed_paths(objects, merge_commit_diff_mode: nil) ⇒ Object

When finding changed paths and passing a sha for a merge commit we can specify how to diff the commit.

When diffing a merge commit and merge_commit_diff_mode is :all_parents file paths are only returned if changed in both parents (or all parents if diffing an octopus merge)

This means if we create a merge request that includes a merge commit of changes already existing in the target branch, we can omit those changes when looking up the changed paths.

e.g.

1. User branches from master to new branch named feature/foo_bar
2. User changes ./foo_bar.rb and commits change to feature/foo_bar
3. Another user merges a change to ./bar_baz.rb to master
4. User merges master into feature/foo_bar
5. User pushes to GitLab
6. GitLab checks which files have changed

case merge_commit_diff_mode when :all_parents

['foo_bar.rb']

when :include_merges

['foo_bar.rb', 'bar_baz.rb'],

else # defaults to :include_merges behavior

['foo_bar.rb', 'bar_baz.rb'],


277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 277

def find_changed_paths(objects, merge_commit_diff_mode: nil)
  request = find_changed_paths_request(objects, merge_commit_diff_mode)

  return [] if request.nil?

  response = gitaly_client_call(@repository.storage, :diff_service, :find_changed_paths, request, timeout: GitalyClient.medium_timeout)
  response.flat_map do |msg|
    msg.paths.map do |path|
      Gitlab::Git::ChangedPath.new(
        status: path.status,
        path: EncodingHelper.encode!(path.path)
      )
    end
  end
end

#find_commit(revision) ⇒ Object



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
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 426

def find_commit(revision)
  return call_find_commit(revision) unless Gitlab::SafeRequestStore.active?

  # We don't use Gitlab::SafeRequestStore.fetch(key) { ... } directly
  # because `revision` can be a branch name, so we can't use it as a key
  # as it could point to another commit later on (happens a lot in
  # tests).
  key = {
    storage: @gitaly_repo.storage_name,
    relative_path: @gitaly_repo.relative_path,
    commit_id: revision
  }
  return Gitlab::SafeRequestStore[key] if Gitlab::SafeRequestStore.exist?(key)

  commit = call_find_commit(revision)

  if GitalyClient.ref_name_caching_allowed?
    Gitlab::SafeRequestStore[key] = commit
    return commit
  end

  return unless commit

  key[:commit_id] = commit.id
  Gitlab::SafeRequestStore[key] = commit
end

#find_commits(options) ⇒ Object



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
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 461

def find_commits(options)
  request = Gitaly::FindCommitsRequest.new(
    repository: @gitaly_repo,
    limit: options[:limit],
    offset: options[:offset],
    follow: options[:follow],
    skip_merges: options[:skip_merges],
    all: !!options[:all],
    first_parent: !!options[:first_parent],
    global_options: parse_global_options!(options),
    disable_walk: true, # This option is deprecated. The 'walk' implementation is being removed.
    trailers: options[:trailers],
    include_referenced_by: options[:include_referenced_by]
  )
  request.after    = GitalyClient.timestamp(options[:after]) if options[:after]
  request.before   = GitalyClient.timestamp(options[:before]) if options[:before]
  request.revision = encode_binary(options[:ref]) if options[:ref]
  request.author   = encode_binary(options[:author]) if options[:author]
  request.order    = options[:order].upcase.sub('DEFAULT', 'NONE') if options[:order].present?

  request.paths = encode_repeated(Array(options[:path])) if options[:path].present?

  response = gitaly_client_call(@repository.storage, :commit_service, :find_commits, request, timeout: GitalyClient.medium_timeout)
  consume_commits_response(response)
end

#get_commit_messages(commit_ids) ⇒ Object



564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 564

def get_commit_messages(commit_ids)
  request = Gitaly::GetCommitMessagesRequest.new(repository: @gitaly_repo, commit_ids: commit_ids)
  response = gitaly_client_call(@repository.storage, :commit_service, :get_commit_messages, request, timeout: GitalyClient.fast_timeout)

  messages = Hash.new { |h, k| h[k] = +''.b }
  current_commit_id = nil

  response.each do |rpc_message|
    current_commit_id = rpc_message.commit_id if rpc_message.commit_id.present?

    messages[current_commit_id] << rpc_message.message
  end

  messages
end

#get_commit_signatures(commit_ids) ⇒ Object



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
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 535

def get_commit_signatures(commit_ids)
  request = Gitaly::GetCommitSignaturesRequest.new(repository: @gitaly_repo, commit_ids: commit_ids)
  response = gitaly_client_call(@repository.storage, :commit_service, :get_commit_signatures, request, timeout: GitalyClient.fast_timeout)

  signatures = Hash.new do |h, k|
    h[k] = {
      signature: +''.b,
      signed_text: +''.b,
      signer: :SIGNER_UNSPECIFIED
    }
  end

  current_commit_id = nil

  response.each do |message|
    current_commit_id = message.commit_id if message.commit_id.present?

    signatures[current_commit_id][:signature] << message.signature
    signatures[current_commit_id][:signed_text] << message.signed_text

    # The actual value is send once. All the other chunks send SIGNER_UNSPECIFIED
    signatures[current_commit_id][:signer] = message.signer unless message.signer == :SIGNER_UNSPECIFIED
  end

  signatures
rescue GRPC::InvalidArgument => ex
  raise ArgumentError, ex
end

#get_patch_id(old_revision, new_revision) ⇒ Object



595
596
597
598
599
600
601
602
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 595

def get_patch_id(old_revision, new_revision)
  request = Gitaly::GetPatchIDRequest
    .new(repository: @gitaly_repo, old_revision: old_revision, new_revision: new_revision)

  response = gitaly_client_call(@repository.storage, :diff_service, :get_patch_id, request, timeout: GitalyClient.medium_timeout)

  response.patch_id
end

#languages(ref = nil) ⇒ Object



404
405
406
407
408
409
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 404

def languages(ref = nil)
  request = Gitaly::CommitLanguagesRequest.new(repository: @gitaly_repo, revision: ref || '')
  response = gitaly_client_call(@repository.storage, :commit_service, :commit_languages, request, timeout: GitalyClient.long_timeout)

  response.languages.map { |l| { value: l.share.round(2), label: l.name, color: l.color, highlight: l.color } }
end

#last_commit_for_path(revision, path, literal_pathspec: false) ⇒ Object



225
226
227
228
229
230
231
232
233
234
235
236
237
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 225

def last_commit_for_path(revision, path, literal_pathspec: false)
  request = Gitaly::LastCommitForPathRequest.new(
    repository: @gitaly_repo,
    revision: encode_binary(revision),
    path: encode_binary(path.to_s),
    global_options: parse_global_options!(literal_pathspec: literal_pathspec)
  )

  gitaly_commit = gitaly_client_call(@repository.storage, :commit_service, :last_commit_for_path, request, timeout: GitalyClient.fast_timeout).commit
  return unless gitaly_commit

  Gitlab::Git::Commit.new(@repository, gitaly_commit)
end

#list_commits(revisions, params = {}) ⇒ Object



306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 306

def list_commits(revisions, params = {})
  request = Gitaly::ListCommitsRequest.new(
    repository: @gitaly_repo,
    revisions: Array.wrap(revisions),
    reverse: !!params[:reverse],
    ignore_case: params[:ignore_case],
    pagination_params: params[:pagination_params]
  )

  if params[:commit_message_patterns]
    request.commit_message_patterns += Array.wrap(params[:commit_message_patterns])
  end

  request.author = encode_binary(params[:author]) if params[:author]
  request.before = GitalyClient.timestamp(params[:before]) if params[:before]
  request.after = GitalyClient.timestamp(params[:after]) if params[:after]

  response = gitaly_client_call(@repository.storage, :commit_service, :list_commits, request, timeout: GitalyClient.medium_timeout)
  consume_commits_response(response)
end

#list_commits_by_oid(oids) ⇒ Object



378
379
380
381
382
383
384
385
386
387
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 378

def list_commits_by_oid(oids)
  return [] if oids.empty?

  request = Gitaly::ListCommitsByOidRequest.new(repository: @gitaly_repo, oid: oids)

  response = gitaly_client_call(@repository.storage, :commit_service, :list_commits_by_oid, request, timeout: GitalyClient.medium_timeout)
  consume_commits_response(response)
rescue GRPC::NotFound # If no repository is found, happens mainly during testing
  []
end

#list_commits_by_ref_name(refs) ⇒ Object



580
581
582
583
584
585
586
587
588
589
590
591
592
593
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 580

def list_commits_by_ref_name(refs)
  request = Gitaly::ListCommitsByRefNameRequest
    .new(repository: @gitaly_repo, ref_names: refs.map { |ref| encode_binary(ref) })

  response = gitaly_client_call(@repository.storage, :commit_service, :list_commits_by_ref_name, request, timeout: GitalyClient.medium_timeout)

  commit_refs = response.flat_map do |message|
    message.commit_refs.map do |commit_ref|
      [encode_utf8(commit_ref.ref_name), Gitlab::Git::Commit.new(@repository, commit_ref.commit)]
    end
  end

  Hash[commit_refs]
end

#list_last_commits_for_tree(revision, path, offset: 0, limit: 25, literal_pathspec: false) ⇒ Object



206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 206

def list_last_commits_for_tree(revision, path, offset: 0, limit: 25, literal_pathspec: false)
  request = Gitaly::ListLastCommitsForTreeRequest.new(
    repository: @gitaly_repo,
    revision: encode_binary(revision),
    path: encode_binary(path.to_s),
    offset: offset,
    limit: limit,
    global_options: parse_global_options!(literal_pathspec: literal_pathspec)
  )

  response = gitaly_client_call(@repository.storage, :commit_service, :list_last_commits_for_tree, request, timeout: GitalyClient.medium_timeout)

  response.each_with_object({}) do |gitaly_response, hsh|
    gitaly_response.commits.each do |commit_for_tree|
      hsh[commit_for_tree.path_bytes] = Gitlab::Git::Commit.new(@repository, commit_for_tree.commit)
    end
  end
end

#list_new_commits(revisions) ⇒ Object

List all commits which are new in the repository. If commits have been pushed into the repo



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
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 328

def list_new_commits(revisions)
  git_env = Gitlab::Git::HookEnv.all(@gitaly_repo.gl_repository)
  if git_env['GIT_OBJECT_DIRECTORY_RELATIVE'].present?
    # If we have a quarantine environment, then we can optimize the check
    # by doing a ListAllCommitsRequest. Instead of walking through
    # references, we just walk through all quarantined objects, which is
    # a lot more efficient. To do so, we throw away any alternate object
    # directories, which point to the main object directory of the
    # repository, and only keep the object directory which points into
    # the quarantine object directory.
    quarantined_repo = @gitaly_repo.dup
    quarantined_repo.git_alternate_object_directories = Google::Protobuf::RepeatedField.new(:string)

    request = Gitaly::ListAllCommitsRequest.new(
      repository: quarantined_repo
    )

    response = gitaly_client_call(@repository.storage, :commit_service, :list_all_commits, request, timeout: GitalyClient.medium_timeout)

    quarantined_commits = consume_commits_response(response)
    quarantined_commit_ids = quarantined_commits.map(&:id)

    # While in general the quarantine directory would only contain objects
    # which are actually new, this is not guaranteed by Git. In fact,
    # git-push(1) may sometimes push objects which already exist in the
    # target repository. We do not want to return those from this method
    # though given that they're not actually new.
    #
    # To fix this edge-case we thus have to filter commits down to those
    # which don't yet exist. To do so, we must check for object existence
    # in the main repository, but the object directory of our repository
    # points into the object quarantine. This can be fixed by unsetting
    # it, which will cause us to use the normal repository as indicated by
    # its relative path again.
    main_repo = @gitaly_repo.dup
    main_repo.git_object_directory = ""

    # Check object existence of all quarantined commits' IDs.
    quarantined_commit_existence = object_existence_map(quarantined_commit_ids, gitaly_repo: main_repo)

    # And then we reject all quarantined commits which exist in the main
    # repository already.
    quarantined_commits.reject! { |c| quarantined_commit_existence[c.id] }

    quarantined_commits
  else
    list_commits(Array.wrap(revisions) + %w[--not --all])
  end
end

#ls_files(revision) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 29

def ls_files(revision)
  request = Gitaly::ListFilesRequest.new(
    repository: @gitaly_repo,
    revision: encode_binary(revision)
  )

  response = gitaly_client_call(@repository.storage, :commit_service, :list_files, request, timeout: GitalyClient.medium_timeout)
  response.flat_map do |msg|
    msg.paths.map { |d| EncodingHelper.encode!(d.dup) }
  end
end

#object_existence_map(revisions, gitaly_repo: @gitaly_repo) ⇒ Object

Check whether the given revisions exist. Returns a hash mapping the revision name to either ‘true` if the revision exists, or `false` otherwise. This function accepts all revisions as specified by gitrevisions(1).



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
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 490

def object_existence_map(revisions, gitaly_repo: @gitaly_repo)
  return {} unless revisions.present?

  enum = Enumerator.new do |y|
    revisions.each_slice(100).with_index do |revisions_subset, i|
      params = { revisions: revisions_subset }
      params[:repository] = gitaly_repo if i == 0

      y.yield Gitaly::CheckObjectsExistRequest.new(**params)
    end
  end

  response = gitaly_client_call(
    @repository.storage, :commit_service, :check_objects_exist, enum, timeout: GitalyClient.medium_timeout
  )

  existence_by_revision = {}
  response.each do |message|
    message.revisions.each do |revision|
      existence_by_revision[revision.name] = revision.exists
    end
  end

  existence_by_revision
end

#raw_blame(revision, path, range:) ⇒ Object



411
412
413
414
415
416
417
418
419
420
421
422
423
424
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 411

def raw_blame(revision, path, range:)
  request = Gitaly::RawBlameRequest.new(
    repository: @gitaly_repo,
    revision: encode_binary(revision),
    path: encode_binary(path),
    range: (encode_binary(range) if range)
  )

  response = gitaly_client_call(@repository.storage, :commit_service, :raw_blame, request, timeout: GitalyClient.medium_timeout)
  response.reduce([]) { |memo, msg| memo << msg.data }.join
# Temporary fix, use structured errors when they are available: https://gitlab.com/gitlab-org/gitaly/-/issues/5594
rescue GRPC::Internal
  ""
end

#tree_entries(repository, revision, path, recursive, skip_flat_paths, pagination_params) ⇒ Object



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
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 130

def tree_entries(repository, revision, path, recursive, skip_flat_paths, pagination_params)
  unless pagination_params.nil? && recursive
    pagination_params ||= {}
    pagination_params[:limit] ||= TREE_ENTRIES_DEFAULT_LIMIT
  end

  request = Gitaly::GetTreeEntriesRequest.new(
    repository: @gitaly_repo,
    revision: encode_binary(revision),
    path: path.present? ? encode_binary(path) : '.',
    recursive: recursive,
    skip_flat_paths: skip_flat_paths,
    pagination_params: pagination_params
  )
  request.sort = Gitaly::GetTreeEntriesRequest::SortBy::TREES_FIRST if pagination_params

  response = gitaly_client_call(@repository.storage, :commit_service, :get_tree_entries, request, timeout: GitalyClient.medium_timeout)

  cursor = nil

  entries = response.flat_map do |message|
    cursor = message.pagination_cursor if message.pagination_cursor

    message.entries.map do |gitaly_tree_entry|
      Gitlab::Git::Tree.new(
        id: gitaly_tree_entry.oid,
        type: gitaly_tree_entry.type.downcase,
        mode: gitaly_tree_entry.mode.to_s(8),
        name: File.basename(gitaly_tree_entry.path),
        path: encode_binary(gitaly_tree_entry.path),
        flat_path: encode_binary(gitaly_tree_entry.flat_path),
        commit_id: gitaly_tree_entry.commit_oid
      )
    end
  end

  [entries, cursor]
rescue GRPC::BadStatus => e
  detailed_error = GitalyClient.decode_detailed_error(e)

  case detailed_error.try(:error)
  when :path
    raise Gitlab::Git::Index::IndexError, path_error_message(detailed_error.path)
  when :resolve_tree
    raise Gitlab::Git::Index::IndexError, e.details
  else
    raise e
  end
end

#tree_entry(ref, path, limit = nil) ⇒ Object



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
# File 'lib/gitlab/gitaly_client/commit_service.rb', line 95

def tree_entry(ref, path, limit = nil)
  if Pathname.new(path).cleanpath.to_s.start_with?('../')
    # The TreeEntry RPC should return an empty response in this case but in
    # Gitaly 0.107.0 and earlier we get an exception instead. This early return
    # saves us a Gitaly roundtrip while also avoiding the exception.
    return
  end

  request = Gitaly::TreeEntryRequest.new(
    repository: @gitaly_repo,
    revision: encode_binary(ref),
    path: encode_binary(path),
    limit: limit.to_i
  )

  response = gitaly_client_call(@repository.storage, :commit_service, :tree_entry, request, timeout: GitalyClient.medium_timeout)

  entry = nil
  data = []
  response.each do |msg|
    if entry.nil?
      entry = msg

      break unless entry.type == :BLOB
    end

    data << msg.data
  end
  entry.data = data.join

  entry unless entry.oid.blank?
rescue GRPC::NotFound
  nil
end