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
f6234cd9
Commit
f6234cd9
authored
Dec 21, 2012
by
Ignacio Casal Quinteiro
Committed by
Russell Belfer
Jan 07, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Introduce git_diff_blob_to_buffer
parent
7dfc5c3c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
109 additions
and
1 deletions
+109
-1
include/git2/diff.h
+24
-0
src/diff_output.c
+85
-1
No files found.
include/git2/diff.h
View file @
f6234cd9
...
@@ -824,6 +824,30 @@ GIT_EXTERN(int) git_diff_blobs(
...
@@ -824,6 +824,30 @@ GIT_EXTERN(int) git_diff_blobs(
git_diff_data_cb
line_cb
,
git_diff_data_cb
line_cb
,
void
*
payload
);
void
*
payload
);
/**
* Directly run a text diff between a blob and a buffer.
*
* Compared to a file, a blob and a buffer lack some contextual information. As such,
* the `git_diff_file` parameters of the callbacks will be filled
* accordingly to the following: `mode` will be set to 0, `path` will be set
* to NULL. When dealing with a NULL blob, `oid` will be set to 0.
*
* When at least the blob or the buffer are binary, the
* `git_diff_delta` binary attribute will be set to 1 and no call to the
* hunk_cb nor line_cb will be made.
*
* @return 0 on success, GIT_EUSER on non-zero callback, or error code
*/
GIT_EXTERN
(
int
)
git_diff_blob_to_buffer
(
git_blob
*
old_blob
,
char
*
buffer
,
size_t
buffer_len
,
const
git_diff_options
*
options
,
git_diff_file_cb
file_cb
,
git_diff_hunk_cb
hunk_cb
,
git_diff_data_cb
data_cb
,
void
*
payload
);
GIT_END_DECL
GIT_END_DECL
/** @} */
/** @} */
...
...
src/diff_output.c
View file @
f6234cd9
...
@@ -1231,7 +1231,6 @@ int git_diff_print_patch(
...
@@ -1231,7 +1231,6 @@ int git_diff_print_patch(
return
error
;
return
error
;
}
}
static
void
set_data_from_blob
(
static
void
set_data_from_blob
(
git_blob
*
blob
,
git_map
*
map
,
git_diff_file
*
file
)
git_blob
*
blob
,
git_map
*
map
,
git_diff_file
*
file
)
{
{
...
@@ -1328,6 +1327,91 @@ cleanup:
...
@@ -1328,6 +1327,91 @@ cleanup:
return
error
;
return
error
;
}
}
static
void
set_data_from_buffer
(
char
*
buffer
,
size_t
buffer_len
,
git_map
*
map
,
git_diff_file
*
file
)
{
file
->
size
=
buffer_len
;
file
->
mode
=
0644
;
map
->
len
=
(
size_t
)
file
->
size
;
map
->
data
=
(
char
*
)
buffer
;
}
int
git_diff_blob_to_buffer
(
git_blob
*
old_blob
,
char
*
buffer
,
size_t
buffer_len
,
const
git_diff_options
*
options
,
git_diff_file_cb
file_cb
,
git_diff_hunk_cb
hunk_cb
,
git_diff_data_cb
data_cb
,
void
*
payload
)
{
int
error
;
git_repository
*
repo
;
diff_context
ctxt
;
git_diff_delta
delta
;
git_diff_patch
patch
;
GITERR_CHECK_VERSION
(
options
,
GIT_DIFF_OPTIONS_VERSION
,
"git_diff_options"
);
if
(
old_blob
)
repo
=
git_object_owner
((
git_object
*
)
old_blob
);
else
repo
=
NULL
;
diff_context_init
(
&
ctxt
,
NULL
,
repo
,
options
,
file_cb
,
hunk_cb
,
data_cb
,
payload
);
diff_patch_init
(
&
ctxt
,
&
patch
);
/* create a fake delta record and simulate diff_patch_load */
memset
(
&
delta
,
0
,
sizeof
(
delta
));
delta
.
binary
=
-
1
;
if
(
options
&&
(
options
->
flags
&
GIT_DIFF_REVERSE
))
{
set_data_from_blob
(
old_blob
,
&
patch
.
new_data
,
&
delta
.
new_file
);
set_data_from_buffer
(
buffer
,
buffer_len
,
&
patch
.
old_data
,
&
delta
.
old_file
);
}
else
{
set_data_from_blob
(
old_blob
,
&
patch
.
old_data
,
&
delta
.
old_file
);
set_data_from_buffer
(
buffer
,
buffer_len
,
&
patch
.
new_data
,
&
delta
.
new_file
);
}
delta
.
status
=
buffer
?
(
old_blob
?
GIT_DELTA_MODIFIED
:
GIT_DELTA_ADDED
)
:
(
old_blob
?
GIT_DELTA_DELETED
:
GIT_DELTA_UNTRACKED
);
if
(
git_oid_cmp
(
&
delta
.
new_file
.
oid
,
&
delta
.
old_file
.
oid
)
==
0
)
delta
.
status
=
GIT_DELTA_UNMODIFIED
;
patch
.
delta
=
&
delta
;
if
((
error
=
diff_delta_is_binary_by_content
(
&
ctxt
,
&
delta
,
&
delta
.
old_file
,
&
patch
.
old_data
))
<
0
||
(
error
=
diff_delta_is_binary_by_content
(
&
ctxt
,
&
delta
,
&
delta
.
new_file
,
&
patch
.
new_data
))
<
0
)
goto
cleanup
;
patch
.
flags
|=
GIT_DIFF_PATCH_LOADED
;
if
(
delta
.
binary
!=
1
&&
delta
.
status
!=
GIT_DELTA_UNMODIFIED
)
patch
.
flags
|=
GIT_DIFF_PATCH_DIFFABLE
;
/* do diffs */
if
(
!
(
error
=
diff_delta_file_callback
(
&
ctxt
,
patch
.
delta
,
1
)))
error
=
diff_patch_generate
(
&
ctxt
,
&
patch
);
cleanup:
diff_patch_unload
(
&
patch
);
if
(
error
==
GIT_EUSER
)
giterr_clear
();
return
error
;
}
size_t
git_diff_num_deltas
(
git_diff_list
*
diff
)
size_t
git_diff_num_deltas
(
git_diff_list
*
diff
)
{
{
...
...
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