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
d6c62852
Unverified
Commit
d6c62852
authored
Jun 23, 2020
by
Edward Thomson
Committed by
GitHub
Jun 23, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5559 from pks-t/pks/diff-print-fixups
Random fixes for diff-printing
parents
d43d490c
6256d023
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
39 deletions
+42
-39
src/diff_print.c
+42
-39
No files found.
src/diff_print.c
View file @
d6c62852
...
@@ -351,12 +351,11 @@ static int diff_delta_format_similarity_header(
...
@@ -351,12 +351,11 @@ static int diff_delta_format_similarity_header(
goto
done
;
goto
done
;
}
}
GIT_ASSERT
(
delta
->
status
==
GIT_DELTA_RENAMED
||
delta
->
status
==
GIT_DELTA_COPIED
);
if
(
delta
->
status
==
GIT_DELTA_RENAMED
)
if
(
delta
->
status
==
GIT_DELTA_RENAMED
)
type
=
"rename"
;
type
=
"rename"
;
else
if
(
delta
->
status
==
GIT_DELTA_COPIED
)
type
=
"copy"
;
else
else
abort
()
;
type
=
"copy"
;
if
((
error
=
git_buf_puts
(
&
old_path
,
delta
->
old_file
.
path
))
<
0
||
if
((
error
=
git_buf_puts
(
&
old_path
,
delta
->
old_file
.
path
))
<
0
||
(
error
=
git_buf_puts
(
&
new_path
,
delta
->
new_file
.
path
))
<
0
||
(
error
=
git_buf_puts
(
&
new_path
,
delta
->
new_file
.
path
))
<
0
||
...
@@ -492,6 +491,9 @@ static int format_binary(
...
@@ -492,6 +491,9 @@ static int format_binary(
}
}
git_buf_putc
(
pi
->
buf
,
'\n'
);
git_buf_putc
(
pi
->
buf
,
'\n'
);
if
(
git_buf_oom
(
pi
->
buf
))
return
-
1
;
return
0
;
return
0
;
}
}
...
@@ -502,21 +504,17 @@ static int diff_print_patch_file_binary_noshow(
...
@@ -502,21 +504,17 @@ static int diff_print_patch_file_binary_noshow(
git_buf
old_path
=
GIT_BUF_INIT
,
new_path
=
GIT_BUF_INIT
;
git_buf
old_path
=
GIT_BUF_INIT
,
new_path
=
GIT_BUF_INIT
;
int
error
;
int
error
;
if
((
error
=
diff_delta_format_path
(
if
((
error
=
diff_delta_format_path
(
&
old_path
,
old_pfx
,
delta
->
old_file
.
path
))
<
0
||
&
old_path
,
old_pfx
,
delta
->
old
_file
.
path
))
<
0
||
(
error
=
diff_delta_format_path
(
&
new_path
,
new_pfx
,
delta
->
new
_file
.
path
))
<
0
||
(
error
=
diff_delta_format_path
(
(
error
=
diff_delta_format_with_paths
(
pi
->
buf
,
delta
,
"Binary files %s and %s differ
\n
"
,
&
new_path
,
new_pfx
,
delta
->
new_file
.
path
))
<
0
)
old_path
.
ptr
,
new_path
.
ptr
))
<
0
)
goto
done
;
goto
done
;
pi
->
line
.
num_lines
=
1
;
pi
->
line
.
num_lines
=
1
;
error
=
diff_delta_format_with_paths
(
pi
->
buf
,
delta
,
"Binary files %s and %s differ
\n
"
,
old_path
.
ptr
,
new_path
.
ptr
);
done:
done:
git_buf_dispose
(
&
old_path
);
git_buf_dispose
(
&
old_path
);
git_buf_dispose
(
&
new_path
);
git_buf_dispose
(
&
new_path
);
return
error
;
return
error
;
}
}
...
@@ -543,7 +541,6 @@ static int diff_print_patch_file_binary(
...
@@ -543,7 +541,6 @@ static int diff_print_patch_file_binary(
binary
->
new_file
.
datalen
,
binary
->
new_file
.
inflatedlen
))
<
0
||
binary
->
new_file
.
datalen
,
binary
->
new_file
.
inflatedlen
))
<
0
||
(
error
=
format_binary
(
pi
,
binary
->
old_file
.
type
,
binary
->
old_file
.
data
,
(
error
=
format_binary
(
pi
,
binary
->
old_file
.
type
,
binary
->
old_file
.
data
,
binary
->
old_file
.
datalen
,
binary
->
old_file
.
inflatedlen
))
<
0
)
{
binary
->
old_file
.
datalen
,
binary
->
old_file
.
inflatedlen
))
<
0
)
{
if
(
error
==
GIT_EBUFS
)
{
if
(
error
==
GIT_EBUFS
)
{
git_error_clear
();
git_error_clear
();
git_buf_truncate
(
pi
->
buf
,
pre_binary_size
);
git_buf_truncate
(
pi
->
buf
,
pre_binary_size
);
...
@@ -587,8 +584,7 @@ static int diff_print_patch_file(
...
@@ -587,8 +584,7 @@ static int diff_print_patch_file(
(
pi
->
flags
&
GIT_DIFF_SHOW_UNTRACKED_CONTENT
)
==
0
))
(
pi
->
flags
&
GIT_DIFF_SHOW_UNTRACKED_CONTENT
)
==
0
))
return
0
;
return
0
;
if
((
error
=
git_diff_delta__format_file_header
(
if
((
error
=
git_diff_delta__format_file_header
(
pi
->
buf
,
delta
,
oldpfx
,
newpfx
,
pi
->
buf
,
delta
,
oldpfx
,
newpfx
,
id_strlen
,
print_index
))
<
0
)
id_strlen
,
print_index
))
<
0
)
return
error
;
return
error
;
...
@@ -699,17 +695,16 @@ int git_diff_print(
...
@@ -699,17 +695,16 @@ int git_diff_print(
return
-
1
;
return
-
1
;
}
}
if
(
!
(
error
=
diff_print_info_init_fromdiff
(
if
((
error
=
diff_print_info_init_fromdiff
(
&
pi
,
&
buf
,
diff
,
format
,
print_cb
,
payload
))
<
0
)
&
pi
,
&
buf
,
diff
,
format
,
print_cb
,
payload
)))
{
goto
out
;
error
=
git_diff_foreach
(
diff
,
print_file
,
print_binary
,
print_hunk
,
print_line
,
&
pi
);
if
(
error
)
/* make sure error message is set */
if
((
error
=
git_diff_foreach
(
diff
,
print_file
,
print_binary
,
print_hunk
,
print_line
,
&
pi
))
!=
0
)
{
git_error_set_after_callback_function
(
error
,
"git_diff_print"
);
git_error_set_after_callback_function
(
error
,
"git_diff_print"
);
goto
out
;
}
}
out:
git_buf_dispose
(
&
buf
);
git_buf_dispose
(
&
buf
);
return
error
;
return
error
;
}
}
...
@@ -742,14 +737,27 @@ int git_diff_print_callback__to_file_handle(
...
@@ -742,14 +737,27 @@ int git_diff_print_callback__to_file_handle(
void
*
payload
)
void
*
payload
)
{
{
FILE
*
fp
=
payload
?
payload
:
stdout
;
FILE
*
fp
=
payload
?
payload
:
stdout
;
int
error
;
GIT_UNUSED
(
delta
);
GIT_UNUSED
(
hunk
);
GIT_UNUSED
(
delta
);
GIT_UNUSED
(
hunk
);
if
(
line
->
origin
==
GIT_DIFF_LINE_CONTEXT
||
if
(
line
->
origin
==
GIT_DIFF_LINE_CONTEXT
||
line
->
origin
==
GIT_DIFF_LINE_ADDITION
||
line
->
origin
==
GIT_DIFF_LINE_ADDITION
||
line
->
origin
==
GIT_DIFF_LINE_DELETION
)
line
->
origin
==
GIT_DIFF_LINE_DELETION
)
{
fputc
(
line
->
origin
,
fp
);
while
((
error
=
fputc
(
line
->
origin
,
fp
))
==
EINTR
)
fwrite
(
line
->
content
,
1
,
line
->
content_len
,
fp
);
continue
;
if
(
error
)
{
git_error_set
(
GIT_ERROR_OS
,
"could not write status"
);
return
-
1
;
}
}
if
(
fwrite
(
line
->
content
,
line
->
content_len
,
1
,
fp
)
!=
1
)
{
git_error_set
(
GIT_ERROR_OS
,
"could not write line"
);
return
-
1
;
}
return
0
;
return
0
;
}
}
...
@@ -758,8 +766,7 @@ int git_diff_to_buf(git_buf *out, git_diff *diff, git_diff_format_t format)
...
@@ -758,8 +766,7 @@ int git_diff_to_buf(git_buf *out, git_diff *diff, git_diff_format_t format)
{
{
assert
(
out
&&
diff
);
assert
(
out
&&
diff
);
git_buf_sanitize
(
out
);
git_buf_sanitize
(
out
);
return
git_diff_print
(
return
git_diff_print
(
diff
,
format
,
git_diff_print_callback__to_buf
,
out
);
diff
,
format
,
git_diff_print_callback__to_buf
,
out
);
}
}
/* print a git_patch to an output callback */
/* print a git_patch to an output callback */
...
@@ -768,28 +775,24 @@ int git_patch_print(
...
@@ -768,28 +775,24 @@ int git_patch_print(
git_diff_line_cb
print_cb
,
git_diff_line_cb
print_cb
,
void
*
payload
)
void
*
payload
)
{
{
int
error
;
git_buf
temp
=
GIT_BUF_INIT
;
git_buf
temp
=
GIT_BUF_INIT
;
diff_print_info
pi
;
diff_print_info
pi
;
int
error
;
assert
(
patch
&&
print_cb
);
assert
(
patch
&&
print_cb
);
if
(
!
(
error
=
diff_print_info_init_frompatch
(
if
((
error
=
diff_print_info_init_frompatch
(
&
pi
,
&
temp
,
patch
,
&
pi
,
&
temp
,
patch
,
GIT_DIFF_FORMAT_PATCH
,
print_cb
,
payload
))
<
0
)
GIT_DIFF_FORMAT_PATCH
,
print_cb
,
payload
)))
goto
out
;
{
error
=
git_patch__invoke_callbacks
(
if
((
error
=
git_patch__invoke_callbacks
(
patch
,
diff_print_patch_file
,
diff_print_patch_binary
,
patch
,
diff_print_patch_hunk
,
diff_print_patch_line
,
&
pi
))
<
0
)
{
diff_print_patch_file
,
diff_print_patch_binary
,
diff_print_patch_hunk
,
diff_print_patch_line
,
&
pi
);
if
(
error
)
/* make sure error message is set */
git_error_set_after_callback_function
(
error
,
"git_patch_print"
);
git_error_set_after_callback_function
(
error
,
"git_patch_print"
);
goto
out
;
}
}
out:
git_buf_dispose
(
&
temp
);
git_buf_dispose
(
&
temp
);
return
error
;
return
error
;
}
}
...
...
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