Skip to content

Commit

Permalink
Retire diffcore-pathspec.
Browse files Browse the repository at this point in the history
Nobody except diff-stages used it -- the callers instead filtered
the input to diffcore themselves.  Make diff-stages do that as
well and retire diffcore-pathspec.

Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Junio C Hamano committed Apr 10, 2006
1 parent a13ba12 commit 77882f6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 81 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ LIB_H = \
tree-walk.h

DIFF_OBJS = \
diff.o diffcore-break.o diffcore-order.o diffcore-pathspec.o \
diff.o diffcore-break.o diffcore-order.o \
diffcore-pickaxe.o diffcore-rename.o tree-diff.o combine-diff.o \
diffcore-delta.o

Expand Down
17 changes: 10 additions & 7 deletions diff-stages.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,17 @@ static const char diff_stages_usage[] =
"git-diff-stages [<common diff options>] <stage1> <stage2> [<path>...]"
COMMON_DIFF_OPTIONS_HELP;

static void diff_stages(int stage1, int stage2)
static void diff_stages(int stage1, int stage2, const char **pathspec)
{
int i = 0;
while (i < active_nr) {
struct cache_entry *ce, *stages[4] = { NULL, };
struct cache_entry *one, *two;
const char *name;
int len;
int len, skip;

ce = active_cache[i];
skip = !ce_path_match(ce, pathspec);
len = ce_namelen(ce);
name = ce->name;
for (;;) {
Expand All @@ -34,7 +36,8 @@ static void diff_stages(int stage1, int stage2)
}
one = stages[stage1];
two = stages[stage2];
if (!one && !two)

if (skip || (!one && !two))
continue;
if (!one)
diff_addremove(&diff_options, '+', ntohl(two->ce_mode),
Expand All @@ -54,8 +57,8 @@ static void diff_stages(int stage1, int stage2)
int main(int ac, const char **av)
{
int stage1, stage2;

setup_git_directory();
const char *prefix = setup_git_directory();
const char **pathspec = NULL;

git_config(git_diff_config);
read_cache();
Expand Down Expand Up @@ -89,12 +92,12 @@ int main(int ac, const char **av)
usage(diff_stages_usage);

av += 3; /* The rest from av[0] are for paths restriction. */
diff_options.paths = av;
pathspec = get_pathspec(prefix, av);

if (diff_setup_done(&diff_options) < 0)
usage(diff_stages_usage);

diff_stages(stage1, stage2);
diff_stages(stage1, stage2, pathspec);
diffcore_std(&diff_options);
diff_flush(&diff_options);
return 0;
Expand Down
2 changes: 0 additions & 2 deletions diff.c
Original file line number Diff line number Diff line change
Expand Up @@ -1375,8 +1375,6 @@ static void diffcore_apply_filter(const char *filter)

void diffcore_std(struct diff_options *options)
{
if (options->paths && options->paths[0])
diffcore_pathspec(options->paths);
if (options->break_opt != -1)
diffcore_break(options->break_opt);
if (options->detect_rename)
Expand Down
1 change: 0 additions & 1 deletion diff.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ typedef void (*add_remove_fn_t)(struct diff_options *options,
const char *base, const char *path);

struct diff_options {
const char **paths;
const char *filter;
const char *orderfile;
const char *pickaxe;
Expand Down
70 changes: 0 additions & 70 deletions diffcore-pathspec.c

This file was deleted.

0 comments on commit 77882f6

Please sign in to comment.