Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 1 | #include "cache.h" |
Brandon Williams | b2141fc | 2017-06-14 11:07:36 -0700 | [diff] [blame] | 2 | #include "config.h" |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 3 | #include "diff.h" |
Stefan Beller | cbd53a2 | 2018-05-15 16:42:15 -0700 | [diff] [blame] | 4 | #include "object-store.h" |
Stefan Beller | 109cd76 | 2018-06-28 18:21:51 -0700 | [diff] [blame] | 5 | #include "repository.h" |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 6 | #include "commit.h" |
René Scharfe | cab4feb | 2008-09-04 23:39:21 +0200 | [diff] [blame] | 7 | #include "tag.h" |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 8 | #include "graph.h" |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 9 | #include "log-tree.h" |
Johannes Schindelin | 8860fd4 | 2007-01-11 11:47:48 +0100 | [diff] [blame] | 10 | #include "reflog-walk.h" |
René Scharfe | cab4feb | 2008-09-04 23:39:21 +0200 | [diff] [blame] | 11 | #include "refs.h" |
Thomas Rast | b079c50 | 2009-02-19 22:26:31 +0100 | [diff] [blame] | 12 | #include "string-list.h" |
Nazri Ramliy | 67a4b58 | 2010-06-19 09:37:35 +0800 | [diff] [blame] | 13 | #include "color.h" |
Junio C Hamano | 0c37f1f | 2011-10-18 15:53:23 -0700 | [diff] [blame] | 14 | #include "gpg-interface.h" |
Brandon Casey | 959a262 | 2013-02-12 02:17:39 -0800 | [diff] [blame] | 15 | #include "sequencer.h" |
Thomas Rast | 12da1d1 | 2013-03-28 17:47:32 +0100 | [diff] [blame] | 16 | #include "line-log.h" |
Nguyễn Thái Ngọc Duy | 3ac68a9 | 2018-05-26 15:55:24 +0200 | [diff] [blame] | 17 | #include "help.h" |
Eric Sunshine | ee6cbf7 | 2018-07-22 05:57:09 -0400 | [diff] [blame] | 18 | #include "interdiff.h" |
Eric Sunshine | 40ce416 | 2018-07-22 05:57:17 -0400 | [diff] [blame] | 19 | #include "range-diff.h" |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 20 | |
Jeff King | 2608c24 | 2014-08-26 06:23:54 -0400 | [diff] [blame] | 21 | static struct decoration name_decoration = { "object names" }; |
Junio C Hamano | 76c61fb | 2015-05-13 10:25:18 -0700 | [diff] [blame] | 22 | static int decoration_loaded; |
| 23 | static int decoration_flags; |
Nazri Ramliy | a752412 | 2010-06-19 09:37:34 +0800 | [diff] [blame] | 24 | |
Nazri Ramliy | 67a4b58 | 2010-06-19 09:37:35 +0800 | [diff] [blame] | 25 | static char decoration_colors[][COLOR_MAXLEN] = { |
| 26 | GIT_COLOR_RESET, |
| 27 | GIT_COLOR_BOLD_GREEN, /* REF_LOCAL */ |
| 28 | GIT_COLOR_BOLD_RED, /* REF_REMOTE */ |
| 29 | GIT_COLOR_BOLD_YELLOW, /* REF_TAG */ |
| 30 | GIT_COLOR_BOLD_MAGENTA, /* REF_STASH */ |
| 31 | GIT_COLOR_BOLD_CYAN, /* REF_HEAD */ |
Nguyễn Thái Ngọc Duy | 76f5df3 | 2011-08-18 19:29:37 +0700 | [diff] [blame] | 32 | GIT_COLOR_BOLD_BLUE, /* GRAFTED */ |
Nazri Ramliy | 67a4b58 | 2010-06-19 09:37:35 +0800 | [diff] [blame] | 33 | }; |
| 34 | |
Nguyễn Thái Ngọc Duy | a73b368 | 2018-05-26 15:55:21 +0200 | [diff] [blame] | 35 | static const char *color_decorate_slots[] = { |
| 36 | [DECORATION_REF_LOCAL] = "branch", |
| 37 | [DECORATION_REF_REMOTE] = "remoteBranch", |
| 38 | [DECORATION_REF_TAG] = "tag", |
| 39 | [DECORATION_REF_STASH] = "stash", |
| 40 | [DECORATION_REF_HEAD] = "HEAD", |
Nguyễn Thái Ngọc Duy | 09c4ba4 | 2018-05-26 15:55:31 +0200 | [diff] [blame] | 41 | [DECORATION_GRAFTED] = "grafted", |
Nguyễn Thái Ngọc Duy | a73b368 | 2018-05-26 15:55:21 +0200 | [diff] [blame] | 42 | }; |
| 43 | |
Nazri Ramliy | 67a4b58 | 2010-06-19 09:37:35 +0800 | [diff] [blame] | 44 | static const char *decorate_get_color(int decorate_use_color, enum decoration_type ix) |
| 45 | { |
Jeff King | daa0c3d | 2011-08-17 22:04:23 -0700 | [diff] [blame] | 46 | if (want_color(decorate_use_color)) |
Nazri Ramliy | 67a4b58 | 2010-06-19 09:37:35 +0800 | [diff] [blame] | 47 | return decoration_colors[ix]; |
| 48 | return ""; |
| 49 | } |
| 50 | |
Nguyễn Thái Ngọc Duy | 3ac68a9 | 2018-05-26 15:55:24 +0200 | [diff] [blame] | 51 | define_list_config_array(color_decorate_slots); |
Nazri Ramliy | 5e11bee | 2010-06-24 08:21:16 +0800 | [diff] [blame] | 52 | |
Jonathan Nieder | 8852117 | 2014-10-07 15:16:57 -0400 | [diff] [blame] | 53 | int parse_decorate_color_config(const char *var, const char *slot_name, const char *value) |
Nazri Ramliy | 5e11bee | 2010-06-24 08:21:16 +0800 | [diff] [blame] | 54 | { |
Nguyễn Thái Ngọc Duy | a73b368 | 2018-05-26 15:55:21 +0200 | [diff] [blame] | 55 | int slot = LOOKUP_CONFIG(color_decorate_slots, slot_name); |
Nazri Ramliy | 5e11bee | 2010-06-24 08:21:16 +0800 | [diff] [blame] | 56 | if (slot < 0) |
| 57 | return 0; |
| 58 | if (!value) |
| 59 | return config_error_nonbool(var); |
Jeff King | f6c5a29 | 2014-10-07 15:33:09 -0400 | [diff] [blame] | 60 | return color_parse(value, decoration_colors[slot]); |
Nazri Ramliy | 5e11bee | 2010-06-24 08:21:16 +0800 | [diff] [blame] | 61 | } |
| 62 | |
Nazri Ramliy | 67a4b58 | 2010-06-19 09:37:35 +0800 | [diff] [blame] | 63 | /* |
| 64 | * log-tree.c uses DIFF_OPT_TST for determining whether to use color |
| 65 | * for showing the commit sha1, use the same check for --decorate |
| 66 | */ |
| 67 | #define decorate_get_color_opt(o, ix) \ |
Jeff King | f1c9626 | 2011-08-17 22:03:12 -0700 | [diff] [blame] | 68 | decorate_get_color((o)->use_color, ix) |
Nazri Ramliy | 67a4b58 | 2010-06-19 09:37:35 +0800 | [diff] [blame] | 69 | |
Jeff King | 662174d | 2014-08-26 06:23:36 -0400 | [diff] [blame] | 70 | void add_name_decoration(enum decoration_type type, const char *name, struct object *obj) |
René Scharfe | cab4feb | 2008-09-04 23:39:21 +0200 | [diff] [blame] | 71 | { |
Jeff King | 96ffc06 | 2016-02-22 17:44:32 -0500 | [diff] [blame] | 72 | struct name_decoration *res; |
| 73 | FLEX_ALLOC_STR(res, name, name); |
Nazri Ramliy | a752412 | 2010-06-19 09:37:34 +0800 | [diff] [blame] | 74 | res->type = type; |
René Scharfe | cab4feb | 2008-09-04 23:39:21 +0200 | [diff] [blame] | 75 | res->next = add_decoration(&name_decoration, obj, res); |
| 76 | } |
| 77 | |
Jeff King | 2608c24 | 2014-08-26 06:23:54 -0400 | [diff] [blame] | 78 | const struct name_decoration *get_name_decoration(const struct object *obj) |
| 79 | { |
René Scharfe | 0cc7380 | 2019-09-08 19:58:51 +0200 | [diff] [blame] | 80 | load_ref_decorations(NULL, DECORATE_SHORT_REFS); |
Jeff King | 2608c24 | 2014-08-26 06:23:54 -0400 | [diff] [blame] | 81 | return lookup_decoration(&name_decoration, obj); |
| 82 | } |
| 83 | |
Derrick Stolee | c9f7a79 | 2020-04-16 14:15:48 +0000 | [diff] [blame] | 84 | static int match_ref_pattern(const char *refname, |
| 85 | const struct string_list_item *item) |
| 86 | { |
| 87 | int matched = 0; |
| 88 | if (item->util == NULL) { |
| 89 | if (!wildmatch(item->string, refname, 0)) |
| 90 | matched = 1; |
| 91 | } else { |
| 92 | const char *rest; |
| 93 | if (skip_prefix(refname, item->string, &rest) && |
| 94 | (!*rest || *rest == '/')) |
| 95 | matched = 1; |
| 96 | } |
| 97 | return matched; |
| 98 | } |
| 99 | |
| 100 | static int ref_filter_match(const char *refname, |
| 101 | const struct decoration_filter *filter) |
| 102 | { |
| 103 | struct string_list_item *item; |
| 104 | const struct string_list *exclude_patterns = filter->exclude_ref_pattern; |
| 105 | const struct string_list *include_patterns = filter->include_ref_pattern; |
Derrick Stolee | a6be5e6 | 2020-04-16 14:15:49 +0000 | [diff] [blame] | 106 | const struct string_list *exclude_patterns_config = |
| 107 | filter->exclude_ref_config_pattern; |
Derrick Stolee | c9f7a79 | 2020-04-16 14:15:48 +0000 | [diff] [blame] | 108 | |
| 109 | if (exclude_patterns && exclude_patterns->nr) { |
| 110 | for_each_string_list_item(item, exclude_patterns) { |
| 111 | if (match_ref_pattern(refname, item)) |
| 112 | return 0; |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | if (include_patterns && include_patterns->nr) { |
Derrick Stolee | c9f7a79 | 2020-04-16 14:15:48 +0000 | [diff] [blame] | 117 | for_each_string_list_item(item, include_patterns) { |
Derrick Stolee | a6be5e6 | 2020-04-16 14:15:49 +0000 | [diff] [blame] | 118 | if (match_ref_pattern(refname, item)) |
| 119 | return 1; |
Derrick Stolee | c9f7a79 | 2020-04-16 14:15:48 +0000 | [diff] [blame] | 120 | } |
Derrick Stolee | a6be5e6 | 2020-04-16 14:15:49 +0000 | [diff] [blame] | 121 | return 0; |
Derrick Stolee | c9f7a79 | 2020-04-16 14:15:48 +0000 | [diff] [blame] | 122 | } |
Derrick Stolee | a6be5e6 | 2020-04-16 14:15:49 +0000 | [diff] [blame] | 123 | |
| 124 | if (exclude_patterns_config && exclude_patterns_config->nr) { |
| 125 | for_each_string_list_item(item, exclude_patterns_config) { |
| 126 | if (match_ref_pattern(refname, item)) |
| 127 | return 0; |
| 128 | } |
| 129 | } |
| 130 | |
Derrick Stolee | c9f7a79 | 2020-04-16 14:15:48 +0000 | [diff] [blame] | 131 | return 1; |
| 132 | } |
| 133 | |
Michael Haggerty | f124b73 | 2015-05-25 18:38:57 +0000 | [diff] [blame] | 134 | static int add_ref_decoration(const char *refname, const struct object_id *oid, |
| 135 | int flags, void *cb_data) |
René Scharfe | cab4feb | 2008-09-04 23:39:21 +0200 | [diff] [blame] | 136 | { |
Nguyễn Thái Ngọc Duy | 5267d29 | 2011-08-19 19:43:50 +0700 | [diff] [blame] | 137 | struct object *obj; |
Nazri Ramliy | a752412 | 2010-06-19 09:37:34 +0800 | [diff] [blame] | 138 | enum decoration_type type = DECORATION_NONE; |
Rafael Ascensão | 65516f5 | 2017-11-21 21:33:41 +0000 | [diff] [blame] | 139 | struct decoration_filter *filter = (struct decoration_filter *)cb_data; |
Nguyễn Thái Ngọc Duy | 5267d29 | 2011-08-19 19:43:50 +0700 | [diff] [blame] | 140 | |
Derrick Stolee | c9f7a79 | 2020-04-16 14:15:48 +0000 | [diff] [blame] | 141 | if (filter && !ref_filter_match(refname, filter)) |
Rafael Ascensão | 65516f5 | 2017-11-21 21:33:41 +0000 | [diff] [blame] | 142 | return 0; |
Junio C Hamano | 429ad20 | 2015-05-13 12:40:35 -0700 | [diff] [blame] | 143 | |
Mike Hommey | 58d121b | 2015-06-12 06:34:59 +0900 | [diff] [blame] | 144 | if (starts_with(refname, git_replace_ref_base)) { |
Michael Haggerty | 3d79f65 | 2015-05-25 18:38:58 +0000 | [diff] [blame] | 145 | struct object_id original_oid; |
Jeff King | 6ebd1ca | 2018-07-18 16:45:20 -0400 | [diff] [blame] | 146 | if (!read_replace_refs) |
Michael J Gruber | b9ad500 | 2011-08-25 17:09:30 +0200 | [diff] [blame] | 147 | return 0; |
Junio C Hamano | 31a0ad5 | 2015-08-03 11:01:10 -0700 | [diff] [blame] | 148 | if (get_oid_hex(refname + strlen(git_replace_ref_base), |
| 149 | &original_oid)) { |
Nguyễn Thái Ngọc Duy | 5267d29 | 2011-08-19 19:43:50 +0700 | [diff] [blame] | 150 | warning("invalid replace ref %s", refname); |
| 151 | return 0; |
| 152 | } |
Stefan Beller | 109cd76 | 2018-06-28 18:21:51 -0700 | [diff] [blame] | 153 | obj = parse_object(the_repository, &original_oid); |
Nguyễn Thái Ngọc Duy | 5267d29 | 2011-08-19 19:43:50 +0700 | [diff] [blame] | 154 | if (obj) |
| 155 | add_name_decoration(DECORATION_GRAFTED, "replaced", obj); |
| 156 | return 0; |
| 157 | } |
| 158 | |
Stefan Beller | 109cd76 | 2018-06-28 18:21:51 -0700 | [diff] [blame] | 159 | obj = parse_object(the_repository, oid); |
René Scharfe | cab4feb | 2008-09-04 23:39:21 +0200 | [diff] [blame] | 160 | if (!obj) |
| 161 | return 0; |
Nazri Ramliy | a752412 | 2010-06-19 09:37:34 +0800 | [diff] [blame] | 162 | |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 163 | if (starts_with(refname, "refs/heads/")) |
Nazri Ramliy | a752412 | 2010-06-19 09:37:34 +0800 | [diff] [blame] | 164 | type = DECORATION_REF_LOCAL; |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 165 | else if (starts_with(refname, "refs/remotes/")) |
Nazri Ramliy | a752412 | 2010-06-19 09:37:34 +0800 | [diff] [blame] | 166 | type = DECORATION_REF_REMOTE; |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 167 | else if (starts_with(refname, "refs/tags/")) |
Nazri Ramliy | a752412 | 2010-06-19 09:37:34 +0800 | [diff] [blame] | 168 | type = DECORATION_REF_TAG; |
Nguyễn Thái Ngọc Duy | 97ba642 | 2012-01-05 19:39:40 +0700 | [diff] [blame] | 169 | else if (!strcmp(refname, "refs/stash")) |
Nazri Ramliy | a752412 | 2010-06-19 09:37:34 +0800 | [diff] [blame] | 170 | type = DECORATION_REF_STASH; |
Nguyễn Thái Ngọc Duy | 97ba642 | 2012-01-05 19:39:40 +0700 | [diff] [blame] | 171 | else if (!strcmp(refname, "HEAD")) |
Nazri Ramliy | a752412 | 2010-06-19 09:37:34 +0800 | [diff] [blame] | 172 | type = DECORATION_REF_HEAD; |
| 173 | |
Nazri Ramliy | a752412 | 2010-06-19 09:37:34 +0800 | [diff] [blame] | 174 | add_name_decoration(type, refname, obj); |
René Scharfe | cab4feb | 2008-09-04 23:39:21 +0200 | [diff] [blame] | 175 | while (obj->type == OBJ_TAG) { |
| 176 | obj = ((struct tag *)obj)->tagged; |
| 177 | if (!obj) |
| 178 | break; |
brian m. carlson | 5e1361c | 2013-12-17 04:28:21 +0000 | [diff] [blame] | 179 | if (!obj->parsed) |
Stefan Beller | 109cd76 | 2018-06-28 18:21:51 -0700 | [diff] [blame] | 180 | parse_object(the_repository, &obj->oid); |
Nazri Ramliy | a752412 | 2010-06-19 09:37:34 +0800 | [diff] [blame] | 181 | add_name_decoration(DECORATION_REF_TAG, refname, obj); |
René Scharfe | cab4feb | 2008-09-04 23:39:21 +0200 | [diff] [blame] | 182 | } |
| 183 | return 0; |
| 184 | } |
| 185 | |
Nguyễn Thái Ngọc Duy | 76f5df3 | 2011-08-18 19:29:37 +0700 | [diff] [blame] | 186 | static int add_graft_decoration(const struct commit_graft *graft, void *cb_data) |
| 187 | { |
Stefan Beller | c1f5eb4 | 2018-06-28 18:21:59 -0700 | [diff] [blame] | 188 | struct commit *commit = lookup_commit(the_repository, &graft->oid); |
Nguyễn Thái Ngọc Duy | 76f5df3 | 2011-08-18 19:29:37 +0700 | [diff] [blame] | 189 | if (!commit) |
| 190 | return 0; |
| 191 | add_name_decoration(DECORATION_GRAFTED, "grafted", &commit->object); |
| 192 | return 0; |
| 193 | } |
| 194 | |
Rafael Ascensão | 65516f5 | 2017-11-21 21:33:41 +0000 | [diff] [blame] | 195 | void load_ref_decorations(struct decoration_filter *filter, int flags) |
René Scharfe | cab4feb | 2008-09-04 23:39:21 +0200 | [diff] [blame] | 196 | { |
Junio C Hamano | 76c61fb | 2015-05-13 10:25:18 -0700 | [diff] [blame] | 197 | if (!decoration_loaded) { |
Rafael Ascensão | 65516f5 | 2017-11-21 21:33:41 +0000 | [diff] [blame] | 198 | if (filter) { |
| 199 | struct string_list_item *item; |
| 200 | for_each_string_list_item(item, filter->exclude_ref_pattern) { |
| 201 | normalize_glob_ref(item, NULL, item->string); |
| 202 | } |
| 203 | for_each_string_list_item(item, filter->include_ref_pattern) { |
| 204 | normalize_glob_ref(item, NULL, item->string); |
| 205 | } |
Derrick Stolee | a6be5e6 | 2020-04-16 14:15:49 +0000 | [diff] [blame] | 206 | for_each_string_list_item(item, filter->exclude_ref_config_pattern) { |
| 207 | normalize_glob_ref(item, NULL, item->string); |
| 208 | } |
Rafael Ascensão | 65516f5 | 2017-11-21 21:33:41 +0000 | [diff] [blame] | 209 | } |
Junio C Hamano | 76c61fb | 2015-05-13 10:25:18 -0700 | [diff] [blame] | 210 | decoration_loaded = 1; |
| 211 | decoration_flags = flags; |
Rafael Ascensão | 65516f5 | 2017-11-21 21:33:41 +0000 | [diff] [blame] | 212 | for_each_ref(add_ref_decoration, filter); |
| 213 | head_ref(add_ref_decoration, filter); |
| 214 | for_each_commit_graft(add_graft_decoration, filter); |
René Scharfe | cab4feb | 2008-09-04 23:39:21 +0200 | [diff] [blame] | 215 | } |
| 216 | } |
| 217 | |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 218 | static void show_parents(struct commit *commit, int abbrev, FILE *file) |
Linus Torvalds | c8c893c | 2006-05-03 07:59:00 -0700 | [diff] [blame] | 219 | { |
| 220 | struct commit_list *p; |
| 221 | for (p = commit->parents; p ; p = p->next) { |
| 222 | struct commit *parent = p->item; |
brian m. carlson | aab9583 | 2018-03-12 02:27:30 +0000 | [diff] [blame] | 223 | fprintf(file, " %s", find_unique_abbrev(&parent->object.oid, abbrev)); |
Linus Torvalds | c8c893c | 2006-05-03 07:59:00 -0700 | [diff] [blame] | 224 | } |
| 225 | } |
| 226 | |
Jay Soffian | 91b849b | 2011-10-04 10:02:03 -0400 | [diff] [blame] | 227 | static void show_children(struct rev_info *opt, struct commit *commit, int abbrev) |
| 228 | { |
| 229 | struct commit_list *p = lookup_decoration(&opt->children, &commit->object); |
| 230 | for ( ; p; p = p->next) { |
brian m. carlson | aab9583 | 2018-03-12 02:27:30 +0000 | [diff] [blame] | 231 | fprintf(opt->diffopt.file, " %s", find_unique_abbrev(&p->item->object.oid, abbrev)); |
Jay Soffian | 91b849b | 2011-10-04 10:02:03 -0400 | [diff] [blame] | 232 | } |
| 233 | } |
| 234 | |
Nguyễn Thái Ngọc Duy | 9d3f002 | 2013-04-19 09:08:43 +1000 | [diff] [blame] | 235 | /* |
Junio C Hamano | 51ff0f2 | 2015-03-10 14:53:21 +0100 | [diff] [blame] | 236 | * Do we have HEAD in the output, and also the branch it points at? |
| 237 | * If so, find that decoration entry for that current branch. |
| 238 | */ |
| 239 | static const struct name_decoration *current_pointed_by_HEAD(const struct name_decoration *decoration) |
| 240 | { |
| 241 | const struct name_decoration *list, *head = NULL; |
| 242 | const char *branch_name = NULL; |
Junio C Hamano | 51ff0f2 | 2015-03-10 14:53:21 +0100 | [diff] [blame] | 243 | int rru_flags; |
| 244 | |
| 245 | /* First find HEAD */ |
| 246 | for (list = decoration; list; list = list->next) |
| 247 | if (list->type == DECORATION_REF_HEAD) { |
| 248 | head = list; |
| 249 | break; |
| 250 | } |
| 251 | if (!head) |
| 252 | return NULL; |
| 253 | |
| 254 | /* Now resolve and find the matching current branch */ |
René Scharfe | 744c040 | 2017-09-23 11:45:04 +0200 | [diff] [blame] | 255 | branch_name = resolve_ref_unsafe("HEAD", 0, NULL, &rru_flags); |
Jeff King | d79be49 | 2017-10-19 13:49:01 -0400 | [diff] [blame] | 256 | if (!branch_name || !(rru_flags & REF_ISSYMREF)) |
Junio C Hamano | 51ff0f2 | 2015-03-10 14:53:21 +0100 | [diff] [blame] | 257 | return NULL; |
Junio C Hamano | 76c61fb | 2015-05-13 10:25:18 -0700 | [diff] [blame] | 258 | |
Junio C Hamano | 429ad20 | 2015-05-13 12:40:35 -0700 | [diff] [blame] | 259 | if (!starts_with(branch_name, "refs/")) |
Junio C Hamano | 51ff0f2 | 2015-03-10 14:53:21 +0100 | [diff] [blame] | 260 | return NULL; |
| 261 | |
| 262 | /* OK, do we have that ref in the list? */ |
| 263 | for (list = decoration; list; list = list->next) |
| 264 | if ((list->type == DECORATION_REF_LOCAL) && |
| 265 | !strcmp(branch_name, list->name)) { |
| 266 | return list; |
| 267 | } |
| 268 | |
| 269 | return NULL; |
| 270 | } |
| 271 | |
Junio C Hamano | 429ad20 | 2015-05-13 12:40:35 -0700 | [diff] [blame] | 272 | static void show_name(struct strbuf *sb, const struct name_decoration *decoration) |
| 273 | { |
| 274 | if (decoration_flags == DECORATE_SHORT_REFS) |
| 275 | strbuf_addstr(sb, prettify_refname(decoration->name)); |
| 276 | else |
| 277 | strbuf_addstr(sb, decoration->name); |
| 278 | } |
| 279 | |
Junio C Hamano | 51ff0f2 | 2015-03-10 14:53:21 +0100 | [diff] [blame] | 280 | /* |
Harry Jeffery | 9271095 | 2014-09-18 21:53:53 +0100 | [diff] [blame] | 281 | * The caller makes sure there is no funny color before calling. |
| 282 | * format_decorations_extended makes sure the same after return. |
Nguyễn Thái Ngọc Duy | 9d3f002 | 2013-04-19 09:08:43 +1000 | [diff] [blame] | 283 | */ |
Harry Jeffery | 9271095 | 2014-09-18 21:53:53 +0100 | [diff] [blame] | 284 | void format_decorations_extended(struct strbuf *sb, |
Nguyễn Thái Ngọc Duy | 9d3f002 | 2013-04-19 09:08:43 +1000 | [diff] [blame] | 285 | const struct commit *commit, |
Harry Jeffery | 9271095 | 2014-09-18 21:53:53 +0100 | [diff] [blame] | 286 | int use_color, |
| 287 | const char *prefix, |
| 288 | const char *separator, |
| 289 | const char *suffix) |
Linus Torvalds | ca135e7 | 2007-04-16 16:05:10 -0700 | [diff] [blame] | 290 | { |
Jeff King | 2608c24 | 2014-08-26 06:23:54 -0400 | [diff] [blame] | 291 | const struct name_decoration *decoration; |
Junio C Hamano | 51ff0f2 | 2015-03-10 14:53:21 +0100 | [diff] [blame] | 292 | const struct name_decoration *current_and_HEAD; |
Nazri Ramliy | 67a4b58 | 2010-06-19 09:37:35 +0800 | [diff] [blame] | 293 | const char *color_commit = |
Nguyễn Thái Ngọc Duy | 9d3f002 | 2013-04-19 09:08:43 +1000 | [diff] [blame] | 294 | diff_get_color(use_color, DIFF_COMMIT); |
Nazri Ramliy | 67a4b58 | 2010-06-19 09:37:35 +0800 | [diff] [blame] | 295 | const char *color_reset = |
Nguyễn Thái Ngọc Duy | 9d3f002 | 2013-04-19 09:08:43 +1000 | [diff] [blame] | 296 | decorate_get_color(use_color, DECORATION_NONE); |
Linus Torvalds | ca135e7 | 2007-04-16 16:05:10 -0700 | [diff] [blame] | 297 | |
Jeff King | 2608c24 | 2014-08-26 06:23:54 -0400 | [diff] [blame] | 298 | decoration = get_name_decoration(&commit->object); |
Linus Torvalds | ca135e7 | 2007-04-16 16:05:10 -0700 | [diff] [blame] | 299 | if (!decoration) |
| 300 | return; |
Junio C Hamano | 51ff0f2 | 2015-03-10 14:53:21 +0100 | [diff] [blame] | 301 | |
| 302 | current_and_HEAD = current_pointed_by_HEAD(decoration); |
Linus Torvalds | ca135e7 | 2007-04-16 16:05:10 -0700 | [diff] [blame] | 303 | while (decoration) { |
Junio C Hamano | 51ff0f2 | 2015-03-10 14:53:21 +0100 | [diff] [blame] | 304 | /* |
| 305 | * When both current and HEAD are there, only |
| 306 | * show HEAD->current where HEAD would have |
| 307 | * appeared, skipping the entry for current. |
| 308 | */ |
| 309 | if (decoration != current_and_HEAD) { |
| 310 | strbuf_addstr(sb, color_commit); |
| 311 | strbuf_addstr(sb, prefix); |
| 312 | strbuf_addstr(sb, color_reset); |
| 313 | strbuf_addstr(sb, decorate_get_color(use_color, decoration->type)); |
| 314 | if (decoration->type == DECORATION_REF_TAG) |
| 315 | strbuf_addstr(sb, "tag: "); |
| 316 | |
Junio C Hamano | 429ad20 | 2015-05-13 12:40:35 -0700 | [diff] [blame] | 317 | show_name(sb, decoration); |
Junio C Hamano | 51ff0f2 | 2015-03-10 14:53:21 +0100 | [diff] [blame] | 318 | |
| 319 | if (current_and_HEAD && |
| 320 | decoration->type == DECORATION_REF_HEAD) { |
Junio C Hamano | 51ff0f2 | 2015-03-10 14:53:21 +0100 | [diff] [blame] | 321 | strbuf_addstr(sb, " -> "); |
| 322 | strbuf_addstr(sb, color_reset); |
| 323 | strbuf_addstr(sb, decorate_get_color(use_color, current_and_HEAD->type)); |
Junio C Hamano | 429ad20 | 2015-05-13 12:40:35 -0700 | [diff] [blame] | 324 | show_name(sb, current_and_HEAD); |
Junio C Hamano | 51ff0f2 | 2015-03-10 14:53:21 +0100 | [diff] [blame] | 325 | } |
| 326 | strbuf_addstr(sb, color_reset); |
| 327 | |
| 328 | prefix = separator; |
| 329 | } |
Linus Torvalds | ca135e7 | 2007-04-16 16:05:10 -0700 | [diff] [blame] | 330 | decoration = decoration->next; |
| 331 | } |
Nguyễn Thái Ngọc Duy | 9d3f002 | 2013-04-19 09:08:43 +1000 | [diff] [blame] | 332 | strbuf_addstr(sb, color_commit); |
Harry Jeffery | 9271095 | 2014-09-18 21:53:53 +0100 | [diff] [blame] | 333 | strbuf_addstr(sb, suffix); |
Nguyễn Thái Ngọc Duy | 9d3f002 | 2013-04-19 09:08:43 +1000 | [diff] [blame] | 334 | strbuf_addstr(sb, color_reset); |
| 335 | } |
| 336 | |
| 337 | void show_decorations(struct rev_info *opt, struct commit *commit) |
| 338 | { |
| 339 | struct strbuf sb = STRBUF_INIT; |
| 340 | |
Nguyễn Thái Ngọc Duy | 87be252 | 2018-05-19 07:28:24 +0200 | [diff] [blame] | 341 | if (opt->sources) { |
| 342 | char **slot = revision_sources_peek(opt->sources, commit); |
| 343 | |
| 344 | if (slot && *slot) |
| 345 | fprintf(opt->diffopt.file, "\t%s", *slot); |
| 346 | } |
Nguyễn Thái Ngọc Duy | 9d3f002 | 2013-04-19 09:08:43 +1000 | [diff] [blame] | 347 | if (!opt->show_decorations) |
| 348 | return; |
| 349 | format_decorations(&sb, commit, opt->diffopt.use_color); |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 350 | fputs(sb.buf, opt->diffopt.file); |
Nguyễn Thái Ngọc Duy | 9d3f002 | 2013-04-19 09:08:43 +1000 | [diff] [blame] | 351 | strbuf_release(&sb); |
Linus Torvalds | ca135e7 | 2007-04-16 16:05:10 -0700 | [diff] [blame] | 352 | } |
| 353 | |
Johannes Schindelin | e00de24 | 2007-02-09 01:43:54 +0100 | [diff] [blame] | 354 | static unsigned int digits_in_number(unsigned int number) |
| 355 | { |
| 356 | unsigned int i = 10, result = 1; |
| 357 | while (i <= number) { |
| 358 | i *= 10; |
| 359 | result++; |
| 360 | } |
| 361 | return result; |
| 362 | } |
| 363 | |
Junio C Hamano | d28b5d4 | 2012-12-21 22:06:01 -0800 | [diff] [blame] | 364 | void fmt_output_subject(struct strbuf *filename, |
| 365 | const char *subject, |
Junio C Hamano | 021f2f4 | 2012-12-21 23:26:16 -0800 | [diff] [blame] | 366 | struct rev_info *info) |
Stephen Boyd | 6fa8e62 | 2009-03-22 19:14:04 -0700 | [diff] [blame] | 367 | { |
Junio C Hamano | 021f2f4 | 2012-12-21 23:26:16 -0800 | [diff] [blame] | 368 | const char *suffix = info->patch_suffix; |
| 369 | int nr = info->nr; |
Junio C Hamano | d28b5d4 | 2012-12-21 22:06:01 -0800 | [diff] [blame] | 370 | int start_len = filename->len; |
| 371 | int max_len = start_len + FORMAT_PATCH_NAME_MAX - (strlen(suffix) + 1); |
Stephen Boyd | 6fa8e62 | 2009-03-22 19:14:04 -0700 | [diff] [blame] | 372 | |
Junio C Hamano | 5fe10fe | 2012-12-22 00:21:23 -0800 | [diff] [blame] | 373 | if (0 < info->reroll_count) |
| 374 | strbuf_addf(filename, "v%d-", info->reroll_count); |
Junio C Hamano | d28b5d4 | 2012-12-21 22:06:01 -0800 | [diff] [blame] | 375 | strbuf_addf(filename, "%04d-%s", nr, subject); |
Christian Couder | b09b868 | 2009-03-27 01:13:01 +0100 | [diff] [blame] | 376 | |
Junio C Hamano | d28b5d4 | 2012-12-21 22:06:01 -0800 | [diff] [blame] | 377 | if (max_len < filename->len) |
| 378 | strbuf_setlen(filename, max_len); |
| 379 | strbuf_addstr(filename, suffix); |
| 380 | } |
Jeff King | a21c2f9 | 2012-05-21 19:10:32 -0400 | [diff] [blame] | 381 | |
Junio C Hamano | d28b5d4 | 2012-12-21 22:06:01 -0800 | [diff] [blame] | 382 | void fmt_output_commit(struct strbuf *filename, |
| 383 | struct commit *commit, |
| 384 | struct rev_info *info) |
| 385 | { |
| 386 | struct pretty_print_context ctx = {0}; |
| 387 | struct strbuf subject = STRBUF_INIT; |
| 388 | |
| 389 | format_commit_message(commit, "%f", &subject, &ctx); |
| 390 | fmt_output_subject(filename, subject.buf, info); |
| 391 | strbuf_release(&subject); |
Stephen Boyd | 6fa8e62 | 2009-03-22 19:14:04 -0700 | [diff] [blame] | 392 | } |
| 393 | |
René Scharfe | 8ffc8dc | 2017-03-01 12:36:38 +0100 | [diff] [blame] | 394 | void fmt_output_email_subject(struct strbuf *sb, struct rev_info *opt) |
| 395 | { |
| 396 | if (opt->total > 0) { |
| 397 | strbuf_addf(sb, "Subject: [%s%s%0*d/%d] ", |
| 398 | opt->subject_prefix, |
| 399 | *opt->subject_prefix ? " " : "", |
| 400 | digits_in_number(opt->total), |
| 401 | opt->nr, opt->total); |
| 402 | } else if (opt->total == 0 && opt->subject_prefix && *opt->subject_prefix) { |
| 403 | strbuf_addf(sb, "Subject: [%s] ", |
| 404 | opt->subject_prefix); |
| 405 | } else { |
| 406 | strbuf_addstr(sb, "Subject: "); |
| 407 | } |
| 408 | } |
| 409 | |
Stephen Boyd | 108dab2 | 2009-03-22 19:14:05 -0700 | [diff] [blame] | 410 | void log_write_email_headers(struct rev_info *opt, struct commit *commit, |
Junio C Hamano | 267123b | 2008-03-15 00:09:20 -0700 | [diff] [blame] | 411 | const char **extra_headers_p, |
brian m. carlson | 50cd54e | 2018-05-02 02:20:52 +0000 | [diff] [blame] | 412 | int *need_8bit_cte_p, |
| 413 | int maybe_multipart) |
Daniel Barkalow | b02bd65 | 2008-02-18 22:56:08 -0500 | [diff] [blame] | 414 | { |
Daniel Barkalow | b02bd65 | 2008-02-18 22:56:08 -0500 | [diff] [blame] | 415 | const char *extra_headers = opt->extra_headers; |
brian m. carlson | 3a30aa1 | 2015-12-15 01:52:04 +0000 | [diff] [blame] | 416 | const char *name = oid_to_hex(opt->zero_commit ? |
| 417 | &null_oid : &commit->object.oid); |
Junio C Hamano | 267123b | 2008-03-15 00:09:20 -0700 | [diff] [blame] | 418 | |
| 419 | *need_8bit_cte_p = 0; /* unknown */ |
Daniel Barkalow | b02bd65 | 2008-02-18 22:56:08 -0500 | [diff] [blame] | 420 | |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 421 | fprintf(opt->diffopt.file, "From %s Mon Sep 17 00:00:00 2001\n", name); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 422 | graph_show_oneline(opt->graph); |
| 423 | if (opt->message_id) { |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 424 | fprintf(opt->diffopt.file, "Message-Id: <%s>\n", opt->message_id); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 425 | graph_show_oneline(opt->graph); |
| 426 | } |
Thomas Rast | b079c50 | 2009-02-19 22:26:31 +0100 | [diff] [blame] | 427 | if (opt->ref_message_ids && opt->ref_message_ids->nr > 0) { |
| 428 | int i, n; |
| 429 | n = opt->ref_message_ids->nr; |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 430 | fprintf(opt->diffopt.file, "In-Reply-To: <%s>\n", opt->ref_message_ids->items[n-1].string); |
Thomas Rast | b079c50 | 2009-02-19 22:26:31 +0100 | [diff] [blame] | 431 | for (i = 0; i < n; i++) |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 432 | fprintf(opt->diffopt.file, "%s<%s>\n", (i > 0 ? "\t" : "References: "), |
Thomas Rast | b079c50 | 2009-02-19 22:26:31 +0100 | [diff] [blame] | 433 | opt->ref_message_ids->items[i].string); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 434 | graph_show_oneline(opt->graph); |
| 435 | } |
brian m. carlson | 50cd54e | 2018-05-02 02:20:52 +0000 | [diff] [blame] | 436 | if (opt->mime_boundary && maybe_multipart) { |
Jeff King | d50b69b | 2018-05-18 18:57:44 -0700 | [diff] [blame] | 437 | static struct strbuf subject_buffer = STRBUF_INIT; |
| 438 | static struct strbuf buffer = STRBUF_INIT; |
Stephen Boyd | 108dab2 | 2009-03-22 19:14:05 -0700 | [diff] [blame] | 439 | struct strbuf filename = STRBUF_INIT; |
Junio C Hamano | 267123b | 2008-03-15 00:09:20 -0700 | [diff] [blame] | 440 | *need_8bit_cte_p = -1; /* NEVER */ |
Jeff King | d50b69b | 2018-05-18 18:57:44 -0700 | [diff] [blame] | 441 | |
| 442 | strbuf_reset(&subject_buffer); |
| 443 | strbuf_reset(&buffer); |
| 444 | |
| 445 | strbuf_addf(&subject_buffer, |
Daniel Barkalow | b02bd65 | 2008-02-18 22:56:08 -0500 | [diff] [blame] | 446 | "%s" |
| 447 | "MIME-Version: 1.0\n" |
| 448 | "Content-Type: multipart/mixed;" |
| 449 | " boundary=\"%s%s\"\n" |
| 450 | "\n" |
| 451 | "This is a multi-part message in MIME " |
| 452 | "format.\n" |
| 453 | "--%s%s\n" |
| 454 | "Content-Type: text/plain; " |
| 455 | "charset=UTF-8; format=fixed\n" |
| 456 | "Content-Transfer-Encoding: 8bit\n\n", |
| 457 | extra_headers ? extra_headers : "", |
| 458 | mime_boundary_leader, opt->mime_boundary, |
| 459 | mime_boundary_leader, opt->mime_boundary); |
Jeff King | d50b69b | 2018-05-18 18:57:44 -0700 | [diff] [blame] | 460 | extra_headers = subject_buffer.buf; |
Daniel Barkalow | b02bd65 | 2008-02-18 22:56:08 -0500 | [diff] [blame] | 461 | |
Junio C Hamano | 38ec23a | 2012-12-21 21:39:37 -0800 | [diff] [blame] | 462 | if (opt->numbered_files) |
| 463 | strbuf_addf(&filename, "%d", opt->nr); |
| 464 | else |
Junio C Hamano | d28b5d4 | 2012-12-21 22:06:01 -0800 | [diff] [blame] | 465 | fmt_output_commit(&filename, commit, opt); |
Jeff King | d50b69b | 2018-05-18 18:57:44 -0700 | [diff] [blame] | 466 | strbuf_addf(&buffer, |
Kevin Ballard | 6b2fbaa | 2008-07-29 22:49:33 -0700 | [diff] [blame] | 467 | "\n--%s%s\n" |
Daniel Barkalow | b02bd65 | 2008-02-18 22:56:08 -0500 | [diff] [blame] | 468 | "Content-Type: text/x-patch;" |
Stephen Boyd | 108dab2 | 2009-03-22 19:14:05 -0700 | [diff] [blame] | 469 | " name=\"%s\"\n" |
Daniel Barkalow | b02bd65 | 2008-02-18 22:56:08 -0500 | [diff] [blame] | 470 | "Content-Transfer-Encoding: 8bit\n" |
| 471 | "Content-Disposition: %s;" |
Stephen Boyd | 108dab2 | 2009-03-22 19:14:05 -0700 | [diff] [blame] | 472 | " filename=\"%s\"\n\n", |
Daniel Barkalow | b02bd65 | 2008-02-18 22:56:08 -0500 | [diff] [blame] | 473 | mime_boundary_leader, opt->mime_boundary, |
Stephen Boyd | 108dab2 | 2009-03-22 19:14:05 -0700 | [diff] [blame] | 474 | filename.buf, |
Daniel Barkalow | b02bd65 | 2008-02-18 22:56:08 -0500 | [diff] [blame] | 475 | opt->no_inline ? "attachment" : "inline", |
Stephen Boyd | 108dab2 | 2009-03-22 19:14:05 -0700 | [diff] [blame] | 476 | filename.buf); |
Jeff King | d50b69b | 2018-05-18 18:57:44 -0700 | [diff] [blame] | 477 | opt->diffopt.stat_sep = buffer.buf; |
Stephen Boyd | 108dab2 | 2009-03-22 19:14:05 -0700 | [diff] [blame] | 478 | strbuf_release(&filename); |
Daniel Barkalow | b02bd65 | 2008-02-18 22:56:08 -0500 | [diff] [blame] | 479 | } |
Daniel Barkalow | b02bd65 | 2008-02-18 22:56:08 -0500 | [diff] [blame] | 480 | *extra_headers_p = extra_headers; |
| 481 | } |
| 482 | |
Junio C Hamano | c6b3ec4 | 2012-01-04 13:48:45 -0800 | [diff] [blame] | 483 | static void show_sig_lines(struct rev_info *opt, int status, const char *bol) |
| 484 | { |
| 485 | const char *color, *reset, *eol; |
| 486 | |
| 487 | color = diff_get_color_opt(&opt->diffopt, |
| 488 | status ? DIFF_WHITESPACE : DIFF_FRAGINFO); |
| 489 | reset = diff_get_color_opt(&opt->diffopt, DIFF_RESET); |
| 490 | while (*bol) { |
| 491 | eol = strchrnul(bol, '\n'); |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 492 | fprintf(opt->diffopt.file, "%s%.*s%s%s", color, (int)(eol - bol), bol, reset, |
Junio C Hamano | c6b3ec4 | 2012-01-04 13:48:45 -0800 | [diff] [blame] | 493 | *eol ? "\n" : ""); |
Zoltan Klinger | cf3983d | 2014-07-09 12:10:21 +1000 | [diff] [blame] | 494 | graph_show_oneline(opt->graph); |
Junio C Hamano | c6b3ec4 | 2012-01-04 13:48:45 -0800 | [diff] [blame] | 495 | bol = (*eol) ? (eol + 1) : eol; |
| 496 | } |
| 497 | } |
| 498 | |
Junio C Hamano | 0c37f1f | 2011-10-18 15:53:23 -0700 | [diff] [blame] | 499 | static void show_signature(struct rev_info *opt, struct commit *commit) |
| 500 | { |
| 501 | struct strbuf payload = STRBUF_INIT; |
| 502 | struct strbuf signature = STRBUF_INIT; |
Hans Jerry Illikainen | 6794898 | 2020-03-04 11:48:04 +0000 | [diff] [blame] | 503 | struct signature_check sigc = { 0 }; |
Junio C Hamano | 0c37f1f | 2011-10-18 15:53:23 -0700 | [diff] [blame] | 504 | int status; |
Junio C Hamano | 0c37f1f | 2011-10-18 15:53:23 -0700 | [diff] [blame] | 505 | |
Jeff King | 218aa3a | 2014-06-13 02:32:11 -0400 | [diff] [blame] | 506 | if (parse_signed_commit(commit, &payload, &signature) <= 0) |
Junio C Hamano | 0c37f1f | 2011-10-18 15:53:23 -0700 | [diff] [blame] | 507 | goto out; |
| 508 | |
Hans Jerry Illikainen | 6794898 | 2020-03-04 11:48:04 +0000 | [diff] [blame] | 509 | status = check_signature(payload.buf, payload.len, signature.buf, |
| 510 | signature.len, &sigc); |
| 511 | if (status && !sigc.gpg_output) |
| 512 | show_sig_lines(opt, status, "No signature\n"); |
| 513 | else |
| 514 | show_sig_lines(opt, status, sigc.gpg_output); |
| 515 | signature_check_clear(&sigc); |
Junio C Hamano | 0c37f1f | 2011-10-18 15:53:23 -0700 | [diff] [blame] | 516 | |
| 517 | out: |
Junio C Hamano | 0c37f1f | 2011-10-18 15:53:23 -0700 | [diff] [blame] | 518 | strbuf_release(&payload); |
| 519 | strbuf_release(&signature); |
| 520 | } |
| 521 | |
brian m. carlson | a92ea68 | 2017-05-06 22:10:18 +0000 | [diff] [blame] | 522 | static int which_parent(const struct object_id *oid, const struct commit *commit) |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 523 | { |
| 524 | int nth; |
| 525 | const struct commit_list *parent; |
| 526 | |
| 527 | for (nth = 0, parent = commit->parents; parent; parent = parent->next) { |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 528 | if (oideq(&parent->item->object.oid, oid)) |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 529 | return nth; |
| 530 | nth++; |
| 531 | } |
| 532 | return -1; |
| 533 | } |
| 534 | |
Junio C Hamano | d041ffa | 2012-01-04 16:23:12 -0800 | [diff] [blame] | 535 | static int is_common_merge(const struct commit *commit) |
| 536 | { |
| 537 | return (commit->parents |
| 538 | && commit->parents->next |
| 539 | && !commit->parents->next->next); |
| 540 | } |
| 541 | |
Johannes Schindelin | fef461e | 2018-04-25 11:54:04 +0200 | [diff] [blame] | 542 | static int show_one_mergetag(struct commit *commit, |
| 543 | struct commit_extra_header *extra, |
| 544 | void *data) |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 545 | { |
Christian Couder | 063da62 | 2014-07-07 08:35:37 +0200 | [diff] [blame] | 546 | struct rev_info *opt = (struct rev_info *)data; |
brian m. carlson | a92ea68 | 2017-05-06 22:10:18 +0000 | [diff] [blame] | 547 | struct object_id oid; |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 548 | struct tag *tag; |
| 549 | struct strbuf verify_message; |
Hans Jerry Illikainen | 6794898 | 2020-03-04 11:48:04 +0000 | [diff] [blame] | 550 | struct signature_check sigc = { 0 }; |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 551 | int status, nth; |
Hans Jerry Illikainen | 6794898 | 2020-03-04 11:48:04 +0000 | [diff] [blame] | 552 | size_t payload_size; |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 553 | |
Matheus Tavares | 2dcde20 | 2020-01-30 17:32:22 -0300 | [diff] [blame] | 554 | hash_object_file(the_hash_algo, extra->value, extra->len, |
| 555 | type_name(OBJ_TAG), &oid); |
Stefan Beller | ce71efb | 2018-06-28 18:22:03 -0700 | [diff] [blame] | 556 | tag = lookup_tag(the_repository, &oid); |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 557 | if (!tag) |
Johannes Schindelin | fef461e | 2018-04-25 11:54:04 +0200 | [diff] [blame] | 558 | return -1; /* error message already given */ |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 559 | |
| 560 | strbuf_init(&verify_message, 256); |
Stefan Beller | 0e740fe | 2018-06-28 18:22:04 -0700 | [diff] [blame] | 561 | if (parse_tag_buffer(the_repository, tag, extra->value, extra->len)) |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 562 | strbuf_addstr(&verify_message, "malformed mergetag\n"); |
Junio C Hamano | d041ffa | 2012-01-04 16:23:12 -0800 | [diff] [blame] | 563 | else if (is_common_merge(commit) && |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 564 | oideq(&tag->tagged->oid, |
| 565 | &commit->parents->next->item->object.oid)) |
Junio C Hamano | d041ffa | 2012-01-04 16:23:12 -0800 | [diff] [blame] | 566 | strbuf_addf(&verify_message, |
| 567 | "merged tag '%s'\n", tag->tag); |
brian m. carlson | a92ea68 | 2017-05-06 22:10:18 +0000 | [diff] [blame] | 568 | else if ((nth = which_parent(&tag->tagged->oid, commit)) < 0) |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 569 | strbuf_addf(&verify_message, "tag %s names a non-parent %s\n", |
Harald van Dijk | 237a281 | 2020-02-29 13:07:57 +0000 | [diff] [blame] | 570 | tag->tag, oid_to_hex(&tag->tagged->oid)); |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 571 | else |
| 572 | strbuf_addf(&verify_message, |
| 573 | "parent #%d, tagged '%s'\n", nth + 1, tag->tag); |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 574 | |
| 575 | payload_size = parse_signature(extra->value, extra->len); |
Michael J Gruber | 1315093 | 2013-02-14 17:04:43 +0100 | [diff] [blame] | 576 | status = -1; |
Michael J Gruber | 42c55ce | 2014-06-27 15:18:36 +0200 | [diff] [blame] | 577 | if (extra->len > payload_size) { |
| 578 | /* could have a good signature */ |
Hans Jerry Illikainen | 6794898 | 2020-03-04 11:48:04 +0000 | [diff] [blame] | 579 | status = check_signature(extra->value, payload_size, |
| 580 | extra->value + payload_size, |
| 581 | extra->len - payload_size, &sigc); |
| 582 | if (sigc.gpg_output) |
| 583 | strbuf_addstr(&verify_message, sigc.gpg_output); |
| 584 | else |
Michael J Gruber | 42c55ce | 2014-06-27 15:18:36 +0200 | [diff] [blame] | 585 | strbuf_addstr(&verify_message, "No signature\n"); |
Hans Jerry Illikainen | 6794898 | 2020-03-04 11:48:04 +0000 | [diff] [blame] | 586 | signature_check_clear(&sigc); |
Michael J Gruber | 42c55ce | 2014-06-27 15:18:36 +0200 | [diff] [blame] | 587 | /* otherwise we couldn't verify, which is shown as bad */ |
| 588 | } |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 589 | |
| 590 | show_sig_lines(opt, status, verify_message.buf); |
| 591 | strbuf_release(&verify_message); |
Johannes Schindelin | fef461e | 2018-04-25 11:54:04 +0200 | [diff] [blame] | 592 | return 0; |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 593 | } |
| 594 | |
Johannes Schindelin | fef461e | 2018-04-25 11:54:04 +0200 | [diff] [blame] | 595 | static int show_mergetag(struct rev_info *opt, struct commit *commit) |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 596 | { |
Johannes Schindelin | fef461e | 2018-04-25 11:54:04 +0200 | [diff] [blame] | 597 | return for_each_mergetag(show_one_mergetag, commit, opt); |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 598 | } |
| 599 | |
Eric Sunshine | 3fcc7a2 | 2018-07-22 05:57:08 -0400 | [diff] [blame] | 600 | static void next_commentary_block(struct rev_info *opt, struct strbuf *sb) |
| 601 | { |
| 602 | const char *x = opt->shown_dashes ? "\n" : "---\n"; |
| 603 | if (sb) |
| 604 | strbuf_addstr(sb, x); |
| 605 | else |
| 606 | fputs(x, opt->diffopt.file); |
| 607 | opt->shown_dashes = 1; |
| 608 | } |
| 609 | |
Adam Simpkins | 0286565 | 2008-04-29 01:32:59 -0700 | [diff] [blame] | 610 | void show_log(struct rev_info *opt) |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 611 | { |
Brandon Casey | f285a2d | 2008-10-09 14:12:12 -0500 | [diff] [blame] | 612 | struct strbuf msgbuf = STRBUF_INIT; |
Timo Hirvonen | 39bc9a6 | 2006-06-25 13:54:14 +0300 | [diff] [blame] | 613 | struct log_info *log = opt->loginfo; |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 614 | struct commit *commit = log->commit, *parent = log->parent; |
brian m. carlson | 2ed1960 | 2018-07-16 01:28:06 +0000 | [diff] [blame] | 615 | int abbrev_commit = opt->abbrev_commit ? opt->abbrev : the_hash_algo->hexsz; |
Thomas Rast | dd2e794 | 2009-10-19 17:48:08 +0200 | [diff] [blame] | 616 | const char *extra_headers = opt->extra_headers; |
| 617 | struct pretty_print_context ctx = {0}; |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 618 | |
| 619 | opt->loginfo = NULL; |
| 620 | if (!opt->verbose_header) { |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 621 | graph_show_commit(opt->graph); |
| 622 | |
Michael J Gruber | 1df2d65 | 2011-03-07 13:31:39 +0100 | [diff] [blame] | 623 | if (!opt->graph) |
Michael J Gruber | b1b4755 | 2011-03-10 15:45:03 +0100 | [diff] [blame] | 624 | put_revision_mark(opt, commit); |
brian m. carlson | aab9583 | 2018-03-12 02:27:30 +0000 | [diff] [blame] | 625 | fputs(find_unique_abbrev(&commit->object.oid, abbrev_commit), opt->diffopt.file); |
Adam Simpkins | 885cf80 | 2008-05-04 03:36:52 -0700 | [diff] [blame] | 626 | if (opt->print_parents) |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 627 | show_parents(commit, abbrev_commit, opt->diffopt.file); |
Jay Soffian | 91b849b | 2011-10-04 10:02:03 -0400 | [diff] [blame] | 628 | if (opt->children.name) |
| 629 | show_children(opt, commit, abbrev_commit); |
Linus Torvalds | 0f3a290 | 2008-10-27 12:51:59 -0700 | [diff] [blame] | 630 | show_decorations(opt, commit); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 631 | if (opt->graph && !graph_is_commit_finished(opt->graph)) { |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 632 | putc('\n', opt->diffopt.file); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 633 | graph_show_remainder(opt->graph); |
| 634 | } |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 635 | putc(opt->diffopt.line_termination, opt->diffopt.file); |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 636 | return; |
| 637 | } |
| 638 | |
| 639 | /* |
Jeff King | 8715227 | 2009-07-01 03:26:28 -0400 | [diff] [blame] | 640 | * If use_terminator is set, we already handled any record termination |
| 641 | * at the end of the last record. |
Adam Simpkins | 0286565 | 2008-04-29 01:32:59 -0700 | [diff] [blame] | 642 | * Otherwise, add a diffopt.line_termination character before all |
| 643 | * entries but the first. (IOW, as a separator between entries) |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 644 | */ |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 645 | if (opt->shown_one && !opt->use_terminator) { |
| 646 | /* |
| 647 | * If entries are separated by a newline, the output |
| 648 | * should look human-readable. If the last entry ended |
| 649 | * with a newline, print the graph output before this |
| 650 | * newline. Otherwise it will end up as a completely blank |
| 651 | * line and will look like a gap in the graph. |
| 652 | * |
| 653 | * If the entry separator is not a newline, the output is |
| 654 | * primarily intended for programmatic consumption, and we |
| 655 | * never want the extra graph output before the entry |
| 656 | * separator. |
| 657 | */ |
| 658 | if (opt->diffopt.line_termination == '\n' && |
| 659 | !opt->missing_newline) |
| 660 | graph_show_padding(opt->graph); |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 661 | putc(opt->diffopt.line_termination, opt->diffopt.file); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 662 | } |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 663 | opt->shown_one = 1; |
| 664 | |
| 665 | /* |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 666 | * If the history graph was requested, |
| 667 | * print the graph, up to this commit's line |
| 668 | */ |
| 669 | graph_show_commit(opt->graph); |
| 670 | |
| 671 | /* |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 672 | * Print header line of header.. |
| 673 | */ |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 674 | |
Eric Wong | 9f23e04 | 2016-06-05 04:46:39 +0000 | [diff] [blame] | 675 | if (cmit_fmt_is_mail(opt->commit_format)) { |
René Scharfe | 6d167fd | 2017-03-01 12:37:07 +0100 | [diff] [blame] | 676 | log_write_email_headers(opt, commit, &extra_headers, |
brian m. carlson | 50cd54e | 2018-05-02 02:20:52 +0000 | [diff] [blame] | 677 | &ctx.need_8bit_cte, 1); |
René Scharfe | 6d167fd | 2017-03-01 12:37:07 +0100 | [diff] [blame] | 678 | ctx.rev = opt; |
| 679 | ctx.print_email_subject = 1; |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 680 | } else if (opt->commit_format != CMIT_FMT_USERFORMAT) { |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 681 | fputs(diff_get_color_opt(&opt->diffopt, DIFF_COMMIT), opt->diffopt.file); |
Junio C Hamano | 74bd902 | 2006-12-16 15:31:25 -0800 | [diff] [blame] | 682 | if (opt->commit_format != CMIT_FMT_ONELINE) |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 683 | fputs("commit ", opt->diffopt.file); |
Adam Simpkins | 7528f27 | 2008-05-25 00:07:21 -0700 | [diff] [blame] | 684 | |
Michael J Gruber | 1df2d65 | 2011-03-07 13:31:39 +0100 | [diff] [blame] | 685 | if (!opt->graph) |
Michael J Gruber | b1b4755 | 2011-03-10 15:45:03 +0100 | [diff] [blame] | 686 | put_revision_mark(opt, commit); |
brian m. carlson | aab9583 | 2018-03-12 02:27:30 +0000 | [diff] [blame] | 687 | fputs(find_unique_abbrev(&commit->object.oid, |
| 688 | abbrev_commit), |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 689 | opt->diffopt.file); |
Adam Simpkins | 885cf80 | 2008-05-04 03:36:52 -0700 | [diff] [blame] | 690 | if (opt->print_parents) |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 691 | show_parents(commit, abbrev_commit, opt->diffopt.file); |
Jay Soffian | 91b849b | 2011-10-04 10:02:03 -0400 | [diff] [blame] | 692 | if (opt->children.name) |
| 693 | show_children(opt, commit, abbrev_commit); |
Junio C Hamano | 73f0a15 | 2006-05-24 12:19:47 -0700 | [diff] [blame] | 694 | if (parent) |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 695 | fprintf(opt->diffopt.file, " (from %s)", |
brian m. carlson | aab9583 | 2018-03-12 02:27:30 +0000 | [diff] [blame] | 696 | find_unique_abbrev(&parent->object.oid, abbrev_commit)); |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 697 | fputs(diff_get_color_opt(&opt->diffopt, DIFF_RESET), opt->diffopt.file); |
Linus Torvalds | 0f3a290 | 2008-10-27 12:51:59 -0700 | [diff] [blame] | 698 | show_decorations(opt, commit); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 699 | if (opt->commit_format == CMIT_FMT_ONELINE) { |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 700 | putc(' ', opt->diffopt.file); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 701 | } else { |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 702 | putc('\n', opt->diffopt.file); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 703 | graph_show_oneline(opt->graph); |
| 704 | } |
Nicolas Pitre | 903b45f | 2007-01-27 22:40:36 -0500 | [diff] [blame] | 705 | if (opt->reflog_info) { |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 706 | /* |
| 707 | * setup_revisions() ensures that opt->reflog_info |
| 708 | * and opt->graph cannot both be set, |
| 709 | * so we don't need to worry about printing the |
| 710 | * graph info here. |
| 711 | */ |
Junio C Hamano | 4d12a47 | 2007-01-20 00:51:41 -0800 | [diff] [blame] | 712 | show_reflog_message(opt->reflog_info, |
Junio C Hamano | 55ccf85 | 2012-05-07 14:11:32 -0700 | [diff] [blame] | 713 | opt->commit_format == CMIT_FMT_ONELINE, |
Jeff King | a5481a6 | 2015-06-25 12:55:02 -0400 | [diff] [blame] | 714 | &opt->date_mode, |
Junio C Hamano | 55ccf85 | 2012-05-07 14:11:32 -0700 | [diff] [blame] | 715 | opt->date_mode_explicit); |
Adam Simpkins | 0286565 | 2008-04-29 01:32:59 -0700 | [diff] [blame] | 716 | if (opt->commit_format == CMIT_FMT_ONELINE) |
Nicolas Pitre | 903b45f | 2007-01-27 22:40:36 -0500 | [diff] [blame] | 717 | return; |
Nicolas Pitre | 903b45f | 2007-01-27 22:40:36 -0500 | [diff] [blame] | 718 | } |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 719 | } |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 720 | |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 721 | if (opt->show_signature) { |
Junio C Hamano | 0c37f1f | 2011-10-18 15:53:23 -0700 | [diff] [blame] | 722 | show_signature(opt, commit); |
Junio C Hamano | 824958e | 2012-01-04 13:51:28 -0800 | [diff] [blame] | 723 | show_mergetag(opt, commit); |
| 724 | } |
Junio C Hamano | 0c37f1f | 2011-10-18 15:53:23 -0700 | [diff] [blame] | 725 | |
Junio C Hamano | ddf333f | 2012-10-17 18:51:47 -0700 | [diff] [blame] | 726 | if (opt->show_notes) { |
| 727 | int raw; |
| 728 | struct strbuf notebuf = STRBUF_INIT; |
| 729 | |
| 730 | raw = (opt->commit_format == CMIT_FMT_USERFORMAT); |
brian m. carlson | fb61e4d | 2017-05-30 10:30:41 -0700 | [diff] [blame] | 731 | format_display_notes(&commit->object.oid, ¬ebuf, |
Junio C Hamano | ddf333f | 2012-10-17 18:51:47 -0700 | [diff] [blame] | 732 | get_log_output_encoding(), raw); |
René Scharfe | 82f51af | 2019-08-25 14:53:26 +0200 | [diff] [blame] | 733 | ctx.notes_message = strbuf_detach(¬ebuf, NULL); |
Junio C Hamano | ddf333f | 2012-10-17 18:51:47 -0700 | [diff] [blame] | 734 | } |
| 735 | |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 736 | /* |
| 737 | * And then the pretty-printed message itself |
| 738 | */ |
Nguyễn Thái Ngọc Duy | 5289c56 | 2013-02-12 02:17:38 -0800 | [diff] [blame] | 739 | if (ctx.need_8bit_cte >= 0 && opt->add_signoff) |
| 740 | ctx.need_8bit_cte = |
William Hubbs | 39ab4d0 | 2019-02-04 12:48:50 -0600 | [diff] [blame] | 741 | has_non_ascii(fmt_name(WANT_COMMITTER_IDENT)); |
Thomas Rast | dd2e794 | 2009-10-19 17:48:08 +0200 | [diff] [blame] | 742 | ctx.date_mode = opt->date_mode; |
Jeff King | f026c75 | 2012-05-04 01:25:18 -0400 | [diff] [blame] | 743 | ctx.date_mode_explicit = opt->date_mode_explicit; |
Thomas Rast | dd2e794 | 2009-10-19 17:48:08 +0200 | [diff] [blame] | 744 | ctx.abbrev = opt->diffopt.abbrev; |
| 745 | ctx.after_subject = extra_headers; |
Jeff King | 9553d2b | 2011-05-26 18:28:17 -0400 | [diff] [blame] | 746 | ctx.preserve_subject = opt->preserve_subject; |
Emma Brooks | 19d097e | 2020-04-08 04:31:38 +0000 | [diff] [blame] | 747 | ctx.encode_email_headers = opt->encode_email_headers; |
Thomas Rast | 8f8f547 | 2009-10-19 17:48:10 +0200 | [diff] [blame] | 748 | ctx.reflog_info = opt->reflog_info; |
Jeff King | 6bf1394 | 2011-05-26 18:27:49 -0400 | [diff] [blame] | 749 | ctx.fmt = opt->commit_format; |
Antoine Pelisse | 0e2913b | 2013-01-05 22:26:41 +0100 | [diff] [blame] | 750 | ctx.mailmap = opt->mailmap; |
Junio C Hamano | 3082517 | 2012-12-17 17:56:49 -0500 | [diff] [blame] | 751 | ctx.color = opt->diffopt.use_color; |
Linus Torvalds | 7cc13c7 | 2016-03-16 09:15:53 -0700 | [diff] [blame] | 752 | ctx.expand_tabs_in_log = opt->expand_tabs_in_log; |
Alexey Shumkin | ecaee80 | 2013-06-26 14:19:50 +0400 | [diff] [blame] | 753 | ctx.output_encoding = get_log_output_encoding(); |
Issac Trotts | ad6f028 | 2019-01-10 22:30:46 -0800 | [diff] [blame] | 754 | ctx.rev = opt; |
Jeff King | a908047 | 2013-07-03 03:08:22 -0400 | [diff] [blame] | 755 | if (opt->from_ident.mail_begin && opt->from_ident.name_begin) |
| 756 | ctx.from_ident = &opt->from_ident; |
Josef Kufner | 3ad87c8 | 2016-06-16 20:18:37 +0700 | [diff] [blame] | 757 | if (opt->graph) |
| 758 | ctx.graph_width = graph_width(opt->graph); |
Jeff King | 6bf1394 | 2011-05-26 18:27:49 -0400 | [diff] [blame] | 759 | pretty_print_commit(&ctx, commit, &msgbuf); |
Junio C Hamano | 212620f | 2012-10-17 20:48:25 -0700 | [diff] [blame] | 760 | |
| 761 | if (opt->add_signoff) |
Nguyễn Thái Ngọc Duy | 5289c56 | 2013-02-12 02:17:38 -0800 | [diff] [blame] | 762 | append_signoff(&msgbuf, 0, APPEND_SIGNOFF_DEDUP); |
Junio C Hamano | 212620f | 2012-10-17 20:48:25 -0700 | [diff] [blame] | 763 | |
Junio C Hamano | 5a664cf | 2012-10-17 19:02:46 -0700 | [diff] [blame] | 764 | if ((ctx.fmt != CMIT_FMT_USERFORMAT) && |
Junio C Hamano | bd1470b | 2012-10-17 21:27:22 -0700 | [diff] [blame] | 765 | ctx.notes_message && *ctx.notes_message) { |
Eric Sunshine | 3fcc7a2 | 2018-07-22 05:57:08 -0400 | [diff] [blame] | 766 | if (cmit_fmt_is_mail(ctx.fmt)) |
| 767 | next_commentary_block(opt, &msgbuf); |
Junio C Hamano | 5a664cf | 2012-10-17 19:02:46 -0700 | [diff] [blame] | 768 | strbuf_addstr(&msgbuf, ctx.notes_message); |
Junio C Hamano | bd1470b | 2012-10-17 21:27:22 -0700 | [diff] [blame] | 769 | } |
Junio C Hamano | cf2251b | 2006-05-31 15:11:49 -0700 | [diff] [blame] | 770 | |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 771 | if (opt->show_log_size) { |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 772 | fprintf(opt->diffopt.file, "log size %i\n", (int)msgbuf.len); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 773 | graph_show_oneline(opt->graph); |
| 774 | } |
Marco Costalba | 9fa3465 | 2007-07-20 20:15:13 +0200 | [diff] [blame] | 775 | |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 776 | /* |
| 777 | * Set opt->missing_newline if msgbuf doesn't |
| 778 | * end in a newline (including if it is empty) |
| 779 | */ |
| 780 | if (!msgbuf.len || msgbuf.buf[msgbuf.len - 1] != '\n') |
| 781 | opt->missing_newline = 1; |
| 782 | else |
| 783 | opt->missing_newline = 0; |
| 784 | |
Jacob Keller | 660e113 | 2016-08-31 16:27:20 -0700 | [diff] [blame] | 785 | graph_show_commit_msg(opt->graph, opt->diffopt.file, &msgbuf); |
Jeff King | b9c7d6e | 2014-07-29 13:56:48 -0400 | [diff] [blame] | 786 | if (opt->use_terminator && !commit_format_is_empty(opt->commit_format)) { |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 787 | if (!opt->missing_newline) |
| 788 | graph_show_padding(opt->graph); |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 789 | putc(opt->diffopt.line_termination, opt->diffopt.file); |
Adam Simpkins | 7fefda5 | 2008-05-04 03:36:54 -0700 | [diff] [blame] | 790 | } |
| 791 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 792 | strbuf_release(&msgbuf); |
Junio C Hamano | ddf333f | 2012-10-17 18:51:47 -0700 | [diff] [blame] | 793 | free(ctx.notes_message); |
Eric Sunshine | ee6cbf7 | 2018-07-22 05:57:09 -0400 | [diff] [blame] | 794 | |
| 795 | if (cmit_fmt_is_mail(ctx.fmt) && opt->idiff_oid1) { |
| 796 | struct diff_queue_struct dq; |
| 797 | |
| 798 | memcpy(&dq, &diff_queued_diff, sizeof(diff_queued_diff)); |
| 799 | DIFF_QUEUE_CLEAR(&diff_queued_diff); |
| 800 | |
| 801 | next_commentary_block(opt, NULL); |
| 802 | fprintf_ln(opt->diffopt.file, "%s", opt->idiff_title); |
| 803 | show_interdiff(opt, 2); |
| 804 | |
| 805 | memcpy(&diff_queued_diff, &dq, sizeof(diff_queued_diff)); |
| 806 | } |
Eric Sunshine | 40ce416 | 2018-07-22 05:57:17 -0400 | [diff] [blame] | 807 | |
| 808 | if (cmit_fmt_is_mail(ctx.fmt) && opt->rdiff1) { |
| 809 | struct diff_queue_struct dq; |
Martin Ågren | ac0edf1 | 2018-12-03 16:21:31 -0500 | [diff] [blame] | 810 | struct diff_options opts; |
Eric Sunshine | 40ce416 | 2018-07-22 05:57:17 -0400 | [diff] [blame] | 811 | |
| 812 | memcpy(&dq, &diff_queued_diff, sizeof(diff_queued_diff)); |
| 813 | DIFF_QUEUE_CLEAR(&diff_queued_diff); |
| 814 | |
| 815 | next_commentary_block(opt, NULL); |
| 816 | fprintf_ln(opt->diffopt.file, "%s", opt->rdiff_title); |
Martin Ågren | ac0edf1 | 2018-12-03 16:21:31 -0500 | [diff] [blame] | 817 | /* |
| 818 | * Pass minimum required diff-options to range-diff; others |
| 819 | * can be added later if deemed desirable. |
| 820 | */ |
| 821 | diff_setup(&opts); |
| 822 | opts.file = opt->diffopt.file; |
| 823 | opts.use_color = opt->diffopt.use_color; |
| 824 | diff_setup_done(&opts); |
Eric Sunshine | 40ce416 | 2018-07-22 05:57:17 -0400 | [diff] [blame] | 825 | show_range_diff(opt->rdiff1, opt->rdiff2, |
Denton Liu | bd36191 | 2019-11-20 13:18:45 -0800 | [diff] [blame] | 826 | opt->creation_factor, 1, &opts, NULL); |
Eric Sunshine | 40ce416 | 2018-07-22 05:57:17 -0400 | [diff] [blame] | 827 | |
| 828 | memcpy(&diff_queued_diff, &dq, sizeof(diff_queued_diff)); |
| 829 | } |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 830 | } |
| 831 | |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 832 | int log_tree_diff_flush(struct rev_info *opt) |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 833 | { |
Junio C Hamano | bd1470b | 2012-10-17 21:27:22 -0700 | [diff] [blame] | 834 | opt->shown_dashes = 0; |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 835 | diffcore_std(&opt->diffopt); |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 836 | |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 837 | if (diff_queue_is_empty()) { |
| 838 | int saved_fmt = opt->diffopt.output_format; |
| 839 | opt->diffopt.output_format = DIFF_FORMAT_NO_OUTPUT; |
| 840 | diff_flush(&opt->diffopt); |
| 841 | opt->diffopt.output_format = saved_fmt; |
| 842 | return 0; |
| 843 | } |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 844 | |
Junio C Hamano | 3969cf7 | 2006-06-27 15:08:19 -0700 | [diff] [blame] | 845 | if (opt->loginfo && !opt->no_commit_id) { |
Adam Simpkins | 0286565 | 2008-04-29 01:32:59 -0700 | [diff] [blame] | 846 | show_log(opt); |
Linus Torvalds | 304b5af | 2007-10-09 09:35:22 -0700 | [diff] [blame] | 847 | if ((opt->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT) && |
| 848 | opt->verbose_header && |
Jeff King | b9c7d6e | 2014-07-29 13:56:48 -0400 | [diff] [blame] | 849 | opt->commit_format != CMIT_FMT_ONELINE && |
| 850 | !commit_format_is_empty(opt->commit_format)) { |
Junio C Hamano | 1d34c50 | 2012-11-13 10:09:07 -0800 | [diff] [blame] | 851 | /* |
| 852 | * When showing a verbose header (i.e. log message), |
| 853 | * and not in --pretty=oneline format, we would want |
| 854 | * an extra newline between the end of log and the |
| 855 | * diff/diffstat output for readability. |
| 856 | */ |
Junio C Hamano | 3969cf7 | 2006-06-27 15:08:19 -0700 | [diff] [blame] | 857 | int pch = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_PATCH; |
Bo Yang | 81bd1b2 | 2010-05-26 15:08:03 +0800 | [diff] [blame] | 858 | if (opt->diffopt.output_prefix) { |
| 859 | struct strbuf *msg = NULL; |
| 860 | msg = opt->diffopt.output_prefix(&opt->diffopt, |
| 861 | opt->diffopt.output_prefix_data); |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 862 | fwrite(msg->buf, msg->len, 1, opt->diffopt.file); |
Bo Yang | 81bd1b2 | 2010-05-26 15:08:03 +0800 | [diff] [blame] | 863 | } |
Junio C Hamano | 1d34c50 | 2012-11-13 10:09:07 -0800 | [diff] [blame] | 864 | |
| 865 | /* |
| 866 | * We may have shown three-dashes line early |
Eric Sunshine | 3fcc7a2 | 2018-07-22 05:57:08 -0400 | [diff] [blame] | 867 | * between generated commentary (notes, etc.) |
| 868 | * and the log message, in which case we only |
| 869 | * want a blank line after the commentary |
| 870 | * without (an extra) three-dashes line. |
Junio C Hamano | 1d34c50 | 2012-11-13 10:09:07 -0800 | [diff] [blame] | 871 | * Otherwise, we show the three-dashes line if |
| 872 | * we are showing the patch with diffstat, but |
| 873 | * in that case, there is no extra blank line |
| 874 | * after the three-dashes line. |
| 875 | */ |
| 876 | if (!opt->shown_dashes && |
| 877 | (pch & opt->diffopt.output_format) == pch) |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 878 | fprintf(opt->diffopt.file, "---"); |
| 879 | putc('\n', opt->diffopt.file); |
Junio C Hamano | 3969cf7 | 2006-06-27 15:08:19 -0700 | [diff] [blame] | 880 | } |
| 881 | } |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 882 | diff_flush(&opt->diffopt); |
| 883 | return 1; |
| 884 | } |
| 885 | |
Linus Torvalds | cd2bdc5 | 2006-04-14 16:52:13 -0700 | [diff] [blame] | 886 | static int do_diff_combined(struct rev_info *opt, struct commit *commit) |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 887 | { |
René Scharfe | 8288929 | 2011-12-17 11:20:07 +0100 | [diff] [blame] | 888 | diff_tree_combined_merge(commit, opt->dense_combined_merges, opt); |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 889 | return !opt->loginfo; |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 890 | } |
| 891 | |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 892 | /* |
| 893 | * Show the diff of a commit. |
| 894 | * |
| 895 | * Return true if we printed any log info messages |
| 896 | */ |
| 897 | static int log_tree_diff(struct rev_info *opt, struct commit *commit, struct log_info *log) |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 898 | { |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 899 | int showed_log; |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 900 | struct commit_list *parents; |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 901 | struct object_id *oid; |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 902 | |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 903 | if (!opt->diff && !opt->diffopt.flags.exit_with_status) |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 904 | return 0; |
| 905 | |
Jeff King | 7059dcc | 2013-10-24 04:52:36 -0400 | [diff] [blame] | 906 | parse_commit_or_die(commit); |
Derrick Stolee | 2e27bd7 | 2018-04-06 19:09:38 +0000 | [diff] [blame] | 907 | oid = get_commit_tree_oid(commit); |
Thomas Rast | d1b9b76 | 2013-03-28 09:19:34 +0100 | [diff] [blame] | 908 | |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 909 | /* Root commit? */ |
Thomas Rast | 53d00b3 | 2013-07-31 22:13:20 +0200 | [diff] [blame] | 910 | parents = get_saved_parents(opt, commit); |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 911 | if (!parents) { |
Rene Scharfe | 2b60356 | 2006-10-26 18:52:39 +0200 | [diff] [blame] | 912 | if (opt->show_root_diff) { |
Brandon Williams | 7b8dea0 | 2017-05-30 10:30:57 -0700 | [diff] [blame] | 913 | diff_root_tree_oid(oid, "", &opt->diffopt); |
Rene Scharfe | 2b60356 | 2006-10-26 18:52:39 +0200 | [diff] [blame] | 914 | log_tree_diff_flush(opt); |
| 915 | } |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 916 | return !opt->loginfo; |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 917 | } |
| 918 | |
| 919 | /* More than one parent? */ |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 920 | if (parents && parents->next) { |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 921 | if (opt->ignore_merges) |
| 922 | return 0; |
| 923 | else if (opt->combine_merges) |
| 924 | return do_diff_combined(opt, commit); |
Petr Baudis | 88d9d45 | 2010-02-10 02:11:49 +0100 | [diff] [blame] | 925 | else if (opt->first_parent_only) { |
| 926 | /* |
| 927 | * Generate merge log entry only for the first |
| 928 | * parent, showing summary diff of the others |
| 929 | * we merged _in_. |
| 930 | */ |
Jeff King | 7059dcc | 2013-10-24 04:52:36 -0400 | [diff] [blame] | 931 | parse_commit_or_die(parents->item); |
Derrick Stolee | 2e27bd7 | 2018-04-06 19:09:38 +0000 | [diff] [blame] | 932 | diff_tree_oid(get_commit_tree_oid(parents->item), |
Brandon Williams | 66f414f | 2017-05-30 10:31:03 -0700 | [diff] [blame] | 933 | oid, "", &opt->diffopt); |
Petr Baudis | 88d9d45 | 2010-02-10 02:11:49 +0100 | [diff] [blame] | 934 | log_tree_diff_flush(opt); |
| 935 | return !opt->loginfo; |
| 936 | } |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 937 | |
| 938 | /* If we show individual diffs, show the parent info */ |
| 939 | log->parent = parents->item; |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 940 | } |
| 941 | |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 942 | showed_log = 0; |
| 943 | for (;;) { |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 944 | struct commit *parent = parents->item; |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 945 | |
Jeff King | 7059dcc | 2013-10-24 04:52:36 -0400 | [diff] [blame] | 946 | parse_commit_or_die(parent); |
Derrick Stolee | 2e27bd7 | 2018-04-06 19:09:38 +0000 | [diff] [blame] | 947 | diff_tree_oid(get_commit_tree_oid(parent), |
Brandon Williams | 66f414f | 2017-05-30 10:31:03 -0700 | [diff] [blame] | 948 | oid, "", &opt->diffopt); |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 949 | log_tree_diff_flush(opt); |
| 950 | |
| 951 | showed_log |= !opt->loginfo; |
| 952 | |
| 953 | /* Set up the log info for the next parent, if any.. */ |
| 954 | parents = parents->next; |
| 955 | if (!parents) |
| 956 | break; |
| 957 | log->parent = parents->item; |
| 958 | opt->loginfo = log; |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 959 | } |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 960 | return showed_log; |
| 961 | } |
| 962 | |
| 963 | int log_tree_commit(struct rev_info *opt, struct commit *commit) |
| 964 | { |
| 965 | struct log_info log; |
Johannes Schindelin | 6ea5770 | 2016-06-22 17:01:28 +0200 | [diff] [blame] | 966 | int shown, close_file = opt->diffopt.close_file; |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 967 | |
| 968 | log.commit = commit; |
| 969 | log.parent = NULL; |
| 970 | opt->loginfo = &log; |
Johannes Schindelin | 6ea5770 | 2016-06-22 17:01:28 +0200 | [diff] [blame] | 971 | opt->diffopt.close_file = 0; |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 972 | |
Thomas Rast | 12da1d1 | 2013-03-28 17:47:32 +0100 | [diff] [blame] | 973 | if (opt->line_level_traverse) |
| 974 | return line_log_print(opt, commit); |
| 975 | |
Nguyễn Thái Ngọc Duy | 1b32dec | 2014-03-25 20:23:27 +0700 | [diff] [blame] | 976 | if (opt->track_linear && !opt->linear && !opt->reverse_output_stage) |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 977 | fprintf(opt->diffopt.file, "\n%s\n", opt->break_bar); |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 978 | shown = log_tree_diff(opt, commit, &log); |
| 979 | if (!shown && opt->loginfo && opt->always_show_header) { |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 980 | log.parent = NULL; |
Adam Simpkins | 0286565 | 2008-04-29 01:32:59 -0700 | [diff] [blame] | 981 | show_log(opt); |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 982 | shown = 1; |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 983 | } |
Nguyễn Thái Ngọc Duy | 1b32dec | 2014-03-25 20:23:27 +0700 | [diff] [blame] | 984 | if (opt->track_linear && !opt->linear && opt->reverse_output_stage) |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 985 | fprintf(opt->diffopt.file, "\n%s\n", opt->break_bar); |
Linus Torvalds | 9153983 | 2006-04-17 11:59:32 -0700 | [diff] [blame] | 986 | opt->loginfo = NULL; |
Johannes Schindelin | 4d7b0ef | 2016-06-22 17:01:32 +0200 | [diff] [blame] | 987 | maybe_flush_or_die(opt->diffopt.file, "stdout"); |
Johannes Schindelin | 6ea5770 | 2016-06-22 17:01:28 +0200 | [diff] [blame] | 988 | if (close_file) |
| 989 | fclose(opt->diffopt.file); |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 990 | return shown; |
Junio C Hamano | 5f1c3f0 | 2006-04-09 01:11:11 -0700 | [diff] [blame] | 991 | } |