[PATCH] Add --pickaxe-all to diff-* brothers.
When --pickaxe-all is given in addition to -S, pickaxe shows the entire diffs contained in the changeset, not just the diffs for the filepair that touched the sought-after string. This is useful to see the changes in context. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
be020332a1
commit
367cec1c02
@ -8,6 +8,7 @@ static int detect_rename = 0;
|
|||||||
static int diff_setup_opt = 0;
|
static int diff_setup_opt = 0;
|
||||||
static int diff_score_opt = 0;
|
static int diff_score_opt = 0;
|
||||||
static const char *pickaxe = NULL;
|
static const char *pickaxe = NULL;
|
||||||
|
static int pickaxe_opts = 0;
|
||||||
|
|
||||||
/* A file entry went away or appeared */
|
/* A file entry went away or appeared */
|
||||||
static void show_file(const char *prefix, struct cache_entry *ce, unsigned char *sha1, unsigned int mode)
|
static void show_file(const char *prefix, struct cache_entry *ce, unsigned char *sha1, unsigned int mode)
|
||||||
@ -209,6 +210,10 @@ int main(int argc, const char **argv)
|
|||||||
pickaxe = arg + 2;
|
pickaxe = arg + 2;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (!strcmp(arg, "--pickaxe-all")) {
|
||||||
|
pickaxe_opts = DIFF_PICKAXE_ALL;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (!strcmp(arg, "-m")) {
|
if (!strcmp(arg, "-m")) {
|
||||||
match_nonexisting = 1;
|
match_nonexisting = 1;
|
||||||
continue;
|
continue;
|
||||||
@ -238,7 +243,7 @@ int main(int argc, const char **argv)
|
|||||||
if (detect_rename)
|
if (detect_rename)
|
||||||
diffcore_rename(detect_rename, diff_score_opt);
|
diffcore_rename(detect_rename, diff_score_opt);
|
||||||
if (pickaxe)
|
if (pickaxe)
|
||||||
diffcore_pickaxe(pickaxe);
|
diffcore_pickaxe(pickaxe, pickaxe_opts);
|
||||||
if (pathspec)
|
if (pathspec)
|
||||||
diffcore_pathspec(pathspec);
|
diffcore_pathspec(pathspec);
|
||||||
diff_flush(diff_output_format, 1);
|
diff_flush(diff_output_format, 1);
|
||||||
|
@ -14,6 +14,7 @@ static int detect_rename = 0;
|
|||||||
static int diff_setup_opt = 0;
|
static int diff_setup_opt = 0;
|
||||||
static int diff_score_opt = 0;
|
static int diff_score_opt = 0;
|
||||||
static const char *pickaxe = NULL;
|
static const char *pickaxe = NULL;
|
||||||
|
static int pickaxe_opts = 0;
|
||||||
static int silent = 0;
|
static int silent = 0;
|
||||||
|
|
||||||
static void show_unmerge(const char *path)
|
static void show_unmerge(const char *path)
|
||||||
@ -54,6 +55,8 @@ int main(int argc, const char **argv)
|
|||||||
diff_setup_opt |= DIFF_SETUP_REVERSE;
|
diff_setup_opt |= DIFF_SETUP_REVERSE;
|
||||||
else if (!strcmp(argv[1], "-S"))
|
else if (!strcmp(argv[1], "-S"))
|
||||||
pickaxe = argv[1] + 2;
|
pickaxe = argv[1] + 2;
|
||||||
|
else if (!strcmp(argv[1], "--pickaxe-all"))
|
||||||
|
pickaxe_opts = DIFF_PICKAXE_ALL;
|
||||||
else if (!strncmp(argv[1], "-M", 2)) {
|
else if (!strncmp(argv[1], "-M", 2)) {
|
||||||
diff_score_opt = diff_scoreopt_parse(argv[1]);
|
diff_score_opt = diff_scoreopt_parse(argv[1]);
|
||||||
detect_rename = DIFF_DETECT_RENAME;
|
detect_rename = DIFF_DETECT_RENAME;
|
||||||
@ -116,7 +119,7 @@ int main(int argc, const char **argv)
|
|||||||
if (detect_rename)
|
if (detect_rename)
|
||||||
diffcore_rename(detect_rename, diff_score_opt);
|
diffcore_rename(detect_rename, diff_score_opt);
|
||||||
if (pickaxe)
|
if (pickaxe)
|
||||||
diffcore_pickaxe(pickaxe);
|
diffcore_pickaxe(pickaxe, pickaxe_opts);
|
||||||
if (1 < argc)
|
if (1 < argc)
|
||||||
diffcore_pathspec(argv + 1);
|
diffcore_pathspec(argv + 1);
|
||||||
diff_flush(diff_output_format, 1);
|
diff_flush(diff_output_format, 1);
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#include "diff.h"
|
#include "diff.h"
|
||||||
|
|
||||||
static const char *pickaxe = NULL;
|
static const char *pickaxe = NULL;
|
||||||
|
static int pickaxe_opts = 0;
|
||||||
static int line_termination = '\n';
|
static int line_termination = '\n';
|
||||||
static int inter_name_termination = '\t';
|
static int inter_name_termination = '\t';
|
||||||
|
|
||||||
@ -23,6 +24,8 @@ int main(int ac, const char **av) {
|
|||||||
else if (av[1][1] == 'S') {
|
else if (av[1][1] == 'S') {
|
||||||
pickaxe = av[1] + 2;
|
pickaxe = av[1] + 2;
|
||||||
}
|
}
|
||||||
|
else if (!strcmp(av[1], "--pickaxe-all"))
|
||||||
|
pickaxe_opts = DIFF_PICKAXE_ALL;
|
||||||
else
|
else
|
||||||
usage(diff_helper_usage);
|
usage(diff_helper_usage);
|
||||||
ac--; av++;
|
ac--; av++;
|
||||||
@ -127,14 +130,14 @@ int main(int ac, const char **av) {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (pickaxe)
|
if (pickaxe)
|
||||||
diffcore_pickaxe(pickaxe);
|
diffcore_pickaxe(pickaxe, pickaxe_opts);
|
||||||
if (1 < ac)
|
if (1 < ac)
|
||||||
diffcore_pathspec(av + 1);
|
diffcore_pathspec(av + 1);
|
||||||
diff_flush(DIFF_FORMAT_PATCH, 0);
|
diff_flush(DIFF_FORMAT_PATCH, 0);
|
||||||
printf("%s\n", sb.buf);
|
printf("%s\n", sb.buf);
|
||||||
}
|
}
|
||||||
if (pickaxe)
|
if (pickaxe)
|
||||||
diffcore_pickaxe(pickaxe);
|
diffcore_pickaxe(pickaxe, pickaxe_opts);
|
||||||
if (1 < ac)
|
if (1 < ac)
|
||||||
diffcore_pathspec(av + 1);
|
diffcore_pathspec(av + 1);
|
||||||
diff_flush(DIFF_FORMAT_PATCH, 0);
|
diff_flush(DIFF_FORMAT_PATCH, 0);
|
||||||
|
@ -13,6 +13,7 @@ static int detect_rename = 0;
|
|||||||
static int diff_setup_opt = 0;
|
static int diff_setup_opt = 0;
|
||||||
static int diff_score_opt = 0;
|
static int diff_score_opt = 0;
|
||||||
static const char *pickaxe = NULL;
|
static const char *pickaxe = NULL;
|
||||||
|
static int pickaxe_opts = 0;
|
||||||
static const char *header = NULL;
|
static const char *header = NULL;
|
||||||
static const char *header_prefix = "";
|
static const char *header_prefix = "";
|
||||||
|
|
||||||
@ -263,7 +264,7 @@ static int call_diff_flush(void)
|
|||||||
if (detect_rename)
|
if (detect_rename)
|
||||||
diffcore_rename(detect_rename, diff_score_opt);
|
diffcore_rename(detect_rename, diff_score_opt);
|
||||||
if (pickaxe)
|
if (pickaxe)
|
||||||
diffcore_pickaxe(pickaxe);
|
diffcore_pickaxe(pickaxe, pickaxe_opts);
|
||||||
if (diff_queue_is_empty()) {
|
if (diff_queue_is_empty()) {
|
||||||
diff_flush(DIFF_FORMAT_NO_OUTPUT, 0);
|
diff_flush(DIFF_FORMAT_NO_OUTPUT, 0);
|
||||||
return 0;
|
return 0;
|
||||||
@ -509,6 +510,10 @@ int main(int argc, const char **argv)
|
|||||||
pickaxe = arg + 2;
|
pickaxe = arg + 2;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (!strcmp(arg, "--pickaxe-all")) {
|
||||||
|
pickaxe_opts = DIFF_PICKAXE_ALL;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (!strncmp(arg, "-M", 2)) {
|
if (!strncmp(arg, "-M", 2)) {
|
||||||
detect_rename = DIFF_DETECT_RENAME;
|
detect_rename = DIFF_DETECT_RENAME;
|
||||||
diff_score_opt = diff_scoreopt_parse(arg);
|
diff_score_opt = diff_scoreopt_parse(arg);
|
||||||
|
4
diff.h
4
diff.h
@ -36,7 +36,9 @@ extern void diff_setup(int flags);
|
|||||||
|
|
||||||
extern void diffcore_rename(int rename_copy, int minimum_score);
|
extern void diffcore_rename(int rename_copy, int minimum_score);
|
||||||
|
|
||||||
extern void diffcore_pickaxe(const char *needle);
|
#define DIFF_PICKAXE_ALL 1
|
||||||
|
extern void diffcore_pickaxe(const char *needle, int opts);
|
||||||
|
|
||||||
extern void diffcore_pathspec(const char **pathspec);
|
extern void diffcore_pathspec(const char **pathspec);
|
||||||
|
|
||||||
extern int diff_queue_is_empty(void);
|
extern int diff_queue_is_empty(void);
|
||||||
|
@ -21,36 +21,73 @@ static int contains(struct diff_filespec *one,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void diffcore_pickaxe(const char *needle)
|
void diffcore_pickaxe(const char *needle, int opts)
|
||||||
{
|
{
|
||||||
struct diff_queue_struct *q = &diff_queued_diff;
|
struct diff_queue_struct *q = &diff_queued_diff;
|
||||||
unsigned long len = strlen(needle);
|
unsigned long len = strlen(needle);
|
||||||
int i;
|
int i, has_changes;
|
||||||
struct diff_queue_struct outq;
|
struct diff_queue_struct outq;
|
||||||
outq.queue = NULL;
|
outq.queue = NULL;
|
||||||
outq.nr = outq.alloc = 0;
|
outq.nr = outq.alloc = 0;
|
||||||
|
|
||||||
for (i = 0; i < q->nr; i++) {
|
if (opts & DIFF_PICKAXE_ALL) {
|
||||||
struct diff_filepair *p = q->queue[i];
|
/* Showing the whole changeset if needle exists */
|
||||||
int onum = outq.nr;
|
for (i = has_changes = 0; !has_changes && i < q->nr; i++) {
|
||||||
if (!DIFF_FILE_VALID(p->one)) {
|
struct diff_filepair *p = q->queue[i];
|
||||||
if (!DIFF_FILE_VALID(p->two))
|
if (!DIFF_FILE_VALID(p->one)) {
|
||||||
continue; /* ignore nonsense */
|
if (!DIFF_FILE_VALID(p->two))
|
||||||
/* created */
|
continue; /* ignore unmerged */
|
||||||
if (contains(p->two, needle, len))
|
/* created */
|
||||||
diff_q(&outq, p);
|
if (contains(p->two, needle, len))
|
||||||
|
has_changes++;
|
||||||
|
}
|
||||||
|
else if (!DIFF_FILE_VALID(p->two)) {
|
||||||
|
if (contains(p->one, needle, len))
|
||||||
|
has_changes++;
|
||||||
|
}
|
||||||
|
else if (!diff_unmodified_pair(p) &&
|
||||||
|
contains(p->one, needle, len) !=
|
||||||
|
contains(p->two, needle, len))
|
||||||
|
has_changes++;
|
||||||
}
|
}
|
||||||
else if (!DIFF_FILE_VALID(p->two)) {
|
if (has_changes)
|
||||||
if (contains(p->one, needle, len))
|
return; /* not munge the queue */
|
||||||
diff_q(&outq, p);
|
|
||||||
}
|
/* otherwise we will clear the whole queue
|
||||||
else if (!diff_unmodified_pair(p) &&
|
* by copying the empty outq at the end of this
|
||||||
contains(p->one, needle, len) !=
|
* function, but first clear the current entries
|
||||||
contains(p->two, needle, len))
|
* in the queue.
|
||||||
diff_q(&outq, p);
|
*/
|
||||||
if (onum == outq.nr)
|
for (i = 0; i < q->nr; i++)
|
||||||
diff_free_filepair(p);
|
diff_free_filepair(q->queue[i]);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
/* Showing only the filepairs that has the needle */
|
||||||
|
for (i = 0; i < q->nr; i++) {
|
||||||
|
struct diff_filepair *p = q->queue[i];
|
||||||
|
has_changes = 0;
|
||||||
|
if (!DIFF_FILE_VALID(p->one)) {
|
||||||
|
if (!DIFF_FILE_VALID(p->two))
|
||||||
|
; /* ignore unmerged */
|
||||||
|
/* created */
|
||||||
|
else if (contains(p->two, needle, len))
|
||||||
|
has_changes = 1;
|
||||||
|
}
|
||||||
|
else if (!DIFF_FILE_VALID(p->two)) {
|
||||||
|
if (contains(p->one, needle, len))
|
||||||
|
has_changes = 1;
|
||||||
|
}
|
||||||
|
else if (!diff_unmodified_pair(p) &&
|
||||||
|
contains(p->one, needle, len) !=
|
||||||
|
contains(p->two, needle, len))
|
||||||
|
has_changes = 1;
|
||||||
|
|
||||||
|
if (has_changes)
|
||||||
|
diff_q(&outq, p);
|
||||||
|
else
|
||||||
|
diff_free_filepair(p);
|
||||||
|
}
|
||||||
|
|
||||||
free(q->queue);
|
free(q->queue);
|
||||||
*q = outq;
|
*q = outq;
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user