Merge branch 'jt/packmigrate'

Code movement to make it easier to hack later.

* jt/packmigrate: (23 commits)
  pack: move for_each_packed_object()
  pack: move has_pack_index()
  pack: move has_sha1_pack()
  pack: move find_pack_entry() and make it global
  pack: move find_sha1_pack()
  pack: move find_pack_entry_one(), is_pack_valid()
  pack: move check_pack_index_ptr(), nth_packed_object_offset()
  pack: move nth_packed_object_{sha1,oid}
  pack: move clear_delta_base_cache(), packed_object_info(), unpack_entry()
  pack: move unpack_object_header()
  pack: move get_size_from_delta()
  pack: move unpack_object_header_buffer()
  pack: move {,re}prepare_packed_git and approximate_object_count
  pack: move install_packed_git()
  pack: move add_packed_git()
  pack: move unuse_pack()
  pack: move use_pack()
  pack: move pack-closing functions
  pack: move release_pack_memory()
  pack: move open_pack_index(), parse_pack_index()
  ...
This commit is contained in:
Junio C Hamano 2017-08-26 22:55:09 -07:00
commit eabdcd4ab4
37 changed files with 2081 additions and 2014 deletions

View File

@ -817,6 +817,7 @@ LIB_OBJS += notes-merge.o
LIB_OBJS += notes-utils.o LIB_OBJS += notes-utils.o
LIB_OBJS += object.o LIB_OBJS += object.o
LIB_OBJS += oidset.o LIB_OBJS += oidset.o
LIB_OBJS += packfile.o
LIB_OBJS += pack-bitmap.o LIB_OBJS += pack-bitmap.o
LIB_OBJS += pack-bitmap-write.o LIB_OBJS += pack-bitmap-write.o
LIB_OBJS += pack-check.o LIB_OBJS += pack-check.o

View File

@ -31,6 +31,7 @@
#include "mailinfo.h" #include "mailinfo.h"
#include "apply.h" #include "apply.h"
#include "string-list.h" #include "string-list.h"
#include "packfile.h"
/** /**
* Returns 1 if the file is empty or does not exist, 0 otherwise. * Returns 1 if the file is empty or does not exist, 0 otherwise.

View File

@ -12,6 +12,7 @@
#include "streaming.h" #include "streaming.h"
#include "tree-walk.h" #include "tree-walk.h"
#include "sha1-array.h" #include "sha1-array.h"
#include "packfile.h"
struct batch_options { struct batch_options {
int enabled; int enabled;

View File

@ -25,6 +25,7 @@
#include "remote.h" #include "remote.h"
#include "run-command.h" #include "run-command.h"
#include "connected.h" #include "connected.h"
#include "packfile.h"
/* /*
* Overall FIXMEs: * Overall FIXMEs:

View File

@ -10,6 +10,7 @@
#include "builtin.h" #include "builtin.h"
#include "parse-options.h" #include "parse-options.h"
#include "quote.h" #include "quote.h"
#include "packfile.h"
static unsigned long garbage; static unsigned long garbage;
static off_t size_garbage; static off_t size_garbage;

View File

@ -17,6 +17,7 @@
#include "connected.h" #include "connected.h"
#include "argv-array.h" #include "argv-array.h"
#include "utf8.h" #include "utf8.h"
#include "packfile.h"
static const char * const builtin_fetch_usage[] = { static const char * const builtin_fetch_usage[] = {
N_("git fetch [<options>] [<repository> [<refspec>...]]"), N_("git fetch [<options>] [<repository> [<refspec>...]]"),

View File

@ -15,6 +15,7 @@
#include "progress.h" #include "progress.h"
#include "streaming.h" #include "streaming.h"
#include "decorate.h" #include "decorate.h"
#include "packfile.h"
#define REACHABLE 0x0001 #define REACHABLE 0x0001
#define SEEN 0x0002 #define SEEN 0x0002

View File

@ -19,6 +19,7 @@
#include "sigchain.h" #include "sigchain.h"
#include "argv-array.h" #include "argv-array.h"
#include "commit.h" #include "commit.h"
#include "packfile.h"
#define FAILED_RUN "failed to run %s" #define FAILED_RUN "failed to run %s"

View File

@ -12,6 +12,7 @@
#include "exec_cmd.h" #include "exec_cmd.h"
#include "streaming.h" #include "streaming.h"
#include "thread-utils.h" #include "thread-utils.h"
#include "packfile.h"
static const char index_pack_usage[] = static const char index_pack_usage[] =
"git index-pack [-v] [-o <index-file>] [--keep | --keep=<msg>] [--verify] [--strict] (<pack-file> | --stdin [--fix-thin] [<pack-file>])"; "git index-pack [-v] [-o <index-file>] [--keep | --keep=<msg>] [--verify] [--strict] (<pack-file> | --stdin [--fix-thin] [<pack-file>])";

View File

@ -32,6 +32,7 @@
#include "gpg-interface.h" #include "gpg-interface.h"
#include "sequencer.h" #include "sequencer.h"
#include "string-list.h" #include "string-list.h"
#include "packfile.h"
#define DEFAULT_TWOHEAD (1<<0) #define DEFAULT_TWOHEAD (1<<0)
#define DEFAULT_OCTOPUS (1<<1) #define DEFAULT_OCTOPUS (1<<1)

View File

@ -25,6 +25,7 @@
#include "sha1-array.h" #include "sha1-array.h"
#include "argv-array.h" #include "argv-array.h"
#include "mru.h" #include "mru.h"
#include "packfile.h"
static const char *pack_usage[] = { static const char *pack_usage[] = {
N_("git pack-objects --stdout [<options>...] [< <ref-list> | < <object-list>]"), N_("git pack-objects --stdout [<options>...] [< <ref-list> | < <object-list>]"),

View File

@ -7,6 +7,7 @@
*/ */
#include "builtin.h" #include "builtin.h"
#include "packfile.h"
#define BLKSIZE 512 #define BLKSIZE 512

View File

@ -2,6 +2,7 @@
#include "cache.h" #include "cache.h"
#include "progress.h" #include "progress.h"
#include "parse-options.h" #include "parse-options.h"
#include "packfile.h"
static const char * const prune_packed_usage[] = { static const char * const prune_packed_usage[] = {
N_("git prune-packed [-n | --dry-run] [-q | --quiet]"), N_("git prune-packed [-n | --dry-run] [-q | --quiet]"),

View File

@ -23,6 +23,7 @@
#include "fsck.h" #include "fsck.h"
#include "tmp-objdir.h" #include "tmp-objdir.h"
#include "oidset.h" #include "oidset.h"
#include "packfile.h"
static const char * const receive_pack_usage[] = { static const char * const receive_pack_usage[] = {
N_("git receive-pack <git-dir>"), N_("git receive-pack <git-dir>"),

View File

@ -6,6 +6,7 @@
#include "csum-file.h" #include "csum-file.h"
#include "pack.h" #include "pack.h"
#include "strbuf.h" #include "strbuf.h"
#include "packfile.h"
static struct bulk_checkin_state { static struct bulk_checkin_state {
unsigned plugged:1; unsigned plugged:1;

122
cache.h
View File

@ -902,20 +902,6 @@ extern void check_repository_format(void);
*/ */
extern const char *sha1_file_name(const unsigned char *sha1); extern const char *sha1_file_name(const unsigned char *sha1);
/*
* Return the name of the (local) packfile with the specified sha1 in
* its name. The return value is a pointer to memory that is
* overwritten each time this function is called.
*/
extern char *sha1_pack_name(const unsigned char *sha1);
/*
* Return the name of the (local) pack index file with the specified
* sha1 in its name. The return value is a pointer to memory that is
* overwritten each time this function is called.
*/
extern char *sha1_pack_index_name(const unsigned char *sha1);
/* /*
* Return an abbreviated sha1 unique within this repository's object database. * Return an abbreviated sha1 unique within this repository's object database.
* The result will be at least `len` characters long, and will be NUL * The result will be at least `len` characters long, and will be NUL
@ -1201,15 +1187,10 @@ extern void *map_sha1_file(const unsigned char *sha1, unsigned long *size);
extern int unpack_sha1_header(git_zstream *stream, unsigned char *map, unsigned long mapsize, void *buffer, unsigned long bufsiz); extern int unpack_sha1_header(git_zstream *stream, unsigned char *map, unsigned long mapsize, void *buffer, unsigned long bufsiz);
extern int parse_sha1_header(const char *hdr, unsigned long *sizep); extern int parse_sha1_header(const char *hdr, unsigned long *sizep);
/* global flag to enable extra checks when accessing packed objects */
extern int do_check_packed_object_crc;
extern int check_sha1_signature(const unsigned char *sha1, void *buf, unsigned long size, const char *type); extern int check_sha1_signature(const unsigned char *sha1, void *buf, unsigned long size, const char *type);
extern int finalize_object_file(const char *tmpfile, const char *filename); extern int finalize_object_file(const char *tmpfile, const char *filename);
extern int has_sha1_pack(const unsigned char *sha1);
/* /*
* Open the loose object at path, check its sha1, and return the contents, * Open the loose object at path, check its sha1, and return the contents,
* type, and size. If the object is a blob, then "contents" may return NULL, * type, and size. If the object is a blob, then "contents" may return NULL,
@ -1245,8 +1226,6 @@ extern int has_object_file_with_flags(const struct object_id *oid, int flags);
*/ */
extern int has_loose_object_nonlocal(const unsigned char *sha1); extern int has_loose_object_nonlocal(const unsigned char *sha1);
extern int has_pack_index(const unsigned char *sha1);
extern void assert_sha1_type(const unsigned char *sha1, enum object_type expect); extern void assert_sha1_type(const unsigned char *sha1, enum object_type expect);
/* Helper to check and "touch" a file */ /* Helper to check and "touch" a file */
@ -1619,29 +1598,6 @@ struct pack_entry {
struct packed_git *p; struct packed_git *p;
}; };
extern struct packed_git *parse_pack_index(unsigned char *sha1, const char *idx_path);
/* A hook to report invalid files in pack directory */
#define PACKDIR_FILE_PACK 1
#define PACKDIR_FILE_IDX 2
#define PACKDIR_FILE_GARBAGE 4
extern void (*report_garbage)(unsigned seen_bits, const char *path);
extern void prepare_packed_git(void);
extern void reprepare_packed_git(void);
extern void install_packed_git(struct packed_git *pack);
/*
* Give a rough count of objects in the repository. This sacrifices accuracy
* for speed.
*/
unsigned long approximate_object_count(void);
extern struct packed_git *find_sha1_pack(const unsigned char *sha1,
struct packed_git *packs);
extern void pack_report(void);
/* /*
* Create a temporary file rooted in the object database directory, or * Create a temporary file rooted in the object database directory, or
* die on failure. The filename is taken from "pattern", which should have the * die on failure. The filename is taken from "pattern", which should have the
@ -1650,15 +1606,6 @@ extern void pack_report(void);
*/ */
extern int odb_mkstemp(struct strbuf *template, const char *pattern); extern int odb_mkstemp(struct strbuf *template, const char *pattern);
/*
* Generate the filename to be used for a pack file with checksum "sha1" and
* extension "ext". The result is written into the strbuf "buf", overwriting
* any existing contents. A pointer to buf->buf is returned as a convenience.
*
* Example: odb_pack_name(out, sha1, "idx") => ".git/objects/pack/pack-1234..idx"
*/
extern char *odb_pack_name(struct strbuf *buf, const unsigned char *sha1, const char *ext);
/* /*
* Create a pack .keep file named "name" (which should generally be the output * Create a pack .keep file named "name" (which should generally be the output
* of odb_pack_name). Returns a file descriptor opened for writing, or -1 on * of odb_pack_name). Returns a file descriptor opened for writing, or -1 on
@ -1666,67 +1613,6 @@ extern char *odb_pack_name(struct strbuf *buf, const unsigned char *sha1, const
*/ */
extern int odb_pack_keep(const char *name); extern int odb_pack_keep(const char *name);
/*
* mmap the index file for the specified packfile (if it is not
* already mmapped). Return 0 on success.
*/
extern int open_pack_index(struct packed_git *);
/*
* munmap the index file for the specified packfile (if it is
* currently mmapped).
*/
extern void close_pack_index(struct packed_git *);
extern unsigned char *use_pack(struct packed_git *, struct pack_window **, off_t, unsigned long *);
extern void close_pack_windows(struct packed_git *);
extern void close_all_packs(void);
extern void unuse_pack(struct pack_window **);
extern void clear_delta_base_cache(void);
extern struct packed_git *add_packed_git(const char *path, size_t path_len, int local);
/*
* Make sure that a pointer access into an mmap'd index file is within bounds,
* and can provide at least 8 bytes of data.
*
* Note that this is only necessary for variable-length segments of the file
* (like the 64-bit extended offset table), as we compare the size to the
* fixed-length parts when we open the file.
*/
extern void check_pack_index_ptr(const struct packed_git *p, const void *ptr);
/*
* Return the SHA-1 of the nth object within the specified packfile.
* Open the index if it is not already open. The return value points
* at the SHA-1 within the mmapped index. Return NULL if there is an
* error.
*/
extern const unsigned char *nth_packed_object_sha1(struct packed_git *, uint32_t n);
/*
* Like nth_packed_object_sha1, but write the data into the object specified by
* the the first argument. Returns the first argument on success, and NULL on
* error.
*/
extern const struct object_id *nth_packed_object_oid(struct object_id *, struct packed_git *, uint32_t n);
/*
* Return the offset of the nth object within the specified packfile.
* The index must already be opened.
*/
extern off_t nth_packed_object_offset(const struct packed_git *, uint32_t n);
/*
* If the object named sha1 is present in the specified packfile,
* return its offset within the packfile; otherwise, return 0.
*/
extern off_t find_pack_entry_one(const unsigned char *sha1, struct packed_git *);
extern int is_pack_valid(struct packed_git *);
extern void *unpack_entry(struct packed_git *, off_t, enum object_type *, unsigned long *);
extern unsigned long unpack_object_header_buffer(const unsigned char *buf, unsigned long len, enum object_type *type, unsigned long *sizep);
extern unsigned long get_size_from_delta(struct packed_git *, struct pack_window **, off_t);
extern int unpack_object_header(struct packed_git *, struct pack_window **, off_t *, unsigned long *);
/* /*
* Iterate over the files in the loose-object parts of the object * Iterate over the files in the loose-object parts of the object
* directory "path", triggering the following callbacks: * directory "path", triggering the following callbacks:
@ -1776,17 +1662,12 @@ int for_each_loose_file_in_objdir_buf(struct strbuf *path,
void *data); void *data);
/* /*
* Iterate over loose and packed objects in both the local * Iterate over loose objects in both the local
* repository and any alternates repositories (unless the * repository and any alternates repositories (unless the
* LOCAL_ONLY flag is set). * LOCAL_ONLY flag is set).
*/ */
#define FOR_EACH_OBJECT_LOCAL_ONLY 0x1 #define FOR_EACH_OBJECT_LOCAL_ONLY 0x1
typedef int each_packed_object_fn(const struct object_id *oid,
struct packed_git *pack,
uint32_t pos,
void *data);
extern int for_each_loose_object(each_loose_object_fn, void *, unsigned flags); extern int for_each_loose_object(each_loose_object_fn, void *, unsigned flags);
extern int for_each_packed_object(each_packed_object_fn, void *, unsigned flags);
struct object_info { struct object_info {
/* Request */ /* Request */
@ -1836,7 +1717,6 @@ struct object_info {
/* Do not retry packed storage after checking packed and loose storage */ /* Do not retry packed storage after checking packed and loose storage */
#define OBJECT_INFO_QUICK 8 #define OBJECT_INFO_QUICK 8
extern int sha1_object_info_extended(const unsigned char *, struct object_info *, unsigned flags); extern int sha1_object_info_extended(const unsigned char *, struct object_info *, unsigned flags);
extern int packed_object_info(struct packed_git *pack, off_t offset, struct object_info *);
/* Dumb servers support */ /* Dumb servers support */
extern int update_server_info(int); extern int update_server_info(int);

View File

@ -3,6 +3,7 @@
#include "sigchain.h" #include "sigchain.h"
#include "connected.h" #include "connected.h"
#include "transport.h" #include "transport.h"
#include "packfile.h"
/* /*
* If we feed all the commits we want to verify to this command * If we feed all the commits we want to verify to this command

1
diff.c
View File

@ -21,6 +21,7 @@
#include "string-list.h" #include "string-list.h"
#include "argv-array.h" #include "argv-array.h"
#include "graph.h" #include "graph.h"
#include "packfile.h"
#ifdef NO_FAST_WORKING_DIRECTORY #ifdef NO_FAST_WORKING_DIRECTORY
#define FAST_WORKING_DIRECTORY 0 #define FAST_WORKING_DIRECTORY 0

View File

@ -167,6 +167,7 @@ Format of STDIN stream:
#include "quote.h" #include "quote.h"
#include "dir.h" #include "dir.h"
#include "run-command.h" #include "run-command.h"
#include "packfile.h"
#define PACK_ID_BITS 16 #define PACK_ID_BITS 16
#define MAX_PACK_ID ((1<<PACK_ID_BITS)-1) #define MAX_PACK_ID ((1<<PACK_ID_BITS)-1)

View File

@ -17,6 +17,7 @@
#include "prio-queue.h" #include "prio-queue.h"
#include "sha1-array.h" #include "sha1-array.h"
#include "oidset.h" #include "oidset.h"
#include "packfile.h"
static int transfer_unpack_limit = -1; static int transfer_unpack_limit = -1;
static int fetch_unpack_limit = -1; static int fetch_unpack_limit = -1;

View File

@ -749,8 +749,6 @@ const char *inet_ntop(int af, const void *src, char *dst, size_t size);
extern int git_atexit(void (*handler)(void)); extern int git_atexit(void (*handler)(void));
#endif #endif
extern void release_pack_memory(size_t);
typedef void (*try_to_free_t)(size_t); typedef void (*try_to_free_t)(size_t);
extern try_to_free_t set_try_to_free_routine(try_to_free_t); extern try_to_free_t set_try_to_free_routine(try_to_free_t);

View File

@ -9,6 +9,7 @@
#include "string-list.h" #include "string-list.h"
#include "url.h" #include "url.h"
#include "argv-array.h" #include "argv-array.h"
#include "packfile.h"
static const char content_type[] = "Content-Type"; static const char content_type[] = "Content-Type";
static const char content_length[] = "Content-Length"; static const char content_length[] = "Content-Length";

View File

@ -11,6 +11,7 @@
#include "list-objects.h" #include "list-objects.h"
#include "sigchain.h" #include "sigchain.h"
#include "argv-array.h" #include "argv-array.h"
#include "packfile.h"
#ifdef EXPAT_NEEDS_XMLPARSE_H #ifdef EXPAT_NEEDS_XMLPARSE_H
#include <xmlparse.h> #include <xmlparse.h>

View File

@ -4,6 +4,7 @@
#include "http.h" #include "http.h"
#include "list.h" #include "list.h"
#include "transport.h" #include "transport.h"
#include "packfile.h"
struct alt_base { struct alt_base {
char *base; char *base;

1
http.c
View File

@ -11,6 +11,7 @@
#include "pkt-line.h" #include "pkt-line.h"
#include "gettext.h" #include "gettext.h"
#include "transport.h" #include "transport.h"
#include "packfile.h"
static struct trace_key trace_curl = TRACE_KEY_INIT(CURL); static struct trace_key trace_curl = TRACE_KEY_INIT(CURL);
#if LIBCURL_VERSION_NUM >= 0x070a08 #if LIBCURL_VERSION_NUM >= 0x070a08

0
outgoing/packfile.h Normal file
View File

View File

@ -9,6 +9,7 @@
#include "pack-bitmap.h" #include "pack-bitmap.h"
#include "pack-revindex.h" #include "pack-revindex.h"
#include "pack-objects.h" #include "pack-objects.h"
#include "packfile.h"
/* /*
* An entry on the bitmap index, representing the bitmap for a given * An entry on the bitmap index, representing the bitmap for a given

View File

@ -2,6 +2,7 @@
#include "pack.h" #include "pack.h"
#include "pack-revindex.h" #include "pack-revindex.h"
#include "progress.h" #include "progress.h"
#include "packfile.h"
struct idx_entry { struct idx_entry {
off_t offset; off_t offset;

1896
packfile.c Normal file

File diff suppressed because it is too large Load Diff

138
packfile.h Normal file
View File

@ -0,0 +1,138 @@
#ifndef PACKFILE_H
#define PACKFILE_H
/*
* Generate the filename to be used for a pack file with checksum "sha1" and
* extension "ext". The result is written into the strbuf "buf", overwriting
* any existing contents. A pointer to buf->buf is returned as a convenience.
*
* Example: odb_pack_name(out, sha1, "idx") => ".git/objects/pack/pack-1234..idx"
*/
extern char *odb_pack_name(struct strbuf *buf, const unsigned char *sha1, const char *ext);
/*
* Return the name of the (local) packfile with the specified sha1 in
* its name. The return value is a pointer to memory that is
* overwritten each time this function is called.
*/
extern char *sha1_pack_name(const unsigned char *sha1);
/*
* Return the name of the (local) pack index file with the specified
* sha1 in its name. The return value is a pointer to memory that is
* overwritten each time this function is called.
*/
extern char *sha1_pack_index_name(const unsigned char *sha1);
extern struct packed_git *parse_pack_index(unsigned char *sha1, const char *idx_path);
/* A hook to report invalid files in pack directory */
#define PACKDIR_FILE_PACK 1
#define PACKDIR_FILE_IDX 2
#define PACKDIR_FILE_GARBAGE 4
extern void (*report_garbage)(unsigned seen_bits, const char *path);
extern void prepare_packed_git(void);
extern void reprepare_packed_git(void);
extern void install_packed_git(struct packed_git *pack);
/*
* Give a rough count of objects in the repository. This sacrifices accuracy
* for speed.
*/
unsigned long approximate_object_count(void);
extern struct packed_git *find_sha1_pack(const unsigned char *sha1,
struct packed_git *packs);
extern void pack_report(void);
/*
* mmap the index file for the specified packfile (if it is not
* already mmapped). Return 0 on success.
*/
extern int open_pack_index(struct packed_git *);
/*
* munmap the index file for the specified packfile (if it is
* currently mmapped).
*/
extern void close_pack_index(struct packed_git *);
extern unsigned char *use_pack(struct packed_git *, struct pack_window **, off_t, unsigned long *);
extern void close_pack_windows(struct packed_git *);
extern void close_all_packs(void);
extern void unuse_pack(struct pack_window **);
extern void clear_delta_base_cache(void);
extern struct packed_git *add_packed_git(const char *path, size_t path_len, int local);
/*
* Make sure that a pointer access into an mmap'd index file is within bounds,
* and can provide at least 8 bytes of data.
*
* Note that this is only necessary for variable-length segments of the file
* (like the 64-bit extended offset table), as we compare the size to the
* fixed-length parts when we open the file.
*/
extern void check_pack_index_ptr(const struct packed_git *p, const void *ptr);
/*
* Return the SHA-1 of the nth object within the specified packfile.
* Open the index if it is not already open. The return value points
* at the SHA-1 within the mmapped index. Return NULL if there is an
* error.
*/
extern const unsigned char *nth_packed_object_sha1(struct packed_git *, uint32_t n);
/*
* Like nth_packed_object_sha1, but write the data into the object specified by
* the the first argument. Returns the first argument on success, and NULL on
* error.
*/
extern const struct object_id *nth_packed_object_oid(struct object_id *, struct packed_git *, uint32_t n);
/*
* Return the offset of the nth object within the specified packfile.
* The index must already be opened.
*/
extern off_t nth_packed_object_offset(const struct packed_git *, uint32_t n);
/*
* If the object named sha1 is present in the specified packfile,
* return its offset within the packfile; otherwise, return 0.
*/
extern off_t find_pack_entry_one(const unsigned char *sha1, struct packed_git *);
extern int is_pack_valid(struct packed_git *);
extern void *unpack_entry(struct packed_git *, off_t, enum object_type *, unsigned long *);
extern unsigned long unpack_object_header_buffer(const unsigned char *buf, unsigned long len, enum object_type *type, unsigned long *sizep);
extern unsigned long get_size_from_delta(struct packed_git *, struct pack_window **, off_t);
extern int unpack_object_header(struct packed_git *, struct pack_window **, off_t *, unsigned long *);
extern void release_pack_memory(size_t);
/* global flag to enable extra checks when accessing packed objects */
extern int do_check_packed_object_crc;
extern int packed_object_info(struct packed_git *pack, off_t offset, struct object_info *);
extern void mark_bad_packed_object(struct packed_git *p, const unsigned char *sha1);
extern const struct packed_git *has_packed_and_bad(const unsigned char *sha1);
extern int find_pack_entry(const unsigned char *sha1, struct pack_entry *e);
extern int has_sha1_pack(const unsigned char *sha1);
extern int has_pack_index(const unsigned char *sha1);
/*
* Iterate over packed objects in both the local
* repository and any alternates repositories (unless the
* FOR_EACH_OBJECT_LOCAL_ONLY flag, defined in cache.h, is set).
*/
typedef int each_packed_object_fn(const struct object_id *oid,
struct packed_git *pack,
uint32_t pos,
void *data);
extern int for_each_packed_object(each_packed_object_fn, void *, unsigned flags);
#endif

1
path.c
View File

@ -9,6 +9,7 @@
#include "worktree.h" #include "worktree.h"
#include "submodule-config.h" #include "submodule-config.h"
#include "path.h" #include "path.h"
#include "packfile.h"
static int get_st_mode_bits(const char *path, int *mode) static int get_st_mode_bits(const char *path, int *mode)
{ {

View File

@ -9,6 +9,7 @@
#include "cache-tree.h" #include "cache-tree.h"
#include "progress.h" #include "progress.h"
#include "list-objects.h" #include "list-objects.h"
#include "packfile.h"
struct connectivity_progress { struct connectivity_progress {
struct progress *progress; struct progress *progress;

View File

@ -19,6 +19,7 @@
#include "dir.h" #include "dir.h"
#include "cache-tree.h" #include "cache-tree.h"
#include "bisect.h" #include "bisect.h"
#include "packfile.h"
volatile show_early_output_fn_t show_early_output; volatile show_early_output_fn_t show_early_output;

View File

@ -3,6 +3,7 @@
#include "object.h" #include "object.h"
#include "commit.h" #include "commit.h"
#include "tag.h" #include "tag.h"
#include "packfile.h"
/* /*
* Create the file "path" by writing to a temporary file and renaming * Create the file "path" by writing to a temporary file and renaming

File diff suppressed because it is too large Load Diff

View File

@ -9,6 +9,7 @@
#include "remote.h" #include "remote.h"
#include "dir.h" #include "dir.h"
#include "sha1-array.h" #include "sha1-array.h"
#include "packfile.h"
static int get_oid_oneline(const char *, struct object_id *, struct commit_list *); static int get_oid_oneline(const char *, struct object_id *, struct commit_list *);

View File

@ -3,6 +3,7 @@
*/ */
#include "cache.h" #include "cache.h"
#include "streaming.h" #include "streaming.h"
#include "packfile.h"
enum input_source { enum input_source {
stream_error = -1, stream_error = -1,