Merge branch 'rs/cocci'
Code cleanup. * rs/cocci: use strbuf_addstr() for adding constant strings to a strbuf, part 2 add coccicheck make target contrib/coccinelle: fix semantic patch for oid_to_hex_r()
This commit is contained in:
commit
85f34a929d
14
Makefile
14
Makefile
@ -461,6 +461,7 @@ CURL_CONFIG = curl-config
|
|||||||
PTHREAD_LIBS = -lpthread
|
PTHREAD_LIBS = -lpthread
|
||||||
PTHREAD_CFLAGS =
|
PTHREAD_CFLAGS =
|
||||||
GCOV = gcov
|
GCOV = gcov
|
||||||
|
SPATCH = spatch
|
||||||
|
|
||||||
export TCL_PATH TCLTK_PATH
|
export TCL_PATH TCLTK_PATH
|
||||||
|
|
||||||
@ -2308,6 +2309,18 @@ check: common-cmds.h
|
|||||||
exit 1; \
|
exit 1; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
C_SOURCES = $(patsubst %.o,%.c,$(C_OBJ))
|
||||||
|
%.cocci.patch: %.cocci $(C_SOURCES)
|
||||||
|
@echo ' ' SPATCH $<; \
|
||||||
|
for f in $(C_SOURCES); do \
|
||||||
|
$(SPATCH) --sp-file $< $$f; \
|
||||||
|
done >$@ 2>$@.log; \
|
||||||
|
if test -s $@; \
|
||||||
|
then \
|
||||||
|
echo ' ' SPATCH result: $@; \
|
||||||
|
fi
|
||||||
|
coccicheck: $(patsubst %.cocci,%.cocci.patch,$(wildcard contrib/coccinelle/*.cocci))
|
||||||
|
|
||||||
### Installation rules
|
### Installation rules
|
||||||
|
|
||||||
ifneq ($(filter /%,$(firstword $(template_dir))),)
|
ifneq ($(filter /%,$(firstword $(template_dir))),)
|
||||||
@ -2499,6 +2512,7 @@ clean: profile-clean coverage-clean
|
|||||||
$(RM) -r $(GIT_TARNAME) .doc-tmp-dir
|
$(RM) -r $(GIT_TARNAME) .doc-tmp-dir
|
||||||
$(RM) $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
|
$(RM) $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
|
||||||
$(RM) $(htmldocs).tar.gz $(manpages).tar.gz
|
$(RM) $(htmldocs).tar.gz $(manpages).tar.gz
|
||||||
|
$(RM) contrib/coccinelle/*.cocci.patch*
|
||||||
$(MAKE) -C Documentation/ clean
|
$(MAKE) -C Documentation/ clean
|
||||||
ifndef NO_PERL
|
ifndef NO_PERL
|
||||||
$(MAKE) -C gitweb clean
|
$(MAKE) -C gitweb clean
|
||||||
|
@ -395,7 +395,7 @@ static void shortlog(const char *name,
|
|||||||
|
|
||||||
for (i = 0; i < subjects.nr; i++)
|
for (i = 0; i < subjects.nr; i++)
|
||||||
if (i >= limit)
|
if (i >= limit)
|
||||||
strbuf_addf(out, " ...\n");
|
strbuf_addstr(out, " ...\n");
|
||||||
else
|
else
|
||||||
strbuf_addf(out, " %s\n", subjects.items[i].string);
|
strbuf_addf(out, " %s\n", subjects.items[i].string);
|
||||||
|
|
||||||
|
@ -940,7 +940,7 @@ static void write_merge_state(struct commit_list *remoteheads)
|
|||||||
|
|
||||||
strbuf_reset(&buf);
|
strbuf_reset(&buf);
|
||||||
if (fast_forward == FF_NO)
|
if (fast_forward == FF_NO)
|
||||||
strbuf_addf(&buf, "no-ff");
|
strbuf_addstr(&buf, "no-ff");
|
||||||
write_file_buf(git_path_merge_mode(), buf.buf, buf.len);
|
write_file_buf(git_path_merge_mode(), buf.buf, buf.len);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -860,8 +860,9 @@ static int update_clone_get_next_task(struct child_process *child,
|
|||||||
ce = suc->failed_clones[index];
|
ce = suc->failed_clones[index];
|
||||||
if (!prepare_to_clone_next_submodule(ce, child, suc, err)) {
|
if (!prepare_to_clone_next_submodule(ce, child, suc, err)) {
|
||||||
suc->current ++;
|
suc->current ++;
|
||||||
strbuf_addf(err, "BUG: submodule considered for cloning,"
|
strbuf_addstr(err, "BUG: submodule considered for "
|
||||||
"doesn't need cloning any more?\n");
|
"cloning, doesn't need cloning "
|
||||||
|
"any more?\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
p = xmalloc(sizeof(*p));
|
p = xmalloc(sizeof(*p));
|
||||||
|
@ -23,16 +23,16 @@ expression E1;
|
|||||||
+ oid_to_hex(E1)
|
+ oid_to_hex(E1)
|
||||||
|
|
||||||
@@
|
@@
|
||||||
expression E1;
|
expression E1, E2;
|
||||||
@@
|
@@
|
||||||
- sha1_to_hex_r(E1.hash)
|
- sha1_to_hex_r(E1, E2.hash)
|
||||||
+ oid_to_hex_r(&E1)
|
+ oid_to_hex_r(E1, &E2)
|
||||||
|
|
||||||
@@
|
@@
|
||||||
expression E1;
|
expression E1, E2;
|
||||||
@@
|
@@
|
||||||
- sha1_to_hex_r(E1->hash)
|
- sha1_to_hex_r(E1, E2->hash)
|
||||||
+ oid_to_hex_r(E1)
|
+ oid_to_hex_r(E1, E2)
|
||||||
|
|
||||||
@@
|
@@
|
||||||
expression E1;
|
expression E1;
|
||||||
|
5
contrib/coccinelle/strbuf.cocci
Normal file
5
contrib/coccinelle/strbuf.cocci
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
@@
|
||||||
|
expression E1, E2;
|
||||||
|
@@
|
||||||
|
- strbuf_addf(E1, E2);
|
||||||
|
+ strbuf_addstr(E1, E2);
|
@ -206,7 +206,7 @@ static void output_commit_title(struct merge_options *o, struct commit *commit)
|
|||||||
find_unique_abbrev(commit->object.oid.hash,
|
find_unique_abbrev(commit->object.oid.hash,
|
||||||
DEFAULT_ABBREV));
|
DEFAULT_ABBREV));
|
||||||
if (parse_commit(commit) != 0)
|
if (parse_commit(commit) != 0)
|
||||||
strbuf_addf(&o->obuf, _("(bad commit)\n"));
|
strbuf_addstr(&o->obuf, _("(bad commit)\n"));
|
||||||
else {
|
else {
|
||||||
const char *title;
|
const char *title;
|
||||||
const char *msg = get_commit_buffer(commit, NULL);
|
const char *msg = get_commit_buffer(commit, NULL);
|
||||||
|
8
remote.c
8
remote.c
@ -2073,7 +2073,7 @@ int format_tracking_info(struct branch *branch, struct strbuf *sb)
|
|||||||
_("Your branch is based on '%s', but the upstream is gone.\n"),
|
_("Your branch is based on '%s', but the upstream is gone.\n"),
|
||||||
base);
|
base);
|
||||||
if (advice_status_hints)
|
if (advice_status_hints)
|
||||||
strbuf_addf(sb,
|
strbuf_addstr(sb,
|
||||||
_(" (use \"git branch --unset-upstream\" to fixup)\n"));
|
_(" (use \"git branch --unset-upstream\" to fixup)\n"));
|
||||||
} else if (!ours && !theirs) {
|
} else if (!ours && !theirs) {
|
||||||
strbuf_addf(sb,
|
strbuf_addf(sb,
|
||||||
@ -2086,7 +2086,7 @@ int format_tracking_info(struct branch *branch, struct strbuf *sb)
|
|||||||
ours),
|
ours),
|
||||||
base, ours);
|
base, ours);
|
||||||
if (advice_status_hints)
|
if (advice_status_hints)
|
||||||
strbuf_addf(sb,
|
strbuf_addstr(sb,
|
||||||
_(" (use \"git push\" to publish your local commits)\n"));
|
_(" (use \"git push\" to publish your local commits)\n"));
|
||||||
} else if (!ours) {
|
} else if (!ours) {
|
||||||
strbuf_addf(sb,
|
strbuf_addf(sb,
|
||||||
@ -2097,7 +2097,7 @@ int format_tracking_info(struct branch *branch, struct strbuf *sb)
|
|||||||
theirs),
|
theirs),
|
||||||
base, theirs);
|
base, theirs);
|
||||||
if (advice_status_hints)
|
if (advice_status_hints)
|
||||||
strbuf_addf(sb,
|
strbuf_addstr(sb,
|
||||||
_(" (use \"git pull\" to update your local branch)\n"));
|
_(" (use \"git pull\" to update your local branch)\n"));
|
||||||
} else {
|
} else {
|
||||||
strbuf_addf(sb,
|
strbuf_addf(sb,
|
||||||
@ -2110,7 +2110,7 @@ int format_tracking_info(struct branch *branch, struct strbuf *sb)
|
|||||||
ours + theirs),
|
ours + theirs),
|
||||||
base, ours, theirs);
|
base, ours, theirs);
|
||||||
if (advice_status_hints)
|
if (advice_status_hints)
|
||||||
strbuf_addf(sb,
|
strbuf_addstr(sb,
|
||||||
_(" (use \"git pull\" to merge the remote branch into yours)\n"));
|
_(" (use \"git pull\" to merge the remote branch into yours)\n"));
|
||||||
}
|
}
|
||||||
free(base);
|
free(base);
|
||||||
|
@ -367,11 +367,11 @@ static void wt_longstatus_print_change_data(struct wt_status *s,
|
|||||||
if (d->new_submodule_commits || d->dirty_submodule) {
|
if (d->new_submodule_commits || d->dirty_submodule) {
|
||||||
strbuf_addstr(&extra, " (");
|
strbuf_addstr(&extra, " (");
|
||||||
if (d->new_submodule_commits)
|
if (d->new_submodule_commits)
|
||||||
strbuf_addf(&extra, _("new commits, "));
|
strbuf_addstr(&extra, _("new commits, "));
|
||||||
if (d->dirty_submodule & DIRTY_SUBMODULE_MODIFIED)
|
if (d->dirty_submodule & DIRTY_SUBMODULE_MODIFIED)
|
||||||
strbuf_addf(&extra, _("modified content, "));
|
strbuf_addstr(&extra, _("modified content, "));
|
||||||
if (d->dirty_submodule & DIRTY_SUBMODULE_UNTRACKED)
|
if (d->dirty_submodule & DIRTY_SUBMODULE_UNTRACKED)
|
||||||
strbuf_addf(&extra, _("untracked content, "));
|
strbuf_addstr(&extra, _("untracked content, "));
|
||||||
strbuf_setlen(&extra, extra.len - 2);
|
strbuf_setlen(&extra, extra.len - 2);
|
||||||
strbuf_addch(&extra, ')');
|
strbuf_addch(&extra, ')');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user