summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 90334cf)
raw | patch | inline | side by side (parent: 90334cf)
author | Junio C Hamano <junkio@cox.net> | |
Mon, 6 Jun 2005 19:20:55 +0000 (12:20 -0700) | ||
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | |
Mon, 6 Jun 2005 20:13:27 +0000 (13:13 -0700) |
This patch teaches read-tree how to use the index file locking
helpers the same way "checkout-cache -u" and "update-cache" do.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
helpers the same way "checkout-cache -u" and "update-cache" do.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
read-tree.c | patch | blob | history |
diff --git a/read-tree.c b/read-tree.c
index 90c0ee522da6a33e3b6f87aa0afa72f9d8676757..63a1eb543fef2b84f2ff7d295610c09b6c2ab2da 100644 (file)
--- a/read-tree.c
+++ b/read-tree.c
return ret;
}
-static char *lockfile_name;
-
-static void remove_lock_file(void)
-{
- if (lockfile_name)
- unlink(lockfile_name);
-}
-
static int path_matches(struct cache_entry *a, struct cache_entry *b)
{
int len = ce_namelen(a);
static char *read_tree_usage = "git-read-tree (<sha> | -m <sha1> [<sha2> [<sha3>]])";
+static struct cache_file cache_file;
+
int main(int argc, char **argv)
{
int i, newfd, merge;
unsigned char sha1[20];
- static char lockfile[MAXPATHLEN+1];
- const char *indexfile = get_index_file();
-
- snprintf(lockfile, sizeof(lockfile), "%s.lock", indexfile);
- newfd = open(lockfile, O_RDWR | O_CREAT | O_EXCL, 0600);
+ newfd = hold_index_file_for_update(&cache_file, get_index_file());
if (newfd < 0)
die("unable to create new cachefile");
- atexit(remove_lock_file);
- lockfile_name = lockfile;
merge = 0;
for (i = 1; i < argc; i++) {
die("just how do you expect me to merge %d trees?", stage-1);
}
}
- if (write_cache(newfd, active_cache, active_nr) || rename(lockfile, indexfile))
+ if (write_cache(newfd, active_cache, active_nr) ||
+ commit_index_file(&cache_file))
die("unable to write new index file");
- lockfile_name = NULL;
return 0;
}