1 #include "git-compat-util.h"
2 #include "environment.h"
3 #include "string-list.h"
5 #include "object-name.h"
6 #include "object-store.h"
9 #define DEBUG_MAILMAP 0
11 #define debug_mm(...) fprintf(stderr, __VA_ARGS__)
12 #define debug_str(X) ((X) ? (X) : "(none)")
14 __attribute__((format (printf
, 1, 2)))
15 static inline void debug_mm(const char *format
, ...) {}
16 static inline const char *debug_str(const char *s
) { return s
; }
19 const char *git_mailmap_file
;
20 const char *git_mailmap_blob
;
27 struct mailmap_entry
{
28 /* name and email for the simple mail-only case */
32 /* name and email for the complex mail and name matching case */
33 struct string_list namemap
;
36 static void free_mailmap_info(void *p
, const char *s
)
38 struct mailmap_info
*mi
= (struct mailmap_info
*)p
;
39 debug_mm("mailmap: -- complex: '%s' -> '%s' <%s>\n",
40 s
, debug_str(mi
->name
), debug_str(mi
->email
));
46 static void free_mailmap_entry(void *p
, const char *s
)
48 struct mailmap_entry
*me
= (struct mailmap_entry
*)p
;
49 debug_mm("mailmap: removing entries for <%s>, with %"PRIuMAX
" sub-entries\n",
50 s
, (uintmax_t)me
->namemap
.nr
);
51 debug_mm("mailmap: - simple: '%s' <%s>\n",
52 debug_str(me
->name
), debug_str(me
->email
));
57 me
->namemap
.strdup_strings
= 1;
58 string_list_clear_func(&me
->namemap
, free_mailmap_info
);
63 * On some systems (e.g. MinGW 4.0), string.h has _only_ inline
64 * definition of strcasecmp and no non-inline implementation is
65 * supplied anywhere, which is, eh, "unusual"; we cannot take an
66 * address of such a function to store it in namemap.cmp. This is
67 * here as a workaround---do not assign strcasecmp directly to
68 * namemap.cmp until we know no systems that matter have such an
71 static int namemap_cmp(const char *a
, const char *b
)
73 return strcasecmp(a
, b
);
76 static void add_mapping(struct string_list
*map
,
77 char *new_name
, char *new_email
,
78 char *old_name
, char *old_email
)
80 struct mailmap_entry
*me
;
81 struct string_list_item
*item
;
84 old_email
= new_email
;
88 item
= string_list_insert(map
, old_email
);
90 me
= (struct mailmap_entry
*)item
->util
;
93 me
->namemap
.strdup_strings
= 1;
94 me
->namemap
.cmp
= namemap_cmp
;
99 debug_mm("mailmap: adding (simple) entry for '%s'\n", old_email
);
101 /* Replace current name and new email for simple entry */
104 me
->name
= xstrdup(new_name
);
108 me
->email
= xstrdup(new_email
);
111 struct mailmap_info
*mi
= xcalloc(1, sizeof(struct mailmap_info
));
112 debug_mm("mailmap: adding (complex) entry for '%s'\n", old_email
);
113 mi
->name
= xstrdup_or_null(new_name
);
114 mi
->email
= xstrdup_or_null(new_email
);
115 string_list_insert(&me
->namemap
, old_name
)->util
= mi
;
118 debug_mm("mailmap: '%s' <%s> -> '%s' <%s>\n",
119 debug_str(old_name
), old_email
,
120 debug_str(new_name
), debug_str(new_email
));
123 static char *parse_name_and_email(char *buffer
, char **name
,
124 char **email
, int allow_empty_email
)
126 char *left
, *right
, *nstart
, *nend
;
127 *name
= *email
= NULL
;
129 if (!(left
= strchr(buffer
, '<')))
131 if (!(right
= strchr(left
+ 1, '>')))
133 if (!allow_empty_email
&& (left
+1 == right
))
136 /* remove whitespace from beginning and end of name */
138 while (isspace(*nstart
) && nstart
< left
)
141 while (nend
> nstart
&& isspace(*nend
))
144 *name
= (nstart
<= nend
? nstart
: NULL
);
149 return (*right
== '\0' ? NULL
: right
);
152 static void read_mailmap_line(struct string_list
*map
, char *buffer
)
154 char *name1
= NULL
, *email1
= NULL
, *name2
= NULL
, *email2
= NULL
;
156 if (buffer
[0] == '#')
159 if ((name2
= parse_name_and_email(buffer
, &name1
, &email1
, 0)))
160 parse_name_and_email(name2
, &name2
, &email2
, 1);
163 add_mapping(map
, name1
, email1
, name2
, email2
);
166 /* Flags for read_mailmap_file() */
167 #define MAILMAP_NOFOLLOW (1<<0)
169 static int read_mailmap_file(struct string_list
*map
, const char *filename
,
179 if (flags
& MAILMAP_NOFOLLOW
)
180 fd
= open_nofollow(filename
, O_RDONLY
);
182 fd
= open(filename
, O_RDONLY
);
187 return error_errno("unable to open mailmap at %s", filename
);
189 f
= xfdopen(fd
, "r");
191 while (fgets(buffer
, sizeof(buffer
), f
) != NULL
)
192 read_mailmap_line(map
, buffer
);
197 static void read_mailmap_string(struct string_list
*map
, char *buf
)
200 char *end
= strchrnul(buf
, '\n');
205 read_mailmap_line(map
, buf
);
210 static int read_mailmap_blob(struct string_list
*map
, const char *name
)
212 struct object_id oid
;
215 enum object_type type
;
219 if (repo_get_oid(the_repository
, name
, &oid
) < 0)
222 buf
= repo_read_object_file(the_repository
, &oid
, &type
, &size
);
224 return error("unable to read mailmap object at %s", name
);
225 if (type
!= OBJ_BLOB
)
226 return error("mailmap is not a blob: %s", name
);
228 read_mailmap_string(map
, buf
);
234 int read_mailmap(struct string_list
*map
)
238 map
->strdup_strings
= 1;
239 map
->cmp
= namemap_cmp
;
241 if (!git_mailmap_blob
&& is_bare_repository())
242 git_mailmap_blob
= "HEAD:.mailmap";
244 if (!startup_info
->have_repository
|| !is_bare_repository())
245 err
|= read_mailmap_file(map
, ".mailmap",
246 startup_info
->have_repository
?
247 MAILMAP_NOFOLLOW
: 0);
248 if (startup_info
->have_repository
)
249 err
|= read_mailmap_blob(map
, git_mailmap_blob
);
250 err
|= read_mailmap_file(map
, git_mailmap_file
, 0);
254 void clear_mailmap(struct string_list
*map
)
256 debug_mm("mailmap: clearing %"PRIuMAX
" entries...\n",
258 map
->strdup_strings
= 1;
259 string_list_clear_func(map
, free_mailmap_entry
);
260 debug_mm("mailmap: cleared\n");
264 * Look for an entry in map that match string[0:len]; string[len]
265 * does not have to be NUL (but it could be).
267 static struct string_list_item
*lookup_prefix(struct string_list
*map
,
268 const char *string
, size_t len
)
270 int i
= string_list_find_insert_index(map
, string
, 1);
275 return &map
->items
[i
];
277 * that map entry matches exactly to the string, including
278 * the cruft at the end beyond "len". That is not a match
279 * with string[0:len] that we are looking for.
281 } else if (!string
[len
]) {
283 * asked with the whole string, and got nothing. No
284 * matching entry can exist in the map.
290 * i is at the exact match to an overlong key, or location the
291 * overlong key would be inserted, which must come after the
292 * real location of the key if one exists.
294 while (0 <= --i
&& i
< map
->nr
) {
295 int cmp
= strncasecmp(map
->items
[i
].string
, string
, len
);
298 * "i" points at a key definitely below the prefix;
299 * the map does not have string[0:len] in it.
302 else if (!cmp
&& !map
->items
[i
].string
[len
])
304 return &map
->items
[i
];
306 * otherwise, the string at "i" may be string[0:len]
307 * followed by a string that sorts later than string[len:];
314 int map_user(struct string_list
*map
,
315 const char **email
, size_t *emaillen
,
316 const char **name
, size_t *namelen
)
318 struct string_list_item
*item
;
319 struct mailmap_entry
*me
;
321 debug_mm("map_user: map '%.*s' <%.*s>\n",
322 (int)*namelen
, debug_str(*name
),
323 (int)*emaillen
, debug_str(*email
));
325 item
= lookup_prefix(map
, *email
, *emaillen
);
327 me
= (struct mailmap_entry
*)item
->util
;
328 if (me
->namemap
.nr
) {
330 * The item has multiple items, so we'll look up on
331 * name too. If the name is not found, we choose the
334 struct string_list_item
*subitem
;
335 subitem
= lookup_prefix(&me
->namemap
, *name
, *namelen
);
341 struct mailmap_info
*mi
= (struct mailmap_info
*)item
->util
;
342 if (mi
->name
== NULL
&& mi
->email
== NULL
) {
343 debug_mm("map_user: -- (no simple mapping)\n");
348 *emaillen
= strlen(*email
);
352 *namelen
= strlen(*name
);
354 debug_mm("map_user: to '%.*s' <%.*s>\n",
355 (int)*namelen
, debug_str(*name
),
356 (int)*emaillen
, debug_str(*email
));
359 debug_mm("map_user: --\n");