From: Pierre Habouzit <madcoder@debian.org>
To: git@vger.kernel.org
Cc: torvalds@linux-foundation.org, gitster@pobox.com, peff@peff.net,
Pierre Habouzit <madcoder@debian.org>
Subject: [PATCH 4/6] revisions: split handle_revision_args from parse_revisions.
Date: Tue, 8 Jul 2008 11:56:02 +0200 [thread overview]
Message-ID: <1215510964-16664-5-git-send-email-madcoder@debian.org> (raw)
In-Reply-To: <1215510964-16664-4-git-send-email-madcoder@debian.org>
This new function is meant to only parse non option revision arguments in
a row. IOW it's meant to parse what remains from a parse-opt filtering of
the argument list, with the knowledge of the "--" position (0 means none).
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
---
revision.c | 97 +++++++++++++++++++++++++++++++----------------------------
revision.h | 1 +
2 files changed, 52 insertions(+), 46 deletions(-)
diff --git a/revision.c b/revision.c
index 87f89a2..c7de30f 100644
--- a/revision.c
+++ b/revision.c
@@ -1241,49 +1241,11 @@ int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
return 1;
}
-/*
- * Parse revision information, filling in the "rev_info" structure,
- * and removing the used arguments from the argument list.
- *
- * Returns the number of arguments left that weren't recognized
- * (which are also moved to the head of the argument list)
- */
-int parse_revisions(int argc, const char **argv, struct rev_info *revs)
+int handle_revision_args(struct rev_info *revs,
+ int argc, const char **argv, int dashdash_pos)
{
- int i, left, flags;
- int seen_dashdash = 0;
-
- /* First, filter out revision options and look for "--" */
- for (left = i = 1; i < argc; i++) {
- const char *arg = argv[i];
- int opts;
-
- if (arg[0] != '-') {
- argv[left++] = arg;
- continue;
- }
-
- if (!strcmp(arg, "--")) {
- seen_dashdash = left;
- memcpy(argv + left, argv + i, sizeof(*argv) * (argc - i));
- left += argc - i;
- break;
- }
+ int i, left, flags = 0;
- opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
- if (opts > 0) {
- i += opts - 1;
- continue;
- }
- if (opts < 0)
- exit(128);
- argv[left++] = arg;
- }
- argv[left] = NULL;
- argc = left;
-
- /* Second, parse revisions arguments */
- flags = 0;
for (left = i = 1; i < argc; i++) {
const char *arg = argv[i];
@@ -1320,7 +1282,7 @@ int parse_revisions(int argc, const char **argv, struct rev_info *revs)
revs->no_walk = 0;
continue;
}
- if (i == seen_dashdash) {
+ if (i == dashdash_pos) {
argv[i] = NULL;
argc = i;
if (argv[i + 1])
@@ -1332,10 +1294,10 @@ int parse_revisions(int argc, const char **argv, struct rev_info *revs)
continue;
}
- if (handle_revision_arg(arg, revs, flags, seen_dashdash)) {
+ if (handle_revision_arg(arg, revs, flags, dashdash_pos)) {
int j;
- if (seen_dashdash || *arg == '^')
- die("bad revision '%s'", arg);
+ if (dashdash_pos || *arg == '^')
+ return error("bad revision '%s'", arg);
/* If we didn't have a "--":
* (1) all filenames must exist;
@@ -1351,7 +1313,50 @@ int parse_revisions(int argc, const char **argv, struct rev_info *revs)
break;
}
}
- return left;
+
+ return left;
+}
+
+/*
+ * Parse revision information, filling in the "rev_info" structure,
+ * and removing the used arguments from the argument list.
+ *
+ * Returns the number of arguments left that weren't recognized
+ * (which are also moved to the head of the argument list)
+ */
+int parse_revisions(int argc, const char **argv, struct rev_info *revs)
+{
+ int i, left, dashdash_pos = 0;
+
+ /* First, filter out revision options and look for "--" */
+ for (left = i = 1; i < argc; i++) {
+ const char *arg = argv[i];
+ int opts;
+
+ if (arg[0] != '-') {
+ argv[left++] = arg;
+ continue;
+ }
+
+ if (!strcmp(arg, "--")) {
+ dashdash_pos = left;
+ memcpy(argv + left, argv + i, sizeof(*argv) * (argc - i));
+ left += argc - i;
+ break;
+ }
+
+ opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
+ if (opts > 0) {
+ i += opts - 1;
+ continue;
+ }
+ if (opts < 0)
+ exit(128);
+ argv[left++] = arg;
+ }
+ argv[left] = NULL;
+
+ return handle_revision_args(revs, left, argv, dashdash_pos);
}
void setup_revisions(struct rev_info *revs, const char *def)
diff --git a/revision.h b/revision.h
index 46ab713..c0f5df0 100644
--- a/revision.h
+++ b/revision.h
@@ -125,6 +125,7 @@ extern int parse_revisions(int argc, const char **argv, struct rev_info *revs);
extern void setup_revisions(struct rev_info *revs, const char *def);
extern int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
int *unkc, const char **unkv);
+extern int handle_revision_args(struct rev_info *revs, int argc, const char **argv, int dashdash_pos);
extern int handle_revision_arg(const char *arg, struct rev_info *revs,int flags,int cant_be_filename);
extern int prepare_revision_walk(struct rev_info *revs);
--
1.5.6.2.352.g416a6
next prev parent reply other threads:[~2008-07-08 9:57 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-08 9:55 Migration of builtin-blame to parse-option Pierre Habouzit
2008-07-08 9:55 ` [PATCH 1/6] revisions: refactor init_revisions and setup_revisions Pierre Habouzit
2008-07-08 9:56 ` [PATCH 2/6] revisions: split the pure option parsing out from parse_revisions Pierre Habouzit
2008-07-08 9:56 ` [PATCH 3/6] revisions: parse_revisions refactor Pierre Habouzit
2008-07-08 9:56 ` Pierre Habouzit [this message]
2008-07-08 9:56 ` [PATCH 5/6] git-blame: migrate to incremental parse-option [1/2] Pierre Habouzit
2008-07-08 9:56 ` [PATCH 6/6] git-blame: migrate to incremental parse-option [2/2] Pierre Habouzit
2008-07-08 10:51 ` [PATCH 2/6] revisions: split the pure option parsing out from parse_revisions Johannes Sixt
2008-07-08 11:00 ` Pierre Habouzit
2008-07-08 11:25 ` Pierre Habouzit
2008-07-08 10:59 ` [PATCH 1/6] revisions: refactor init_revisions and setup_revisions Johannes Schindelin
2008-07-08 11:06 ` Pierre Habouzit
2008-07-08 11:43 ` Johannes Schindelin
2008-07-08 12:48 ` Pierre Habouzit
2008-07-08 10:02 ` Migration of builtin-blame to parse-option Pierre Habouzit
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1215510964-16664-5-git-send-email-madcoder@debian.org \
--to=madcoder@debian.org \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=peff@peff.net \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).