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
e60883c8
Commit
e60883c8
authored
Apr 22, 2014
by
Russell Belfer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace math fns with simpler integer math
parent
8d09efa2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
11 deletions
+23
-11
src/diff_stats.c
+23
-11
No files found.
src/diff_stats.c
View file @
e60883c8
...
@@ -8,7 +8,6 @@
...
@@ -8,7 +8,6 @@
#include "vector.h"
#include "vector.h"
#include "diff.h"
#include "diff.h"
#include "diff_patch.h"
#include "diff_patch.h"
#include <math.h>
#define DIFF_RENAME_FILE_SEPARATOR " => "
#define DIFF_RENAME_FILE_SEPARATOR " => "
#define STATS_FULL_MIN_SCALE 7
#define STATS_FULL_MIN_SCALE 7
...
@@ -32,12 +31,25 @@ struct git_diff_stats {
...
@@ -32,12 +31,25 @@ struct git_diff_stats {
int
max_digits
;
int
max_digits
;
};
};
static
int
digits_for_value
(
size_t
val
)
{
int
count
=
1
;
size_t
placevalue
=
10
;
while
(
val
>=
placevalue
)
{
++
count
;
placevalue
*=
10
;
}
return
count
;
}
int
git_diff_file_stats__full_to_buf
(
int
git_diff_file_stats__full_to_buf
(
git_buf
*
out
,
git_buf
*
out
,
const
git_diff_delta
*
delta
,
const
git_diff_delta
*
delta
,
const
diff_file_stats
*
filestat
,
const
diff_file_stats
*
filestat
,
const
git_diff_stats
*
stats
,
const
git_diff_stats
*
stats
,
double
scale_to
)
size_t
width
)
{
{
const
char
*
old_path
=
NULL
,
*
new_path
=
NULL
;
const
char
*
old_path
=
NULL
,
*
new_path
=
NULL
;
size_t
padding
,
old_size
,
new_size
;
size_t
padding
,
old_size
,
new_size
;
...
@@ -81,15 +93,16 @@ int git_diff_file_stats__full_to_buf(
...
@@ -81,15 +93,16 @@ int git_diff_file_stats__full_to_buf(
if
(
git_buf_putc
(
out
,
' '
)
<
0
)
if
(
git_buf_putc
(
out
,
' '
)
<
0
)
goto
on_error
;
goto
on_error
;
if
(
scale_to
<=
0
)
{
if
(
!
width
)
{
if
(
git_buf_putcn
(
out
,
'+'
,
filestat
->
insertions
)
<
0
||
if
(
git_buf_putcn
(
out
,
'+'
,
filestat
->
insertions
)
<
0
||
git_buf_putcn
(
out
,
'-'
,
filestat
->
deletions
)
<
0
)
git_buf_putcn
(
out
,
'-'
,
filestat
->
deletions
)
<
0
)
goto
on_error
;
goto
on_error
;
}
else
{
}
else
{
size_t
total
=
filestat
->
insertions
+
filestat
->
deletions
;
size_t
total
=
filestat
->
insertions
+
filestat
->
deletions
;
double
full
=
round
(
total
*
scale_to
/
stats
->
max_filestat
);
size_t
full
=
(
total
*
width
+
stats
->
max_filestat
/
2
)
/
stats
->
max_filestat
;
size_t
plus
=
full
*
filestat
->
insertions
/
total
;
size_t
plus
=
full
*
filestat
->
insertions
/
total
;
size_t
minus
=
(
size_t
)
full
-
plus
;
size_t
minus
=
full
-
plus
;
if
(
git_buf_putcn
(
out
,
'+'
,
max
(
plus
,
1
))
<
0
||
if
(
git_buf_putcn
(
out
,
'+'
,
max
(
plus
,
1
))
<
0
||
git_buf_putcn
(
out
,
'-'
,
max
(
minus
,
1
))
<
0
)
git_buf_putcn
(
out
,
'-'
,
max
(
minus
,
1
))
<
0
)
...
@@ -205,7 +218,7 @@ int git_diff_get_stats(
...
@@ -205,7 +218,7 @@ int git_diff_get_stats(
stats
->
files_changed
=
deltas
;
stats
->
files_changed
=
deltas
;
stats
->
insertions
=
total_insertions
;
stats
->
insertions
=
total_insertions
;
stats
->
deletions
=
total_deletions
;
stats
->
deletions
=
total_deletions
;
stats
->
max_digits
=
(
int
)
ceil
(
log10
(
stats
->
max_filestat
+
1
)
);
stats
->
max_digits
=
digits_for_value
(
stats
->
max_filestat
+
1
);
if
(
error
<
0
)
{
if
(
error
<
0
)
{
git_diff_stats_free
(
stats
);
git_diff_stats_free
(
stats
);
...
@@ -265,12 +278,11 @@ int git_diff_stats_to_buf(
...
@@ -265,12 +278,11 @@ int git_diff_stats_to_buf(
}
}
if
(
format
&
GIT_DIFF_STATS_FULL
)
{
if
(
format
&
GIT_DIFF_STATS_FULL
)
{
double
scale_to
=
-
1
;
if
(
width
>
0
)
{
if
(
width
>
0
)
{
if
(
width
>
stats
->
max_name
+
stats
->
max_digits
+
5
)
if
(
width
>
stats
->
max_name
+
stats
->
max_digits
+
5
)
scale_to
=
width
-
(
stats
->
max_name
+
stats
->
max_digits
+
5
);
width
-=
(
stats
->
max_name
+
stats
->
max_digits
+
5
);
if
(
scale_to
<
STATS_FULL_MIN_SCALE
)
if
(
width
<
STATS_FULL_MIN_SCALE
)
scale_to
=
STATS_FULL_MIN_SCALE
;
width
=
STATS_FULL_MIN_SCALE
;
}
}
for
(
i
=
0
;
i
<
stats
->
files_changed
;
++
i
)
{
for
(
i
=
0
;
i
<
stats
->
files_changed
;
++
i
)
{
...
@@ -278,7 +290,7 @@ int git_diff_stats_to_buf(
...
@@ -278,7 +290,7 @@ int git_diff_stats_to_buf(
continue
;
continue
;
error
=
git_diff_file_stats__full_to_buf
(
error
=
git_diff_file_stats__full_to_buf
(
out
,
delta
,
&
stats
->
filestats
[
i
],
stats
,
scale_to
);
out
,
delta
,
&
stats
->
filestats
[
i
],
stats
,
width
);
if
(
error
<
0
)
if
(
error
<
0
)
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