]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-shortlog.c
MSVC: Add support for building with NO_MMAP
[thirdparty/git.git] / builtin-shortlog.c
CommitLineData
b8ec5923
JS
1#include "builtin.h"
2#include "cache.h"
3#include "commit.h"
4#include "diff.h"
c455c87c 5#include "string-list.h"
b8ec5923 6#include "revision.h"
3714e7c8 7#include "utf8.h"
7c1c6782 8#include "mailmap.h"
552bcac3 9#include "shortlog.h"
14ec9cbd 10#include "parse-options.h"
b8ec5923 11
14ec9cbd 12static char const * const shortlog_usage[] = {
588c038a 13 "git shortlog [-n] [-s] [-e] [-w] [rev-opts] [--] [<commit-id>... ]",
14ec9cbd
PH
14 "",
15 "[rev-opts] are documented in git-rev-list(1)",
16 NULL
17};
b8ec5923
JS
18
19static int compare_by_number(const void *a1, const void *a2)
20{
c455c87c
JS
21 const struct string_list_item *i1 = a1, *i2 = a2;
22 const struct string_list *l1 = i1->util, *l2 = i2->util;
b8ec5923
JS
23
24 if (l1->nr < l2->nr)
6d6ab610 25 return 1;
b8ec5923
JS
26 else if (l1->nr == l2->nr)
27 return 0;
28 else
6d6ab610 29 return -1;
b8ec5923
JS
30}
31
cec08717
RS
32const char *format_subject(struct strbuf *sb, const char *msg,
33 const char *line_separator);
34
552bcac3 35static void insert_one_record(struct shortlog *log,
1e931cb4
JH
36 const char *author,
37 const char *oneline)
b8ec5923 38{
552bcac3 39 const char *dot3 = log->common_repo_prefix;
b8ec5923 40 char *buffer, *p;
c455c87c 41 struct string_list_item *item;
1e931cb4 42 char namebuf[1024];
d20d654f 43 char emailbuf[1024];
1e931cb4
JH
44 size_t len;
45 const char *eol;
46 const char *boemail, *eoemail;
cec08717 47 struct strbuf subject = STRBUF_INIT;
1e931cb4
JH
48
49 boemail = strchr(author, '<');
50 if (!boemail)
51 return;
52 eoemail = strchr(boemail, '>');
53 if (!eoemail)
54 return;
d20d654f
MSO
55
56 /* copy author name to namebuf, to support matching on both name and email */
57 memcpy(namebuf, author, boemail - author);
58 len = boemail - author;
eeefa7c9 59 while (len > 0 && isspace(namebuf[len-1]))
d20d654f
MSO
60 len--;
61 namebuf[len] = 0;
62
63 /* copy email name to emailbuf, to allow email replacement as well */
64 memcpy(emailbuf, boemail+1, eoemail - boemail);
65 emailbuf[eoemail - boemail - 1] = 0;
66
67 if (!map_user(&log->mailmap, emailbuf, sizeof(emailbuf), namebuf, sizeof(namebuf))) {
1e931cb4
JH
68 while (author < boemail && isspace(*author))
69 author++;
70 for (len = 0;
71 len < sizeof(namebuf) - 1 && author + len < boemail;
72 len++)
73 namebuf[len] = author[len];
74 while (0 < len && isspace(namebuf[len-1]))
75 len--;
76 namebuf[len] = '\0';
77 }
4602c17d
JH
78 else
79 len = strlen(namebuf);
80
552bcac3 81 if (log->email) {
4602c17d 82 size_t room = sizeof(namebuf) - len - 1;
d20d654f
MSO
83 int maillen = strlen(emailbuf);
84 snprintf(namebuf + len, room, " <%.*s>", maillen, emailbuf);
4602c17d 85 }
b8ec5923 86
fe73fc1a 87 item = string_list_insert(namebuf, &log->list);
b8ec5923 88 if (item->util == NULL)
c455c87c 89 item->util = xcalloc(1, sizeof(struct string_list));
b8ec5923 90
c1ce83a5
AW
91 /* Skip any leading whitespace, including any blank lines. */
92 while (*oneline && isspace(*oneline))
93 oneline++;
1e931cb4
JH
94 eol = strchr(oneline, '\n');
95 if (!eol)
96 eol = oneline + strlen(oneline);
cc44c765 97 if (!prefixcmp(oneline, "[PATCH")) {
72019cde 98 char *eob = strchr(oneline, ']');
1e931cb4
JH
99 if (eob && (!eol || eob < eol))
100 oneline = eob + 1;
b8ec5923 101 }
1e931cb4 102 while (*oneline && isspace(*oneline) && *oneline != '\n')
b8ec5923 103 oneline++;
cec08717
RS
104 format_subject(&subject, oneline, " ");
105 buffer = strbuf_detach(&subject, NULL);
b8ec5923 106
c95044d4
JH
107 if (dot3) {
108 int dot3len = strlen(dot3);
109 if (dot3len > 5) {
110 while ((p = strstr(buffer, dot3)) != NULL) {
111 int taillen = strlen(p) - dot3len;
112 memcpy(p, "/.../", 5);
113 memmove(p + 5, p + dot3len, taillen + 1);
114 }
115 }
b8ec5923
JS
116 }
117
fe73fc1a 118 string_list_append(buffer, item->util);
b8ec5923
JS
119}
120
552bcac3 121static void read_from_stdin(struct shortlog *log)
b8ec5923 122{
1e931cb4
JH
123 char author[1024], oneline[1024];
124
125 while (fgets(author, sizeof(author), stdin) != NULL) {
126 if (!(author[0] == 'A' || author[0] == 'a') ||
127 prefixcmp(author + 1, "uthor: "))
128 continue;
129 while (fgets(oneline, sizeof(oneline), stdin) &&
130 oneline[0] != '\n')
131 ; /* discard headers */
132 while (fgets(oneline, sizeof(oneline), stdin) &&
133 oneline[0] == '\n')
134 ; /* discard blanks */
552bcac3 135 insert_one_record(log, author + 8, oneline);
b8ec5923
JS
136 }
137}
138
552bcac3 139void shortlog_add_commit(struct shortlog *log, struct commit *commit)
b8ec5923 140{
552bcac3 141 const char *author = NULL, *buffer;
b8ec5923 142
552bcac3
DB
143 buffer = commit->buffer;
144 while (*buffer && *buffer != '\n') {
145 const char *eol = strchr(buffer, '\n');
b8ec5923 146
552bcac3
DB
147 if (eol == NULL)
148 eol = buffer + strlen(buffer);
149 else
150 eol++;
b8ec5923 151
552bcac3
DB
152 if (!prefixcmp(buffer, "author "))
153 author = buffer + 7;
154 buffer = eol;
b8ec5923 155 }
552bcac3
DB
156 if (!author)
157 die("Missing author: %s",
158 sha1_to_hex(commit->object.sha1));
b526f8ed
JS
159 if (log->user_format) {
160 struct strbuf buf = STRBUF_INIT;
161
162 pretty_print_commit(CMIT_FMT_USERFORMAT, commit, &buf,
163 DEFAULT_ABBREV, "", "", DATE_NORMAL, 0);
164 insert_one_record(log, author, buf.buf);
165 strbuf_release(&buf);
166 return;
167 }
552bcac3
DB
168 if (*buffer)
169 buffer++;
170 insert_one_record(log, author, !*buffer ? "<none>" : buffer);
171}
172
173static void get_from_rev(struct rev_info *rev, struct shortlog *log)
174{
175 struct commit *commit;
176
177 if (prepare_revision_walk(rev))
178 die("revision walk setup failed");
179 while ((commit = get_revision(rev)) != NULL)
180 shortlog_add_commit(log, commit);
b8ec5923
JS
181}
182
14ec9cbd 183static int parse_uint(char const **arg, int comma, int defval)
3d711d97
JH
184{
185 unsigned long ul;
186 int ret;
187 char *endp;
188
189 ul = strtoul(*arg, &endp, 10);
14ec9cbd 190 if (*endp && *endp != comma)
3d711d97 191 return -1;
14ec9cbd 192 if (ul > INT_MAX)
3d711d97 193 return -1;
14ec9cbd
PH
194 ret = *arg == endp ? defval : (int)ul;
195 *arg = *endp ? endp + 1 : endp;
3d711d97
JH
196 return ret;
197}
198
199static const char wrap_arg_usage[] = "-w[<width>[,<indent1>[,<indent2>]]]";
200#define DEFAULT_WRAPLEN 76
201#define DEFAULT_INDENT1 6
202#define DEFAULT_INDENT2 9
203
14ec9cbd 204static int parse_wrap_args(const struct option *opt, const char *arg, int unset)
3d711d97 205{
14ec9cbd
PH
206 struct shortlog *log = opt->value;
207
208 log->wrap_lines = !unset;
209 if (unset)
210 return 0;
211 if (!arg) {
212 log->wrap = DEFAULT_WRAPLEN;
213 log->in1 = DEFAULT_INDENT1;
214 log->in2 = DEFAULT_INDENT2;
215 return 0;
216 }
217
218 log->wrap = parse_uint(&arg, ',', DEFAULT_WRAPLEN);
219 log->in1 = parse_uint(&arg, ',', DEFAULT_INDENT1);
220 log->in2 = parse_uint(&arg, '\0', DEFAULT_INDENT2);
221 if (log->wrap < 0 || log->in1 < 0 || log->in2 < 0)
222 return error(wrap_arg_usage);
223 if (log->wrap &&
224 ((log->in1 && log->wrap <= log->in1) ||
225 (log->in2 && log->wrap <= log->in2)))
226 return error(wrap_arg_usage);
227 return 0;
3d711d97
JH
228}
229
552bcac3
DB
230void shortlog_init(struct shortlog *log)
231{
232 memset(log, 0, sizeof(*log));
233
d551a488 234 read_mailmap(&log->mailmap, &log->common_repo_prefix);
552bcac3 235
c455c87c 236 log->list.strdup_strings = 1;
552bcac3
DB
237 log->wrap = DEFAULT_WRAPLEN;
238 log->in1 = DEFAULT_INDENT1;
239 log->in2 = DEFAULT_INDENT2;
240}
241
b8ec5923
JS
242int cmd_shortlog(int argc, const char **argv, const char *prefix)
243{
14ec9cbd
PH
244 static struct shortlog log;
245 static struct rev_info rev;
abe549e1 246 int nongit;
552bcac3 247
14ec9cbd
PH
248 static const struct option options[] = {
249 OPT_BOOLEAN('n', "numbered", &log.sort_by_number,
250 "sort output according to the number of commits per author"),
251 OPT_BOOLEAN('s', "summary", &log.summary,
252 "Suppress commit descriptions, only provides commit count"),
253 OPT_BOOLEAN('e', "email", &log.email,
254 "Show the email address of each author"),
255 { OPTION_CALLBACK, 'w', NULL, &log, "w[,i1[,i2]]",
256 "Linewrap output", PARSE_OPT_OPTARG, &parse_wrap_args },
257 OPT_END(),
258 };
259
260 struct parse_opt_ctx_t ctx;
261
abe549e1 262 prefix = setup_git_directory_gently(&nongit);
d551a488 263 git_config(git_default_config, NULL);
552bcac3 264 shortlog_init(&log);
14ec9cbd 265 init_revisions(&rev, prefix);
37782920 266 parse_options_start(&ctx, argc, argv, prefix, PARSE_OPT_KEEP_DASHDASH |
14ec9cbd
PH
267 PARSE_OPT_KEEP_ARGV0);
268
269 for (;;) {
14ec9cbd
PH
270 switch (parse_options_step(&ctx, options, shortlog_usage)) {
271 case PARSE_OPT_HELP:
272 exit(129);
273 case PARSE_OPT_DONE:
274 goto parse_done;
3d711d97 275 }
6b61ec05 276 parse_revision_opt(&rev, &ctx, options, shortlog_usage);
14ec9cbd
PH
277 }
278parse_done:
279 argc = parse_options_end(&ctx);
280
281 if (setup_revisions(argc, argv, &rev, NULL) != 1) {
282 error("unrecognized argument: %s", argv[1]);
283 usage_with_options(shortlog_usage, options);
b8ec5923
JS
284 }
285
b526f8ed
JS
286 log.user_format = rev.commit_format == CMIT_FMT_USERFORMAT;
287
3384a2df 288 /* assume HEAD if from a tty */
abe549e1 289 if (!nongit && !rev.pending.nr && isatty(0))
3384a2df 290 add_head_to_pending(&rev);
0497c620 291 if (rev.pending.nr == 0) {
552bcac3 292 read_from_stdin(&log);
0497c620 293 }
b8ec5923 294 else
552bcac3 295 get_from_rev(&rev, &log);
b8ec5923 296
552bcac3
DB
297 shortlog_output(&log);
298 return 0;
299}
b8ec5923 300
552bcac3
DB
301void shortlog_output(struct shortlog *log)
302{
303 int i, j;
304 if (log->sort_by_number)
c455c87c 305 qsort(log->list.items, log->list.nr, sizeof(struct string_list_item),
552bcac3
DB
306 compare_by_number);
307 for (i = 0; i < log->list.nr; i++) {
c455c87c 308 struct string_list *onelines = log->list.items[i].util;
b8ec5923 309
552bcac3 310 if (log->summary) {
c455c87c 311 printf("%6d\t%s\n", onelines->nr, log->list.items[i].string);
ac60c94d 312 } else {
c455c87c 313 printf("%s (%d):\n", log->list.items[i].string, onelines->nr);
3714e7c8 314 for (j = onelines->nr - 1; j >= 0; j--) {
c455c87c 315 const char *msg = onelines->items[j].string;
3d711d97 316
552bcac3
DB
317 if (log->wrap_lines) {
318 int col = print_wrapped_text(msg, log->in1, log->in2, log->wrap);
319 if (col != log->wrap)
3d711d97
JH
320 putchar('\n');
321 }
322 else
323 printf(" %s\n", msg);
3714e7c8
JS
324 }
325 putchar('\n');
b8ec5923
JS
326 }
327
c455c87c 328 onelines->strdup_strings = 1;
fe73fc1a 329 string_list_clear(onelines, 0);
b8ec5923 330 free(onelines);
552bcac3 331 log->list.items[i].util = NULL;
b8ec5923
JS
332 }
333
c455c87c
JS
334 log->list.strdup_strings = 1;
335 string_list_clear(&log->list, 1);
d20d654f 336 clear_mailmap(&log->mailmap);
b8ec5923 337}