git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] git-grep --relative: show pathnames relative to the current directory
@ 2006-08-11  7:50 Junio C Hamano
  2006-08-11 12:03 ` Karl Hasselström
  2006-08-11 15:23 ` Sam Ravnborg
  0 siblings, 2 replies; 3+ messages in thread
From: Junio C Hamano @ 2006-08-11  7:50 UTC (permalink / raw
  To: git

By default, the command shows pathnames relative to the project
root, even when run from a subdirectory.  With --relative flag,
however, the command outputs pathnames relative to the current
directory.

This makes it very pleasant to run in Emacs compilation (or
"grep-find") buffer.

Signed-off-by: Junio C Hamano <junkio@cox.net>
---

 * Now the question is, shouldn't this be the default, with
   the current output available as an option --full-name, just
   like ls-files?

   Changing the default always risks breaking people's habit and
   scripts, but I tend to think the current output is a
   misfeature which we'd better fix sooner rather than later.

   Opinions? 

 Documentation/git-grep.txt |    7 +++++
 builtin-grep.c             |   58 ++++++++++++++++++++++++++++++++++++--------
 2 files changed, 54 insertions(+), 11 deletions(-)

diff --git a/Documentation/git-grep.txt b/Documentation/git-grep.txt
index dc76833..6cdc433 100644
--- a/Documentation/git-grep.txt
+++ b/Documentation/git-grep.txt
@@ -11,7 +11,7 @@ SYNOPSIS
 [verse]
 'git-grep' [--cached]
 	   [-a | --text] [-I] [-i | --ignore-case] [-w | --word-regexp]
-	   [-v | --invert-match]
+	   [-v | --invert-match] [--relative]
 	   [-E | --extended-regexp] [-G | --basic-regexp] [-F | --fixed-strings]
 	   [-n] [-l | --files-with-matches] [-L | --files-without-match]
 	   [-c | --count]
@@ -47,6 +47,11 @@ OPTIONS
 -v | --invert-match::
 	Select non-matching lines.
 
+--relative::
+	When run from a subdirectory, show filenames relative to
+	the current directory, instead of the usual full
+	pathname down from the project root.
+
 -E | --extended-regexp | -G | --basic-regexp::
 	Use POSIX extended/basic regexp for patterns.  Default
 	is to use basic regexp.
diff --git a/builtin-grep.c b/builtin-grep.c
index 93b7e07..f6309f5 100644
--- a/builtin-grep.c
+++ b/builtin-grep.c
@@ -123,6 +123,7 @@ struct grep_opt {
 	struct grep_pat *pattern_list;
 	struct grep_pat **pattern_tail;
 	struct grep_expr *pattern_expression;
+	int prefix_length;
 	regex_t regexp;
 	unsigned linenum:1;
 	unsigned invert:1;
@@ -136,6 +137,7 @@ #define GREP_BINARY_NOMATCH	1
 #define GREP_BINARY_TEXT	2
 	unsigned binary:2;
 	unsigned extended:1;
+	unsigned relative:1;
 	int regflags;
 	unsigned pre_context;
 	unsigned post_context;
@@ -632,19 +634,40 @@ static int grep_buffer(struct grep_opt *
 	return !!last_hit;
 }
 
-static int grep_sha1(struct grep_opt *opt, const unsigned char *sha1, const char *name)
+static int grep_sha1(struct grep_opt *opt, const unsigned char *sha1, const char *name, int tree_name_len)
 {
 	unsigned long size;
 	char *data;
 	char type[20];
+	char *to_free = NULL;
 	int hit;
+
 	data = read_sha1_file(sha1, type, &size);
 	if (!data) {
 		error("'%s': unable to read %s", name, sha1_to_hex(sha1));
 		return 0;
 	}
+	if (opt->relative && opt->prefix_length) {
+		static char name_buf[PATH_MAX];
+		char *cp;
+		int name_len = strlen(name) - opt->prefix_length + 1;
+
+		if (!tree_name_len)
+			name += opt->prefix_length;
+		else {
+			if (ARRAY_SIZE(name_buf) <= name_len)
+				cp = to_free = xmalloc(name_len);
+			else
+				cp = name_buf;
+			memcpy(cp, name, tree_name_len);
+			strcpy(cp + tree_name_len,
+			       name + tree_name_len + opt->prefix_length);
+			name = cp;
+		}
+	}
 	hit = grep_buffer(opt, name, data, size);
 	free(data);
+	free(to_free);
 	return hit;
 }
 
@@ -674,6 +697,8 @@ static int grep_file(struct grep_opt *op
 		return 0;
 	}
 	close(i);
+	if (opt->relative && opt->prefix_length)
+		filename += opt->prefix_length;
 	i = grep_buffer(opt, filename, data, st.st_size);
 	free(data);
 	return i;
@@ -720,7 +745,7 @@ static int external_grep(struct grep_opt
 	char *argptr = randarg;
 	struct grep_pat *p;
 
-	if (opt->extended)
+	if (opt->extended || (opt->relative && opt->prefix_length))
 		return -1;
 	len = nr = 0;
 	push_arg("grep");
@@ -845,7 +870,7 @@ #endif
 		if (!pathspec_matches(paths, ce->name))
 			continue;
 		if (cached)
-			hit |= grep_sha1(opt, ce->sha1, ce->name);
+			hit |= grep_sha1(opt, ce->sha1, ce->name, 0);
 		else
 			hit |= grep_file(opt, ce->name);
 	}
@@ -860,11 +885,12 @@ static int grep_tree(struct grep_opt *op
 	int hit = 0;
 	struct name_entry entry;
 	char *down;
-	char *path_buf = xmalloc(PATH_MAX + strlen(tree_name) + 100);
+	int tn_len = strlen(tree_name);
+	char *path_buf = xmalloc(PATH_MAX + tn_len + 100);
 
-	if (tree_name[0]) {
-		int offset = sprintf(path_buf, "%s:", tree_name);
-		down = path_buf + offset;
+	if (tn_len) {
+		tn_len = sprintf(path_buf, "%s:", tree_name);
+		down = path_buf + tn_len;
 		strcat(down, base);
 	}
 	else {
@@ -886,7 +912,7 @@ static int grep_tree(struct grep_opt *op
 		if (!pathspec_matches(paths, down))
 			;
 		else if (S_ISREG(entry.mode))
-			hit |= grep_sha1(opt, entry.sha1, path_buf);
+			hit |= grep_sha1(opt, entry.sha1, path_buf, tn_len);
 		else if (S_ISDIR(entry.mode)) {
 			char type[20];
 			struct tree_desc sub;
@@ -907,7 +933,7 @@ static int grep_object(struct grep_opt *
 		       struct object *obj, const char *name)
 {
 	if (obj->type == OBJ_BLOB)
-		return grep_sha1(opt, obj->sha1, name);
+		return grep_sha1(opt, obj->sha1, name, 0);
 	if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
 		struct tree_desc tree;
 		void *data;
@@ -945,6 +971,7 @@ int cmd_grep(int argc, const char **argv
 	int i;
 
 	memset(&opt, 0, sizeof(opt));
+	opt.prefix_length = (prefix && *prefix) ? strlen(prefix) : 0;
 	opt.pattern_tail = &opt.pattern_list;
 	opt.regflags = REG_NEWLINE;
 
@@ -1118,6 +1145,10 @@ int cmd_grep(int argc, const char **argv
 			}
 			die(emsg_missing_argument, arg);
 		}
+		if (!strcmp("--relative", arg)) {
+			opt.relative = 1;
+			continue;
+		}
 		if (!strcmp("--", arg)) {
 			/* later processing wants to have this at argv[1] */
 			argv--;
@@ -1176,8 +1207,15 @@ int cmd_grep(int argc, const char **argv
 			verify_filename(prefix, argv[j]);
 	}
 
-	if (i < argc)
+	if (i < argc) {
 		paths = get_pathspec(prefix, argv + i);
+		if (opt.prefix_length && opt.relative) {
+			/* Make sure we do not get outside of paths */
+			for (i = 0; paths[i]; i++)
+				if (strncmp(prefix, paths[i], opt.prefix_length))
+					die("git-grep: cannot generate relative filenames containing '..'");
+		}
+	}
 	else if (prefix) {
 		paths = xcalloc(2, sizeof(const char *));
 		paths[0] = prefix;
-- 
1.4.2.rc4.g9d8df

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] git-grep --relative: show pathnames relative to the current directory
  2006-08-11  7:50 [PATCH] git-grep --relative: show pathnames relative to the current directory Junio C Hamano
@ 2006-08-11 12:03 ` Karl Hasselström
  2006-08-11 15:23 ` Sam Ravnborg
  1 sibling, 0 replies; 3+ messages in thread
From: Karl Hasselström @ 2006-08-11 12:03 UTC (permalink / raw
  To: git

On 2006-08-11 00:50:12 -0700, Junio C Hamano wrote:

> By default, the command shows pathnames relative to the project
> root, even when run from a subdirectory. With --relative flag,
> however, the command outputs pathnames relative to the current
> directory.
>
> This makes it very pleasant to run in Emacs compilation (or
> "grep-find") buffer.

[...]

>  * Now the question is, shouldn't this be the default, with the
>    current output available as an option --full-name, just like
>    ls-files?
>
>    Changing the default always risks breaking people's habit and
>    scripts, but I tend to think the current output is a misfeature
>    which we'd better fix sooner rather than later.

I think this behavior should be the default, precisely because it
otherwise breaks the habits formed during use of plain "grep".

-- 
Karl Hasselström, kha@treskal.com
      www.treskal.com/kalle

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] git-grep --relative: show pathnames relative to the current directory
  2006-08-11  7:50 [PATCH] git-grep --relative: show pathnames relative to the current directory Junio C Hamano
  2006-08-11 12:03 ` Karl Hasselström
@ 2006-08-11 15:23 ` Sam Ravnborg
  1 sibling, 0 replies; 3+ messages in thread
From: Sam Ravnborg @ 2006-08-11 15:23 UTC (permalink / raw
  To: Junio C Hamano; +Cc: git

On Fri, Aug 11, 2006 at 12:50:12AM -0700, Junio C Hamano wrote:
> By default, the command shows pathnames relative to the project
> root, even when run from a subdirectory.  With --relative flag,
> however, the command outputs pathnames relative to the current
> directory.
> 
> This makes it very pleasant to run in Emacs compilation (or
> "grep-find") buffer.
> 
> Signed-off-by: Junio C Hamano <junkio@cox.net>
> ---
> 
>  * Now the question is, shouldn't this be the default, with
>    the current output available as an option --full-name, just
>    like ls-files?
> 
>    Changing the default always risks breaking people's habit and
>    scripts, but I tend to think the current output is a
>    misfeature which we'd better fix sooner rather than later.
> 
>    Opinions? 

I always felt confused when path was relative to root of .git directory
and not relative to current directory.
But I never looked into changing this or reporting it - so it has not
been a big issue.

	Sam

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-08-11 15:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-11  7:50 [PATCH] git-grep --relative: show pathnames relative to the current directory Junio C Hamano
2006-08-11 12:03 ` Karl Hasselström
2006-08-11 15:23 ` Sam Ravnborg

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).