5 #include "string-list.h"
10 #include "parse-options.h"
12 static char const * const shortlog_usage
[] = {
13 N_("git shortlog [<options>] [<revision range>] [[--] [<path>...]]"),
17 static int compare_by_number(const void *a1
, const void *a2
)
19 const struct string_list_item
*i1
= a1
, *i2
= a2
;
20 const struct string_list
*l1
= i1
->util
, *l2
= i2
->util
;
24 else if (l1
->nr
== l2
->nr
)
30 static void insert_one_record(struct shortlog
*log
,
34 const char *dot3
= log
->common_repo_prefix
;
36 struct string_list_item
*item
;
37 const char *mailbuf
, *namebuf
;
38 size_t namelen
, maillen
;
40 struct strbuf subject
= STRBUF_INIT
;
41 struct strbuf namemailbuf
= STRBUF_INIT
;
42 struct ident_split ident
;
44 if (split_ident_line(&ident
, author
, strlen(author
)))
47 namebuf
= ident
.name_begin
;
48 mailbuf
= ident
.mail_begin
;
49 namelen
= ident
.name_end
- ident
.name_begin
;
50 maillen
= ident
.mail_end
- ident
.mail_begin
;
52 map_user(&log
->mailmap
, &mailbuf
, &maillen
, &namebuf
, &namelen
);
53 strbuf_add(&namemailbuf
, namebuf
, namelen
);
56 strbuf_addf(&namemailbuf
, " <%.*s>", (int)maillen
, mailbuf
);
58 item
= string_list_insert(&log
->list
, namemailbuf
.buf
);
59 if (item
->util
== NULL
)
60 item
->util
= xcalloc(1, sizeof(struct string_list
));
62 /* Skip any leading whitespace, including any blank lines. */
63 while (*oneline
&& isspace(*oneline
))
65 eol
= strchr(oneline
, '\n');
67 eol
= oneline
+ strlen(oneline
);
68 if (starts_with(oneline
, "[PATCH")) {
69 char *eob
= strchr(oneline
, ']');
70 if (eob
&& (!eol
|| eob
< eol
))
73 while (*oneline
&& isspace(*oneline
) && *oneline
!= '\n')
75 format_subject(&subject
, oneline
, " ");
76 buffer
= strbuf_detach(&subject
, NULL
);
79 int dot3len
= strlen(dot3
);
81 while ((p
= strstr(buffer
, dot3
)) != NULL
) {
82 int taillen
= strlen(p
) - dot3len
;
83 memcpy(p
, "/.../", 5);
84 memmove(p
+ 5, p
+ dot3len
, taillen
+ 1);
89 string_list_append(item
->util
, buffer
);
92 static void read_from_stdin(struct shortlog
*log
)
94 char author
[1024], oneline
[1024];
96 while (fgets(author
, sizeof(author
), stdin
) != NULL
) {
97 if (!(author
[0] == 'A' || author
[0] == 'a') ||
98 !starts_with(author
+ 1, "uthor: "))
100 while (fgets(oneline
, sizeof(oneline
), stdin
) &&
102 ; /* discard headers */
103 while (fgets(oneline
, sizeof(oneline
), stdin
) &&
105 ; /* discard blanks */
106 insert_one_record(log
, author
+ 8, oneline
);
110 void shortlog_add_commit(struct shortlog
*log
, struct commit
*commit
)
112 const char *author
= NULL
, *buffer
;
113 struct strbuf buf
= STRBUF_INIT
;
114 struct strbuf ufbuf
= STRBUF_INIT
;
116 pp_commit_easy(CMIT_FMT_RAW
, commit
, &buf
);
118 while (*buffer
&& *buffer
!= '\n') {
119 const char *eol
= strchr(buffer
, '\n');
122 eol
= buffer
+ strlen(buffer
);
126 if (starts_with(buffer
, "author "))
131 warning(_("Missing author: %s"),
132 sha1_to_hex(commit
->object
.sha1
));
135 if (log
->user_format
) {
136 struct pretty_print_context ctx
= {0};
137 ctx
.fmt
= CMIT_FMT_USERFORMAT
;
138 ctx
.abbrev
= log
->abbrev
;
140 ctx
.after_subject
= "";
141 ctx
.date_mode
= DATE_NORMAL
;
142 ctx
.output_encoding
= get_log_output_encoding();
143 pretty_print_commit(&ctx
, commit
, &ufbuf
);
145 } else if (*buffer
) {
148 insert_one_record(log
, author
, !*buffer
? "<none>" : buffer
);
149 strbuf_release(&ufbuf
);
150 strbuf_release(&buf
);
153 static void get_from_rev(struct rev_info
*rev
, struct shortlog
*log
)
155 struct commit
*commit
;
157 if (prepare_revision_walk(rev
))
158 die(_("revision walk setup failed"));
159 while ((commit
= get_revision(rev
)) != NULL
)
160 shortlog_add_commit(log
, commit
);
163 static int parse_uint(char const **arg
, int comma
, int defval
)
169 ul
= strtoul(*arg
, &endp
, 10);
170 if (*endp
&& *endp
!= comma
)
174 ret
= *arg
== endp
? defval
: (int)ul
;
175 *arg
= *endp
? endp
+ 1 : endp
;
179 static const char wrap_arg_usage
[] = "-w[<width>[,<indent1>[,<indent2>]]]";
180 #define DEFAULT_WRAPLEN 76
181 #define DEFAULT_INDENT1 6
182 #define DEFAULT_INDENT2 9
184 static int parse_wrap_args(const struct option
*opt
, const char *arg
, int unset
)
186 struct shortlog
*log
= opt
->value
;
188 log
->wrap_lines
= !unset
;
192 log
->wrap
= DEFAULT_WRAPLEN
;
193 log
->in1
= DEFAULT_INDENT1
;
194 log
->in2
= DEFAULT_INDENT2
;
198 log
->wrap
= parse_uint(&arg
, ',', DEFAULT_WRAPLEN
);
199 log
->in1
= parse_uint(&arg
, ',', DEFAULT_INDENT1
);
200 log
->in2
= parse_uint(&arg
, '\0', DEFAULT_INDENT2
);
201 if (log
->wrap
< 0 || log
->in1
< 0 || log
->in2
< 0)
202 return error(wrap_arg_usage
);
204 ((log
->in1
&& log
->wrap
<= log
->in1
) ||
205 (log
->in2
&& log
->wrap
<= log
->in2
)))
206 return error(wrap_arg_usage
);
210 void shortlog_init(struct shortlog
*log
)
212 memset(log
, 0, sizeof(*log
));
214 read_mailmap(&log
->mailmap
, &log
->common_repo_prefix
);
216 log
->list
.strdup_strings
= 1;
217 log
->wrap
= DEFAULT_WRAPLEN
;
218 log
->in1
= DEFAULT_INDENT1
;
219 log
->in2
= DEFAULT_INDENT2
;
222 int cmd_shortlog(int argc
, const char **argv
, const char *prefix
)
224 static struct shortlog log
;
225 static struct rev_info rev
;
226 int nongit
= !startup_info
->have_repository
;
228 static const struct option options
[] = {
229 OPT_BOOL('n', "numbered", &log
.sort_by_number
,
230 N_("sort output according to the number of commits per author")),
231 OPT_BOOL('s', "summary", &log
.summary
,
232 N_("Suppress commit descriptions, only provides commit count")),
233 OPT_BOOL('e', "email", &log
.email
,
234 N_("Show the email address of each author")),
235 { OPTION_CALLBACK
, 'w', NULL
, &log
, N_("w[,i1[,i2]]"),
236 N_("Linewrap output"), PARSE_OPT_OPTARG
, &parse_wrap_args
},
240 struct parse_opt_ctx_t ctx
;
242 git_config(git_default_config
, NULL
);
244 init_revisions(&rev
, prefix
);
245 parse_options_start(&ctx
, argc
, argv
, prefix
, options
,
246 PARSE_OPT_KEEP_DASHDASH
| PARSE_OPT_KEEP_ARGV0
);
249 switch (parse_options_step(&ctx
, options
, shortlog_usage
)) {
255 parse_revision_opt(&rev
, &ctx
, options
, shortlog_usage
);
258 argc
= parse_options_end(&ctx
);
260 if (setup_revisions(argc
, argv
, &rev
, NULL
) != 1) {
261 error(_("unrecognized argument: %s"), argv
[1]);
262 usage_with_options(shortlog_usage
, options
);
265 log
.user_format
= rev
.commit_format
== CMIT_FMT_USERFORMAT
;
266 log
.abbrev
= rev
.abbrev
;
268 /* assume HEAD if from a tty */
269 if (!nongit
&& !rev
.pending
.nr
&& isatty(0))
270 add_head_to_pending(&rev
);
271 if (rev
.pending
.nr
== 0) {
273 fprintf(stderr
, _("(reading log message from standard input)\n"));
274 read_from_stdin(&log
);
277 get_from_rev(&rev
, &log
);
279 shortlog_output(&log
);
283 static void add_wrapped_shortlog_msg(struct strbuf
*sb
, const char *s
,
284 const struct shortlog
*log
)
286 strbuf_add_wrapped_text(sb
, s
, log
->in1
, log
->in2
, log
->wrap
);
287 strbuf_addch(sb
, '\n');
290 void shortlog_output(struct shortlog
*log
)
293 struct strbuf sb
= STRBUF_INIT
;
295 if (log
->sort_by_number
)
296 qsort(log
->list
.items
, log
->list
.nr
, sizeof(struct string_list_item
),
298 for (i
= 0; i
< log
->list
.nr
; i
++) {
299 struct string_list
*onelines
= log
->list
.items
[i
].util
;
302 printf("%6d\t%s\n", onelines
->nr
, log
->list
.items
[i
].string
);
304 printf("%s (%d):\n", log
->list
.items
[i
].string
, onelines
->nr
);
305 for (j
= onelines
->nr
- 1; j
>= 0; j
--) {
306 const char *msg
= onelines
->items
[j
].string
;
308 if (log
->wrap_lines
) {
310 add_wrapped_shortlog_msg(&sb
, msg
, log
);
311 fwrite(sb
.buf
, sb
.len
, 1, stdout
);
314 printf(" %s\n", msg
);
319 onelines
->strdup_strings
= 1;
320 string_list_clear(onelines
, 0);
322 log
->list
.items
[i
].util
= NULL
;
326 log
->list
.strdup_strings
= 1;
327 string_list_clear(&log
->list
, 1);
328 clear_mailmap(&log
->mailmap
);