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