]> git.ipfire.org Git - thirdparty/git.git/blame - local-pull.c
GIT 0.99.6
[thirdparty/git.git] / local-pull.c
CommitLineData
b02a26cb
JH
1/*
2 * Copyright (C) 2005 Junio C Hamano
3 */
dfcb4057
JH
4#include "cache.h"
5#include "commit.h"
dfcb4057
JH
6#include "pull.h"
7
8static int use_link = 0;
9static int use_symlink = 0;
b02a26cb 10static int use_filecopy = 1;
dfcb4057 11
f5ab6cca 12static char *path; /* "Remote" git repository */
dfcb4057 13
1e8be59d
DB
14void prefetch(unsigned char *sha1)
15{
16}
17
08b11616
DB
18static struct packed_git *packs = NULL;
19
2ab141a2 20static void setup_index(unsigned char *sha1)
dfcb4057 21{
08b11616
DB
22 struct packed_git *new_pack;
23 char filename[PATH_MAX];
24 strcpy(filename, path);
25 strcat(filename, "/objects/pack/pack-");
26 strcat(filename, sha1_to_hex(sha1));
27 strcat(filename, ".idx");
28 new_pack = parse_pack_index_file(sha1, filename);
29 new_pack->next = packs;
30 packs = new_pack;
31}
dfcb4057 32
2ab141a2 33static int setup_indices(void)
08b11616
DB
34{
35 DIR *dir;
36 struct dirent *de;
37 char filename[PATH_MAX];
38 unsigned char sha1[20];
39 sprintf(filename, "%s/objects/pack/", path);
40 dir = opendir(filename);
41 while ((de = readdir(dir)) != NULL) {
42 int namelen = strlen(de->d_name);
43 if (namelen != 50 ||
44 strcmp(de->d_name + namelen - 5, ".pack"))
45 continue;
d9200320 46 get_sha1_hex(de->d_name + 5, sha1);
08b11616 47 setup_index(sha1);
dfcb4057 48 }
08b11616
DB
49 return 0;
50}
51
2ab141a2 52static int copy_file(const char *source, const char *dest, const char *hex)
08b11616 53{
fd0ffd3a 54 if (use_link) {
08b11616 55 if (!link(source, dest)) {
e78d9772 56 pull_say("link %s\n", hex);
fd0ffd3a
JH
57 return 0;
58 }
59 /* If we got ENOENT there is no point continuing. */
60 if (errno == ENOENT) {
08b11616 61 fprintf(stderr, "does not exist %s\n", source);
fd0ffd3a
JH
62 return -1;
63 }
dfcb4057 64 }
08b11616 65 if (use_symlink && !symlink(source, dest)) {
e78d9772 66 pull_say("symlink %s\n", hex);
dfcb4057
JH
67 return 0;
68 }
b02a26cb
JH
69 if (use_filecopy) {
70 int ifd, ofd, status;
71 struct stat st;
72 void *map;
08b11616 73 ifd = open(source, O_RDONLY);
b02a26cb
JH
74 if (ifd < 0 || fstat(ifd, &st) < 0) {
75 close(ifd);
08b11616 76 fprintf(stderr, "cannot open %s\n", source);
b02a26cb
JH
77 return -1;
78 }
79 map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, ifd, 0);
dfcb4057 80 close(ifd);
e35f9824 81 if (map == MAP_FAILED) {
08b11616 82 fprintf(stderr, "cannot mmap %s\n", source);
b02a26cb
JH
83 return -1;
84 }
08b11616 85 ofd = open(dest, O_WRONLY | O_CREAT | O_EXCL, 0666);
b02a26cb
JH
86 status = ((ofd < 0) ||
87 (write(ofd, map, st.st_size) != st.st_size));
88 munmap(map, st.st_size);
89 close(ofd);
90 if (status)
08b11616 91 fprintf(stderr, "cannot write %s\n", dest);
b02a26cb 92 else
e78d9772 93 pull_say("copy %s\n", hex);
b02a26cb 94 return status;
dfcb4057 95 }
fd0ffd3a 96 fprintf(stderr, "failed to copy %s with given copy methods.\n", hex);
b02a26cb 97 return -1;
dfcb4057
JH
98}
99
2ab141a2 100static int fetch_pack(const unsigned char *sha1)
08b11616
DB
101{
102 struct packed_git *target;
103 char filename[PATH_MAX];
104 if (setup_indices())
105 return -1;
106 target = find_sha1_pack(sha1, packs);
107 if (!target)
108 return error("Couldn't find %s: not separate or in any pack",
109 sha1_to_hex(sha1));
110 if (get_verbosely) {
111 fprintf(stderr, "Getting pack %s\n",
112 sha1_to_hex(target->sha1));
113 fprintf(stderr, " which contains %s\n",
114 sha1_to_hex(sha1));
115 }
116 sprintf(filename, "%s/objects/pack/pack-%s.pack",
d9200320
JH
117 path, sha1_to_hex(target->sha1));
118 copy_file(filename, sha1_pack_name(target->sha1),
119 sha1_to_hex(target->sha1));
08b11616 120 sprintf(filename, "%s/objects/pack/pack-%s.idx",
d9200320
JH
121 path, sha1_to_hex(target->sha1));
122 copy_file(filename, sha1_pack_index_name(target->sha1),
123 sha1_to_hex(target->sha1));
08b11616
DB
124 install_packed_git(target);
125 return 0;
126}
127
2ab141a2 128static int fetch_file(const unsigned char *sha1)
08b11616
DB
129{
130 static int object_name_start = -1;
131 static char filename[PATH_MAX];
132 char *hex = sha1_to_hex(sha1);
133 const char *dest_filename = sha1_file_name(sha1);
134
135 if (object_name_start < 0) {
136 strcpy(filename, path); /* e.g. git.git */
137 strcat(filename, "/objects/");
138 object_name_start = strlen(filename);
139 }
140 filename[object_name_start+0] = hex[0];
141 filename[object_name_start+1] = hex[1];
142 filename[object_name_start+2] = '/';
143 strcpy(filename + object_name_start + 3, hex + 2);
144 return copy_file(filename, dest_filename, hex);
145}
146
147int fetch(unsigned char *sha1)
148{
149 return fetch_file(sha1) && fetch_pack(sha1);
150}
151
cd541a68
DB
152int fetch_ref(char *ref, unsigned char *sha1)
153{
f5ab6cca
JH
154 static int ref_name_start = -1;
155 static char filename[PATH_MAX];
156 static char hex[41];
157 int ifd;
158
159 if (ref_name_start < 0) {
160 sprintf(filename, "%s/refs/", path);
161 ref_name_start = strlen(filename);
162 }
163 strcpy(filename + ref_name_start, ref);
164 ifd = open(filename, O_RDONLY);
165 if (ifd < 0) {
166 close(ifd);
167 fprintf(stderr, "cannot open %s\n", filename);
168 return -1;
169 }
170 if (read(ifd, hex, 40) != 40 || get_sha1_hex(hex, sha1)) {
171 close(ifd);
172 fprintf(stderr, "cannot read from %s\n", filename);
173 return -1;
174 }
175 close(ifd);
176 pull_say("ref %s\n", sha1_to_hex(sha1));
177 return 0;
cd541a68
DB
178}
179
4d1f1190 180static const char local_pull_usage[] =
f5ab6cca 181"git-local-pull [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [-l] [-s] [-n] commit-id path";
dfcb4057 182
b02a26cb
JH
183/*
184 * By default we only use file copy.
185 * If -l is specified, a hard link is attempted.
186 * If -s is specified, then a symlink is attempted.
187 * If -n is _not_ specified, then a regular file-to-file copy is done.
188 */
dfcb4057
JH
189int main(int argc, char **argv)
190{
191 char *commit_id;
192 int arg = 1;
193
194 while (arg < argc && argv[arg][0] == '-') {
195 if (argv[arg][1] == 't')
196 get_tree = 1;
197 else if (argv[arg][1] == 'c')
198 get_history = 1;
199 else if (argv[arg][1] == 'a') {
200 get_all = 1;
201 get_tree = 1;
202 get_history = 1;
203 }
204 else if (argv[arg][1] == 'l')
205 use_link = 1;
206 else if (argv[arg][1] == 's')
207 use_symlink = 1;
b02a26cb
JH
208 else if (argv[arg][1] == 'n')
209 use_filecopy = 0;
dfcb4057 210 else if (argv[arg][1] == 'v')
e78d9772 211 get_verbosely = 1;
f5ab6cca
JH
212 else if (argv[arg][1] == 'w')
213 write_ref = argv[++arg];
dfcb4057
JH
214 else
215 usage(local_pull_usage);
216 arg++;
217 }
218 if (argc < arg + 2)
219 usage(local_pull_usage);
220 commit_id = argv[arg];
221 path = argv[arg + 1];
222
223 if (pull(commit_id))
224 return 1;
225
226 return 0;
227}