Skip to content

Commit 9ed0d8d

Browse files
rscharfegitster
authored andcommitted
use QSORT
Apply the semantic patch contrib/coccinelle/qsort.cocci to the code base, replacing calls of qsort(3) with QSORT. The resulting code is shorter and supports empty arrays with NULL pointers. Signed-off-by: Rene Scharfe <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent dbc540c commit 9ed0d8d

30 files changed

+44
-65
lines changed

bisect.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ static struct commit_list *best_bisection_sorted(struct commit_list *list, int n
215215
array[cnt].distance = distance;
216216
cnt++;
217217
}
218-
qsort(array, cnt, sizeof(*array), compare_commit_dist);
218+
QSORT(array, cnt, compare_commit_dist);
219219
for (p = list, i = 0; i < cnt; i++) {
220220
char buf[100]; /* enough for dist=%d */
221221
struct object *obj = &(array[i].commit->object);

builtin/describe.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ static void describe(const char *arg, int last_one)
352352
oid_to_hex(oid));
353353
}
354354

355-
qsort(all_matches, match_cnt, sizeof(all_matches[0]), compare_pt);
355+
QSORT(all_matches, match_cnt, compare_pt);
356356

357357
if (gave_up_on) {
358358
commit_list_insert_by_date(gave_up_on, &list);

builtin/fast-export.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ static void show_filemodify(struct diff_queue_struct *q,
347347
* Handle files below a directory first, in case they are all deleted
348348
* and the directory changes to a file or symlink.
349349
*/
350-
qsort(q->queue, q->nr, sizeof(q->queue[0]), depth_first);
350+
QSORT(q->queue, q->nr, depth_first);
351351

352352
for (i = 0; i < q->nr; i++) {
353353
struct diff_filespec *ospec = q->queue[i]->one;

builtin/fmt-merge-msg.c

+2-4
Original file line numberDiff line numberDiff line change
@@ -315,12 +315,10 @@ static void add_people_info(struct strbuf *out,
315315
struct string_list *committers)
316316
{
317317
if (authors->nr)
318-
qsort(authors->items,
319-
authors->nr, sizeof(authors->items[0]),
318+
QSORT(authors->items, authors->nr,
320319
cmp_string_list_util_as_integral);
321320
if (committers->nr)
322-
qsort(committers->items,
323-
committers->nr, sizeof(committers->items[0]),
321+
QSORT(committers->items, committers->nr,
324322
cmp_string_list_util_as_integral);
325323

326324
credit_people(out, authors, 'a');

builtin/index-pack.c

+3-5
Original file line numberDiff line numberDiff line change
@@ -1190,10 +1190,8 @@ static void resolve_deltas(void)
11901190
return;
11911191

11921192
/* Sort deltas by base SHA1/offset for fast searching */
1193-
qsort(ofs_deltas, nr_ofs_deltas, sizeof(struct ofs_delta_entry),
1194-
compare_ofs_delta_entry);
1195-
qsort(ref_deltas, nr_ref_deltas, sizeof(struct ref_delta_entry),
1196-
compare_ref_delta_entry);
1193+
QSORT(ofs_deltas, nr_ofs_deltas, compare_ofs_delta_entry);
1194+
QSORT(ref_deltas, nr_ref_deltas, compare_ref_delta_entry);
11971195

11981196
if (verbose || show_resolving_progress)
11991197
progress = start_progress(_("Resolving deltas"),
@@ -1356,7 +1354,7 @@ static void fix_unresolved_deltas(struct sha1file *f)
13561354
ALLOC_ARRAY(sorted_by_pos, nr_ref_deltas);
13571355
for (i = 0; i < nr_ref_deltas; i++)
13581356
sorted_by_pos[i] = &ref_deltas[i];
1359-
qsort(sorted_by_pos, nr_ref_deltas, sizeof(*sorted_by_pos), delta_pos_compare);
1357+
QSORT(sorted_by_pos, nr_ref_deltas, delta_pos_compare);
13601358

13611359
for (i = 0; i < nr_ref_deltas; i++) {
13621360
struct ref_delta_entry *d = sorted_by_pos[i];

builtin/mktree.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ static void write_tree(unsigned char *sha1)
4646
size_t size;
4747
int i;
4848

49-
qsort(entries, used, sizeof(*entries), ent_compare);
49+
QSORT(entries, used, ent_compare);
5050
for (size = i = 0; i < used; i++)
5151
size += 32 + entries[i]->len;
5252

builtin/name-rev.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,7 @@ static const char *get_exact_ref_match(const struct object *o)
195195
return NULL;
196196

197197
if (!tip_table.sorted) {
198-
qsort(tip_table.table, tip_table.nr, sizeof(*tip_table.table),
199-
tipcmp);
198+
QSORT(tip_table.table, tip_table.nr, tipcmp);
200199
tip_table.sorted = 1;
201200
}
202201

builtin/pack-objects.c

+3-4
Original file line numberDiff line numberDiff line change
@@ -1535,7 +1535,7 @@ static void get_object_details(void)
15351535
sorted_by_offset = xcalloc(to_pack.nr_objects, sizeof(struct object_entry *));
15361536
for (i = 0; i < to_pack.nr_objects; i++)
15371537
sorted_by_offset[i] = to_pack.objects + i;
1538-
qsort(sorted_by_offset, to_pack.nr_objects, sizeof(*sorted_by_offset), pack_offset_sort);
1538+
QSORT(sorted_by_offset, to_pack.nr_objects, pack_offset_sort);
15391539

15401540
for (i = 0; i < to_pack.nr_objects; i++) {
15411541
struct object_entry *entry = sorted_by_offset[i];
@@ -2257,7 +2257,7 @@ static void prepare_pack(int window, int depth)
22572257
if (progress)
22582258
progress_state = start_progress(_("Compressing objects"),
22592259
nr_deltas);
2260-
qsort(delta_list, n, sizeof(*delta_list), type_size_sort);
2260+
QSORT(delta_list, n, type_size_sort);
22612261
ll_find_deltas(delta_list, n, window+1, depth, &nr_done);
22622262
stop_progress(&progress_state);
22632263
if (nr_done != nr_deltas)
@@ -2449,8 +2449,7 @@ static void add_objects_in_unpacked_packs(struct rev_info *revs)
24492449
}
24502450

24512451
if (in_pack.nr) {
2452-
qsort(in_pack.array, in_pack.nr, sizeof(in_pack.array[0]),
2453-
ofscmp);
2452+
QSORT(in_pack.array, in_pack.nr, ofscmp);
24542453
for (i = 0; i < in_pack.nr; i++) {
24552454
struct object *o = in_pack.array[i].object;
24562455
add_object_entry(o->oid.hash, o->type, "", 0);

builtin/remote.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1197,8 +1197,7 @@ static int show(int argc, const char **argv)
11971197

11981198
info.width = info.width2 = 0;
11991199
for_each_string_list(&states.push, add_push_to_show_info, &info);
1200-
qsort(info.list->items, info.list->nr,
1201-
sizeof(*info.list->items), cmp_string_with_push);
1200+
QSORT(info.list->items, info.list->nr, cmp_string_with_push);
12021201
if (info.list->nr)
12031202
printf_ln(Q_(" Local ref configured for 'git push'%s:",
12041203
" Local refs configured for 'git push'%s:",

diff.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -2019,7 +2019,7 @@ static void show_dirstat(struct diff_options *options)
20192019
return;
20202020

20212021
/* Show all directories with more than x% of the changes */
2022-
qsort(dir.files, dir.nr, sizeof(dir.files[0]), dirstat_compare);
2022+
QSORT(dir.files, dir.nr, dirstat_compare);
20232023
gather_dirstat(options, &dir, changed, "", 0);
20242024
}
20252025

@@ -2063,7 +2063,7 @@ static void show_dirstat_by_line(struct diffstat_t *data, struct diff_options *o
20632063
return;
20642064

20652065
/* Show all directories with more than x% of the changes */
2066-
qsort(dir.files, dir.nr, sizeof(dir.files[0]), dirstat_compare);
2066+
QSORT(dir.files, dir.nr, dirstat_compare);
20672067
gather_dirstat(options, &dir, changed, "", 0);
20682068
}
20692069

@@ -4923,7 +4923,7 @@ static int diffnamecmp(const void *a_, const void *b_)
49234923
void diffcore_fix_diff_index(struct diff_options *options)
49244924
{
49254925
struct diff_queue_struct *q = &diff_queued_diff;
4926-
qsort(q->queue, q->nr, sizeof(q->queue[0]), diffnamecmp);
4926+
QSORT(q->queue, q->nr, diffnamecmp);
49274927
}
49284928

49294929
void diffcore_std(struct diff_options *options)

diffcore-delta.c

+1-4
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,7 @@ static struct spanhash_top *hash_chars(struct diff_filespec *one)
158158
n = 0;
159159
accum1 = accum2 = 0;
160160
}
161-
qsort(hash->data,
162-
1ul << hash->alloc_log2,
163-
sizeof(hash->data[0]),
164-
spanhash_cmp);
161+
QSORT(hash->data, 1ul << hash->alloc_log2, spanhash_cmp);
165162
return hash;
166163
}
167164

diffcore-order.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ void order_objects(const char *orderfile, obj_path_fn_t obj_path,
101101
objs[i].orig_order = i;
102102
objs[i].order = match_order(obj_path(objs[i].obj));
103103
}
104-
qsort(objs, nr, sizeof(*objs), compare_objs_order);
104+
QSORT(objs, nr, compare_objs_order);
105105
}
106106

107107
static const char *pair_pathtwo(void *obj)

diffcore-rename.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ void diffcore_rename(struct diff_options *options)
580580
stop_progress(&progress);
581581

582582
/* cost matrix sorted by most to least similar pair */
583-
qsort(mx, dst_cnt * NUM_CANDIDATE_PER_DST, sizeof(*mx), score_compare);
583+
QSORT(mx, dst_cnt * NUM_CANDIDATE_PER_DST, score_compare);
584584

585585
rename_count += find_renames(mx, dst_cnt, minimum_score, 0);
586586
if (detect_rename == DIFF_DETECT_COPY)

dir.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -2005,8 +2005,8 @@ int read_directory(struct dir_struct *dir, const char *path, int len, const stru
20052005
if (!len || treat_leading_path(dir, path, len, simplify))
20062006
read_directory_recursive(dir, path, len, untracked, 0, simplify);
20072007
free_simplify(simplify);
2008-
qsort(dir->entries, dir->nr, sizeof(struct dir_entry *), cmp_name);
2009-
qsort(dir->ignored, dir->ignored_nr, sizeof(struct dir_entry *), cmp_name);
2008+
QSORT(dir->entries, dir->nr, cmp_name);
2009+
QSORT(dir->ignored, dir->ignored_nr, cmp_name);
20102010
if (dir->untracked) {
20112011
static struct trace_key trace_untracked_stats = TRACE_KEY_INIT(UNTRACKED_STATS);
20122012
trace_printf_key(&trace_untracked_stats,

fast-import.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1460,9 +1460,9 @@ static void mktree(struct tree_content *t, int v, struct strbuf *b)
14601460
unsigned int i;
14611461

14621462
if (!v)
1463-
qsort(t->entries,t->entry_count,sizeof(t->entries[0]),tecmp0);
1463+
QSORT(t->entries, t->entry_count, tecmp0);
14641464
else
1465-
qsort(t->entries,t->entry_count,sizeof(t->entries[0]),tecmp1);
1465+
QSORT(t->entries, t->entry_count, tecmp1);
14661466

14671467
for (i = 0; i < t->entry_count; i++) {
14681468
if (t->entries[i]->versions[v].mode)

fetch-pack.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ static struct ref *do_fetch_pack(struct fetch_pack_args *args,
812812
int agent_len;
813813

814814
sort_ref_list(&ref, ref_compare_name);
815-
qsort(sought, nr_sought, sizeof(*sought), cmp_ref_by_name);
815+
QSORT(sought, nr_sought, cmp_ref_by_name);
816816

817817
if ((args->depth > 0 || is_repository_shallow()) && !server_supports("shallow"))
818818
die("Server does not support shallow clients");

help.c

+5-10
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,7 @@ void load_command_list(const char *prefix,
170170

171171
if (exec_path) {
172172
list_commands_in_dir(main_cmds, exec_path, prefix);
173-
qsort(main_cmds->names, main_cmds->cnt,
174-
sizeof(*main_cmds->names), cmdname_compare);
173+
QSORT(main_cmds->names, main_cmds->cnt, cmdname_compare);
175174
uniq(main_cmds);
176175
}
177176

@@ -190,8 +189,7 @@ void load_command_list(const char *prefix,
190189
}
191190
free(paths);
192191

193-
qsort(other_cmds->names, other_cmds->cnt,
194-
sizeof(*other_cmds->names), cmdname_compare);
192+
QSORT(other_cmds->names, other_cmds->cnt, cmdname_compare);
195193
uniq(other_cmds);
196194
}
197195
exclude_cmds(other_cmds, main_cmds);
@@ -238,8 +236,7 @@ void list_common_cmds_help(void)
238236
longest = strlen(common_cmds[i].name);
239237
}
240238

241-
qsort(common_cmds, ARRAY_SIZE(common_cmds),
242-
sizeof(common_cmds[0]), cmd_group_cmp);
239+
QSORT(common_cmds, ARRAY_SIZE(common_cmds), cmd_group_cmp);
243240

244241
puts(_("These are common Git commands used in various situations:"));
245242

@@ -324,8 +321,7 @@ const char *help_unknown_cmd(const char *cmd)
324321

325322
add_cmd_list(&main_cmds, &aliases);
326323
add_cmd_list(&main_cmds, &other_cmds);
327-
qsort(main_cmds.names, main_cmds.cnt,
328-
sizeof(*main_cmds.names), cmdname_compare);
324+
QSORT(main_cmds.names, main_cmds.cnt, cmdname_compare);
329325
uniq(&main_cmds);
330326

331327
/* This abuses cmdname->len for levenshtein distance */
@@ -359,8 +355,7 @@ const char *help_unknown_cmd(const char *cmd)
359355
levenshtein(cmd, candidate, 0, 2, 1, 3) + 1;
360356
}
361357

362-
qsort(main_cmds.names, main_cmds.cnt,
363-
sizeof(*main_cmds.names), levenshtein_compare);
358+
QSORT(main_cmds.names, main_cmds.cnt, levenshtein_compare);
364359

365360
if (!main_cmds.cnt)
366361
die(_("Uh oh. Your system reports no Git commands at all."));

line-log.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ void sort_and_merge_range_set(struct range_set *rs)
113113
int i;
114114
int o = 0; /* output cursor */
115115

116-
qsort(rs->ranges, rs->nr, sizeof(struct range), range_cmp);
116+
QSORT(rs->ranges, rs->nr, range_cmp);
117117

118118
for (i = 0; i < rs->nr; i++) {
119119
if (rs->ranges[i].start == rs->ranges[i].end)

pack-bitmap-write.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -385,8 +385,7 @@ void bitmap_writer_select_commits(struct commit **indexed_commits,
385385
{
386386
unsigned int i = 0, j, next;
387387

388-
qsort(indexed_commits, indexed_commits_nr, sizeof(indexed_commits[0]),
389-
date_compare);
388+
QSORT(indexed_commits, indexed_commits_nr, date_compare);
390389

391390
if (writer.show_progress)
392391
writer.progress = start_progress("Selecting bitmap commits", 0);

pack-check.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ static int verify_packfile(struct packed_git *p,
9999
entries[i].offset = nth_packed_object_offset(p, i);
100100
entries[i].nr = i;
101101
}
102-
qsort(entries, nr_objects, sizeof(*entries), compare_entries);
102+
QSORT(entries, nr_objects, compare_entries);
103103

104104
for (i = 0; i < nr_objects; i++) {
105105
void *data;

pack-write.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ const char *write_idx_file(const char *index_name, struct pack_idx_entry **objec
6161
if (objects[i]->offset > last_obj_offset)
6262
last_obj_offset = objects[i]->offset;
6363
}
64-
qsort(sorted_by_sha, nr_objects, sizeof(sorted_by_sha[0]),
65-
sha1_compare);
64+
QSORT(sorted_by_sha, nr_objects, sha1_compare);
6665
}
6766
else
6867
sorted_by_sha = list = last = NULL;

pathspec.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -446,8 +446,7 @@ void parse_pathspec(struct pathspec *pathspec,
446446
if (pathspec->magic & PATHSPEC_MAXDEPTH) {
447447
if (flags & PATHSPEC_KEEP_ORDER)
448448
die("BUG: PATHSPEC_MAXDEPTH_VALID and PATHSPEC_KEEP_ORDER are incompatible");
449-
qsort(pathspec->items, pathspec->nr,
450-
sizeof(struct pathspec_item), pathspec_item_cmp);
449+
QSORT(pathspec->items, pathspec->nr, pathspec_item_cmp);
451450
}
452451
}
453452

ref-filter.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1573,7 +1573,7 @@ static int compare_refs(const void *a_, const void *b_)
15731573
void ref_array_sort(struct ref_sorting *sorting, struct ref_array *array)
15741574
{
15751575
ref_sorting = sorting;
1576-
qsort(array->items, array->nr, sizeof(struct ref_array_item *), compare_refs);
1576+
QSORT(array->items, array->nr, compare_refs);
15771577
}
15781578

15791579
static void append_literal(const char *cp, const char *ep, struct ref_formatting_state *state)

refs/files-backend.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ static void sort_ref_dir(struct ref_dir *dir)
501501
if (dir->sorted == dir->nr)
502502
return;
503503

504-
qsort(dir->entries, dir->nr, sizeof(*dir->entries), ref_entry_cmp);
504+
QSORT(dir->entries, dir->nr, ref_entry_cmp);
505505

506506
/* Remove any duplicates: */
507507
for (i = 0, j = 0; j < dir->nr; j++) {

server-info.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ static void init_pack_info(const char *infofile, int force)
229229
}
230230

231231
/* renumber them */
232-
qsort(info, num_pack, sizeof(info[0]), compare_info);
232+
QSORT(info, num_pack, compare_info);
233233
for (i = 0; i < num_pack; i++)
234234
info[i]->new_num = i;
235235
}

sh-i18n--envsubst.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ static inline void
231231
string_list_sort (string_list_ty *slp)
232232
{
233233
if (slp->nitems > 0)
234-
qsort (slp->item, slp->nitems, sizeof (slp->item[0]), cmp_string);
234+
QSORT(slp->item, slp->nitems, cmp_string);
235235
}
236236

237237
/* Test whether a sorted string list contains a given string. */

sha1-array.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ static int void_hashcmp(const void *a, const void *b)
1616

1717
static void sha1_array_sort(struct sha1_array *array)
1818
{
19-
qsort(array->sha1, array->nr, sizeof(*array->sha1), void_hashcmp);
19+
QSORT(array->sha1, array->nr, void_hashcmp);
2020
array->sorted = 1;
2121
}
2222

string-list.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ static int cmp_items(const void *a, const void *b)
225225
void string_list_sort(struct string_list *list)
226226
{
227227
compare_for_qsort = list->cmp ? list->cmp : strcmp;
228-
qsort(list->items, list->nr, sizeof(*list->items), cmp_items);
228+
QSORT(list->items, list->nr, cmp_items);
229229
}
230230

231231
struct string_list_item *unsorted_string_list_lookup(struct string_list *list,

t/helper/test-dump-untracked-cache.c

+2-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,8 @@ static int compare_dir(const void *a_, const void *b_)
1818
static void dump(struct untracked_cache_dir *ucd, struct strbuf *base)
1919
{
2020
int i, len;
21-
qsort(ucd->untracked, ucd->untracked_nr, sizeof(*ucd->untracked),
22-
compare_untracked);
23-
qsort(ucd->dirs, ucd->dirs_nr, sizeof(*ucd->dirs),
24-
compare_dir);
21+
QSORT(ucd->untracked, ucd->untracked_nr, compare_untracked);
22+
QSORT(ucd->dirs, ucd->dirs_nr, compare_dir);
2523
len = base->len;
2624
strbuf_addf(base, "%s/", ucd->name);
2725
printf("%s %s", base->buf,

tree.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,7 @@ int read_tree(struct tree *tree, int stage, struct pathspec *match)
180180
* Sort the cache entry -- we need to nuke the cache tree, though.
181181
*/
182182
cache_tree_free(&active_cache_tree);
183-
qsort(active_cache, active_nr, sizeof(active_cache[0]),
184-
cmp_cache_name_compare);
183+
QSORT(active_cache, active_nr, cmp_cache_name_compare);
185184
return 0;
186185
}
187186

0 commit comments

Comments
 (0)