diff options
author | Junio C Hamano <junkio@cox.net> | 2005-06-06 12:20:55 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-06 13:13:27 -0700 |
commit | 96cd5429a48235fe978ddcb4af56f13e5397cdeb (patch) | |
tree | dabbed8a076e5d8b524ea354cea2047705f48a47 /read-tree.c | |
parent | 90334cf780428f1ca68e5f29fb543e3605fb2fc1 (diff) | |
download | git-96cd5429a48235fe978ddcb4af56f13e5397cdeb.tar.gz |
[PATCH] index locking like everybody else
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>
Diffstat (limited to 'read-tree.c')
-rw-r--r-- | read-tree.c | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/read-tree.c b/read-tree.c index 90c0ee522d..63a1eb543f 100644 --- a/read-tree.c +++ b/read-tree.c @@ -22,14 +22,6 @@ static int unpack_tree(unsigned char *sha1) 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); @@ -312,20 +304,16 @@ static void check_updates(struct cache_entry **src, int nr) 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++) { @@ -376,8 +364,8 @@ int main(int argc, char **argv) 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; } |