Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
e91b2b5d
Commit
e91b2b5d
authored
Jun 22, 2018
by
Zeger-Jan van de Weg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Gitaly tree entry is mandatory
Closes
https://gitlab.com/gitlab-org/gitaly/issues/310
parent
9490c378
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
98 deletions
+27
-98
lib/gitlab/git/blob.rb
lib/gitlab/git/blob.rb
+26
-87
spec/lib/gitlab/git/blob_spec.rb
spec/lib/gitlab/git/blob_spec.rb
+1
-11
No files found.
lib/gitlab/git/blob.rb
View file @
e91b2b5d
...
...
@@ -21,13 +21,31 @@ module Gitlab
attr_accessor
:name
,
:path
,
:size
,
:data
,
:mode
,
:id
,
:commit_id
,
:loaded_size
,
:binary
class
<<
self
def
find
(
repository
,
sha
,
path
)
Gitlab
::
GitalyClient
.
migrate
(
:project_raw_show
)
do
|
is_enabled
|
if
is_enabled
find_by_gitaly
(
repository
,
sha
,
path
)
else
find_by_rugged
(
repository
,
sha
,
path
,
limit:
MAX_DATA_DISPLAY_SIZE
)
end
def
find
(
repository
,
sha
,
path
,
limit:
MAX_DATA_DISPLAY_SIZE
)
return
unless
path
path
=
path
.
sub
(
%r{
\A
/*}
,
''
)
path
=
'/'
if
path
.
empty?
name
=
File
.
basename
(
path
)
# Gitaly will think that setting the limit to 0 means unlimited, while
# the client might only need the metadata and thus set the limit to 0.
# In this method we'll then set the limit to 1, but clear the byte of data
# that we got back so for the outside world it looks like the limit was
# actually 0.
req_limit
=
limit
==
0
?
1
:
limit
entry
=
Gitlab
::
GitalyClient
::
CommitService
.
new
(
repository
).
tree_entry
(
sha
,
path
,
req_limit
)
return
unless
entry
entry
.
data
=
""
if
limit
==
0
case
entry
.
type
when
:COMMIT
new
(
id:
entry
.
oid
,
name:
name
,
size:
0
,
data:
''
,
path:
path
,
commit_id:
sha
)
when
:BLOB
new
(
id:
entry
.
oid
,
name:
name
,
size:
entry
.
size
,
data:
entry
.
data
.
dup
,
mode:
entry
.
mode
.
to_s
(
8
),
path:
path
,
commit_id:
sha
,
binary:
binary?
(
entry
.
data
))
end
end
...
...
@@ -56,7 +74,7 @@ module Gitlab
repository
.
gitaly_blob_client
.
get_blobs
(
blob_references
,
blob_size_limit
).
to_a
else
blob_references
.
map
do
|
sha
,
path
|
find
_by_rugged
(
repository
,
sha
,
path
,
limit:
blob_size_limit
)
find
(
repository
,
sha
,
path
,
limit:
blob_size_limit
)
end
end
end
...
...
@@ -136,85 +154,6 @@ module Gitlab
)
end
def
find_by_gitaly
(
repository
,
sha
,
path
,
limit:
MAX_DATA_DISPLAY_SIZE
)
return
unless
path
path
=
path
.
sub
(
%r{
\A
/*}
,
''
)
path
=
'/'
if
path
.
empty?
name
=
File
.
basename
(
path
)
# Gitaly will think that setting the limit to 0 means unlimited, while
# the client might only need the metadata and thus set the limit to 0.
# In this method we'll then set the limit to 1, but clear the byte of data
# that we got back so for the outside world it looks like the limit was
# actually 0.
req_limit
=
limit
==
0
?
1
:
limit
entry
=
Gitlab
::
GitalyClient
::
CommitService
.
new
(
repository
).
tree_entry
(
sha
,
path
,
req_limit
)
return
unless
entry
entry
.
data
=
""
if
limit
==
0
case
entry
.
type
when
:COMMIT
new
(
id:
entry
.
oid
,
name:
name
,
size:
0
,
data:
''
,
path:
path
,
commit_id:
sha
)
when
:BLOB
new
(
id:
entry
.
oid
,
name:
name
,
size:
entry
.
size
,
data:
entry
.
data
.
dup
,
mode:
entry
.
mode
.
to_s
(
8
),
path:
path
,
commit_id:
sha
,
binary:
binary?
(
entry
.
data
)
)
end
end
def
find_by_rugged
(
repository
,
sha
,
path
,
limit
:)
return
unless
path
# Strip any leading / characters from the path
path
=
path
.
sub
(
%r{
\A
/*}
,
''
)
rugged_commit
=
repository
.
lookup
(
sha
)
root_tree
=
rugged_commit
.
tree
blob_entry
=
find_entry_by_path
(
repository
,
root_tree
.
oid
,
*
path
.
split
(
'/'
))
return
nil
unless
blob_entry
if
blob_entry
[
:type
]
==
:commit
submodule_blob
(
blob_entry
,
path
,
sha
)
else
blob
=
repository
.
lookup
(
blob_entry
[
:oid
])
if
blob
new
(
id:
blob
.
oid
,
name:
blob_entry
[
:name
],
size:
blob
.
size
,
# Rugged::Blob#content is expensive; don't call it if we don't have to.
data:
limit
.
zero?
?
''
:
blob
.
content
(
limit
),
mode:
blob_entry
[
:filemode
].
to_s
(
8
),
path:
path
,
commit_id:
sha
,
binary:
blob
.
binary?
)
end
end
rescue
Rugged
::
ReferenceError
nil
end
def
rugged_raw
(
repository
,
sha
,
limit
:)
blob
=
repository
.
lookup
(
sha
)
...
...
spec/lib/gitlab/git/blob_spec.rb
View file @
e91b2b5d
...
...
@@ -15,7 +15,7 @@ describe Gitlab::Git::Blob, seed_helper: true do
end
end
shared_examples
'finding blobs
'
do
describe
'.find
'
do
context
'nil path'
do
let
(
:blob
)
{
Gitlab
::
Git
::
Blob
.
find
(
repository
,
SeedRepo
::
Commit
::
ID
,
nil
)
}
...
...
@@ -125,16 +125,6 @@ describe Gitlab::Git::Blob, seed_helper: true do
end
end
describe
'.find'
do
context
'when project_raw_show Gitaly feature is enabled'
do
it_behaves_like
'finding blobs'
end
context
'when project_raw_show Gitaly feature is disabled'
,
:skip_gitaly_mock
do
it_behaves_like
'finding blobs'
end
end
shared_examples
'finding blobs by ID'
do
let
(
:raw_blob
)
{
Gitlab
::
Git
::
Blob
.
raw
(
repository
,
SeedRepo
::
RubyBlob
::
ID
)
}
let
(
:bad_blob
)
{
Gitlab
::
Git
::
Blob
.
raw
(
repository
,
SeedRepo
::
BigCommit
::
ID
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment