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 | |
Jeff King | 7c8ce30 | 2012-12-12 05:59:45 -0500 | [diff] [blame] | 146 | static void read_mailmap_line(struct string_list *map, char *buffer, |
| 147 | char **repo_abbrev) |
| 148 | { |
| 149 | char *name1 = NULL, *email1 = NULL, *name2 = NULL, *email2 = NULL; |
| 150 | if (buffer[0] == '#') { |
| 151 | static const char abbrev[] = "# repo-abbrev:"; |
| 152 | int abblen = sizeof(abbrev) - 1; |
| 153 | int len = strlen(buffer); |
| 154 | |
| 155 | if (!repo_abbrev) |
| 156 | return; |
| 157 | |
| 158 | if (len && buffer[len - 1] == '\n') |
| 159 | buffer[--len] = 0; |
| 160 | if (!strncmp(buffer, abbrev, abblen)) { |
| 161 | char *cp; |
| 162 | |
Stefan Beller | c9ba31f | 2013-08-20 16:18:00 +0200 | [diff] [blame] | 163 | free(*repo_abbrev); |
Jeff King | 7c8ce30 | 2012-12-12 05:59:45 -0500 | [diff] [blame] | 164 | |
| 165 | for (cp = buffer + abblen; isspace(*cp); cp++) |
| 166 | ; /* nothing */ |
Jeff King | c978610 | 2015-09-24 17:07:16 -0400 | [diff] [blame] | 167 | *repo_abbrev = xstrdup(cp); |
Jeff King | 7c8ce30 | 2012-12-12 05:59:45 -0500 | [diff] [blame] | 168 | } |
| 169 | return; |
| 170 | } |
| 171 | if ((name2 = parse_name_and_email(buffer, &name1, &email1, 0)) != NULL) |
| 172 | parse_name_and_email(name2, &name2, &email2, 1); |
| 173 | |
| 174 | if (email1) |
| 175 | add_mapping(map, name1, email1, name2, email2); |
| 176 | } |
| 177 | |
| 178 | static int read_mailmap_file(struct string_list *map, const char *filename, |
| 179 | char **repo_abbrev) |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 180 | { |
| 181 | char buffer[1024]; |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 182 | FILE *f; |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 183 | |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 184 | if (!filename) |
| 185 | return 0; |
| 186 | |
| 187 | f = fopen(filename, "r"); |
| 188 | if (!f) { |
| 189 | if (errno == ENOENT) |
| 190 | return 0; |
Nguyễn Thái Ngọc Duy | 60901e4 | 2016-05-08 16:47:50 +0700 | [diff] [blame] | 191 | return error_errno("unable to open mailmap at %s", filename); |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 192 | } |
| 193 | |
Jeff King | 7c8ce30 | 2012-12-12 05:59:45 -0500 | [diff] [blame] | 194 | while (fgets(buffer, sizeof(buffer), f) != NULL) |
| 195 | read_mailmap_line(map, buffer, repo_abbrev); |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 196 | fclose(f); |
| 197 | return 0; |
| 198 | } |
| 199 | |
Jeff King | f972a16 | 2013-08-27 21:41:39 -0400 | [diff] [blame] | 200 | static void read_mailmap_string(struct string_list *map, char *buf, |
| 201 | char **repo_abbrev) |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 202 | { |
Jeff King | f972a16 | 2013-08-27 21:41:39 -0400 | [diff] [blame] | 203 | while (*buf) { |
| 204 | char *end = strchrnul(buf, '\n'); |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 205 | |
Jeff King | f972a16 | 2013-08-27 21:41:39 -0400 | [diff] [blame] | 206 | if (*end) |
| 207 | *end++ = '\0'; |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 208 | |
Jeff King | f972a16 | 2013-08-27 21:41:39 -0400 | [diff] [blame] | 209 | read_mailmap_line(map, buf, repo_abbrev); |
| 210 | buf = end; |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 211 | } |
| 212 | } |
| 213 | |
| 214 | static int read_mailmap_blob(struct string_list *map, |
| 215 | const char *name, |
| 216 | char **repo_abbrev) |
| 217 | { |
brian m. carlson | 15be4a5 | 2017-07-13 23:49:27 +0000 | [diff] [blame] | 218 | struct object_id oid; |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 219 | char *buf; |
| 220 | unsigned long size; |
| 221 | enum object_type type; |
| 222 | |
| 223 | if (!name) |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 224 | return 0; |
brian m. carlson | 15be4a5 | 2017-07-13 23:49:27 +0000 | [diff] [blame] | 225 | if (get_oid(name, &oid) < 0) |
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 | |
brian m. carlson | b4f5aca | 2018-03-12 02:27:53 +0000 | [diff] [blame] | 228 | buf = read_object_file(&oid, &type, &size); |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 229 | if (!buf) |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 230 | return error("unable to read mailmap object at %s", name); |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 231 | if (type != OBJ_BLOB) |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 232 | return error("mailmap is not a blob: %s", name); |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 233 | |
Jeff King | f972a16 | 2013-08-27 21:41:39 -0400 | [diff] [blame] | 234 | read_mailmap_string(map, buf, repo_abbrev); |
Jeff King | 0861090 | 2012-12-12 06:04:04 -0500 | [diff] [blame] | 235 | |
| 236 | free(buf); |
| 237 | return 0; |
| 238 | } |
| 239 | |
Marius Storm-Olsen | d551a48 | 2009-02-08 15:34:27 +0100 | [diff] [blame] | 240 | int read_mailmap(struct string_list *map, char **repo_abbrev) |
| 241 | { |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 242 | int err = 0; |
Jeff King | 8c473ce | 2012-12-13 08:04:47 -0500 | [diff] [blame] | 243 | |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 244 | map->strdup_strings = 1; |
Junio C Hamano | de2f95e | 2013-09-12 08:37:08 -0700 | [diff] [blame] | 245 | map->cmp = namemap_cmp; |
Jeff King | 8c473ce | 2012-12-13 08:04:47 -0500 | [diff] [blame] | 246 | |
| 247 | if (!git_mailmap_blob && is_bare_repository()) |
| 248 | git_mailmap_blob = "HEAD:.mailmap"; |
| 249 | |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 250 | err |= read_mailmap_file(map, ".mailmap", repo_abbrev); |
Jeff King | 5735dc5 | 2016-03-05 17:13:29 -0500 | [diff] [blame] | 251 | if (startup_info->have_repository) |
| 252 | err |= read_mailmap_blob(map, git_mailmap_blob, repo_abbrev); |
Jeff King | 938a60d | 2012-12-12 06:18:02 -0500 | [diff] [blame] | 253 | err |= read_mailmap_file(map, git_mailmap_file, repo_abbrev); |
| 254 | return err; |
Marius Storm-Olsen | d551a48 | 2009-02-08 15:34:27 +0100 | [diff] [blame] | 255 | } |
| 256 | |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 257 | void clear_mailmap(struct string_list *map) |
| 258 | { |
| 259 | debug_mm("mailmap: clearing %d entries...\n", map->nr); |
| 260 | map->strdup_strings = 1; |
| 261 | string_list_clear_func(map, free_mailmap_entry); |
| 262 | debug_mm("mailmap: cleared\n"); |
| 263 | } |
| 264 | |
Junio C Hamano | 388c7f8 | 2013-01-05 22:26:39 +0100 | [diff] [blame] | 265 | /* |
| 266 | * Look for an entry in map that match string[0:len]; string[len] |
| 267 | * does not have to be NUL (but it could be). |
| 268 | */ |
| 269 | static struct string_list_item *lookup_prefix(struct string_list *map, |
| 270 | const char *string, size_t len) |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 271 | { |
Junio C Hamano | 388c7f8 | 2013-01-05 22:26:39 +0100 | [diff] [blame] | 272 | int i = string_list_find_insert_index(map, string, 1); |
| 273 | if (i < 0) { |
| 274 | /* exact match */ |
| 275 | i = -1 - i; |
| 276 | if (!string[len]) |
| 277 | return &map->items[i]; |
| 278 | /* |
| 279 | * that map entry matches exactly to the string, including |
| 280 | * the cruft at the end beyond "len". That is not a match |
| 281 | * with string[0:len] that we are looking for. |
| 282 | */ |
| 283 | } else if (!string[len]) { |
| 284 | /* |
| 285 | * asked with the whole string, and got nothing. No |
| 286 | * matching entry can exist in the map. |
| 287 | */ |
| 288 | return NULL; |
| 289 | } |
| 290 | |
| 291 | /* |
| 292 | * i is at the exact match to an overlong key, or location the |
| 293 | * overlong key would be inserted, which must come after the |
| 294 | * real location of the key if one exists. |
| 295 | */ |
| 296 | while (0 <= --i && i < map->nr) { |
| 297 | int cmp = strncasecmp(map->items[i].string, string, len); |
| 298 | if (cmp < 0) |
| 299 | /* |
| 300 | * "i" points at a key definitely below the prefix; |
| 301 | * the map does not have string[0:len] in it. |
| 302 | */ |
| 303 | break; |
| 304 | else if (!cmp && !map->items[i].string[len]) |
| 305 | /* found it */ |
| 306 | return &map->items[i]; |
| 307 | /* |
| 308 | * otherwise, the string at "i" may be string[0:len] |
| 309 | * followed by a string that sorts later than string[len:]; |
| 310 | * keep trying. |
| 311 | */ |
| 312 | } |
| 313 | return NULL; |
| 314 | } |
| 315 | |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 316 | int map_user(struct string_list *map, |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 317 | const char **email, size_t *emaillen, |
| 318 | const char **name, size_t *namelen) |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 319 | { |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 320 | struct string_list_item *item; |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 321 | struct mailmap_entry *me; |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 322 | |
Antoine Pelisse | ea02ffa | 2013-01-05 22:26:40 +0100 | [diff] [blame] | 323 | debug_mm("map_user: map '%.*s' <%.*s>\n", |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 324 | (int)*namelen, debug_str(*name), |
| 325 | (int)*emaillen, debug_str(*email)); |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 326 | |
Antoine Pelisse | ea02ffa | 2013-01-05 22:26:40 +0100 | [diff] [blame] | 327 | item = lookup_prefix(map, *email, *emaillen); |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 328 | if (item != NULL) { |
| 329 | me = (struct mailmap_entry *)item->util; |
| 330 | if (me->namemap.nr) { |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 331 | /* |
| 332 | * The item has multiple items, so we'll look up on |
| 333 | * name too. If the name is not found, we choose the |
| 334 | * simple entry. |
| 335 | */ |
Antoine Pelisse | ea02ffa | 2013-01-05 22:26:40 +0100 | [diff] [blame] | 336 | struct string_list_item *subitem; |
| 337 | subitem = lookup_prefix(&me->namemap, *name, *namelen); |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 338 | if (subitem) |
| 339 | item = subitem; |
| 340 | } |
| 341 | } |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 342 | if (item != NULL) { |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 343 | struct mailmap_info *mi = (struct mailmap_info *)item->util; |
Antoine Pelisse | ea02ffa | 2013-01-05 22:26:40 +0100 | [diff] [blame] | 344 | if (mi->name == NULL && mi->email == NULL) { |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 345 | debug_mm("map_user: -- (no simple mapping)\n"); |
| 346 | return 0; |
| 347 | } |
Antoine Pelisse | ea02ffa | 2013-01-05 22:26:40 +0100 | [diff] [blame] | 348 | if (mi->email) { |
| 349 | *email = mi->email; |
| 350 | *emaillen = strlen(*email); |
| 351 | } |
| 352 | if (mi->name) { |
| 353 | *name = mi->name; |
| 354 | *namelen = strlen(*name); |
| 355 | } |
Junio C Hamano | bd23794 | 2013-07-15 02:54:13 -0400 | [diff] [blame] | 356 | debug_mm("map_user: to '%.*s' <%.*s>\n", |
| 357 | (int)*namelen, debug_str(*name), |
| 358 | (int)*emaillen, debug_str(*email)); |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 359 | return 1; |
| 360 | } |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 361 | debug_mm("map_user: --\n"); |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 362 | return 0; |
| 363 | } |