blob: bf7ec6c2a3e25d09d3a43047d0cf3e1e6f883178 [file] [log] [blame]
Junio C Hamanob02a26c2005-05-01 21:10:04 -07001/*
2 * Copyright (C) 2005 Junio C Hamano
3 */
Junio C Hamanodfcb4052005-05-01 21:09:28 -07004#include "cache.h"
5#include "commit.h"
Junio C Hamano215a7ad2005-09-07 17:26:23 -07006#include "fetch.h"
Junio C Hamanodfcb4052005-05-01 21:09:28 -07007
David Rientjes96f1e582006-08-15 10:23:48 -07008static int use_link;
9static int use_symlink;
Junio C Hamanob02a26c2005-05-01 21:10:04 -070010static int use_filecopy = 1;
David Rientjes96f1e582006-08-15 10:23:48 -070011static int commits_on_stdin;
Junio C Hamanodfcb4052005-05-01 21:09:28 -070012
Petr Baudis8e87ca62006-07-27 23:56:19 +020013static const char *path; /* "Remote" git repository */
Junio C Hamanodfcb4052005-05-01 21:09:28 -070014
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -040015void prefetch(unsigned char *sha1)
16{
17}
18
David Rientjes96f1e582006-08-15 10:23:48 -070019static struct packed_git *packs;
Daniel Barkalow08b11612005-08-16 00:10:32 -040020
Peter Hagervall2ab141a2005-09-02 14:17:10 +020021static void setup_index(unsigned char *sha1)
Daniel Barkalow08b11612005-08-16 00:10:32 -040022{
23 struct packed_git *new_pack;
24 char filename[PATH_MAX];
25 strcpy(filename, path);
26 strcat(filename, "/objects/pack/pack-");
27 strcat(filename, sha1_to_hex(sha1));
28 strcat(filename, ".idx");
29 new_pack = parse_pack_index_file(sha1, filename);
30 new_pack->next = packs;
31 packs = new_pack;
32}
33
Peter Hagervall2ab141a2005-09-02 14:17:10 +020034static int setup_indices(void)
Daniel Barkalow08b11612005-08-16 00:10:32 -040035{
36 DIR *dir;
37 struct dirent *de;
38 char filename[PATH_MAX];
39 unsigned char sha1[20];
40 sprintf(filename, "%s/objects/pack/", path);
41 dir = opendir(filename);
Sergey Vlasov8be707d2005-09-23 16:28:23 +040042 if (!dir)
43 return -1;
Daniel Barkalow08b11612005-08-16 00:10:32 -040044 while ((de = readdir(dir)) != NULL) {
45 int namelen = strlen(de->d_name);
Rene Scharfe83a2b842006-08-10 17:02:30 +020046 if (namelen != 50 ||
Rene Scharfe5bb1cda2006-08-11 14:01:45 +020047 !has_extension(de->d_name, ".pack"))
Daniel Barkalow08b11612005-08-16 00:10:32 -040048 continue;
Junio C Hamanod9200322005-08-15 22:48:09 -070049 get_sha1_hex(de->d_name + 5, sha1);
Daniel Barkalow08b11612005-08-16 00:10:32 -040050 setup_index(sha1);
51 }
Sergey Vlasov8be707d2005-09-23 16:28:23 +040052 closedir(dir);
Daniel Barkalow08b11612005-08-16 00:10:32 -040053 return 0;
54}
55
Junio C Hamano0ffdbbf2005-10-29 13:02:18 -070056static int copy_file(const char *source, char *dest, const char *hex,
Sergey Vlasov628cd542005-09-23 16:28:38 +040057 int warn_if_not_exists)
Daniel Barkalow08b11612005-08-16 00:10:32 -040058{
Junio C Hamano0ffdbbf2005-10-29 13:02:18 -070059 safe_create_leading_directories(dest);
Daniel Barkalow08b11612005-08-16 00:10:32 -040060 if (use_link) {
61 if (!link(source, dest)) {
62 pull_say("link %s\n", hex);
63 return 0;
64 }
65 /* If we got ENOENT there is no point continuing. */
66 if (errno == ENOENT) {
Nicolas Pitree8e91fe2007-03-16 13:20:19 -040067 if (!warn_if_not_exists)
68 return -1;
69 return error("does not exist %s", source);
Daniel Barkalow08b11612005-08-16 00:10:32 -040070 }
71 }
Sergey Vlasove2b77f02005-09-23 16:28:33 +040072 if (use_symlink) {
73 struct stat st;
74 if (stat(source, &st)) {
Sergey Vlasov628cd542005-09-23 16:28:38 +040075 if (!warn_if_not_exists && errno == ENOENT)
76 return -1;
Nicolas Pitree8e91fe2007-03-16 13:20:19 -040077 return error("cannot stat %s: %s", source,
78 strerror(errno));
Sergey Vlasove2b77f02005-09-23 16:28:33 +040079 }
80 if (!symlink(source, dest)) {
81 pull_say("symlink %s\n", hex);
82 return 0;
83 }
Daniel Barkalow08b11612005-08-16 00:10:32 -040084 }
85 if (use_filecopy) {
Junio C Hamano52e44782005-10-29 13:11:36 -070086 int ifd, ofd, status = 0;
87
Daniel Barkalow08b11612005-08-16 00:10:32 -040088 ifd = open(source, O_RDONLY);
Junio C Hamano52e44782005-10-29 13:11:36 -070089 if (ifd < 0) {
90 if (!warn_if_not_exists && errno == ENOENT)
Sergey Vlasov628cd542005-09-23 16:28:38 +040091 return -1;
Nicolas Pitree8e91fe2007-03-16 13:20:19 -040092 return error("cannot open %s", source);
Daniel Barkalow08b11612005-08-16 00:10:32 -040093 }
Junio C Hamano52e44782005-10-29 13:11:36 -070094 ofd = open(dest, O_WRONLY | O_CREAT | O_EXCL, 0666);
95 if (ofd < 0) {
Junio C Hamano52e44782005-10-29 13:11:36 -070096 close(ifd);
Nicolas Pitree8e91fe2007-03-16 13:20:19 -040097 return error("cannot open %s", dest);
Daniel Barkalow08b11612005-08-16 00:10:32 -040098 }
Junio C Hamano52e44782005-10-29 13:11:36 -070099 status = copy_fd(ifd, ofd);
100 close(ofd);
Daniel Barkalow08b11612005-08-16 00:10:32 -0400101 if (status)
Nicolas Pitree8e91fe2007-03-16 13:20:19 -0400102 return error("cannot write %s", dest);
103 pull_say("copy %s\n", hex);
104 return 0;
Daniel Barkalow08b11612005-08-16 00:10:32 -0400105 }
Nicolas Pitree8e91fe2007-03-16 13:20:19 -0400106 return error("failed to copy %s with given copy methods.", hex);
Daniel Barkalow08b11612005-08-16 00:10:32 -0400107}
108
Peter Hagervall2ab141a2005-09-02 14:17:10 +0200109static int fetch_pack(const unsigned char *sha1)
Daniel Barkalow08b11612005-08-16 00:10:32 -0400110{
111 struct packed_git *target;
112 char filename[PATH_MAX];
113 if (setup_indices())
114 return -1;
115 target = find_sha1_pack(sha1, packs);
116 if (!target)
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700117 return error("Couldn't find %s: not separate or in any pack",
Daniel Barkalow08b11612005-08-16 00:10:32 -0400118 sha1_to_hex(sha1));
119 if (get_verbosely) {
120 fprintf(stderr, "Getting pack %s\n",
121 sha1_to_hex(target->sha1));
122 fprintf(stderr, " which contains %s\n",
123 sha1_to_hex(sha1));
124 }
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700125 sprintf(filename, "%s/objects/pack/pack-%s.pack",
Junio C Hamanod9200322005-08-15 22:48:09 -0700126 path, sha1_to_hex(target->sha1));
127 copy_file(filename, sha1_pack_name(target->sha1),
Sergey Vlasov628cd542005-09-23 16:28:38 +0400128 sha1_to_hex(target->sha1), 1);
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700129 sprintf(filename, "%s/objects/pack/pack-%s.idx",
Junio C Hamanod9200322005-08-15 22:48:09 -0700130 path, sha1_to_hex(target->sha1));
131 copy_file(filename, sha1_pack_index_name(target->sha1),
Sergey Vlasov628cd542005-09-23 16:28:38 +0400132 sha1_to_hex(target->sha1), 1);
Daniel Barkalow08b11612005-08-16 00:10:32 -0400133 install_packed_git(target);
134 return 0;
135}
136
Peter Hagervall2ab141a2005-09-02 14:17:10 +0200137static int fetch_file(const unsigned char *sha1)
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700138{
139 static int object_name_start = -1;
140 static char filename[PATH_MAX];
141 char *hex = sha1_to_hex(sha1);
Junio C Hamano0ffdbbf2005-10-29 13:02:18 -0700142 char *dest_filename = sha1_file_name(sha1);
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700143
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700144 if (object_name_start < 0) {
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700145 strcpy(filename, path); /* e.g. git.git */
146 strcat(filename, "/objects/");
147 object_name_start = strlen(filename);
148 }
149 filename[object_name_start+0] = hex[0];
150 filename[object_name_start+1] = hex[1];
151 filename[object_name_start+2] = '/';
152 strcpy(filename + object_name_start + 3, hex + 2);
Sergey Vlasov628cd542005-09-23 16:28:38 +0400153 return copy_file(filename, dest_filename, hex, 0);
Daniel Barkalow08b11612005-08-16 00:10:32 -0400154}
155
156int fetch(unsigned char *sha1)
157{
Nick Hengeveld11f0daf2005-10-10 23:22:01 -0700158 if (has_sha1_file(sha1))
159 return 0;
160 else
161 return fetch_file(sha1) && fetch_pack(sha1);
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700162}
163
Daniel Barkalowcd541a62005-06-06 16:38:26 -0400164int fetch_ref(char *ref, unsigned char *sha1)
165{
Junio C Hamanof5ab6cc2005-06-22 01:52:06 -0700166 static int ref_name_start = -1;
167 static char filename[PATH_MAX];
168 static char hex[41];
169 int ifd;
170
171 if (ref_name_start < 0) {
172 sprintf(filename, "%s/refs/", path);
173 ref_name_start = strlen(filename);
174 }
175 strcpy(filename + ref_name_start, ref);
176 ifd = open(filename, O_RDONLY);
177 if (ifd < 0) {
178 close(ifd);
Nicolas Pitree8e91fe2007-03-16 13:20:19 -0400179 return error("cannot open %s", filename);
Junio C Hamanof5ab6cc2005-06-22 01:52:06 -0700180 }
Andy Whitcroft93d26e42007-01-08 15:58:08 +0000181 if (read_in_full(ifd, hex, 40) != 40 || get_sha1_hex(hex, sha1)) {
Junio C Hamanof5ab6cc2005-06-22 01:52:06 -0700182 close(ifd);
Nicolas Pitree8e91fe2007-03-16 13:20:19 -0400183 return error("cannot read from %s", filename);
Junio C Hamanof5ab6cc2005-06-22 01:52:06 -0700184 }
185 close(ifd);
186 pull_say("ref %s\n", sha1_to_hex(sha1));
187 return 0;
Daniel Barkalowcd541a62005-06-06 16:38:26 -0400188}
189
Petr Baudis4d1f1192005-07-29 11:01:26 +0200190static const char local_pull_usage[] =
Petr Baudis8e87ca62006-07-27 23:56:19 +0200191"git-local-fetch [-c] [-t] [-a] [-v] [-w filename] [--recover] [-l] [-s] [-n] [--stdin] commit-id path";
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700192
Petr Baudiscc41cd22006-07-27 20:58:53 +0200193/*
Junio C Hamanob02a26c2005-05-01 21:10:04 -0700194 * By default we only use file copy.
195 * If -l is specified, a hard link is attempted.
196 * If -s is specified, then a symlink is attempted.
197 * If -n is _not_ specified, then a regular file-to-file copy is done.
198 */
Petr Baudis8e87ca62006-07-27 23:56:19 +0200199int main(int argc, const char **argv)
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700200{
Petr Baudis8e87ca62006-07-27 23:56:19 +0200201 int commits;
202 const char **write_ref = NULL;
203 char **commit_id;
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700204 int arg = 1;
205
Junio C Hamano5a327712005-11-26 00:47:59 -0800206 setup_git_directory();
Shawn Pearced0740d92006-05-19 03:29:26 -0400207 git_config(git_default_config);
Junio C Hamano5a327712005-11-26 00:47:59 -0800208
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700209 while (arg < argc && argv[arg][0] == '-') {
210 if (argv[arg][1] == 't')
211 get_tree = 1;
212 else if (argv[arg][1] == 'c')
213 get_history = 1;
214 else if (argv[arg][1] == 'a') {
215 get_all = 1;
216 get_tree = 1;
217 get_history = 1;
218 }
219 else if (argv[arg][1] == 'l')
220 use_link = 1;
221 else if (argv[arg][1] == 's')
222 use_symlink = 1;
Junio C Hamanob02a26c2005-05-01 21:10:04 -0700223 else if (argv[arg][1] == 'n')
224 use_filecopy = 0;
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700225 else if (argv[arg][1] == 'v')
Junio C Hamanoe78d9772005-05-06 01:37:21 -0700226 get_verbosely = 1;
Junio C Hamanof5ab6cc2005-06-22 01:52:06 -0700227 else if (argv[arg][1] == 'w')
Petr Baudis8e87ca62006-07-27 23:56:19 +0200228 write_ref = &argv[++arg];
Daniel Barkalow820eca62005-09-26 21:38:08 -0400229 else if (!strcmp(argv[arg], "--recover"))
230 get_recover = 1;
Petr Baudis8e87ca62006-07-27 23:56:19 +0200231 else if (!strcmp(argv[arg], "--stdin"))
232 commits_on_stdin = 1;
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700233 else
234 usage(local_pull_usage);
235 arg++;
236 }
Petr Baudis8e87ca62006-07-27 23:56:19 +0200237 if (argc < arg + 2 - commits_on_stdin)
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700238 usage(local_pull_usage);
Petr Baudis8e87ca62006-07-27 23:56:19 +0200239 if (commits_on_stdin) {
240 commits = pull_targets_stdin(&commit_id, &write_ref);
241 } else {
242 commit_id = (char **) &argv[arg++];
243 commits = 1;
244 }
245 path = argv[arg];
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700246
Petr Baudis8e87ca62006-07-27 23:56:19 +0200247 if (pull(commits, commit_id, write_ref, path))
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700248 return 1;
249
Petr Baudis8e87ca62006-07-27 23:56:19 +0200250 if (commits_on_stdin)
251 pull_targets_free(commits, commit_id, write_ref);
252
Junio C Hamanodfcb4052005-05-01 21:09:28 -0700253 return 0;
254}