Merge branch 'js/diff-rename-force-stable-sort'

The rename detection logic sorts a list of rename source candidates
by similarity to pick the best candidate, which means that a tie
between sources with the same similarity is broken by the original
location in the original candidate list (which is sorted by path).
Force the sorting by similarity done with a stable sort, which is
not promised by system supplied qsort(3), to ensure consistent
results across platforms.

* js/diff-rename-force-stable-sort:
  diffcore_rename(): use a stable sort
  Move git_sort(), a stable sort, into into libgit.a
This commit is contained in:
Junio C Hamano 2019-10-09 14:00:59 +09:00
commit 772cad0afb
5 changed files with 14 additions and 16 deletions

View File

@ -986,6 +986,7 @@ LIB_OBJS += shallow.o
LIB_OBJS += sideband.o LIB_OBJS += sideband.o
LIB_OBJS += sigchain.o LIB_OBJS += sigchain.o
LIB_OBJS += split-index.o LIB_OBJS += split-index.o
LIB_OBJS += stable-qsort.o
LIB_OBJS += strbuf.o LIB_OBJS += strbuf.o
LIB_OBJS += streaming.o LIB_OBJS += streaming.o
LIB_OBJS += string-list.o LIB_OBJS += string-list.o
@ -1731,7 +1732,6 @@ ifdef NO_GETPAGESIZE
endif endif
ifdef INTERNAL_QSORT ifdef INTERNAL_QSORT
COMPAT_CFLAGS += -DINTERNAL_QSORT COMPAT_CFLAGS += -DINTERNAL_QSORT
COMPAT_OBJS += compat/qsort.o
endif endif
ifdef HAVE_ISO_QSORT_S ifdef HAVE_ISO_QSORT_S
COMPAT_CFLAGS += -DHAVE_ISO_QSORT_S COMPAT_CFLAGS += -DHAVE_ISO_QSORT_S

View File

@ -1236,11 +1236,6 @@ static int wenvcmp(const void *a, const void *b)
return _wcsnicmp(p, q, p_len); return _wcsnicmp(p, q, p_len);
} }
/* We need a stable sort to convert the environment between UTF-16 <-> UTF-8 */
#ifndef INTERNAL_QSORT
#include "qsort.c"
#endif
/* /*
* Build an environment block combining the inherited environment * Build an environment block combining the inherited environment
* merged with the given list of settings. * merged with the given list of settings.
@ -1279,8 +1274,8 @@ static wchar_t *make_environment_block(char **deltaenv)
/* /*
* If there is a deltaenv, let's accumulate all keys into `array`, * If there is a deltaenv, let's accumulate all keys into `array`,
* sort them using the stable git_qsort() and then copy, skipping * sort them using the stable git_stable_qsort() and then copy,
* duplicate keys * skipping duplicate keys
*/ */
for (p = wenv; p && *p; ) { for (p = wenv; p && *p; ) {
ALLOC_GROW(array, nr + 1, alloc); ALLOC_GROW(array, nr + 1, alloc);
@ -1303,7 +1298,7 @@ static wchar_t *make_environment_block(char **deltaenv)
p += wlen + 1; p += wlen + 1;
} }
git_qsort(array, nr, sizeof(*array), wenvcmp); git_stable_qsort(array, nr, sizeof(*array), wenvcmp);
ALLOC_ARRAY(result, size + delta_size); ALLOC_ARRAY(result, size + delta_size);
for (p = result, i = 0; i < nr; i++) { for (p = result, i = 0; i < nr; i++) {

View File

@ -585,7 +585,7 @@ void diffcore_rename(struct diff_options *options)
stop_progress(&progress); stop_progress(&progress);
/* cost matrix sorted by most to least similar pair */ /* cost matrix sorted by most to least similar pair */
QSORT(mx, dst_cnt * NUM_CANDIDATE_PER_DST, score_compare); STABLE_QSORT(mx, dst_cnt * NUM_CANDIDATE_PER_DST, score_compare);
rename_count += find_renames(mx, dst_cnt, minimum_score, 0); rename_count += find_renames(mx, dst_cnt, minimum_score, 0);
if (detect_rename == DIFF_DETECT_COPY) if (detect_rename == DIFF_DETECT_COPY)

View File

@ -1092,10 +1092,10 @@ static inline int strtol_i(char const *s, int base, int *result)
return 0; return 0;
} }
void git_stable_qsort(void *base, size_t nmemb, size_t size,
int(*compar)(const void *, const void *));
#ifdef INTERNAL_QSORT #ifdef INTERNAL_QSORT
void git_qsort(void *base, size_t nmemb, size_t size, #define qsort git_stable_qsort
int(*compar)(const void *, const void *));
#define qsort git_qsort
#endif #endif
#define QSORT(base, n, compar) sane_qsort((base), (n), sizeof(*(base)), compar) #define QSORT(base, n, compar) sane_qsort((base), (n), sizeof(*(base)), compar)
@ -1106,6 +1106,9 @@ static inline void sane_qsort(void *base, size_t nmemb, size_t size,
qsort(base, nmemb, size, compar); qsort(base, nmemb, size, compar);
} }
#define STABLE_QSORT(base, n, compar) \
git_stable_qsort((base), (n), sizeof(*(base)), compar)
#ifndef HAVE_ISO_QSORT_S #ifndef HAVE_ISO_QSORT_S
int git_qsort_s(void *base, size_t nmemb, size_t size, int git_qsort_s(void *base, size_t nmemb, size_t size,
int (*compar)(const void *, const void *, void *), void *ctx); int (*compar)(const void *, const void *, void *), void *ctx);

View File

@ -1,4 +1,4 @@
#include "../git-compat-util.h" #include "git-compat-util.h"
/* /*
* A merge sort implementation, simplified from the qsort implementation * A merge sort implementation, simplified from the qsort implementation
@ -44,8 +44,8 @@ static void msort_with_tmp(void *b, size_t n, size_t s,
memcpy(b, t, (n - n2) * s); memcpy(b, t, (n - n2) * s);
} }
void git_qsort(void *b, size_t n, size_t s, void git_stable_qsort(void *b, size_t n, size_t s,
int (*cmp)(const void *, const void *)) int (*cmp)(const void *, const void *))
{ {
const size_t size = st_mult(n, s); const size_t size = st_mult(n, s);
char buf[1024]; char buf[1024];