Teach --stdin option to "log" family

Move the logic to read revs from standard input that rev-list knows about
from it to revision machinery, so that all the users of setup_revisions()
can feed the list of revs from the standard input when "--stdin" is used
on the command line.

Allow some users of the revision machinery that want different semantics
from the "--stdin" option to disable it by setting an option in the
rev_info structure.

This also cleans up the kludge made to bundle.c via cut and paste.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano 2009-11-03 06:59:18 -08:00
parent 63d564b300
commit 8b3dce5650
7 changed files with 20 additions and 22 deletions

View File

@ -243,12 +243,12 @@ endif::git-rev-list[]
Pretend as if all the refs in `$GIT_DIR/refs/remotes` are listed Pretend as if all the refs in `$GIT_DIR/refs/remotes` are listed
on the command line as '<commit>'. on the command line as '<commit>'.
ifdef::git-rev-list[]
--stdin:: --stdin::
In addition to the '<commit>' listed on the command In addition to the '<commit>' listed on the command
line, read them from the standard input. line, read them from the standard input.
ifdef::git-rev-list[]
--quiet:: --quiet::
Don't print anything to standard output. This form Don't print anything to standard output. This form

View File

@ -2352,6 +2352,7 @@ parse_done:
die_errno("cannot stat path '%s'", path); die_errno("cannot stat path '%s'", path);
} }
revs.disable_stdin = 1;
setup_revisions(argc, argv, &revs, NULL); setup_revisions(argc, argv, &revs, NULL);
memset(&sb, 0, sizeof(sb)); memset(&sb, 0, sizeof(sb));

View File

@ -104,6 +104,7 @@ int cmd_diff_tree(int argc, const char **argv, const char *prefix)
git_config(git_diff_basic_config, NULL); /* no "diff" UI options */ git_config(git_diff_basic_config, NULL); /* no "diff" UI options */
opt->abbrev = 0; opt->abbrev = 0;
opt->diff = 1; opt->diff = 1;
opt->disable_stdin = 1;
argc = setup_revisions(argc, argv, opt, NULL); argc = setup_revisions(argc, argv, opt, NULL);
while (--argc > 0) { while (--argc > 0) {

View File

@ -306,7 +306,6 @@ int cmd_rev_list(int argc, const char **argv, const char *prefix)
struct rev_info revs; struct rev_info revs;
struct rev_list_info info; struct rev_list_info info;
int i; int i;
int read_from_stdin = 0;
int bisect_list = 0; int bisect_list = 0;
int bisect_show_vars = 0; int bisect_show_vars = 0;
int bisect_find_all = 0; int bisect_find_all = 0;
@ -349,12 +348,6 @@ int cmd_rev_list(int argc, const char **argv, const char *prefix)
bisect_show_vars = 1; bisect_show_vars = 1;
continue; continue;
} }
if (!strcmp(arg, "--stdin")) {
if (read_from_stdin++)
die("--stdin given twice?");
read_revisions_from_stdin(&revs);
continue;
}
usage(rev_list_usage); usage(rev_list_usage);
} }

View File

@ -204,7 +204,6 @@ int create_bundle(struct bundle_header *header, const char *path,
int i, ref_count = 0; int i, ref_count = 0;
char buffer[1024]; char buffer[1024];
struct rev_info revs; struct rev_info revs;
int read_from_stdin = 0;
struct child_process rls; struct child_process rls;
FILE *rls_fout; FILE *rls_fout;
@ -256,15 +255,8 @@ int create_bundle(struct bundle_header *header, const char *path,
/* write references */ /* write references */
argc = setup_revisions(argc, argv, &revs, NULL); argc = setup_revisions(argc, argv, &revs, NULL);
for (i = 1; i < argc; i++) { if (argc > 1)
if (!strcmp(argv[i], "--stdin")) { return error("unrecognized argument: %s'", argv[1]);
if (read_from_stdin++)
die("--stdin given twice?");
read_revisions_from_stdin(&revs);
continue;
}
return error("unrecognized argument: %s'", argv[i]);
}
object_array_remove_duplicates(&revs.pending); object_array_remove_duplicates(&revs.pending);

View File

@ -953,7 +953,7 @@ int handle_revision_arg(const char *arg, struct rev_info *revs,
return 0; return 0;
} }
void read_revisions_from_stdin(struct rev_info *revs) static void read_revisions_from_stdin(struct rev_info *revs)
{ {
struct strbuf sb; struct strbuf sb;
@ -1229,7 +1229,7 @@ void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
*/ */
int setup_revisions(int argc, const char **argv, struct rev_info *revs, const char *def) int setup_revisions(int argc, const char **argv, struct rev_info *revs, const char *def)
{ {
int i, flags, left, seen_dashdash; int i, flags, left, seen_dashdash, read_from_stdin;
/* First, search for "--" */ /* First, search for "--" */
seen_dashdash = 0; seen_dashdash = 0;
@ -1247,6 +1247,7 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, const ch
/* Second, deal with arguments and options */ /* Second, deal with arguments and options */
flags = 0; flags = 0;
read_from_stdin = 0;
for (left = i = 1; i < argc; i++) { for (left = i = 1; i < argc; i++) {
const char *arg = argv[i]; const char *arg = argv[i];
if (*arg == '-') { if (*arg == '-') {
@ -1285,6 +1286,16 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, const ch
revs->no_walk = 0; revs->no_walk = 0;
continue; continue;
} }
if (!strcmp(arg, "--stdin")) {
if (revs->disable_stdin) {
argv[left++] = arg;
continue;
}
if (read_from_stdin++)
die("--stdin given twice?");
read_revisions_from_stdin(revs);
continue;
}
opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv); opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
if (opts > 0) { if (opts > 0) {

View File

@ -83,6 +83,8 @@ struct rev_info {
use_terminator:1, use_terminator:1,
missing_newline:1, missing_newline:1,
date_mode_explicit:1; date_mode_explicit:1;
unsigned int disable_stdin:1;
enum date_mode date_mode; enum date_mode date_mode;
unsigned int abbrev; unsigned int abbrev;
@ -128,8 +130,6 @@ struct rev_info {
#define REV_TREE_DIFFERENT 3 /* Mixed changes */ #define REV_TREE_DIFFERENT 3 /* Mixed changes */
/* revision.c */ /* revision.c */
void read_revisions_from_stdin(struct rev_info *revs);
typedef void (*show_early_output_fn_t)(struct rev_info *, struct commit_list *); typedef void (*show_early_output_fn_t)(struct rev_info *, struct commit_list *);
extern volatile show_early_output_fn_t show_early_output; extern volatile show_early_output_fn_t show_early_output;