2005-05-02 04:10:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2005 Junio C Hamano
|
|
|
|
*/
|
2005-05-02 04:09:28 +00:00
|
|
|
#include "cache.h"
|
|
|
|
#include "commit.h"
|
2005-09-08 00:26:23 +00:00
|
|
|
#include "fetch.h"
|
2005-05-02 04:09:28 +00:00
|
|
|
|
|
|
|
static int use_link = 0;
|
|
|
|
static int use_symlink = 0;
|
2005-05-02 04:10:04 +00:00
|
|
|
static int use_filecopy = 1;
|
2005-05-02 04:09:28 +00:00
|
|
|
|
2005-06-22 08:52:06 +00:00
|
|
|
static char *path; /* "Remote" git repository */
|
2005-05-02 04:09:28 +00:00
|
|
|
|
2005-08-02 23:46:10 +00:00
|
|
|
void prefetch(unsigned char *sha1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-08-16 04:10:32 +00:00
|
|
|
static struct packed_git *packs = NULL;
|
|
|
|
|
2005-09-02 12:17:10 +00:00
|
|
|
static void setup_index(unsigned char *sha1)
|
2005-05-02 04:09:28 +00:00
|
|
|
{
|
2005-08-16 04:10:32 +00:00
|
|
|
struct packed_git *new_pack;
|
|
|
|
char filename[PATH_MAX];
|
|
|
|
strcpy(filename, path);
|
|
|
|
strcat(filename, "/objects/pack/pack-");
|
|
|
|
strcat(filename, sha1_to_hex(sha1));
|
|
|
|
strcat(filename, ".idx");
|
|
|
|
new_pack = parse_pack_index_file(sha1, filename);
|
|
|
|
new_pack->next = packs;
|
|
|
|
packs = new_pack;
|
|
|
|
}
|
2005-05-02 04:09:28 +00:00
|
|
|
|
2005-09-02 12:17:10 +00:00
|
|
|
static int setup_indices(void)
|
2005-08-16 04:10:32 +00:00
|
|
|
{
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *de;
|
|
|
|
char filename[PATH_MAX];
|
|
|
|
unsigned char sha1[20];
|
|
|
|
sprintf(filename, "%s/objects/pack/", path);
|
|
|
|
dir = opendir(filename);
|
2005-09-23 12:28:23 +00:00
|
|
|
if (!dir)
|
|
|
|
return -1;
|
2005-08-16 04:10:32 +00:00
|
|
|
while ((de = readdir(dir)) != NULL) {
|
|
|
|
int namelen = strlen(de->d_name);
|
|
|
|
if (namelen != 50 ||
|
|
|
|
strcmp(de->d_name + namelen - 5, ".pack"))
|
|
|
|
continue;
|
2005-08-16 05:48:09 +00:00
|
|
|
get_sha1_hex(de->d_name + 5, sha1);
|
2005-08-16 04:10:32 +00:00
|
|
|
setup_index(sha1);
|
2005-05-02 04:09:28 +00:00
|
|
|
}
|
2005-09-23 12:28:23 +00:00
|
|
|
closedir(dir);
|
2005-08-16 04:10:32 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-10-29 20:02:18 +00:00
|
|
|
static int copy_file(const char *source, char *dest, const char *hex,
|
2005-09-23 12:28:38 +00:00
|
|
|
int warn_if_not_exists)
|
2005-08-16 04:10:32 +00:00
|
|
|
{
|
2005-10-29 20:02:18 +00:00
|
|
|
safe_create_leading_directories(dest);
|
2005-05-04 08:28:45 +00:00
|
|
|
if (use_link) {
|
2005-08-16 04:10:32 +00:00
|
|
|
if (!link(source, dest)) {
|
2005-05-06 08:37:21 +00:00
|
|
|
pull_say("link %s\n", hex);
|
2005-05-04 08:28:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* If we got ENOENT there is no point continuing. */
|
|
|
|
if (errno == ENOENT) {
|
2005-09-23 12:28:38 +00:00
|
|
|
if (warn_if_not_exists)
|
|
|
|
fprintf(stderr, "does not exist %s\n", source);
|
2005-05-04 08:28:45 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2005-05-02 04:09:28 +00:00
|
|
|
}
|
2005-09-23 12:28:33 +00:00
|
|
|
if (use_symlink) {
|
|
|
|
struct stat st;
|
|
|
|
if (stat(source, &st)) {
|
2005-09-23 12:28:38 +00:00
|
|
|
if (!warn_if_not_exists && errno == ENOENT)
|
|
|
|
return -1;
|
2005-09-23 12:28:33 +00:00
|
|
|
fprintf(stderr, "cannot stat %s: %s\n", source,
|
|
|
|
strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!symlink(source, dest)) {
|
|
|
|
pull_say("symlink %s\n", hex);
|
|
|
|
return 0;
|
|
|
|
}
|
2005-05-02 04:09:28 +00:00
|
|
|
}
|
2005-05-02 04:10:04 +00:00
|
|
|
if (use_filecopy) {
|
2005-10-29 20:11:36 +00:00
|
|
|
int ifd, ofd, status = 0;
|
|
|
|
|
2005-08-16 04:10:32 +00:00
|
|
|
ifd = open(source, O_RDONLY);
|
2005-10-29 20:11:36 +00:00
|
|
|
if (ifd < 0) {
|
|
|
|
if (!warn_if_not_exists && errno == ENOENT)
|
2005-09-23 12:28:38 +00:00
|
|
|
return -1;
|
2005-08-16 04:10:32 +00:00
|
|
|
fprintf(stderr, "cannot open %s\n", source);
|
2005-05-02 04:10:04 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2005-10-29 20:11:36 +00:00
|
|
|
ofd = open(dest, O_WRONLY | O_CREAT | O_EXCL, 0666);
|
|
|
|
if (ofd < 0) {
|
|
|
|
fprintf(stderr, "cannot open %s\n", dest);
|
|
|
|
close(ifd);
|
2005-05-02 04:10:04 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2005-10-29 20:11:36 +00:00
|
|
|
status = copy_fd(ifd, ofd);
|
|
|
|
close(ofd);
|
2005-05-02 04:10:04 +00:00
|
|
|
if (status)
|
2005-08-16 04:10:32 +00:00
|
|
|
fprintf(stderr, "cannot write %s\n", dest);
|
2005-05-02 04:10:04 +00:00
|
|
|
else
|
2005-05-06 08:37:21 +00:00
|
|
|
pull_say("copy %s\n", hex);
|
2005-05-02 04:10:04 +00:00
|
|
|
return status;
|
2005-05-02 04:09:28 +00:00
|
|
|
}
|
2005-05-04 08:28:45 +00:00
|
|
|
fprintf(stderr, "failed to copy %s with given copy methods.\n", hex);
|
2005-05-02 04:10:04 +00:00
|
|
|
return -1;
|
2005-05-02 04:09:28 +00:00
|
|
|
}
|
|
|
|
|
2005-09-02 12:17:10 +00:00
|
|
|
static int fetch_pack(const unsigned char *sha1)
|
2005-08-16 04:10:32 +00:00
|
|
|
{
|
|
|
|
struct packed_git *target;
|
|
|
|
char filename[PATH_MAX];
|
|
|
|
if (setup_indices())
|
|
|
|
return -1;
|
|
|
|
target = find_sha1_pack(sha1, packs);
|
|
|
|
if (!target)
|
|
|
|
return error("Couldn't find %s: not separate or in any pack",
|
|
|
|
sha1_to_hex(sha1));
|
|
|
|
if (get_verbosely) {
|
|
|
|
fprintf(stderr, "Getting pack %s\n",
|
|
|
|
sha1_to_hex(target->sha1));
|
|
|
|
fprintf(stderr, " which contains %s\n",
|
|
|
|
sha1_to_hex(sha1));
|
|
|
|
}
|
|
|
|
sprintf(filename, "%s/objects/pack/pack-%s.pack",
|
2005-08-16 05:48:09 +00:00
|
|
|
path, sha1_to_hex(target->sha1));
|
|
|
|
copy_file(filename, sha1_pack_name(target->sha1),
|
2005-09-23 12:28:38 +00:00
|
|
|
sha1_to_hex(target->sha1), 1);
|
2005-08-16 04:10:32 +00:00
|
|
|
sprintf(filename, "%s/objects/pack/pack-%s.idx",
|
2005-08-16 05:48:09 +00:00
|
|
|
path, sha1_to_hex(target->sha1));
|
|
|
|
copy_file(filename, sha1_pack_index_name(target->sha1),
|
2005-09-23 12:28:38 +00:00
|
|
|
sha1_to_hex(target->sha1), 1);
|
2005-08-16 04:10:32 +00:00
|
|
|
install_packed_git(target);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-02 12:17:10 +00:00
|
|
|
static int fetch_file(const unsigned char *sha1)
|
2005-08-16 04:10:32 +00:00
|
|
|
{
|
|
|
|
static int object_name_start = -1;
|
|
|
|
static char filename[PATH_MAX];
|
|
|
|
char *hex = sha1_to_hex(sha1);
|
2005-10-29 20:02:18 +00:00
|
|
|
char *dest_filename = sha1_file_name(sha1);
|
2005-08-16 04:10:32 +00:00
|
|
|
|
|
|
|
if (object_name_start < 0) {
|
|
|
|
strcpy(filename, path); /* e.g. git.git */
|
|
|
|
strcat(filename, "/objects/");
|
|
|
|
object_name_start = strlen(filename);
|
|
|
|
}
|
|
|
|
filename[object_name_start+0] = hex[0];
|
|
|
|
filename[object_name_start+1] = hex[1];
|
|
|
|
filename[object_name_start+2] = '/';
|
|
|
|
strcpy(filename + object_name_start + 3, hex + 2);
|
2005-09-23 12:28:38 +00:00
|
|
|
return copy_file(filename, dest_filename, hex, 0);
|
2005-08-16 04:10:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int fetch(unsigned char *sha1)
|
|
|
|
{
|
2005-10-11 06:22:01 +00:00
|
|
|
if (has_sha1_file(sha1))
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return fetch_file(sha1) && fetch_pack(sha1);
|
2005-08-16 04:10:32 +00:00
|
|
|
}
|
|
|
|
|
2005-06-06 20:38:26 +00:00
|
|
|
int fetch_ref(char *ref, unsigned char *sha1)
|
|
|
|
{
|
2005-06-22 08:52:06 +00:00
|
|
|
static int ref_name_start = -1;
|
|
|
|
static char filename[PATH_MAX];
|
|
|
|
static char hex[41];
|
|
|
|
int ifd;
|
|
|
|
|
|
|
|
if (ref_name_start < 0) {
|
|
|
|
sprintf(filename, "%s/refs/", path);
|
|
|
|
ref_name_start = strlen(filename);
|
|
|
|
}
|
|
|
|
strcpy(filename + ref_name_start, ref);
|
|
|
|
ifd = open(filename, O_RDONLY);
|
|
|
|
if (ifd < 0) {
|
|
|
|
close(ifd);
|
|
|
|
fprintf(stderr, "cannot open %s\n", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (read(ifd, hex, 40) != 40 || get_sha1_hex(hex, sha1)) {
|
|
|
|
close(ifd);
|
|
|
|
fprintf(stderr, "cannot read from %s\n", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
close(ifd);
|
|
|
|
pull_say("ref %s\n", sha1_to_hex(sha1));
|
|
|
|
return 0;
|
2005-06-06 20:38:26 +00:00
|
|
|
}
|
|
|
|
|
2005-07-29 09:01:26 +00:00
|
|
|
static const char local_pull_usage[] =
|
2005-09-08 00:26:23 +00:00
|
|
|
"git-local-fetch [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [-l] [-s] [-n] commit-id path";
|
2005-05-02 04:09:28 +00:00
|
|
|
|
2005-05-02 04:10:04 +00:00
|
|
|
/*
|
|
|
|
* By default we only use file copy.
|
|
|
|
* If -l is specified, a hard link is attempted.
|
|
|
|
* If -s is specified, then a symlink is attempted.
|
|
|
|
* If -n is _not_ specified, then a regular file-to-file copy is done.
|
|
|
|
*/
|
2005-05-02 04:09:28 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
char *commit_id;
|
|
|
|
int arg = 1;
|
|
|
|
|
2005-11-26 08:47:59 +00:00
|
|
|
setup_git_directory();
|
|
|
|
|
2005-05-02 04:09:28 +00:00
|
|
|
while (arg < argc && argv[arg][0] == '-') {
|
|
|
|
if (argv[arg][1] == 't')
|
|
|
|
get_tree = 1;
|
|
|
|
else if (argv[arg][1] == 'c')
|
|
|
|
get_history = 1;
|
|
|
|
else if (argv[arg][1] == 'a') {
|
|
|
|
get_all = 1;
|
|
|
|
get_tree = 1;
|
|
|
|
get_history = 1;
|
|
|
|
}
|
|
|
|
else if (argv[arg][1] == 'l')
|
|
|
|
use_link = 1;
|
|
|
|
else if (argv[arg][1] == 's')
|
|
|
|
use_symlink = 1;
|
2005-05-02 04:10:04 +00:00
|
|
|
else if (argv[arg][1] == 'n')
|
|
|
|
use_filecopy = 0;
|
2005-05-02 04:09:28 +00:00
|
|
|
else if (argv[arg][1] == 'v')
|
2005-05-06 08:37:21 +00:00
|
|
|
get_verbosely = 1;
|
2005-06-22 08:52:06 +00:00
|
|
|
else if (argv[arg][1] == 'w')
|
|
|
|
write_ref = argv[++arg];
|
2005-09-27 01:38:08 +00:00
|
|
|
else if (!strcmp(argv[arg], "--recover"))
|
|
|
|
get_recover = 1;
|
2005-05-02 04:09:28 +00:00
|
|
|
else
|
|
|
|
usage(local_pull_usage);
|
|
|
|
arg++;
|
|
|
|
}
|
|
|
|
if (argc < arg + 2)
|
|
|
|
usage(local_pull_usage);
|
|
|
|
commit_id = argv[arg];
|
|
|
|
path = argv[arg + 1];
|
|
|
|
|
|
|
|
if (pull(commit_id))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|