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
8baca134
Commit
8baca134
authored
May 27, 2013
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1614 from schu/packbuilder-write
packbuilder: also write index in git_packbuilder_write
parents
63908cee
563c19a9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
25 deletions
+45
-25
include/git2/pack.h
+9
-3
src/pack-objects.c
+36
-22
No files found.
include/git2/pack.h
View file @
8baca134
...
...
@@ -107,14 +107,20 @@ GIT_EXTERN(int) git_packbuilder_insert_tree(git_packbuilder *pb, const git_oid *
GIT_EXTERN
(
int
)
git_packbuilder_insert_commit
(
git_packbuilder
*
pb
,
const
git_oid
*
id
);
/**
* Write the new pack and
the corresponding index to path
* Write the new pack and
corresponding index file to path.
*
* @param pb The packbuilder
* @param path Directory to store the new pack and index
* @param path to the directory where the packfile and index should be stored
* @param progress_cb function to call with progress information from the indexer (optional)
* @param progress_payload payload for the progress callback (optional)
*
* @return 0 or an error code
*/
GIT_EXTERN
(
int
)
git_packbuilder_write
(
git_packbuilder
*
pb
,
const
char
*
file
);
GIT_EXTERN
(
int
)
git_packbuilder_write
(
git_packbuilder
*
pb
,
const
char
*
path
,
git_transfer_progress_callback
progress_cb
,
void
*
progress_cb_payload
);
typedef
int
(
*
git_packbuilder_foreach_cb
)(
void
*
buf
,
size_t
size
,
void
*
payload
);
/**
...
...
src/pack-objects.c
View file @
8baca134
...
...
@@ -33,6 +33,11 @@ struct tree_walk_context {
git_buf
buf
;
};
struct
pack_write_context
{
git_indexer_stream
*
indexer
;
git_transfer_progress
*
stats
;
};
#ifdef GIT_THREADS
#define GIT_PACKBUILDER__MUTEX_OP(pb, mtx, op) do { \
...
...
@@ -620,26 +625,6 @@ static int write_pack_buf(void *buf, size_t size, void *data)
return
git_buf_put
(
b
,
buf
,
size
);
}
static
int
write_pack_to_file
(
void
*
buf
,
size_t
size
,
void
*
data
)
{
git_filebuf
*
file
=
(
git_filebuf
*
)
data
;
return
git_filebuf_write
(
file
,
buf
,
size
);
}
static
int
write_pack_file
(
git_packbuilder
*
pb
,
const
char
*
path
)
{
git_filebuf
file
=
GIT_FILEBUF_INIT
;
if
(
git_filebuf_open
(
&
file
,
path
,
0
)
<
0
||
write_pack
(
pb
,
&
write_pack_to_file
,
&
file
)
<
0
||
git_filebuf_commit
(
&
file
,
GIT_PACK_FILE_MODE
)
<
0
)
{
git_filebuf_cleanup
(
&
file
);
return
-
1
;
}
return
0
;
}
static
int
type_size_sort
(
const
void
*
_a
,
const
void
*
_b
)
{
const
git_pobject
*
a
=
(
git_pobject
*
)
_a
;
...
...
@@ -1259,10 +1244,39 @@ int git_packbuilder_write_buf(git_buf *buf, git_packbuilder *pb)
return
write_pack
(
pb
,
&
write_pack_buf
,
buf
);
}
int
git_packbuilder_write
(
git_packbuilder
*
pb
,
const
char
*
path
)
static
int
write_cb
(
void
*
buf
,
size_t
len
,
void
*
payload
)
{
struct
pack_write_context
*
ctx
=
payload
;
return
git_indexer_stream_add
(
ctx
->
indexer
,
buf
,
len
,
ctx
->
stats
);
}
int
git_packbuilder_write
(
git_packbuilder
*
pb
,
const
char
*
path
,
git_transfer_progress_callback
progress_cb
,
void
*
progress_cb_payload
)
{
git_indexer_stream
*
indexer
;
git_transfer_progress
stats
;
struct
pack_write_context
ctx
;
PREPARE_PACK
;
return
write_pack_file
(
pb
,
path
);
if
(
git_indexer_stream_new
(
&
indexer
,
path
,
progress_cb
,
progress_cb_payload
)
<
0
)
return
-
1
;
ctx
.
indexer
=
indexer
;
ctx
.
stats
=
&
stats
;
if
(
git_packbuilder_foreach
(
pb
,
write_cb
,
&
ctx
)
<
0
||
git_indexer_stream_finalize
(
indexer
,
&
stats
)
<
0
)
{
git_indexer_stream_free
(
indexer
);
return
-
1
;
}
git_indexer_stream_free
(
indexer
);
return
0
;
}
#undef PREPARE_PACK
...
...
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