Line | Count | Source (jump to first uncovered line) |
1 | | #ifndef COMMIT_H |
2 | | #define COMMIT_H |
3 | | |
4 | | #include "object.h" |
5 | | |
6 | | struct signature_check; |
7 | | struct strbuf; |
8 | | struct tree; |
9 | | |
10 | 0 | #define COMMIT_NOT_FROM_GRAPH 0xFFFFFFFF |
11 | 0 | #define GENERATION_NUMBER_INFINITY ((1ULL << 63) - 1) |
12 | 0 | #define GENERATION_NUMBER_V1_MAX 0x3FFFFFFF |
13 | 0 | #define GENERATION_NUMBER_ZERO 0 |
14 | 0 | #define GENERATION_NUMBER_V2_OFFSET_MAX ((1ULL << 31) - 1) |
15 | | |
16 | | struct commit_list { |
17 | | struct commit *item; |
18 | | struct commit_list *next; |
19 | | }; |
20 | | |
21 | | /* |
22 | | * The size of this struct matters in full repo walk operations like |
23 | | * 'git clone' or 'git gc'. Consider using commit-slab to attach data |
24 | | * to a commit instead of adding new fields here. |
25 | | */ |
26 | | struct commit { |
27 | | struct object object; |
28 | | timestamp_t date; |
29 | | struct commit_list *parents; |
30 | | |
31 | | /* |
32 | | * If the commit is loaded from the commit-graph file, then this |
33 | | * member may be NULL. Only access it through repo_get_commit_tree() |
34 | | * or get_commit_tree_oid(). |
35 | | */ |
36 | | struct tree *maybe_tree; |
37 | | unsigned int index; |
38 | | }; |
39 | | |
40 | | extern int save_commit_buffer; |
41 | | extern int no_graft_file_deprecated_advice; |
42 | | extern const char *commit_type; |
43 | | |
44 | | /* While we can decorate any object with a name, it's only used for commits.. */ |
45 | | struct name_decoration { |
46 | | struct name_decoration *next; |
47 | | int type; |
48 | | char name[FLEX_ARRAY]; |
49 | | }; |
50 | | |
51 | | enum decoration_type { |
52 | | DECORATION_NONE = 0, |
53 | | DECORATION_REF_LOCAL, |
54 | | DECORATION_REF_REMOTE, |
55 | | DECORATION_REF_TAG, |
56 | | DECORATION_REF_STASH, |
57 | | DECORATION_REF_HEAD, |
58 | | DECORATION_GRAFTED, |
59 | | }; |
60 | | |
61 | | void add_name_decoration(enum decoration_type type, const char *name, struct object *obj); |
62 | | const struct name_decoration *get_name_decoration(const struct object *obj); |
63 | | |
64 | | /* |
65 | | * Look up commit named by "oid" respecting replacement objects. |
66 | | * Returns NULL if "oid" is not a commit or does not exist. |
67 | | */ |
68 | | struct commit *lookup_commit_object(struct repository *r, const struct object_id *oid); |
69 | | |
70 | | /* |
71 | | * Look up commit named by "oid" without replacement objects or |
72 | | * checking for object existence. Returns the requested commit if it |
73 | | * is found in the object cache, NULL if "oid" is in the object cache |
74 | | * but is not a commit and a newly allocated unparsed commit object if |
75 | | * "oid" is not in the object cache. |
76 | | */ |
77 | | struct commit *lookup_commit(struct repository *r, const struct object_id *oid); |
78 | | struct commit *lookup_commit_reference(struct repository *r, |
79 | | const struct object_id *oid); |
80 | | struct commit *lookup_commit_reference_gently(struct repository *r, |
81 | | const struct object_id *oid, |
82 | | int quiet); |
83 | | struct commit *lookup_commit_reference_by_name(const char *name); |
84 | | struct commit *lookup_commit_reference_by_name_gently(const char *name, |
85 | | int quiet); |
86 | | |
87 | | /* |
88 | | * Look up object named by "oid", dereference tag as necessary, |
89 | | * get a commit and return it. If "oid" does not dereference to |
90 | | * a commit, use ref_name to report an error and die. |
91 | | */ |
92 | | struct commit *lookup_commit_or_die(const struct object_id *oid, const char *ref_name); |
93 | | |
94 | | int parse_commit_buffer(struct repository *r, struct commit *item, const void *buffer, unsigned long size, int check_graph); |
95 | | int repo_parse_commit_internal(struct repository *r, struct commit *item, |
96 | | int quiet_on_missing, int use_commit_graph); |
97 | | int repo_parse_commit_gently(struct repository *r, |
98 | | struct commit *item, |
99 | | int quiet_on_missing); |
100 | | static inline int repo_parse_commit(struct repository *r, struct commit *item) |
101 | 0 | { |
102 | 0 | return repo_parse_commit_gently(r, item, 0); |
103 | 0 | } Unexecuted instantiation: add.c:repo_parse_commit Unexecuted instantiation: am.c:repo_parse_commit Unexecuted instantiation: bisect.c:repo_parse_commit Unexecuted instantiation: blame.c:repo_parse_commit Unexecuted instantiation: branch.c:repo_parse_commit Unexecuted instantiation: bugreport.c:repo_parse_commit Unexecuted instantiation: bundle.c:repo_parse_commit Unexecuted instantiation: check-attr.c:repo_parse_commit Unexecuted instantiation: check-ref-format.c:repo_parse_commit Unexecuted instantiation: checkout-index.c:repo_parse_commit Unexecuted instantiation: checkout.c:repo_parse_commit Unexecuted instantiation: clean.c:repo_parse_commit Unexecuted instantiation: clone.c:repo_parse_commit Unexecuted instantiation: commit-graph.c:repo_parse_commit Unexecuted instantiation: commit-tree.c:repo_parse_commit Unexecuted instantiation: commit.c:repo_parse_commit Unexecuted instantiation: config.c:repo_parse_commit Unexecuted instantiation: describe.c:repo_parse_commit Unexecuted instantiation: diff-files.c:repo_parse_commit Unexecuted instantiation: diff-index.c:repo_parse_commit Unexecuted instantiation: diff-tree.c:repo_parse_commit Unexecuted instantiation: diff.c:repo_parse_commit Unexecuted instantiation: difftool.c:repo_parse_commit Unexecuted instantiation: fast-export.c:repo_parse_commit Unexecuted instantiation: fast-import.c:repo_parse_commit Unexecuted instantiation: fetch.c:repo_parse_commit Unexecuted instantiation: for-each-ref.c:repo_parse_commit Unexecuted instantiation: fsck.c:repo_parse_commit Unexecuted instantiation: gc.c:repo_parse_commit Unexecuted instantiation: get-tar-commit-id.c:repo_parse_commit Unexecuted instantiation: grep.c:repo_parse_commit Unexecuted instantiation: hash-object.c:repo_parse_commit Unexecuted instantiation: help.c:repo_parse_commit Unexecuted instantiation: index-pack.c:repo_parse_commit Unexecuted instantiation: init-db.c:repo_parse_commit Unexecuted instantiation: log.c:repo_parse_commit Unexecuted instantiation: ls-files.c:repo_parse_commit Unexecuted instantiation: ls-remote.c:repo_parse_commit Unexecuted instantiation: merge-base.c:repo_parse_commit Unexecuted instantiation: merge-file.c:repo_parse_commit Unexecuted instantiation: merge-tree.c:repo_parse_commit Unexecuted instantiation: merge.c:repo_parse_commit Unexecuted instantiation: mv.c:repo_parse_commit Unexecuted instantiation: name-rev.c:repo_parse_commit Unexecuted instantiation: notes.c:repo_parse_commit Unexecuted instantiation: pack-objects.c:repo_parse_commit Unexecuted instantiation: pack-refs.c:repo_parse_commit Unexecuted instantiation: patch-id.c:repo_parse_commit Unexecuted instantiation: prune.c:repo_parse_commit Unexecuted instantiation: pull.c:repo_parse_commit Unexecuted instantiation: read-tree.c:repo_parse_commit Unexecuted instantiation: rebase.c:repo_parse_commit Unexecuted instantiation: receive-pack.c:repo_parse_commit Unexecuted instantiation: reflog.c:repo_parse_commit Unexecuted instantiation: refs.c:repo_parse_commit Unexecuted instantiation: remote.c:repo_parse_commit Unexecuted instantiation: repack.c:repo_parse_commit Unexecuted instantiation: replace.c:repo_parse_commit Unexecuted instantiation: replay.c:repo_parse_commit Unexecuted instantiation: reset.c:repo_parse_commit Unexecuted instantiation: rev-list.c:repo_parse_commit Unexecuted instantiation: rev-parse.c:repo_parse_commit Unexecuted instantiation: revert.c:repo_parse_commit Unexecuted instantiation: rm.c:repo_parse_commit Unexecuted instantiation: shortlog.c:repo_parse_commit Unexecuted instantiation: show-branch.c:repo_parse_commit Unexecuted instantiation: show-ref.c:repo_parse_commit Unexecuted instantiation: sparse-checkout.c:repo_parse_commit Unexecuted instantiation: stash.c:repo_parse_commit Unexecuted instantiation: stripspace.c:repo_parse_commit Unexecuted instantiation: submodule--helper.c:repo_parse_commit Unexecuted instantiation: symbolic-ref.c:repo_parse_commit Unexecuted instantiation: tag.c:repo_parse_commit Unexecuted instantiation: update-index.c:repo_parse_commit Unexecuted instantiation: update-ref.c:repo_parse_commit Unexecuted instantiation: upload-pack.c:repo_parse_commit Unexecuted instantiation: var.c:repo_parse_commit Unexecuted instantiation: verify-commit.c:repo_parse_commit Unexecuted instantiation: verify-tag.c:repo_parse_commit Unexecuted instantiation: worktree.c:repo_parse_commit Unexecuted instantiation: git.c:repo_parse_commit Unexecuted instantiation: add-interactive.c:repo_parse_commit Unexecuted instantiation: apply.c:repo_parse_commit Unexecuted instantiation: archive.c:repo_parse_commit Unexecuted instantiation: attr.c:repo_parse_commit Unexecuted instantiation: bloom.c:repo_parse_commit Unexecuted instantiation: bundle-uri.c:repo_parse_commit Unexecuted instantiation: combine-diff.c:repo_parse_commit Unexecuted instantiation: commit-reach.c:repo_parse_commit Unexecuted instantiation: connect.c:repo_parse_commit Unexecuted instantiation: delta-islands.c:repo_parse_commit Unexecuted instantiation: diff-merges.c:repo_parse_commit Unexecuted instantiation: diff-lib.c:repo_parse_commit Unexecuted instantiation: diff-no-index.c:repo_parse_commit Unexecuted instantiation: dir.c:repo_parse_commit Unexecuted instantiation: environment.c:repo_parse_commit Unexecuted instantiation: fetch-pack.c:repo_parse_commit Unexecuted instantiation: fmt-merge-msg.c:repo_parse_commit Unexecuted instantiation: gpg-interface.c:repo_parse_commit Unexecuted instantiation: graph.c:repo_parse_commit Unexecuted instantiation: hook.c:repo_parse_commit Unexecuted instantiation: line-log.c:repo_parse_commit Unexecuted instantiation: list-objects.c:repo_parse_commit Unexecuted instantiation: log-tree.c:repo_parse_commit Unexecuted instantiation: mailmap.c:repo_parse_commit Unexecuted instantiation: merge-ort.c:repo_parse_commit Unexecuted instantiation: merge-ort-wrappers.c:repo_parse_commit Unexecuted instantiation: merge-recursive.c:repo_parse_commit Unexecuted instantiation: midx-write.c:repo_parse_commit Unexecuted instantiation: notes-cache.c:repo_parse_commit Unexecuted instantiation: notes-merge.c:repo_parse_commit Unexecuted instantiation: notes-utils.c:repo_parse_commit Unexecuted instantiation: object-file-convert.c:repo_parse_commit Unexecuted instantiation: object-file.c:repo_parse_commit Unexecuted instantiation: object-name.c:repo_parse_commit Unexecuted instantiation: object.c:repo_parse_commit Unexecuted instantiation: pack-bitmap-write.c:repo_parse_commit Unexecuted instantiation: pack-bitmap.c:repo_parse_commit Unexecuted instantiation: packfile.c:repo_parse_commit Unexecuted instantiation: parse-options-cb.c:repo_parse_commit Unexecuted instantiation: patch-ids.c:repo_parse_commit Unexecuted instantiation: path.c:repo_parse_commit Unexecuted instantiation: pathspec.c:repo_parse_commit Unexecuted instantiation: pretty.c:repo_parse_commit Unexecuted instantiation: pseudo-merge.c:repo_parse_commit Unexecuted instantiation: range-diff.c:repo_parse_commit Unexecuted instantiation: reachable.c:repo_parse_commit Unexecuted instantiation: read-cache.c:repo_parse_commit Unexecuted instantiation: rebase-interactive.c:repo_parse_commit Unexecuted instantiation: ref-filter.c:repo_parse_commit Unexecuted instantiation: reflog-walk.c:repo_parse_commit Unexecuted instantiation: debug.c:repo_parse_commit Unexecuted instantiation: files-backend.c:repo_parse_commit Unexecuted instantiation: reftable-backend.c:repo_parse_commit Unexecuted instantiation: iterator.c:repo_parse_commit Unexecuted instantiation: packed-backend.c:repo_parse_commit Unexecuted instantiation: ref-cache.c:repo_parse_commit Unexecuted instantiation: refspec.c:repo_parse_commit Unexecuted instantiation: replace-object.c:repo_parse_commit Unexecuted instantiation: repository.c:repo_parse_commit Unexecuted instantiation: revision.c:repo_parse_commit Unexecuted instantiation: send-pack.c:repo_parse_commit Unexecuted instantiation: sequencer.c:repo_parse_commit Unexecuted instantiation: server-info.c:repo_parse_commit Unexecuted instantiation: setup.c:repo_parse_commit Unexecuted instantiation: shallow.c:repo_parse_commit Unexecuted instantiation: submodule.c:repo_parse_commit Unexecuted instantiation: symlinks.c:repo_parse_commit Unexecuted instantiation: trace.c:repo_parse_commit Unexecuted instantiation: trailer.c:repo_parse_commit Unexecuted instantiation: transport-helper.c:repo_parse_commit Unexecuted instantiation: transport.c:repo_parse_commit Unexecuted instantiation: tree.c:repo_parse_commit Unexecuted instantiation: unpack-trees.c:repo_parse_commit Unexecuted instantiation: wt-status.c:repo_parse_commit Unexecuted instantiation: alloc.c:repo_parse_commit Unexecuted instantiation: list-objects-filter.c:repo_parse_commit Unexecuted instantiation: ls-refs.c:repo_parse_commit Unexecuted instantiation: default.c:repo_parse_commit Unexecuted instantiation: skipping.c:repo_parse_commit Unexecuted instantiation: common-main.c:repo_parse_commit |
104 | | |
105 | | static inline int repo_parse_commit_no_graph(struct repository *r, |
106 | | struct commit *commit) |
107 | 0 | { |
108 | 0 | return repo_parse_commit_internal(r, commit, 0, 0); |
109 | 0 | } Unexecuted instantiation: add.c:repo_parse_commit_no_graph Unexecuted instantiation: am.c:repo_parse_commit_no_graph Unexecuted instantiation: bisect.c:repo_parse_commit_no_graph Unexecuted instantiation: blame.c:repo_parse_commit_no_graph Unexecuted instantiation: branch.c:repo_parse_commit_no_graph Unexecuted instantiation: bugreport.c:repo_parse_commit_no_graph Unexecuted instantiation: bundle.c:repo_parse_commit_no_graph Unexecuted instantiation: check-attr.c:repo_parse_commit_no_graph Unexecuted instantiation: check-ref-format.c:repo_parse_commit_no_graph Unexecuted instantiation: checkout-index.c:repo_parse_commit_no_graph Unexecuted instantiation: checkout.c:repo_parse_commit_no_graph Unexecuted instantiation: clean.c:repo_parse_commit_no_graph Unexecuted instantiation: clone.c:repo_parse_commit_no_graph Unexecuted instantiation: commit-graph.c:repo_parse_commit_no_graph Unexecuted instantiation: commit-tree.c:repo_parse_commit_no_graph Unexecuted instantiation: commit.c:repo_parse_commit_no_graph Unexecuted instantiation: config.c:repo_parse_commit_no_graph Unexecuted instantiation: describe.c:repo_parse_commit_no_graph Unexecuted instantiation: diff-files.c:repo_parse_commit_no_graph Unexecuted instantiation: diff-index.c:repo_parse_commit_no_graph Unexecuted instantiation: diff-tree.c:repo_parse_commit_no_graph Unexecuted instantiation: diff.c:repo_parse_commit_no_graph Unexecuted instantiation: difftool.c:repo_parse_commit_no_graph Unexecuted instantiation: fast-export.c:repo_parse_commit_no_graph Unexecuted instantiation: fast-import.c:repo_parse_commit_no_graph Unexecuted instantiation: fetch.c:repo_parse_commit_no_graph Unexecuted instantiation: for-each-ref.c:repo_parse_commit_no_graph Unexecuted instantiation: fsck.c:repo_parse_commit_no_graph Unexecuted instantiation: gc.c:repo_parse_commit_no_graph Unexecuted instantiation: get-tar-commit-id.c:repo_parse_commit_no_graph Unexecuted instantiation: grep.c:repo_parse_commit_no_graph Unexecuted instantiation: hash-object.c:repo_parse_commit_no_graph Unexecuted instantiation: help.c:repo_parse_commit_no_graph Unexecuted instantiation: index-pack.c:repo_parse_commit_no_graph Unexecuted instantiation: init-db.c:repo_parse_commit_no_graph Unexecuted instantiation: log.c:repo_parse_commit_no_graph Unexecuted instantiation: ls-files.c:repo_parse_commit_no_graph Unexecuted instantiation: ls-remote.c:repo_parse_commit_no_graph Unexecuted instantiation: merge-base.c:repo_parse_commit_no_graph Unexecuted instantiation: merge-file.c:repo_parse_commit_no_graph Unexecuted instantiation: merge-tree.c:repo_parse_commit_no_graph Unexecuted instantiation: merge.c:repo_parse_commit_no_graph Unexecuted instantiation: mv.c:repo_parse_commit_no_graph Unexecuted instantiation: name-rev.c:repo_parse_commit_no_graph Unexecuted instantiation: notes.c:repo_parse_commit_no_graph Unexecuted instantiation: pack-objects.c:repo_parse_commit_no_graph Unexecuted instantiation: pack-refs.c:repo_parse_commit_no_graph Unexecuted instantiation: patch-id.c:repo_parse_commit_no_graph Unexecuted instantiation: prune.c:repo_parse_commit_no_graph Unexecuted instantiation: pull.c:repo_parse_commit_no_graph Unexecuted instantiation: read-tree.c:repo_parse_commit_no_graph Unexecuted instantiation: rebase.c:repo_parse_commit_no_graph Unexecuted instantiation: receive-pack.c:repo_parse_commit_no_graph Unexecuted instantiation: reflog.c:repo_parse_commit_no_graph Unexecuted instantiation: refs.c:repo_parse_commit_no_graph Unexecuted instantiation: remote.c:repo_parse_commit_no_graph Unexecuted instantiation: repack.c:repo_parse_commit_no_graph Unexecuted instantiation: replace.c:repo_parse_commit_no_graph Unexecuted instantiation: replay.c:repo_parse_commit_no_graph Unexecuted instantiation: reset.c:repo_parse_commit_no_graph Unexecuted instantiation: rev-list.c:repo_parse_commit_no_graph Unexecuted instantiation: rev-parse.c:repo_parse_commit_no_graph Unexecuted instantiation: revert.c:repo_parse_commit_no_graph Unexecuted instantiation: rm.c:repo_parse_commit_no_graph Unexecuted instantiation: shortlog.c:repo_parse_commit_no_graph Unexecuted instantiation: show-branch.c:repo_parse_commit_no_graph Unexecuted instantiation: show-ref.c:repo_parse_commit_no_graph Unexecuted instantiation: sparse-checkout.c:repo_parse_commit_no_graph Unexecuted instantiation: stash.c:repo_parse_commit_no_graph Unexecuted instantiation: stripspace.c:repo_parse_commit_no_graph Unexecuted instantiation: submodule--helper.c:repo_parse_commit_no_graph Unexecuted instantiation: symbolic-ref.c:repo_parse_commit_no_graph Unexecuted instantiation: tag.c:repo_parse_commit_no_graph Unexecuted instantiation: update-index.c:repo_parse_commit_no_graph Unexecuted instantiation: update-ref.c:repo_parse_commit_no_graph Unexecuted instantiation: upload-pack.c:repo_parse_commit_no_graph Unexecuted instantiation: var.c:repo_parse_commit_no_graph Unexecuted instantiation: verify-commit.c:repo_parse_commit_no_graph Unexecuted instantiation: verify-tag.c:repo_parse_commit_no_graph Unexecuted instantiation: worktree.c:repo_parse_commit_no_graph Unexecuted instantiation: git.c:repo_parse_commit_no_graph Unexecuted instantiation: add-interactive.c:repo_parse_commit_no_graph Unexecuted instantiation: apply.c:repo_parse_commit_no_graph Unexecuted instantiation: archive.c:repo_parse_commit_no_graph Unexecuted instantiation: attr.c:repo_parse_commit_no_graph Unexecuted instantiation: bloom.c:repo_parse_commit_no_graph Unexecuted instantiation: bundle-uri.c:repo_parse_commit_no_graph Unexecuted instantiation: combine-diff.c:repo_parse_commit_no_graph Unexecuted instantiation: commit-reach.c:repo_parse_commit_no_graph Unexecuted instantiation: connect.c:repo_parse_commit_no_graph Unexecuted instantiation: delta-islands.c:repo_parse_commit_no_graph Unexecuted instantiation: diff-merges.c:repo_parse_commit_no_graph Unexecuted instantiation: diff-lib.c:repo_parse_commit_no_graph Unexecuted instantiation: diff-no-index.c:repo_parse_commit_no_graph Unexecuted instantiation: dir.c:repo_parse_commit_no_graph Unexecuted instantiation: environment.c:repo_parse_commit_no_graph Unexecuted instantiation: fetch-pack.c:repo_parse_commit_no_graph Unexecuted instantiation: fmt-merge-msg.c:repo_parse_commit_no_graph Unexecuted instantiation: gpg-interface.c:repo_parse_commit_no_graph Unexecuted instantiation: graph.c:repo_parse_commit_no_graph Unexecuted instantiation: hook.c:repo_parse_commit_no_graph Unexecuted instantiation: line-log.c:repo_parse_commit_no_graph Unexecuted instantiation: list-objects.c:repo_parse_commit_no_graph Unexecuted instantiation: log-tree.c:repo_parse_commit_no_graph Unexecuted instantiation: mailmap.c:repo_parse_commit_no_graph Unexecuted instantiation: merge-ort.c:repo_parse_commit_no_graph Unexecuted instantiation: merge-ort-wrappers.c:repo_parse_commit_no_graph Unexecuted instantiation: merge-recursive.c:repo_parse_commit_no_graph Unexecuted instantiation: midx-write.c:repo_parse_commit_no_graph Unexecuted instantiation: notes-cache.c:repo_parse_commit_no_graph Unexecuted instantiation: notes-merge.c:repo_parse_commit_no_graph Unexecuted instantiation: notes-utils.c:repo_parse_commit_no_graph Unexecuted instantiation: object-file-convert.c:repo_parse_commit_no_graph Unexecuted instantiation: object-file.c:repo_parse_commit_no_graph Unexecuted instantiation: object-name.c:repo_parse_commit_no_graph Unexecuted instantiation: object.c:repo_parse_commit_no_graph Unexecuted instantiation: pack-bitmap-write.c:repo_parse_commit_no_graph Unexecuted instantiation: pack-bitmap.c:repo_parse_commit_no_graph Unexecuted instantiation: packfile.c:repo_parse_commit_no_graph Unexecuted instantiation: parse-options-cb.c:repo_parse_commit_no_graph Unexecuted instantiation: patch-ids.c:repo_parse_commit_no_graph Unexecuted instantiation: path.c:repo_parse_commit_no_graph Unexecuted instantiation: pathspec.c:repo_parse_commit_no_graph Unexecuted instantiation: pretty.c:repo_parse_commit_no_graph Unexecuted instantiation: pseudo-merge.c:repo_parse_commit_no_graph Unexecuted instantiation: range-diff.c:repo_parse_commit_no_graph Unexecuted instantiation: reachable.c:repo_parse_commit_no_graph Unexecuted instantiation: read-cache.c:repo_parse_commit_no_graph Unexecuted instantiation: rebase-interactive.c:repo_parse_commit_no_graph Unexecuted instantiation: ref-filter.c:repo_parse_commit_no_graph Unexecuted instantiation: reflog-walk.c:repo_parse_commit_no_graph Unexecuted instantiation: debug.c:repo_parse_commit_no_graph Unexecuted instantiation: files-backend.c:repo_parse_commit_no_graph Unexecuted instantiation: reftable-backend.c:repo_parse_commit_no_graph Unexecuted instantiation: iterator.c:repo_parse_commit_no_graph Unexecuted instantiation: packed-backend.c:repo_parse_commit_no_graph Unexecuted instantiation: ref-cache.c:repo_parse_commit_no_graph Unexecuted instantiation: refspec.c:repo_parse_commit_no_graph Unexecuted instantiation: replace-object.c:repo_parse_commit_no_graph Unexecuted instantiation: repository.c:repo_parse_commit_no_graph Unexecuted instantiation: revision.c:repo_parse_commit_no_graph Unexecuted instantiation: send-pack.c:repo_parse_commit_no_graph Unexecuted instantiation: sequencer.c:repo_parse_commit_no_graph Unexecuted instantiation: server-info.c:repo_parse_commit_no_graph Unexecuted instantiation: setup.c:repo_parse_commit_no_graph Unexecuted instantiation: shallow.c:repo_parse_commit_no_graph Unexecuted instantiation: submodule.c:repo_parse_commit_no_graph Unexecuted instantiation: symlinks.c:repo_parse_commit_no_graph Unexecuted instantiation: trace.c:repo_parse_commit_no_graph Unexecuted instantiation: trailer.c:repo_parse_commit_no_graph Unexecuted instantiation: transport-helper.c:repo_parse_commit_no_graph Unexecuted instantiation: transport.c:repo_parse_commit_no_graph Unexecuted instantiation: tree.c:repo_parse_commit_no_graph Unexecuted instantiation: unpack-trees.c:repo_parse_commit_no_graph Unexecuted instantiation: wt-status.c:repo_parse_commit_no_graph Unexecuted instantiation: alloc.c:repo_parse_commit_no_graph Unexecuted instantiation: list-objects-filter.c:repo_parse_commit_no_graph Unexecuted instantiation: ls-refs.c:repo_parse_commit_no_graph Unexecuted instantiation: default.c:repo_parse_commit_no_graph Unexecuted instantiation: skipping.c:repo_parse_commit_no_graph Unexecuted instantiation: common-main.c:repo_parse_commit_no_graph |
110 | | |
111 | | void parse_commit_or_die(struct commit *item); |
112 | | |
113 | | struct buffer_slab; |
114 | | struct buffer_slab *allocate_commit_buffer_slab(void); |
115 | | void free_commit_buffer_slab(struct buffer_slab *bs); |
116 | | |
117 | | /* |
118 | | * Associate an object buffer with the commit. The ownership of the |
119 | | * memory is handed over to the commit, and must be free()-able. |
120 | | */ |
121 | | void set_commit_buffer(struct repository *r, struct commit *, void *buffer, unsigned long size); |
122 | | |
123 | | /* |
124 | | * Get any cached object buffer associated with the commit. Returns NULL |
125 | | * if none. The resulting memory should not be freed. |
126 | | */ |
127 | | const void *get_cached_commit_buffer(struct repository *, const struct commit *, unsigned long *size); |
128 | | |
129 | | /* |
130 | | * Get the commit's object contents, either from cache or by reading the object |
131 | | * from disk. The resulting memory should not be modified, and must be given |
132 | | * to repo_unuse_commit_buffer when the caller is done. |
133 | | */ |
134 | | const void *repo_get_commit_buffer(struct repository *r, |
135 | | const struct commit *, |
136 | | unsigned long *size); |
137 | | |
138 | | /* |
139 | | * Tell the commit subsystem that we are done with a particular commit buffer. |
140 | | * The commit and buffer should be the input and return value, respectively, |
141 | | * from an earlier call to repo_get_commit_buffer. The buffer may or may not be |
142 | | * freed by this call; callers should not access the memory afterwards. |
143 | | */ |
144 | | void repo_unuse_commit_buffer(struct repository *r, |
145 | | const struct commit *, |
146 | | const void *buffer); |
147 | | |
148 | | /* |
149 | | * Free any cached object buffer associated with the commit. |
150 | | */ |
151 | | void free_commit_buffer(struct parsed_object_pool *pool, struct commit *); |
152 | | |
153 | | struct tree *repo_get_commit_tree(struct repository *, const struct commit *); |
154 | | struct object_id *get_commit_tree_oid(const struct commit *); |
155 | | |
156 | | /* |
157 | | * Release memory related to a commit, including the parent list and |
158 | | * any cached object buffer. |
159 | | */ |
160 | | void release_commit_memory(struct parsed_object_pool *pool, struct commit *c); |
161 | | |
162 | | /* |
163 | | * Disassociate any cached object buffer from the commit, but do not free it. |
164 | | * The buffer (or NULL, if none) is returned. |
165 | | */ |
166 | | const void *detach_commit_buffer(struct commit *, unsigned long *sizep); |
167 | | |
168 | | /* Find beginning and length of commit subject. */ |
169 | | int find_commit_subject(const char *commit_buffer, const char **subject); |
170 | | |
171 | | /* Return length of the commit subject from commit log message. */ |
172 | | size_t commit_subject_length(const char *body); |
173 | | |
174 | | struct commit_list *commit_list_insert(struct commit *item, |
175 | | struct commit_list **list); |
176 | | int commit_list_contains(struct commit *item, |
177 | | struct commit_list *list); |
178 | | struct commit_list **commit_list_append(struct commit *commit, |
179 | | struct commit_list **next); |
180 | | unsigned commit_list_count(const struct commit_list *l); |
181 | | struct commit_list *commit_list_insert_by_date(struct commit *item, |
182 | | struct commit_list **list); |
183 | | void commit_list_sort_by_date(struct commit_list **list); |
184 | | |
185 | | /* Shallow copy of the input list */ |
186 | | struct commit_list *copy_commit_list(const struct commit_list *list); |
187 | | |
188 | | /* Modify list in-place to reverse it, returning new head; list will be tail */ |
189 | | struct commit_list *reverse_commit_list(struct commit_list *list); |
190 | | |
191 | | void free_commit_list(struct commit_list *list); |
192 | | |
193 | | struct rev_info; /* in revision.h, it circularly uses enum cmit_fmt */ |
194 | | |
195 | | const char *repo_logmsg_reencode(struct repository *r, |
196 | | const struct commit *commit, |
197 | | char **commit_encoding, |
198 | | const char *output_encoding); |
199 | | |
200 | | const char *skip_blank_lines(const char *msg); |
201 | | |
202 | | /** Removes the first commit from a list sorted by date, and adds all |
203 | | * of its parents. |
204 | | **/ |
205 | | struct commit *pop_most_recent_commit(struct commit_list **list, |
206 | | unsigned int mark); |
207 | | |
208 | | struct commit *pop_commit(struct commit_list **stack); |
209 | | |
210 | | void clear_commit_marks(struct commit *commit, unsigned int mark); |
211 | | void clear_commit_marks_many(int nr, struct commit **commit, unsigned int mark); |
212 | | |
213 | | |
214 | | enum rev_sort_order { |
215 | | REV_SORT_IN_GRAPH_ORDER = 0, |
216 | | REV_SORT_BY_COMMIT_DATE, |
217 | | REV_SORT_BY_AUTHOR_DATE |
218 | | }; |
219 | | |
220 | | /* |
221 | | * Performs an in-place topological sort of list supplied. |
222 | | * |
223 | | * invariant of resulting list is: |
224 | | * a reachable from b => ord(b) < ord(a) |
225 | | * sort_order further specifies: |
226 | | * REV_SORT_IN_GRAPH_ORDER: try to show a commit on a single-parent |
227 | | * chain together. |
228 | | * REV_SORT_BY_COMMIT_DATE: show eligible commits in committer-date order. |
229 | | */ |
230 | | void sort_in_topological_order(struct commit_list **, enum rev_sort_order); |
231 | | |
232 | | struct commit_graft { |
233 | | struct object_id oid; |
234 | | int nr_parent; /* < 0 if shallow commit */ |
235 | | struct object_id parent[FLEX_ARRAY]; /* more */ |
236 | | }; |
237 | | typedef int (*each_commit_graft_fn)(const struct commit_graft *, void *); |
238 | | |
239 | | struct commit_graft *read_graft_line(struct strbuf *line); |
240 | | /* commit_graft_pos returns an index into r->parsed_objects->grafts. */ |
241 | | int commit_graft_pos(struct repository *r, const struct object_id *oid); |
242 | | int register_commit_graft(struct repository *r, struct commit_graft *, int); |
243 | | void prepare_commit_graft(struct repository *r); |
244 | | struct commit_graft *lookup_commit_graft(struct repository *r, const struct object_id *oid); |
245 | | void reset_commit_grafts(struct repository *r); |
246 | | |
247 | | struct commit *get_fork_point(const char *refname, struct commit *commit); |
248 | | |
249 | | /* largest positive number a signed 32-bit integer can contain */ |
250 | 0 | #define INFINITE_DEPTH 0x7fffffff |
251 | | |
252 | | struct oid_array; |
253 | | struct ref; |
254 | | int for_each_commit_graft(each_commit_graft_fn, void *); |
255 | | |
256 | | int interactive_add(const char **argv, const char *prefix, int patch); |
257 | | |
258 | | struct commit_extra_header { |
259 | | struct commit_extra_header *next; |
260 | | char *key; |
261 | | char *value; |
262 | | size_t len; |
263 | | }; |
264 | | |
265 | | void append_merge_tag_headers(const struct commit_list *parents, |
266 | | struct commit_extra_header ***tail); |
267 | | |
268 | | int commit_tree(const char *msg, size_t msg_len, |
269 | | const struct object_id *tree, |
270 | | const struct commit_list *parents, struct object_id *ret, |
271 | | const char *author, const char *sign_commit); |
272 | | |
273 | | int commit_tree_extended(const char *msg, size_t msg_len, |
274 | | const struct object_id *tree, |
275 | | const struct commit_list *parents, struct object_id *ret, |
276 | | const char *author, const char *committer, |
277 | | const char *sign_commit, const struct commit_extra_header *); |
278 | | |
279 | | struct commit_extra_header *read_commit_extra_headers(struct commit *, const char **); |
280 | | |
281 | | void free_commit_extra_headers(struct commit_extra_header *extra); |
282 | | |
283 | | /* |
284 | | * Search the commit object contents given by "msg" for the header "key". |
285 | | * Returns a pointer to the start of the header contents, or NULL. The length |
286 | | * of the header, up to the first newline, is returned via out_len. |
287 | | * |
288 | | * Note that some headers (like mergetag) may be multi-line. It is the caller's |
289 | | * responsibility to parse further in this case! |
290 | | */ |
291 | | const char *find_commit_header(const char *msg, const char *key, |
292 | | size_t *out_len); |
293 | | |
294 | | /* Find the number of bytes to ignore from the end of a log message. */ |
295 | | size_t ignored_log_message_bytes(const char *buf, size_t len); |
296 | | |
297 | | typedef int (*each_mergetag_fn)(struct commit *commit, struct commit_extra_header *extra, |
298 | | void *cb_data); |
299 | | |
300 | | int for_each_mergetag(each_mergetag_fn fn, struct commit *commit, void *data); |
301 | | |
302 | | struct merge_remote_desc { |
303 | | struct object *obj; /* the named object, could be a tag */ |
304 | | char name[FLEX_ARRAY]; |
305 | | }; |
306 | | struct merge_remote_desc *merge_remote_util(const struct commit *); |
307 | | void set_merge_remote_desc(struct commit *commit, |
308 | | const char *name, struct object *obj); |
309 | | |
310 | | /* |
311 | | * Given "name" from the command line to merge, find the commit object |
312 | | * and return it, while storing merge_remote_desc in its ->util field, |
313 | | * to allow callers to tell if we are told to merge a tag. |
314 | | */ |
315 | | struct commit *get_merge_parent(const char *name); |
316 | | |
317 | | int parse_signed_commit(const struct commit *commit, |
318 | | struct strbuf *message, struct strbuf *signature, |
319 | | const struct git_hash_algo *algop); |
320 | | int remove_signature(struct strbuf *buf); |
321 | | |
322 | | /* |
323 | | * Check the signature of the given commit. The result of the check is stored |
324 | | * in sig->check_result, 'G' for a good signature, 'U' for a good signature |
325 | | * from an untrusted signer, 'B' for a bad signature and 'N' for no signature |
326 | | * at all. This may allocate memory for sig->gpg_output, sig->gpg_status, |
327 | | * sig->signer and sig->key. |
328 | | */ |
329 | | int check_commit_signature(const struct commit *commit, struct signature_check *sigc); |
330 | | |
331 | | /* record author-date for each commit object */ |
332 | | struct author_date_slab; |
333 | | void record_author_date(struct author_date_slab *author_date, |
334 | | struct commit *commit); |
335 | | |
336 | | int compare_commits_by_author_date(const void *a_, const void *b_, void *unused); |
337 | | |
338 | | /* |
339 | | * Verify a single commit with check_commit_signature() and die() if it is not |
340 | | * a good signature. This isn't really suitable for general use, but is a |
341 | | * helper to implement consistent logic for pull/merge --verify-signatures. |
342 | | * |
343 | | * The check_trust parameter is meant for backward-compatibility. The GPG |
344 | | * interface verifies key trust with a default trust level that is below the |
345 | | * default trust level for merge operations. Its value should be non-zero if |
346 | | * the user hasn't set a minimum trust level explicitly in their configuration. |
347 | | * |
348 | | * If the user has set a minimum trust level, then that value should be obeyed |
349 | | * and check_trust should be zero, even if the configured trust level is below |
350 | | * the default trust level for merges. |
351 | | */ |
352 | | void verify_merge_signature(struct commit *commit, int verbose, |
353 | | int check_trust); |
354 | | |
355 | | int compare_commits_by_commit_date(const void *a_, const void *b_, void *unused); |
356 | | int compare_commits_by_gen_then_commit_date(const void *a_, const void *b_, void *unused); |
357 | | |
358 | | LAST_ARG_MUST_BE_NULL |
359 | | int run_commit_hook(int editor_is_used, const char *index_file, |
360 | | int *invoked_hook, const char *name, ...); |
361 | | |
362 | | /* Sign a commit or tag buffer, storing the result in a header. */ |
363 | | int sign_with_header(struct strbuf *buf, const char *keyid); |
364 | | /* Parse the signature out of a header. */ |
365 | | int parse_buffer_signed_by_header(const char *buffer, |
366 | | unsigned long size, |
367 | | struct strbuf *payload, |
368 | | struct strbuf *signature, |
369 | | const struct git_hash_algo *algop); |
370 | | int add_header_signature(struct strbuf *buf, struct strbuf *sig, const struct git_hash_algo *algo); |
371 | | |
372 | | #endif /* COMMIT_H */ |