All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/2] Teach name-rev to identify revisions containing a certain blob
@ 2007-02-17 17:39 Johannes Schindelin
  2007-02-17 18:24 ` Junio C Hamano
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Johannes Schindelin @ 2007-02-17 17:39 UTC (permalink / raw)
  To: git, Mike Coleman, junkio


If you want to know which revisions contained a certain version
of a file, just say

	git name-rev --file <filename>

which will read the file, and give you a list of revisions
containing a file with the same contents. If <filename> is "-",
it will read the contents from stdin. Of course, this is a really
expensive operation.

This feature was suggested by Mike Coleman.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
---
 builtin-name-rev.c |  118 +++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 117 insertions(+), 1 deletions(-)

diff --git a/builtin-name-rev.c b/builtin-name-rev.c
index 89ea95d..f08b065 100644
--- a/builtin-name-rev.c
+++ b/builtin-name-rev.c
@@ -3,10 +3,95 @@
 #include "commit.h"
 #include "tag.h"
 #include "refs.h"
+#include "tree-walk.h"
+#include "object-hash.h"
 #include <regex.h>
 
 static const char name_rev_usage[] =
-	"git-name-rev [--tags | --ref-filter=<regexp>] ( --all | --stdin | committish [committish...] )\n";
+	"git-name-rev [--tags | --ref-filter=<regexp>] ( --all | --stdin | committish [committish...] | --file <filename> )\n";
+
+static unsigned char *file_sha1;
+static struct object_hash file_trees = { 0, 0, NULL };
+static struct object_array file_commits = { 0, 0, NULL };
+#define CONTAINS_FILE (1u<<10)
+
+static int get_file(const char *path)
+{
+	int fd, ret;
+	struct stat st;
+
+	file_sha1 = xmalloc(20);
+	if (!strcmp(path, "-"))
+		ret = index_pipe(file_sha1, 0, "blob", 0);
+	else {
+		if ((fd = open(path, O_RDONLY)) < 0 || fstat(fd, &st) < 0)
+			return -1;
+		ret = index_fd(file_sha1, fd, &st, 0, "blob");
+	}
+	if (ret)
+		return ret;
+	if (!parse_object(file_sha1))
+		return error("Object not found for '%s'", path);
+	return 0;
+}
+
+struct object_name {
+	int len;
+	char *name;
+};
+
+static struct object_name *name_file(struct tree *tree)
+{
+	static struct object_name null_name = { 0, NULL };
+	struct object_name *name;
+	struct tree_desc desc;
+	struct name_entry entry;
+
+	if (!tree->object.parsed)
+		parse_tree(tree);
+	else if ((name = lookup_object_in_hash(&tree->object, &file_trees)))
+		return name->len ? name : NULL;
+
+	if (!tree->buffer) {
+		add_object_to_hash(&tree->object, &null_name, &file_trees);
+		return NULL;
+	}
+
+	desc.buf = tree->buffer;
+	desc.size = tree->size;
+
+	while (tree_entry(&desc, &entry))
+		if (!hashcmp(file_sha1, entry.sha1)) {
+			name = xcalloc(sizeof(struct object_name), 1);
+			name->len = entry.pathlen;
+			name->name = xstrdup(entry.path);
+			break;
+		} else if (S_ISDIR(entry.mode)) {
+			struct object *subtree = parse_object(entry.sha1);
+			struct object_name *subname;
+
+			/* just to be safe */
+			if (subtree->type != OBJ_TREE)
+				die("%s is not a tree?",
+						sha1_to_hex(entry.sha1));
+
+			subname = name_file((struct tree *)subtree);
+			if (!subname)
+				continue;
+			name = xcalloc(sizeof(struct object_name), 1);
+			name->len = entry.pathlen + 1 + subname->len;
+			name->name = xmalloc(name->len + 1);
+			memcpy(name->name, entry.path, entry.pathlen);
+			name->name[entry.pathlen] = '/';
+			strncpy(name->name + entry.pathlen + 1,
+					subname->name, subname->len);
+			break;
+		}
+	add_object_to_hash(&tree->object, name ? name : &null_name,
+			&file_trees);
+
+	return name;
+}
 
 typedef struct rev_name {
 	const char *tip_name;
@@ -23,6 +108,7 @@ static void name_rev(struct commit *commit,
 	struct rev_name *name = (struct rev_name *)commit->util;
 	struct commit_list *parents;
 	int parent_number = 1;
+	struct object_name *file_name;
 
 	if (!commit->object.parsed)
 		parse_commit(commit);
@@ -54,6 +140,12 @@ copy_data:
 	} else
 		return;
 
+	if (file_sha1 && !(commit->object.flags & CONTAINS_FILE) &&
+			(file_name = name_file(commit->tree))) {
+		commit->object.flags |= CONTAINS_FILE;
+		add_object_array(&commit->object, NULL, &file_commits);
+	}
+
 	for (parents = commit->parents;
 			parents;
 			parents = parents->next, parent_number++) {
@@ -175,6 +267,14 @@ int cmd_name_rev(int argc, const char **argv, const char *prefix)
 				transform_stdin = 1;
 				cutoff = 0;
 				continue;
+			} else if (!strcmp(*argv, "--file")) {
+				if (argc != 2)
+					usage(name_rev_usage);
+				if (get_file(argv[1]))
+					die("Could not read '%s'", argv[1]);
+				cutoff = 0;
+				argc = 1;
+				continue;
 			}
 			usage(name_rev_usage);
 		}
@@ -202,6 +302,22 @@ int cmd_name_rev(int argc, const char **argv, const char *prefix)
 
 	for_each_ref(name_ref, &data);
 
+	if (file_sha1) {
+		int i;
+		for (i = 0; i < file_commits.nr; i++) {
+			struct commit *commit =
+				(struct commit *)file_commits.objects[i].item;
+			struct rev_name *rev_name = commit->util;
+			struct object_name *obj_name = name_file(commit->tree);
+
+			printf("%s", rev_name->tip_name);
+			if (rev_name->generation)
+				printf("^%d", rev_name->generation);
+			printf(":%s\n", obj_name->name);
+		}
+		return 0;
+	}
+
 	if (transform_stdin) {
 		char buffer[2048];
 		char *p, *p_start;
-- 
1.5.0.2139.gdafc9-dirty

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

end of thread, other threads:[~2007-02-18 15:41 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-17 17:39 [PATCH 2/2] Teach name-rev to identify revisions containing a certain blob Johannes Schindelin
2007-02-17 18:24 ` Junio C Hamano
2007-02-17 23:52   ` Johannes Schindelin
2007-02-18  0:04   ` Johannes Schindelin
2007-02-17 18:30 ` Junio C Hamano
2007-02-17 23:31   ` Johannes Schindelin
2007-02-18  8:34 ` Junio C Hamano
2007-02-18  8:48   ` Junio C Hamano
2007-02-18 15:41   ` Johannes Schindelin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.