]> git.proxmox.com Git - libgit2.git/blob - src/pack-objects.h
Initial Implementation of progress reports during push
[libgit2.git] / src / pack-objects.h
1 /*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7
8 #ifndef INCLUDE_pack_objects_h__
9 #define INCLUDE_pack_objects_h__
10
11 #include "common.h"
12
13 #include "buffer.h"
14 #include "hash.h"
15 #include "oidmap.h"
16 #include "netops.h"
17
18 #include "git2/oid.h"
19 #include "git2/pack.h"
20
21 #define GIT_PACK_WINDOW 10 /* number of objects to possibly delta against */
22 #define GIT_PACK_DEPTH 50 /* max delta depth */
23 #define GIT_PACK_DELTA_CACHE_SIZE (256 * 1024 * 1024)
24 #define GIT_PACK_DELTA_CACHE_LIMIT 1000
25 #define GIT_PACK_BIG_FILE_THRESHOLD (512 * 1024 * 1024)
26
27 typedef struct git_pobject {
28 git_oid id;
29 git_otype type;
30 git_off_t offset;
31
32 size_t size;
33
34 unsigned int hash; /* name hint hash */
35
36 struct git_pobject *delta; /* delta base object */
37 struct git_pobject *delta_child; /* deltified objects who bases me */
38 struct git_pobject *delta_sibling; /* other deltified objects
39 * who uses the same base as
40 * me */
41
42 void *delta_data;
43 unsigned long delta_size;
44 unsigned long z_delta_size;
45
46 int written:1,
47 recursing:1,
48 tagged:1,
49 filled:1;
50 } git_pobject;
51
52 struct git_packbuilder {
53 git_repository *repo; /* associated repository */
54 git_odb *odb; /* associated object database */
55
56 git_hash_ctx ctx;
57
58 uint32_t nr_objects,
59 nr_alloc,
60 nr_written,
61 nr_remaining;
62
63 git_pobject *object_list;
64
65 git_oidmap *object_ix;
66
67 git_oid pack_oid; /* hash of written pack */
68
69 /* synchronization objects */
70 git_mutex cache_mutex;
71 git_mutex progress_mutex;
72 git_cond progress_cond;
73
74 /* configs */
75 uint64_t delta_cache_size;
76 uint64_t max_delta_cache_size;
77 uint64_t cache_max_small_delta_size;
78 uint64_t big_file_threshold;
79 uint64_t window_memory_limit;
80
81 int nr_threads; /* nr of threads to use */
82
83 git_packbuilder_progress progress_cb;
84 void *progress_cb_payload;
85 double last_progress_report_time; /* the time progress was last reported */
86
87 bool done;
88 };
89
90 int git_packbuilder_write_buf(git_buf *buf, git_packbuilder *pb);
91
92 #endif /* INCLUDE_pack_objects_h__ */