]> git.ipfire.org Git - thirdparty/git.git/blame - mailmap.c
i18n: avoid parenthesized string as array initializer
[thirdparty/git.git] / mailmap.c
CommitLineData
7c1c6782 1#include "cache.h"
c455c87c 2#include "string-list.h"
fe5d30b6 3#include "mailmap.h"
7c1c6782 4
0925ce4d
MSO
5#define DEBUG_MAILMAP 0
6#if DEBUG_MAILMAP
7#define debug_mm(...) fprintf(stderr, __VA_ARGS__)
8#else
9static inline void debug_mm(const char *format, ...) {}
10#endif
11
d551a488 12const char *git_mailmap_file;
0925ce4d
MSO
13
14struct mailmap_info {
15 char *name;
16 char *email;
17};
18
19struct mailmap_entry {
20 /* name and email for the simple mail-only case */
21 char *name;
22 char *email;
23
24 /* name and email for the complex mail and name matching case */
25 struct string_list namemap;
26};
27
28static void free_mailmap_info(void *p, const char *s)
29{
30 struct mailmap_info *mi = (struct mailmap_info *)p;
31 debug_mm("mailmap: -- complex: '%s' -> '%s' <%s>\n", s, mi->name, mi->email);
32 free(mi->name);
33 free(mi->email);
34}
35
36static void free_mailmap_entry(void *p, const char *s)
37{
38 struct mailmap_entry *me = (struct mailmap_entry *)p;
39 debug_mm("mailmap: removing entries for <%s>, with %d sub-entries\n", s, me->namemap.nr);
40 debug_mm("mailmap: - simple: '%s' <%s>\n", me->name, me->email);
41 free(me->name);
42 free(me->email);
43
44 me->namemap.strdup_strings = 1;
45 string_list_clear_func(&me->namemap, free_mailmap_info);
46}
47
48static void add_mapping(struct string_list *map,
49 char *new_name, char *new_email, char *old_name, char *old_email)
50{
51 struct mailmap_entry *me;
52 int index;
bf637803
JS
53 char *p;
54
55 if (old_email)
56 for (p = old_email; *p; p++)
57 *p = tolower(*p);
58 if (new_email)
59 for (p = new_email; *p; p++)
60 *p = tolower(*p);
61
0925ce4d
MSO
62 if (old_email == NULL) {
63 old_email = new_email;
64 new_email = NULL;
65 }
66
67 if ((index = string_list_find_insert_index(map, old_email, 1)) < 0) {
68 /* mailmap entry exists, invert index value */
69 index = -1 - index;
70 } else {
71 /* create mailmap entry */
aadceea6 72 struct string_list_item *item = string_list_insert_at_index(map, index, old_email);
0925ce4d
MSO
73 item->util = xmalloc(sizeof(struct mailmap_entry));
74 memset(item->util, 0, sizeof(struct mailmap_entry));
75 ((struct mailmap_entry *)item->util)->namemap.strdup_strings = 1;
76 }
77 me = (struct mailmap_entry *)map->items[index].util;
78
79 if (old_name == NULL) {
80 debug_mm("mailmap: adding (simple) entry for %s at index %d\n", old_email, index);
81 /* Replace current name and new email for simple entry */
d8d2eb7d
JM
82 if (new_name) {
83 free(me->name);
0925ce4d 84 me->name = xstrdup(new_name);
d8d2eb7d
JM
85 }
86 if (new_email) {
87 free(me->email);
0925ce4d 88 me->email = xstrdup(new_email);
d8d2eb7d 89 }
0925ce4d
MSO
90 } else {
91 struct mailmap_info *mi = xmalloc(sizeof(struct mailmap_info));
92 debug_mm("mailmap: adding (complex) entry for %s at index %d\n", old_email, index);
93 if (new_name)
94 mi->name = xstrdup(new_name);
95 if (new_email)
96 mi->email = xstrdup(new_email);
78a395d3 97 string_list_insert(&me->namemap, old_name)->util = mi;
0925ce4d
MSO
98 }
99
100 debug_mm("mailmap: '%s' <%s> -> '%s' <%s>\n",
101 old_name, old_email, new_name, new_email);
102}
103
5288dd58
BS
104static char *parse_name_and_email(char *buffer, char **name,
105 char **email, int allow_empty_email)
0925ce4d
MSO
106{
107 char *left, *right, *nstart, *nend;
2af202be 108 *name = *email = NULL;
0925ce4d
MSO
109
110 if ((left = strchr(buffer, '<')) == NULL)
111 return NULL;
112 if ((right = strchr(left+1, '>')) == NULL)
113 return NULL;
5288dd58 114 if (!allow_empty_email && (left+1 == right))
0925ce4d
MSO
115 return NULL;
116
117 /* remove whitespace from beginning and end of name */
118 nstart = buffer;
119 while (isspace(*nstart) && nstart < left)
120 ++nstart;
121 nend = left-1;
122 while (isspace(*nend) && nend > nstart)
123 --nend;
124
125 *name = (nstart < nend ? nstart : NULL);
126 *email = left+1;
127 *(nend+1) = '\0';
128 *right++ = '\0';
129
130 return (*right == '\0' ? NULL : right);
131}
132
d551a488 133static int read_single_mailmap(struct string_list *map, const char *filename, char **repo_abbrev)
7c1c6782
JH
134{
135 char buffer[1024];
d551a488 136 FILE *f = (filename == NULL ? NULL : fopen(filename, "r"));
7c1c6782
JH
137
138 if (f == NULL)
139 return 1;
140 while (fgets(buffer, sizeof(buffer), f) != NULL) {
2af202be 141 char *name1 = NULL, *email1 = NULL, *name2 = NULL, *email2 = NULL;
7c1c6782
JH
142 if (buffer[0] == '#') {
143 static const char abbrev[] = "# repo-abbrev:";
144 int abblen = sizeof(abbrev) - 1;
145 int len = strlen(buffer);
146
8503ee43
AR
147 if (!repo_abbrev)
148 continue;
149
7c1c6782
JH
150 if (len && buffer[len - 1] == '\n')
151 buffer[--len] = 0;
152 if (!strncmp(buffer, abbrev, abblen)) {
153 char *cp;
154
155 if (repo_abbrev)
156 free(*repo_abbrev);
157 *repo_abbrev = xmalloc(len);
158
159 for (cp = buffer + abblen; isspace(*cp); cp++)
160 ; /* nothing */
161 strcpy(*repo_abbrev, cp);
162 }
163 continue;
164 }
5288dd58
BS
165 if ((name2 = parse_name_and_email(buffer, &name1, &email1, 0)) != NULL)
166 parse_name_and_email(name2, &name2, &email2, 1);
0925ce4d
MSO
167
168 if (email1)
169 add_mapping(map, name1, email1, name2, email2);
7c1c6782
JH
170 }
171 fclose(f);
172 return 0;
173}
174
d551a488
MSO
175int read_mailmap(struct string_list *map, char **repo_abbrev)
176{
0925ce4d 177 map->strdup_strings = 1;
d551a488
MSO
178 /* each failure returns 1, so >1 means both calls failed */
179 return read_single_mailmap(map, ".mailmap", repo_abbrev) +
180 read_single_mailmap(map, git_mailmap_file, repo_abbrev) > 1;
181}
182
0925ce4d
MSO
183void clear_mailmap(struct string_list *map)
184{
185 debug_mm("mailmap: clearing %d entries...\n", map->nr);
186 map->strdup_strings = 1;
187 string_list_clear_func(map, free_mailmap_entry);
188 debug_mm("mailmap: cleared\n");
189}
190
191int map_user(struct string_list *map,
192 char *email, int maxlen_email, char *name, int maxlen_name)
7c1c6782
JH
193{
194 char *p;
c455c87c 195 struct string_list_item *item;
0925ce4d 196 struct mailmap_entry *me;
7c1c6782
JH
197 char buf[1024], *mailbuf;
198 int i;
199
0925ce4d 200 /* figure out space requirement for email */
7c1c6782 201 p = strchr(email, '>');
0925ce4d
MSO
202 if (!p) {
203 /* email passed in might not be wrapped in <>, but end with a \0 */
204 p = memchr(email, '\0', maxlen_email);
2af202be 205 if (!p)
0925ce4d
MSO
206 return 0;
207 }
7c1c6782
JH
208 if (p - email + 1 < sizeof(buf))
209 mailbuf = buf;
210 else
211 mailbuf = xmalloc(p - email + 1);
212
213 /* downcase the email address */
214 for (i = 0; i < p - email; i++)
215 mailbuf[i] = tolower(email[i]);
216 mailbuf[i] = 0;
0925ce4d
MSO
217
218 debug_mm("map_user: map '%s' <%s>\n", name, mailbuf);
e8c8b713 219 item = string_list_lookup(map, mailbuf);
0925ce4d
MSO
220 if (item != NULL) {
221 me = (struct mailmap_entry *)item->util;
222 if (me->namemap.nr) {
223 /* The item has multiple items, so we'll look up on name too */
224 /* If the name is not found, we choose the simple entry */
e8c8b713 225 struct string_list_item *subitem = string_list_lookup(&me->namemap, name);
0925ce4d
MSO
226 if (subitem)
227 item = subitem;
228 }
229 }
7c1c6782
JH
230 if (mailbuf != buf)
231 free(mailbuf);
232 if (item != NULL) {
0925ce4d
MSO
233 struct mailmap_info *mi = (struct mailmap_info *)item->util;
234 if (mi->name == NULL && (mi->email == NULL || maxlen_email == 0)) {
235 debug_mm("map_user: -- (no simple mapping)\n");
236 return 0;
237 }
238 if (maxlen_email && mi->email)
239 strlcpy(email, mi->email, maxlen_email);
240 if (maxlen_name && mi->name)
241 strlcpy(name, mi->name, maxlen_name);
242 debug_mm("map_user: to '%s' <%s>\n", name, mi->email ? mi->email : "");
7c1c6782
JH
243 return 1;
244 }
0925ce4d 245 debug_mm("map_user: --\n");
7c1c6782
JH
246 return 0;
247}