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
32e49929
Commit
32e49929
authored
Sep 06, 2013
by
Russell Belfer
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1791 from libgit2/cmn/revwalk-recursive
revwalk: make mark_unintersting use a loop
parents
97affdf2
fb23d05f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
10 deletions
+34
-10
src/array.h
+2
-0
src/revwalk.c
+32
-10
No files found.
src/array.h
View file @
32e49929
...
...
@@ -63,6 +63,8 @@ GIT_INLINE(void *) git_array_grow(void *_a, size_t item_size)
#define git_array_last(a) ((a).size ? &(a).ptr[(a).size - 1] : NULL)
#define git_array_pop(a) ((a).size ? &(a).ptr[--(a).size] : NULL)
#define git_array_get(a, i) (((i) < (a).size) ? &(a).ptr[(i)] : NULL)
#define git_array_size(a) (a).size
...
...
src/revwalk.c
View file @
32e49929
...
...
@@ -41,28 +41,50 @@ git_commit_list_node *git_revwalk__commit_lookup(
return
commit
;
}
static
void
mark_uninteresting
(
git_commit_list_node
*
commit
)
static
int
mark_uninteresting
(
git_commit_list_node
*
commit
)
{
unsigned
short
i
;
git_array_t
(
git_commit_list_node
*
)
pending
=
GIT_ARRAY_INIT
;
git_commit_list_node
**
tmp
;
assert
(
commit
);
commit
->
uninteresting
=
1
;
git_array_alloc
(
pending
);
GITERR_CHECK_ARRAY
(
pending
);
/* This means we've reached a merge base, so there's no need to walk any more */
if
((
commit
->
flags
&
(
RESULT
|
STALE
))
==
RESULT
)
return
;
do
{
commit
->
uninteresting
=
1
;
/* This means we've reached a merge base, so there's no need to walk any more */
if
((
commit
->
flags
&
(
RESULT
|
STALE
))
==
RESULT
)
{
tmp
=
git_array_pop
(
pending
);
commit
=
tmp
?
*
tmp
:
NULL
;
continue
;
}
for
(
i
=
0
;
i
<
commit
->
out_degree
;
++
i
)
if
(
!
commit
->
parents
[
i
]
->
uninteresting
)
{
git_commit_list_node
**
node
=
git_array_alloc
(
pending
);
GITERR_CHECK_ALLOC
(
node
);
*
node
=
commit
->
parents
[
i
];
}
tmp
=
git_array_pop
(
pending
);
commit
=
tmp
?
*
tmp
:
NULL
;
}
while
(
git_array_size
(
pending
)
>
0
);
for
(
i
=
0
;
i
<
commit
->
out_degree
;
++
i
)
if
(
!
commit
->
parents
[
i
]
->
uninteresting
)
mark_uninteresting
(
commit
->
parents
[
i
])
;
git_array_clear
(
pending
);
return
0
;
}
static
int
process_commit
(
git_revwalk
*
walk
,
git_commit_list_node
*
commit
,
int
hide
)
{
int
error
;
if
(
hide
)
mark_uninteresting
(
commit
)
;
if
(
hide
&&
mark_uninteresting
(
commit
)
<
0
)
return
-
1
;
if
(
commit
->
seen
)
return
0
;
...
...
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