2 * Copyright (C) 2005 Junio C Hamano
8 static int use_link
= 0;
9 static int use_symlink
= 0;
10 static int use_filecopy
= 1;
12 static char *path
; /* "Remote" git repository */
14 void prefetch(unsigned char *sha1
)
18 int fetch(unsigned char *sha1
)
20 static int object_name_start
= -1;
21 static char filename
[PATH_MAX
];
22 char *hex
= sha1_to_hex(sha1
);
23 const char *dest_filename
= sha1_file_name(sha1
);
25 if (object_name_start
< 0) {
26 strcpy(filename
, path
); /* e.g. git.git */
27 strcat(filename
, "/objects/");
28 object_name_start
= strlen(filename
);
30 filename
[object_name_start
+0] = hex
[0];
31 filename
[object_name_start
+1] = hex
[1];
32 filename
[object_name_start
+2] = '/';
33 strcpy(filename
+ object_name_start
+ 3, hex
+ 2);
35 if (!link(filename
, dest_filename
)) {
36 pull_say("link %s\n", hex
);
39 /* If we got ENOENT there is no point continuing. */
40 if (errno
== ENOENT
) {
41 fprintf(stderr
, "does not exist %s\n", filename
);
45 if (use_symlink
&& !symlink(filename
, dest_filename
)) {
46 pull_say("symlink %s\n", hex
);
53 ifd
= open(filename
, O_RDONLY
);
54 if (ifd
< 0 || fstat(ifd
, &st
) < 0) {
56 fprintf(stderr
, "cannot open %s\n", filename
);
59 map
= mmap(NULL
, st
.st_size
, PROT_READ
, MAP_PRIVATE
, ifd
, 0);
61 if (map
== MAP_FAILED
) {
62 fprintf(stderr
, "cannot mmap %s\n", filename
);
65 ofd
= open(dest_filename
, O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
66 status
= ((ofd
< 0) ||
67 (write(ofd
, map
, st
.st_size
) != st
.st_size
));
68 munmap(map
, st
.st_size
);
71 fprintf(stderr
, "cannot write %s\n", dest_filename
);
73 pull_say("copy %s\n", hex
);
76 fprintf(stderr
, "failed to copy %s with given copy methods.\n", hex
);
80 int fetch_ref(char *ref
, unsigned char *sha1
)
82 static int ref_name_start
= -1;
83 static char filename
[PATH_MAX
];
87 if (ref_name_start
< 0) {
88 sprintf(filename
, "%s/refs/", path
);
89 ref_name_start
= strlen(filename
);
91 strcpy(filename
+ ref_name_start
, ref
);
92 ifd
= open(filename
, O_RDONLY
);
95 fprintf(stderr
, "cannot open %s\n", filename
);
98 if (read(ifd
, hex
, 40) != 40 || get_sha1_hex(hex
, sha1
)) {
100 fprintf(stderr
, "cannot read from %s\n", filename
);
104 pull_say("ref %s\n", sha1_to_hex(sha1
));
108 static const char local_pull_usage
[] =
109 "git-local-pull [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [-l] [-s] [-n] commit-id path";
112 * By default we only use file copy.
113 * If -l is specified, a hard link is attempted.
114 * If -s is specified, then a symlink is attempted.
115 * If -n is _not_ specified, then a regular file-to-file copy is done.
117 int main(int argc
, char **argv
)
122 while (arg
< argc
&& argv
[arg
][0] == '-') {
123 if (argv
[arg
][1] == 't')
125 else if (argv
[arg
][1] == 'c')
127 else if (argv
[arg
][1] == 'a') {
132 else if (argv
[arg
][1] == 'l')
134 else if (argv
[arg
][1] == 's')
136 else if (argv
[arg
][1] == 'n')
138 else if (argv
[arg
][1] == 'v')
140 else if (argv
[arg
][1] == 'w')
141 write_ref
= argv
[++arg
];
143 usage(local_pull_usage
);
147 usage(local_pull_usage
);
148 commit_id
= argv
[arg
];
149 path
= argv
[arg
+ 1];