[PATCH 03/11] git-cat-file: Make option parsing a little more flexible

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Adam Roben
Date: Wednesday, April 23, 2008 - 12:17 pm

This will make it easier to add newer options later.

Signed-off-by: Adam Roben <aroben@apple.com>
---
Junio C Hamano <gitster@pobox.com> wrote:

Fixed.

 builtin-cat-file.c |   42 ++++++++++++++++++++++++++++++------------
 1 files changed, 30 insertions(+), 12 deletions(-)

diff --git a/builtin-cat-file.c b/builtin-cat-file.c
index 34a63d1..a76bb16 100644
--- a/builtin-cat-file.c
+++ b/builtin-cat-file.c
@@ -143,23 +143,41 @@ static int cat_one_file(int opt, const char *exp_type, const char *obj_name)
 	return 0;
 }
 
+static const char cat_file_usage[] = "git-cat-file [-t|-s|-e|-p|<type>] <sha1>";
+
 int cmd_cat_file(int argc, const char **argv, const char *prefix)
 {
-	int opt;
-	const char *exp_type, *obj_name;
+	int i, opt = 0;
+	const char *exp_type = NULL, *obj_name = NULL;
 
 	git_config(git_default_config);
-	if (argc != 3)
-		usage("git-cat-file [-t|-s|-e|-p|<type>] <sha1>");
-	exp_type = argv[1];
-	obj_name = argv[2];
-
-	opt = 0;
-	if ( exp_type[0] == '-' ) {
-		opt = exp_type[1];
-		if ( !opt || exp_type[2] )
-			opt = -1; /* Not a single character option */
+
+	for (i = 1; i < argc; ++i) {
+		const char *arg = argv[i];
+
+		if (!strcmp(arg, "-t") || !strcmp(arg, "-s") || !strcmp(arg, "-e") || !strcmp(arg, "-p")) {
+			exp_type = arg;
+			opt = exp_type[1];
+			continue;
+		}
+
+		if (arg[0] == '-')
+			usage(cat_file_usage);
+
+		if (!exp_type) {
+			exp_type = arg;
+			continue;
+		}
+
+		if (obj_name)
+			usage(cat_file_usage);
+
+		obj_name = arg;
+		break;
 	}
 
+	if (!exp_type || !obj_name)
+		usage(cat_file_usage);
+
 	return cat_one_file(opt, exp_type, obj_name);
 }
-- 
1.5.5.1.152.g9aeb7

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Speed up git-svn fetch, Adam Roben, (Wed Apr 23, 12:17 pm)
[PATCH 01/11] Add tests for git cat-file, Adam Roben, (Wed Apr 23, 12:17 pm)
[PATCH 03/11] git-cat-file: Make option parsing a little m ..., Adam Roben, (Wed Apr 23, 12:17 pm)
[PATCH 04/11] git-cat-file: Add --batch-check option, Adam Roben, (Wed Apr 23, 12:17 pm)
[PATCH 05/11] git-cat-file: Add --batch option, Adam Roben, (Wed Apr 23, 12:17 pm)
Re: Speed up git-svn fetch, Adam Roben, (Wed Apr 23, 12:19 pm)
Re: [PATCH 01/11] Add tests for git cat-file, Eric Wong, (Thu Apr 24, 11:56 pm)
Re: Speed up git-svn fetch, Eric Wong, (Fri Apr 25, 12:15 am)
Re: [PATCH 01/11] Add tests for git cat-file, Junio C Hamano, (Fri Apr 25, 11:06 am)