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
ec532d5e
Commit
ec532d5e
authored
Jun 21, 2012
by
Ben Straub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Checkout: initial tree walkers.
parent
cb2dc0b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
2 deletions
+50
-2
src/checkout.c
+50
-2
No files found.
src/checkout.c
View file @
ec532d5e
...
...
@@ -15,6 +15,7 @@
#include "common.h"
#include "refs.h"
#include "buffer.h"
GIT_BEGIN_DECL
...
...
@@ -42,6 +43,43 @@ static int get_head_tree(git_tree **out, git_repository *repo)
return
retcode
;
}
typedef
struct
tree_walk_data
{
git_indexer_stats
*
stats
;
}
tree_walk_data
;
static
int
count_walker
(
const
char
*
path
,
git_tree_entry
*
entry
,
void
*
payload
)
{
GIT_UNUSED
(
path
);
GIT_UNUSED
(
entry
);
((
tree_walk_data
*
)
payload
)
->
stats
->
total
++
;
return
0
;
}
static
int
checkout_walker
(
const
char
*
path
,
git_tree_entry
*
entry
,
void
*
payload
)
{
int
retcode
=
0
;
tree_walk_data
*
data
=
(
tree_walk_data
*
)
payload
;
switch
(
git_tree_entry_type
(
entry
))
{
case
GIT_OBJ_TREE
:
/* TODO: mkdir */
break
;
case
GIT_OBJ_BLOB
:
/* TODO: create/populate file */
break
;
default:
retcode
=
-
1
;
break
;
}
data
->
stats
->
processed
++
;
return
retcode
;
}
/* TODO
* -> Line endings
*/
...
...
@@ -50,13 +88,23 @@ int git_checkout_force(git_repository *repo, git_indexer_stats *stats)
int
retcode
=
GIT_ERROR
;
git_indexer_stats
dummy_stats
;
git_tree
*
tree
;
tree_walk_data
payload
;
assert
(
repo
);
if
(
!
stats
)
stats
=
&
dummy_stats
;
stats
->
total
=
stats
->
processed
=
0
;
payload
.
stats
=
stats
;
if
(
!
get_head_tree
(
&
tree
,
repo
))
{
/* TODO */
retcode
=
0
;
/* Count all the tree nodes for progress information */
if
(
!
git_tree_walk
(
tree
,
count_walker
,
GIT_TREEWALK_POST
,
&
payload
))
{
/* Checkout the files */
if
(
!
git_tree_walk
(
tree
,
checkout_walker
,
GIT_TREEWALK_POST
,
&
payload
))
{
retcode
=
0
;
}
}
git_tree_free
(
tree
);
}
return
retcode
;
...
...
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