зеркало из https://github.com/microsoft/git.git
gvfs: allow "virtualizing" objects
The idea is to allow blob objects to be missing from the local repository, and to load them lazily on demand. After discussing this idea on the mailing list, we will rename the feature to "lazy clone" and work more on this. Signed-off-by: Ben Peart <Ben.Peart@microsoft.com>
This commit is contained in:
Родитель
b31415b99f
Коммит
4d6aa2f1b3
5
config.c
5
config.c
|
@ -1850,6 +1850,11 @@ int git_default_core_config(const char *var, const char *value, void *cb)
|
|||
return 0;
|
||||
}
|
||||
|
||||
if (!strcmp(var, "core.virtualizeobjects")) {
|
||||
core_virtualize_objects = git_config_bool(var, value);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Add other config variables here and to Documentation/config.txt. */
|
||||
return platform_core_config(var, value, cb);
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#include "git-compat-util.h"
|
||||
#include "environment.h"
|
||||
#include "gettext.h"
|
||||
#include "hex.h"
|
||||
#include "gvfs.h"
|
||||
|
@ -50,6 +51,8 @@ int check_connected(oid_iterate_fn fn, void *cb_data,
|
|||
*/
|
||||
if (gvfs_config_is_set(GVFS_FETCH_SKIP_REACHABILITY_AND_UPLOADPACK))
|
||||
return 0;
|
||||
if (core_virtualize_objects)
|
||||
return 0;
|
||||
|
||||
if (!opt)
|
||||
opt = &defaults;
|
||||
|
|
|
@ -83,6 +83,7 @@ int core_gvfs;
|
|||
int merge_log_config = -1;
|
||||
int precomposed_unicode = -1; /* see probe_utf8_pathname_composition() */
|
||||
unsigned long pack_size_limit_cfg;
|
||||
int core_virtualize_objects;
|
||||
enum log_refs_config log_all_ref_updates = LOG_REFS_UNSET;
|
||||
|
||||
#ifndef PROTECT_HFS_DEFAULT
|
||||
|
|
|
@ -12,6 +12,8 @@ struct repository;
|
|||
extern char comment_line_char;
|
||||
extern int auto_comment_line_char;
|
||||
|
||||
extern int core_virtualize_objects;
|
||||
|
||||
/*
|
||||
* Wrapper of getenv() that returns a strdup value. This value is kept
|
||||
* in argv to be freed later.
|
||||
|
|
|
@ -44,6 +44,8 @@
|
|||
#include "submodule.h"
|
||||
#include "fsck.h"
|
||||
#include "wrapper.h"
|
||||
#include "trace.h"
|
||||
#include "hook.h"
|
||||
|
||||
/* The maximum size for an object header. */
|
||||
#define MAX_HEADER_LEN 32
|
||||
|
@ -1553,6 +1555,20 @@ void disable_obj_read_lock(void)
|
|||
pthread_mutex_destroy(&obj_read_mutex);
|
||||
}
|
||||
|
||||
static int run_read_object_hook(const struct object_id *oid)
|
||||
{
|
||||
struct run_hooks_opt opt = RUN_HOOKS_OPT_INIT;
|
||||
int ret;
|
||||
uint64_t start;
|
||||
|
||||
start = getnanotime();
|
||||
strvec_push(&opt.args, oid_to_hex(oid));
|
||||
ret = run_hooks_opt("read-object", &opt);
|
||||
trace_performance_since(start, "run_read_object_hook");
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int fetch_if_missing = 1;
|
||||
|
||||
static int do_oid_object_info_extended(struct repository *r,
|
||||
|
@ -1565,6 +1581,7 @@ static int do_oid_object_info_extended(struct repository *r,
|
|||
int rtype;
|
||||
const struct object_id *real = oid;
|
||||
int already_retried = 0;
|
||||
int tried_hook = 0;
|
||||
|
||||
|
||||
if (flags & OBJECT_INFO_LOOKUP_REPLACE)
|
||||
|
@ -1576,6 +1593,7 @@ static int do_oid_object_info_extended(struct repository *r,
|
|||
if (!oi)
|
||||
oi = &blank_oi;
|
||||
|
||||
retry:
|
||||
co = find_cached_object(real);
|
||||
if (co) {
|
||||
if (oi->typep)
|
||||
|
@ -1607,6 +1625,11 @@ static int do_oid_object_info_extended(struct repository *r,
|
|||
reprepare_packed_git(r);
|
||||
if (find_pack_entry(r, real, &e))
|
||||
break;
|
||||
if (core_virtualize_objects && !tried_hook) {
|
||||
tried_hook = 1;
|
||||
if (!run_read_object_hook(oid))
|
||||
goto retry;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Загрузка…
Ссылка в новой задаче