Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
dfc50de2
Commit
dfc50de2
authored
Sep 13, 2012
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #933 from barrbrain/pack-iterate-objects-in-offset-order
pack: iterate objects in offset order
parents
687ec68b
60ecdf59
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
12 deletions
+37
-12
src/pack.c
+36
-12
src/pack.h
+1
-0
No files found.
src/pack.c
View file @
dfc50de2
...
...
@@ -54,6 +54,10 @@ static int packfile_error(const char *message)
static
void
pack_index_free
(
struct
git_pack_file
*
p
)
{
if
(
p
->
oids
)
{
git__free
(
p
->
oids
);
p
->
oids
=
NULL
;
}
if
(
p
->
index_map
.
data
)
{
git_futils_mmap_free
(
&
p
->
index_map
);
p
->
index_map
.
data
=
NULL
;
...
...
@@ -686,13 +690,16 @@ static git_off_t nth_packed_object_offset(const struct git_pack_file *p, uint32_
}
}
static
int
git__memcmp4
(
const
void
*
a
,
const
void
*
b
)
{
return
memcmp
(
a
,
b
,
4
);
}
int
git_pack_foreach_entry
(
struct
git_pack_file
*
p
,
int
(
*
cb
)(
git_oid
*
oid
,
void
*
data
),
void
*
data
)
{
const
unsigned
char
*
index
=
p
->
index_map
.
data
,
*
current
;
unsigned
stride
;
uint32_t
i
;
if
(
index
==
NULL
)
{
...
...
@@ -712,21 +719,38 @@ int git_pack_foreach_entry(
index
+=
4
*
256
;
if
(
p
->
index_version
>
1
)
{
stride
=
20
;
}
else
{
stride
=
24
;
index
+=
4
;
}
if
(
p
->
oids
==
NULL
)
{
git_vector
offsets
,
oids
;
int
error
;
current
=
index
;
for
(
i
=
0
;
i
<
p
->
num_objects
;
i
++
)
{
if
(
cb
((
git_oid
*
)
current
,
data
))
return
GIT_EUSER
;
if
((
error
=
git_vector_init
(
&
oids
,
p
->
num_objects
,
NULL
)))
return
error
;
if
((
error
=
git_vector_init
(
&
offsets
,
p
->
num_objects
,
git__memcmp4
)))
return
error
;
current
+=
stride
;
if
(
p
->
index_version
>
1
)
{
const
unsigned
char
*
off
=
index
+
24
*
p
->
num_objects
;
for
(
i
=
0
;
i
<
p
->
num_objects
;
i
++
)
git_vector_insert
(
&
offsets
,
(
void
*
)
&
off
[
4
*
i
]);
git_vector_sort
(
&
offsets
);
git_vector_foreach
(
&
offsets
,
i
,
current
)
git_vector_insert
(
&
oids
,
(
void
*
)
&
index
[
5
*
(
current
-
off
)]);
}
else
{
for
(
i
=
0
;
i
<
p
->
num_objects
;
i
++
)
git_vector_insert
(
&
offsets
,
(
void
*
)
&
index
[
24
*
i
]);
git_vector_sort
(
&
offsets
);
git_vector_foreach
(
&
offsets
,
i
,
current
)
git_vector_insert
(
&
oids
,
(
void
*
)
&
current
[
4
]);
}
git_vector_free
(
&
offsets
);
p
->
oids
=
(
git_oid
**
)
oids
.
contents
;
}
for
(
i
=
0
;
i
<
p
->
num_objects
;
i
++
)
if
(
cb
(
p
->
oids
[
i
],
data
))
return
GIT_EUSER
;
return
0
;
}
...
...
src/pack.h
View file @
dfc50de2
...
...
@@ -64,6 +64,7 @@ struct git_pack_file {
unsigned
pack_local
:
1
,
pack_keep
:
1
,
has_cache
:
1
;
git_oid
sha1
;
git_vector
cache
;
git_oid
**
oids
;
/* something like ".git/objects/pack/xxxxx.pack" */
char
pack_name
[
GIT_FLEX_ARRAY
];
/* more */
...
...
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