Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 1 | #include "cache.h" |
Johannes Schindelin | c455c87 | 2008-07-21 19:03:49 +0100 | [diff] [blame] | 2 | #include "string-list.h" |
Alex Riesen | fe5d30b | 2007-05-01 00:31:52 +0200 | [diff] [blame] | 3 | #include "mailmap.h" |
Stefan Beller | cbd53a2 | 2018-05-15 16:42:15 -0700 | [diff] [blame] | 4 | #include "object-store.h" |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 5 | |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 6 | #define DEBUG_MAILMAP 0 |
| 7 | #if DEBUG_MAILMAP |
| 8 | #define debug_mm(...) fprintf(stderr, __VA_ARGS__) |
Eric Sunshine | fbfba7a | 2013-07-15 02:54:12 -0400 | [diff] [blame] | 9 | #define debug_str(X) ((X) ? (X) : "(none)") |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 10 | #else |
| 11 | static inline void debug_mm(const char *format, ...) {} |
Eric Sunshine | fbfba7a | 2013-07-15 02:54:12 -0400 | [diff] [blame] | 12 | static inline const char *debug_str(const char *s) { return s; } |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 13 | #endif |
| 14 | |
Marius Storm-Olsen | d551a48 | 2009-02-08 15:34:27 +0100 | [diff] [blame] | 15 | const char *git_mailmap_file; |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 16 | const char *git_mailmap_blob; |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 17 | |
| 18 | struct mailmap_info { |
| 19 | char *name; |
| 20 | char *email; |
| 21 | }; |
| 22 | |
| 23 | struct mailmap_entry { |
| 24 | /* name and email for the simple mail-only case */ |
| 25 | char *name; |
| 26 | char *email; |
| 27 | |
| 28 | /* name and email for the complex mail and name matching case */ |
| 29 | struct string_list namemap; |
| 30 | }; |
| 31 | |
| 32 | static void free_mailmap_info(void *p, const char *s) |
| 33 | { |
| 34 | struct mailmap_info *mi = (struct mailmap_info *)p; |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 35 | debug_mm("mailmap: -- complex: '%s' -> '%s' <%s>\n", |
| 36 | s, debug_str(mi->name), debug_str(mi->email)); |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 37 | free(mi->name); |
| 38 | free(mi->email); |
| 39 | } |
| 40 | |
| 41 | static void free_mailmap_entry(void *p, const char *s) |
| 42 | { |
| 43 | struct mailmap_entry *me = (struct mailmap_entry *)p; |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 44 | debug_mm("mailmap: removing entries for <%s>, with %d sub-entries\n", |
| 45 | s, me->namemap.nr); |
| 46 | debug_mm("mailmap: - simple: '%s' <%s>\n", |
| 47 | debug_str(me->name), debug_str(me->email)); |
Eric Sunshine | fbfba7a | 2013-07-15 02:54:12 -0400 | [diff] [blame] | 48 | |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 49 | free(me->name); |
| 50 | free(me->email); |
| 51 | |
| 52 | me->namemap.strdup_strings = 1; |
| 53 | string_list_clear_func(&me->namemap, free_mailmap_info); |
| 54 | } |
| 55 | |
Junio C Hamano | de2f95e | 2013-09-12 08:37:08 -0700 | [diff] [blame] | 56 | /* |
| 57 | * On some systems (e.g. MinGW 4.0), string.h has _only_ inline |
| 58 | * definition of strcasecmp and no non-inline implementation is |
| 59 | * supplied anywhere, which is, eh, "unusual"; we cannot take an |
| 60 | * address of such a function to store it in namemap.cmp. This is |
| 61 | * here as a workaround---do not assign strcasecmp directly to |
| 62 | * namemap.cmp until we know no systems that matter have such an |
| 63 | * "unusual" string.h. |
| 64 | */ |
| 65 | static int namemap_cmp(const char *a, const char *b) |
| 66 | { |
| 67 | return strcasecmp(a, b); |
| 68 | } |
| 69 | |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 70 | static void add_mapping(struct string_list *map, |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 71 | char *new_name, char *new_email, |
| 72 | char *old_name, char *old_email) |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 73 | { |
| 74 | struct mailmap_entry *me; |
Stefan Beller | 6322621 | 2014-11-24 19:44:14 -0800 | [diff] [blame] | 75 | struct string_list_item *item; |
Johannes Schindelin | bf63780 | 2009-03-31 02:18:36 +0200 | [diff] [blame] | 76 | |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 77 | if (old_email == NULL) { |
| 78 | old_email = new_email; |
| 79 | new_email = NULL; |
| 80 | } |
| 81 | |
Stefan Beller | 6322621 | 2014-11-24 19:44:14 -0800 | [diff] [blame] | 82 | item = string_list_insert(map, old_email); |
| 83 | if (item->util) { |
| 84 | me = (struct mailmap_entry *)item->util; |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 85 | } else { |
Junio C Hamano | 97e751b | 2013-07-15 02:54:08 -0400 | [diff] [blame] | 86 | me = xcalloc(1, sizeof(struct mailmap_entry)); |
| 87 | me->namemap.strdup_strings = 1; |
Junio C Hamano | de2f95e | 2013-09-12 08:37:08 -0700 | [diff] [blame] | 88 | me->namemap.cmp = namemap_cmp; |
Junio C Hamano | 97e751b | 2013-07-15 02:54:08 -0400 | [diff] [blame] | 89 | item->util = me; |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 90 | } |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 91 | |
| 92 | if (old_name == NULL) { |
Stefan Beller | 6322621 | 2014-11-24 19:44:14 -0800 | [diff] [blame] | 93 | debug_mm("mailmap: adding (simple) entry for '%s'\n", old_email); |
| 94 | |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 95 | /* Replace current name and new email for simple entry */ |
Jim Meyering | d8d2eb7 | 2010-10-11 17:41:16 +0200 | [diff] [blame] | 96 | if (new_name) { |
| 97 | free(me->name); |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 98 | me->name = xstrdup(new_name); |
Jim Meyering | d8d2eb7 | 2010-10-11 17:41:16 +0200 | [diff] [blame] | 99 | } |
| 100 | if (new_email) { |
| 101 | free(me->email); |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 102 | me->email = xstrdup(new_email); |
Jim Meyering | d8d2eb7 | 2010-10-11 17:41:16 +0200 | [diff] [blame] | 103 | } |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 104 | } else { |
Marc-André Lureau | 74b531f | 2011-11-17 02:25:06 +0100 | [diff] [blame] | 105 | struct mailmap_info *mi = xcalloc(1, sizeof(struct mailmap_info)); |
Stefan Beller | 6322621 | 2014-11-24 19:44:14 -0800 | [diff] [blame] | 106 | debug_mm("mailmap: adding (complex) entry for '%s'\n", old_email); |
Junio C Hamano | 13092a9 | 2016-10-12 11:20:23 -0700 | [diff] [blame] | 107 | mi->name = xstrdup_or_null(new_name); |
| 108 | mi->email = xstrdup_or_null(new_email); |
Julian Phillips | 78a395d | 2010-06-26 00:41:35 +0100 | [diff] [blame] | 109 | string_list_insert(&me->namemap, old_name)->util = mi; |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | debug_mm("mailmap: '%s' <%s> -> '%s' <%s>\n", |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 113 | debug_str(old_name), old_email, |
| 114 | debug_str(new_name), debug_str(new_email)); |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 115 | } |
| 116 | |
Björn Steinbrink | 5288dd5 | 2009-03-31 17:30:39 +0200 | [diff] [blame] | 117 | static char *parse_name_and_email(char *buffer, char **name, |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 118 | char **email, int allow_empty_email) |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 119 | { |
| 120 | char *left, *right, *nstart, *nend; |
Linus Torvalds | 2af202b | 2009-06-18 10:28:43 -0700 | [diff] [blame] | 121 | *name = *email = NULL; |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 122 | |
| 123 | if ((left = strchr(buffer, '<')) == NULL) |
| 124 | return NULL; |
| 125 | if ((right = strchr(left+1, '>')) == NULL) |
| 126 | return NULL; |
Björn Steinbrink | 5288dd5 | 2009-03-31 17:30:39 +0200 | [diff] [blame] | 127 | if (!allow_empty_email && (left+1 == right)) |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 128 | return NULL; |
| 129 | |
| 130 | /* remove whitespace from beginning and end of name */ |
| 131 | nstart = buffer; |
| 132 | while (isspace(*nstart) && nstart < left) |
| 133 | ++nstart; |
| 134 | nend = left-1; |
Romain Francoise | 3174bc5 | 2012-10-28 00:49:55 +0200 | [diff] [blame] | 135 | while (nend > nstart && isspace(*nend)) |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 136 | --nend; |
| 137 | |
Junio C Hamano | 8c38115 | 2013-07-15 02:54:06 -0400 | [diff] [blame] | 138 | *name = (nstart <= nend ? nstart : NULL); |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 139 | *email = left+1; |
| 140 | *(nend+1) = '\0'; |
| 141 | *right++ = '\0'; |
| 142 | |
| 143 | return (*right == '\0' ? NULL : right); |
| 144 | } |
| 145 | |
Ævar Arnfjörð Bjarmason | 4e16833 | 2021-01-12 21:18:06 +0100 | [diff] [blame^] | 146 | static void read_mailmap_line(struct string_list *map, char *buffer) |
Jeff King | 7c8ce30 | 2012-12-12 05:59:45 -0500 | [diff] [blame] | 147 | { |
| 148 | char *name1 = NULL, *email1 = NULL, *name2 = NULL, *email2 = NULL; |
Jeff King | 7c8ce30 | 2012-12-12 05:59:45 -0500 | [diff] [blame] | 149 | |
Ævar Arnfjörð Bjarmason | 4e16833 | 2021-01-12 21:18:06 +0100 | [diff] [blame^] | 150 | if (buffer[0] == '#') |
Jeff King | 7c8ce30 | 2012-12-12 05:59:45 -0500 | [diff] [blame] | 151 | return; |
Ævar Arnfjörð Bjarmason | 4e16833 | 2021-01-12 21:18:06 +0100 | [diff] [blame^] | 152 | |
Jeff King | 7c8ce30 | 2012-12-12 05:59:45 -0500 | [diff] [blame] | 153 | if ((name2 = parse_name_and_email(buffer, &name1, &email1, 0)) != NULL) |
| 154 | parse_name_and_email(name2, &name2, &email2, 1); |
| 155 | |
| 156 | if (email1) |
| 157 | add_mapping(map, name1, email1, name2, email2); |
| 158 | } |
| 159 | |
Ævar Arnfjörð Bjarmason | 4e16833 | 2021-01-12 21:18:06 +0100 | [diff] [blame^] | 160 | static int read_mailmap_file(struct string_list *map, const char *filename) |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 161 | { |
| 162 | char buffer[1024]; |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 163 | FILE *f; |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 164 | |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 165 | if (!filename) |
| 166 | return 0; |
| 167 | |
| 168 | f = fopen(filename, "r"); |
| 169 | if (!f) { |
| 170 | if (errno == ENOENT) |
| 171 | return 0; |
Nguyễn Thái Ngọc Duy | 60901e4 | 2016-05-08 16:47:50 +0700 | [diff] [blame] | 172 | return error_errno("unable to open mailmap at %s", filename); |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 173 | } |
| 174 | |
Jeff King | 7c8ce30 | 2012-12-12 05:59:45 -0500 | [diff] [blame] | 175 | while (fgets(buffer, sizeof(buffer), f) != NULL) |
Ævar Arnfjörð Bjarmason | 4e16833 | 2021-01-12 21:18:06 +0100 | [diff] [blame^] | 176 | read_mailmap_line(map, buffer); |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 177 | fclose(f); |
| 178 | return 0; |
| 179 | } |
| 180 | |
Ævar Arnfjörð Bjarmason | 4e16833 | 2021-01-12 21:18:06 +0100 | [diff] [blame^] | 181 | static void read_mailmap_string(struct string_list *map, char *buf) |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 182 | { |
Jeff King | f972a16 | 2013-08-27 21:41:39 -0400 | [diff] [blame] | 183 | while (*buf) { |
| 184 | char *end = strchrnul(buf, '\n'); |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 185 | |
Jeff King | f972a16 | 2013-08-27 21:41:39 -0400 | [diff] [blame] | 186 | if (*end) |
| 187 | *end++ = '\0'; |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 188 | |
Ævar Arnfjörð Bjarmason | 4e16833 | 2021-01-12 21:18:06 +0100 | [diff] [blame^] | 189 | read_mailmap_line(map, buf); |
Jeff King | f972a16 | 2013-08-27 21:41:39 -0400 | [diff] [blame] | 190 | buf = end; |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 191 | } |
| 192 | } |
| 193 | |
Ævar Arnfjörð Bjarmason | 4e16833 | 2021-01-12 21:18:06 +0100 | [diff] [blame^] | 194 | static int read_mailmap_blob(struct string_list *map, const char *name) |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 195 | { |
brian m. carlson | 15be4a5 | 2017-07-13 23:49:27 +0000 | [diff] [blame] | 196 | struct object_id oid; |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 197 | char *buf; |
| 198 | unsigned long size; |
| 199 | enum object_type type; |
| 200 | |
| 201 | if (!name) |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 202 | return 0; |
brian m. carlson | 15be4a5 | 2017-07-13 23:49:27 +0000 | [diff] [blame] | 203 | if (get_oid(name, &oid) < 0) |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 204 | return 0; |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 205 | |
brian m. carlson | b4f5aca | 2018-03-12 02:27:53 +0000 | [diff] [blame] | 206 | buf = read_object_file(&oid, &type, &size); |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 207 | if (!buf) |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 208 | return error("unable to read mailmap object at %s", name); |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 209 | if (type != OBJ_BLOB) |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 210 | return error("mailmap is not a blob: %s", name); |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 211 | |
Ævar Arnfjörð Bjarmason | 4e16833 | 2021-01-12 21:18:06 +0100 | [diff] [blame^] | 212 | read_mailmap_string(map, buf); |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 213 | |
| 214 | free(buf); |
| 215 | return 0; |
| 216 | } |
| 217 | |
Ævar Arnfjörð Bjarmason | 4e16833 | 2021-01-12 21:18:06 +0100 | [diff] [blame^] | 218 | int read_mailmap(struct string_list *map) |
Marius Storm-Olsen | d551a48 | 2009-02-08 15:34:27 +0100 | [diff] [blame] | 219 | { |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 220 | int err = 0; |
Jeff King | 8c473ce | 2012-12-13 08:04:47 -0500 | [diff] [blame] | 221 | |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 222 | map->strdup_strings = 1; |
Junio C Hamano | de2f95e | 2013-09-12 08:37:08 -0700 | [diff] [blame] | 223 | map->cmp = namemap_cmp; |
Jeff King | 8c473ce | 2012-12-13 08:04:47 -0500 | [diff] [blame] | 224 | |
| 225 | if (!git_mailmap_blob && is_bare_repository()) |
| 226 | git_mailmap_blob = "HEAD:.mailmap"; |
| 227 | |
Ævar Arnfjörð Bjarmason | 4e16833 | 2021-01-12 21:18:06 +0100 | [diff] [blame^] | 228 | err |= read_mailmap_file(map, ".mailmap"); |
Jeff King | 5735dc5 | 2016-03-05 17:13:29 -0500 | [diff] [blame] | 229 | if (startup_info->have_repository) |
Ævar Arnfjörð Bjarmason | 4e16833 | 2021-01-12 21:18:06 +0100 | [diff] [blame^] | 230 | err |= read_mailmap_blob(map, git_mailmap_blob); |
| 231 | err |= read_mailmap_file(map, git_mailmap_file); |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 232 | return err; |
Marius Storm-Olsen | d551a48 | 2009-02-08 15:34:27 +0100 | [diff] [blame] | 233 | } |
| 234 | |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 235 | void clear_mailmap(struct string_list *map) |
| 236 | { |
| 237 | debug_mm("mailmap: clearing %d entries...\n", map->nr); |
| 238 | map->strdup_strings = 1; |
| 239 | string_list_clear_func(map, free_mailmap_entry); |
| 240 | debug_mm("mailmap: cleared\n"); |
| 241 | } |
| 242 | |
Junio C Hamano | 388c7f8 | 2013-01-05 22:26:39 +0100 | [diff] [blame] | 243 | /* |
| 244 | * Look for an entry in map that match string[0:len]; string[len] |
| 245 | * does not have to be NUL (but it could be). |
| 246 | */ |
| 247 | static struct string_list_item *lookup_prefix(struct string_list *map, |
| 248 | const char *string, size_t len) |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 249 | { |
Junio C Hamano | 388c7f8 | 2013-01-05 22:26:39 +0100 | [diff] [blame] | 250 | int i = string_list_find_insert_index(map, string, 1); |
| 251 | if (i < 0) { |
| 252 | /* exact match */ |
| 253 | i = -1 - i; |
| 254 | if (!string[len]) |
| 255 | return &map->items[i]; |
| 256 | /* |
| 257 | * that map entry matches exactly to the string, including |
| 258 | * the cruft at the end beyond "len". That is not a match |
| 259 | * with string[0:len] that we are looking for. |
| 260 | */ |
| 261 | } else if (!string[len]) { |
| 262 | /* |
| 263 | * asked with the whole string, and got nothing. No |
| 264 | * matching entry can exist in the map. |
| 265 | */ |
| 266 | return NULL; |
| 267 | } |
| 268 | |
| 269 | /* |
| 270 | * i is at the exact match to an overlong key, or location the |
| 271 | * overlong key would be inserted, which must come after the |
| 272 | * real location of the key if one exists. |
| 273 | */ |
| 274 | while (0 <= --i && i < map->nr) { |
| 275 | int cmp = strncasecmp(map->items[i].string, string, len); |
| 276 | if (cmp < 0) |
| 277 | /* |
| 278 | * "i" points at a key definitely below the prefix; |
| 279 | * the map does not have string[0:len] in it. |
| 280 | */ |
| 281 | break; |
| 282 | else if (!cmp && !map->items[i].string[len]) |
| 283 | /* found it */ |
| 284 | return &map->items[i]; |
| 285 | /* |
| 286 | * otherwise, the string at "i" may be string[0:len] |
| 287 | * followed by a string that sorts later than string[len:]; |
| 288 | * keep trying. |
| 289 | */ |
| 290 | } |
| 291 | return NULL; |
| 292 | } |
| 293 | |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 294 | int map_user(struct string_list *map, |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 295 | const char **email, size_t *emaillen, |
| 296 | const char **name, size_t *namelen) |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 297 | { |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 298 | struct string_list_item *item; |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 299 | struct mailmap_entry *me; |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 300 | |
Antoine Pelisse | ea02ffa | 2013-01-05 22:26:40 +0100 | [diff] [blame] | 301 | debug_mm("map_user: map '%.*s' <%.*s>\n", |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 302 | (int)*namelen, debug_str(*name), |
| 303 | (int)*emaillen, debug_str(*email)); |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 304 | |
Antoine Pelisse | ea02ffa | 2013-01-05 22:26:40 +0100 | [diff] [blame] | 305 | item = lookup_prefix(map, *email, *emaillen); |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 306 | if (item != NULL) { |
| 307 | me = (struct mailmap_entry *)item->util; |
| 308 | if (me->namemap.nr) { |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 309 | /* |
| 310 | * The item has multiple items, so we'll look up on |
| 311 | * name too. If the name is not found, we choose the |
| 312 | * simple entry. |
| 313 | */ |
Antoine Pelisse | ea02ffa | 2013-01-05 22:26:40 +0100 | [diff] [blame] | 314 | struct string_list_item *subitem; |
| 315 | subitem = lookup_prefix(&me->namemap, *name, *namelen); |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 316 | if (subitem) |
| 317 | item = subitem; |
| 318 | } |
| 319 | } |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 320 | if (item != NULL) { |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 321 | struct mailmap_info *mi = (struct mailmap_info *)item->util; |
Antoine Pelisse | ea02ffa | 2013-01-05 22:26:40 +0100 | [diff] [blame] | 322 | if (mi->name == NULL && mi->email == NULL) { |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 323 | debug_mm("map_user: -- (no simple mapping)\n"); |
| 324 | return 0; |
| 325 | } |
Antoine Pelisse | ea02ffa | 2013-01-05 22:26:40 +0100 | [diff] [blame] | 326 | if (mi->email) { |
| 327 | *email = mi->email; |
| 328 | *emaillen = strlen(*email); |
| 329 | } |
| 330 | if (mi->name) { |
| 331 | *name = mi->name; |
| 332 | *namelen = strlen(*name); |
| 333 | } |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 334 | debug_mm("map_user: to '%.*s' <%.*s>\n", |
| 335 | (int)*namelen, debug_str(*name), |
| 336 | (int)*emaillen, debug_str(*email)); |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 337 | return 1; |
| 338 | } |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 339 | debug_mm("map_user: --\n"); |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 340 | return 0; |
| 341 | } |