graph: remove `mapping_idx` and `graph_update_width()`
[git] / graph.c
1 #include "cache.h"
2 #include "config.h"
3 #include "commit.h"
4 #include "color.h"
5 #include "graph.h"
6 #include "revision.h"
7 #include "argv-array.h"
8
9 /* Internal API */
10
11 /*
12  * Output a padding line in the graph.
13  * This is similar to graph_next_line().  However, it is guaranteed to
14  * never print the current commit line.  Instead, if the commit line is
15  * next, it will simply output a line of vertical padding, extending the
16  * branch lines downwards, but leaving them otherwise unchanged.
17  */
18 static void graph_padding_line(struct git_graph *graph, struct strbuf *sb);
19
20 /*
21  * Print a strbuf.  If the graph is non-NULL, all lines but the first will be
22  * prefixed with the graph output.
23  *
24  * If the strbuf ends with a newline, the output will end after this
25  * newline.  A new graph line will not be printed after the final newline.
26  * If the strbuf is empty, no output will be printed.
27  *
28  * Since the first line will not include the graph output, the caller is
29  * responsible for printing this line's graph (perhaps via
30  * graph_show_commit() or graph_show_oneline()) before calling
31  * graph_show_strbuf().
32  *
33  * Note that unlike some other graph display functions, you must pass the file
34  * handle directly. It is assumed that this is the same file handle as the
35  * file specified by the graph diff options. This is necessary so that
36  * graph_show_strbuf can be called even with a NULL graph.
37  */
38 static void graph_show_strbuf(struct git_graph *graph,
39                               FILE *file,
40                               struct strbuf const *sb);
41
42 /*
43  * TODO:
44  * - Limit the number of columns, similar to the way gitk does.
45  *   If we reach more than a specified number of columns, omit
46  *   sections of some columns.
47  */
48
49 struct column {
50         /*
51          * The parent commit of this column.
52          */
53         struct commit *commit;
54         /*
55          * The color to (optionally) print this column in.  This is an
56          * index into column_colors.
57          */
58         unsigned short color;
59 };
60
61 enum graph_state {
62         GRAPH_PADDING,
63         GRAPH_SKIP,
64         GRAPH_PRE_COMMIT,
65         GRAPH_COMMIT,
66         GRAPH_POST_MERGE,
67         GRAPH_COLLAPSING
68 };
69
70 static void graph_show_line_prefix(const struct diff_options *diffopt)
71 {
72         if (!diffopt || !diffopt->line_prefix)
73                 return;
74
75         fwrite(diffopt->line_prefix,
76                sizeof(char),
77                diffopt->line_prefix_length,
78                diffopt->file);
79 }
80
81 static const char **column_colors;
82 static unsigned short column_colors_max;
83
84 static void parse_graph_colors_config(struct argv_array *colors, const char *string)
85 {
86         const char *end, *start;
87
88         start = string;
89         end = string + strlen(string);
90         while (start < end) {
91                 const char *comma = strchrnul(start, ',');
92                 char color[COLOR_MAXLEN];
93
94                 if (!color_parse_mem(start, comma - start, color))
95                         argv_array_push(colors, color);
96                 else
97                         warning(_("ignore invalid color '%.*s' in log.graphColors"),
98                                 (int)(comma - start), start);
99                 start = comma + 1;
100         }
101         argv_array_push(colors, GIT_COLOR_RESET);
102 }
103
104 void graph_set_column_colors(const char **colors, unsigned short colors_max)
105 {
106         column_colors = colors;
107         column_colors_max = colors_max;
108 }
109
110 static const char *column_get_color_code(unsigned short color)
111 {
112         return column_colors[color];
113 }
114
115 struct graph_line {
116         struct strbuf *buf;
117         size_t width;
118 };
119
120 static inline void graph_line_addch(struct graph_line *line, int c)
121 {
122         strbuf_addch(line->buf, c);
123         line->width++;
124 }
125
126 static inline void graph_line_addchars(struct graph_line *line, int c, size_t n)
127 {
128         strbuf_addchars(line->buf, c, n);
129         line->width += n;
130 }
131
132 static inline void graph_line_addstr(struct graph_line *line, const char *s)
133 {
134         strbuf_addstr(line->buf, s);
135         line->width += strlen(s);
136 }
137
138 static inline void graph_line_addcolor(struct graph_line *line, unsigned short color)
139 {
140         strbuf_addstr(line->buf, column_get_color_code(color));
141 }
142
143 static void graph_line_write_column(struct graph_line *line, const struct column *c,
144                                     char col_char)
145 {
146         if (c->color < column_colors_max)
147                 graph_line_addcolor(line, c->color);
148         graph_line_addch(line, col_char);
149         if (c->color < column_colors_max)
150                 graph_line_addcolor(line, column_colors_max);
151 }
152
153 struct git_graph {
154         /*
155          * The commit currently being processed
156          */
157         struct commit *commit;
158         /* The rev-info used for the current traversal */
159         struct rev_info *revs;
160         /*
161          * The number of interesting parents that this commit has.
162          *
163          * Note that this is not the same as the actual number of parents.
164          * This count excludes parents that won't be printed in the graph
165          * output, as determined by graph_is_interesting().
166          */
167         int num_parents;
168         /*
169          * The width of the graph output for this commit.
170          * All rows for this commit are padded to this width, so that
171          * messages printed after the graph output are aligned.
172          */
173         int width;
174         /*
175          * The next expansion row to print
176          * when state is GRAPH_PRE_COMMIT
177          */
178         int expansion_row;
179         /*
180          * The current output state.
181          * This tells us what kind of line graph_next_line() should output.
182          */
183         enum graph_state state;
184         /*
185          * The output state for the previous line of output.
186          * This is primarily used to determine how the first merge line
187          * should appear, based on the last line of the previous commit.
188          */
189         enum graph_state prev_state;
190         /*
191          * The index of the column that refers to this commit.
192          *
193          * If none of the incoming columns refer to this commit,
194          * this will be equal to num_columns.
195          */
196         int commit_index;
197         /*
198          * The commit_index for the previously displayed commit.
199          *
200          * This is used to determine how the first line of a merge
201          * graph output should appear, based on the last line of the
202          * previous commit.
203          */
204         int prev_commit_index;
205         /*
206          * The maximum number of columns that can be stored in the columns
207          * and new_columns arrays.  This is also half the number of entries
208          * that can be stored in the mapping and new_mapping arrays.
209          */
210         int column_capacity;
211         /*
212          * The number of columns (also called "branch lines" in some places)
213          */
214         int num_columns;
215         /*
216          * The number of columns in the new_columns array
217          */
218         int num_new_columns;
219         /*
220          * The number of entries in the mapping array
221          */
222         int mapping_size;
223         /*
224          * The column state before we output the current commit.
225          */
226         struct column *columns;
227         /*
228          * The new column state after we output the current commit.
229          * Only valid when state is GRAPH_COLLAPSING.
230          */
231         struct column *new_columns;
232         /*
233          * An array that tracks the current state of each
234          * character in the output line during state GRAPH_COLLAPSING.
235          * Each entry is -1 if this character is empty, or a non-negative
236          * integer if the character contains a branch line.  The value of
237          * the integer indicates the target position for this branch line.
238          * (I.e., this array maps the current column positions to their
239          * desired positions.)
240          *
241          * The maximum capacity of this array is always
242          * sizeof(int) * 2 * column_capacity.
243          */
244         int *mapping;
245         /*
246          * A temporary array for computing the next mapping state
247          * while we are outputting a mapping line.  This is stored as part
248          * of the git_graph simply so we don't have to allocate a new
249          * temporary array each time we have to output a collapsing line.
250          */
251         int *new_mapping;
252         /*
253          * The current default column color being used.  This is
254          * stored as an index into the array column_colors.
255          */
256         unsigned short default_column_color;
257 };
258
259 static struct strbuf *diff_output_prefix_callback(struct diff_options *opt, void *data)
260 {
261         struct git_graph *graph = data;
262         static struct strbuf msgbuf = STRBUF_INIT;
263
264         assert(opt);
265
266         strbuf_reset(&msgbuf);
267         if (opt->line_prefix)
268                 strbuf_add(&msgbuf, opt->line_prefix,
269                            opt->line_prefix_length);
270         if (graph)
271                 graph_padding_line(graph, &msgbuf);
272         return &msgbuf;
273 }
274
275 static const struct diff_options *default_diffopt;
276
277 void graph_setup_line_prefix(struct diff_options *diffopt)
278 {
279         default_diffopt = diffopt;
280
281         /* setup an output prefix callback if necessary */
282         if (diffopt && !diffopt->output_prefix)
283                 diffopt->output_prefix = diff_output_prefix_callback;
284 }
285
286
287 struct git_graph *graph_init(struct rev_info *opt)
288 {
289         struct git_graph *graph = xmalloc(sizeof(struct git_graph));
290
291         if (!column_colors) {
292                 char *string;
293                 if (git_config_get_string("log.graphcolors", &string)) {
294                         /* not configured -- use default */
295                         graph_set_column_colors(column_colors_ansi,
296                                                 column_colors_ansi_max);
297                 } else {
298                         static struct argv_array custom_colors = ARGV_ARRAY_INIT;
299                         argv_array_clear(&custom_colors);
300                         parse_graph_colors_config(&custom_colors, string);
301                         free(string);
302                         /* graph_set_column_colors takes a max-index, not a count */
303                         graph_set_column_colors(custom_colors.argv,
304                                                 custom_colors.argc - 1);
305                 }
306         }
307
308         graph->commit = NULL;
309         graph->revs = opt;
310         graph->num_parents = 0;
311         graph->expansion_row = 0;
312         graph->state = GRAPH_PADDING;
313         graph->prev_state = GRAPH_PADDING;
314         graph->commit_index = 0;
315         graph->prev_commit_index = 0;
316         graph->num_columns = 0;
317         graph->num_new_columns = 0;
318         graph->mapping_size = 0;
319         /*
320          * Start the column color at the maximum value, since we'll
321          * always increment it for the first commit we output.
322          * This way we start at 0 for the first commit.
323          */
324         graph->default_column_color = column_colors_max - 1;
325
326         /*
327          * Allocate a reasonably large default number of columns
328          * We'll automatically grow columns later if we need more room.
329          */
330         graph->column_capacity = 30;
331         ALLOC_ARRAY(graph->columns, graph->column_capacity);
332         ALLOC_ARRAY(graph->new_columns, graph->column_capacity);
333         ALLOC_ARRAY(graph->mapping, 2 * graph->column_capacity);
334         ALLOC_ARRAY(graph->new_mapping, 2 * graph->column_capacity);
335
336         /*
337          * The diff output prefix callback, with this we can make
338          * all the diff output to align with the graph lines.
339          */
340         opt->diffopt.output_prefix = diff_output_prefix_callback;
341         opt->diffopt.output_prefix_data = graph;
342
343         return graph;
344 }
345
346 static void graph_update_state(struct git_graph *graph, enum graph_state s)
347 {
348         graph->prev_state = graph->state;
349         graph->state = s;
350 }
351
352 static void graph_ensure_capacity(struct git_graph *graph, int num_columns)
353 {
354         if (graph->column_capacity >= num_columns)
355                 return;
356
357         do {
358                 graph->column_capacity *= 2;
359         } while (graph->column_capacity < num_columns);
360
361         REALLOC_ARRAY(graph->columns, graph->column_capacity);
362         REALLOC_ARRAY(graph->new_columns, graph->column_capacity);
363         REALLOC_ARRAY(graph->mapping, graph->column_capacity * 2);
364         REALLOC_ARRAY(graph->new_mapping, graph->column_capacity * 2);
365 }
366
367 /*
368  * Returns 1 if the commit will be printed in the graph output,
369  * and 0 otherwise.
370  */
371 static int graph_is_interesting(struct git_graph *graph, struct commit *commit)
372 {
373         /*
374          * If revs->boundary is set, commits whose children have
375          * been shown are always interesting, even if they have the
376          * UNINTERESTING or TREESAME flags set.
377          */
378         if (graph->revs && graph->revs->boundary) {
379                 if (commit->object.flags & CHILD_SHOWN)
380                         return 1;
381         }
382
383         /*
384          * Otherwise, use get_commit_action() to see if this commit is
385          * interesting
386          */
387         return get_commit_action(graph->revs, commit) == commit_show;
388 }
389
390 static struct commit_list *next_interesting_parent(struct git_graph *graph,
391                                                    struct commit_list *orig)
392 {
393         struct commit_list *list;
394
395         /*
396          * If revs->first_parent_only is set, only the first
397          * parent is interesting.  None of the others are.
398          */
399         if (graph->revs->first_parent_only)
400                 return NULL;
401
402         /*
403          * Return the next interesting commit after orig
404          */
405         for (list = orig->next; list; list = list->next) {
406                 if (graph_is_interesting(graph, list->item))
407                         return list;
408         }
409
410         return NULL;
411 }
412
413 static struct commit_list *first_interesting_parent(struct git_graph *graph)
414 {
415         struct commit_list *parents = graph->commit->parents;
416
417         /*
418          * If this commit has no parents, ignore it
419          */
420         if (!parents)
421                 return NULL;
422
423         /*
424          * If the first parent is interesting, return it
425          */
426         if (graph_is_interesting(graph, parents->item))
427                 return parents;
428
429         /*
430          * Otherwise, call next_interesting_parent() to get
431          * the next interesting parent
432          */
433         return next_interesting_parent(graph, parents);
434 }
435
436 static unsigned short graph_get_current_column_color(const struct git_graph *graph)
437 {
438         if (!want_color(graph->revs->diffopt.use_color))
439                 return column_colors_max;
440         return graph->default_column_color;
441 }
442
443 /*
444  * Update the graph's default column color.
445  */
446 static void graph_increment_column_color(struct git_graph *graph)
447 {
448         graph->default_column_color = (graph->default_column_color + 1) %
449                 column_colors_max;
450 }
451
452 static unsigned short graph_find_commit_color(const struct git_graph *graph,
453                                               const struct commit *commit)
454 {
455         int i;
456         for (i = 0; i < graph->num_columns; i++) {
457                 if (graph->columns[i].commit == commit)
458                         return graph->columns[i].color;
459         }
460         return graph_get_current_column_color(graph);
461 }
462
463 static int graph_find_new_column_by_commit(struct git_graph *graph,
464                                            struct commit *commit)
465 {
466         int i;
467         for (i = 0; i < graph->num_new_columns; i++) {
468                 if (graph->new_columns[i].commit == commit)
469                         return i;
470         }
471         return -1;
472 }
473
474 static void graph_insert_into_new_columns(struct git_graph *graph,
475                                           struct commit *commit)
476 {
477         int i = graph_find_new_column_by_commit(graph, commit);
478
479         /*
480          * If the commit is not already in the new_columns array, then add it
481          * and record it as being in the final column.
482          */
483         if (i < 0) {
484                 i = graph->num_new_columns++;
485                 graph->new_columns[i].commit = commit;
486                 graph->new_columns[i].color = graph_find_commit_color(graph, commit);
487         }
488
489         graph->mapping[graph->width] = i;
490         graph->width += 2;
491 }
492
493 static void graph_update_columns(struct git_graph *graph)
494 {
495         struct commit_list *parent;
496         int max_new_columns;
497         int i, seen_this, is_commit_in_columns;
498
499         /*
500          * Swap graph->columns with graph->new_columns
501          * graph->columns contains the state for the previous commit,
502          * and new_columns now contains the state for our commit.
503          *
504          * We'll re-use the old columns array as storage to compute the new
505          * columns list for the commit after this one.
506          */
507         SWAP(graph->columns, graph->new_columns);
508         graph->num_columns = graph->num_new_columns;
509         graph->num_new_columns = 0;
510
511         /*
512          * Now update new_columns and mapping with the information for the
513          * commit after this one.
514          *
515          * First, make sure we have enough room.  At most, there will
516          * be graph->num_columns + graph->num_parents columns for the next
517          * commit.
518          */
519         max_new_columns = graph->num_columns + graph->num_parents;
520         graph_ensure_capacity(graph, max_new_columns);
521
522         /*
523          * Clear out graph->mapping
524          */
525         graph->mapping_size = 2 * max_new_columns;
526         for (i = 0; i < graph->mapping_size; i++)
527                 graph->mapping[i] = -1;
528
529         graph->width = 0;
530
531         /*
532          * Populate graph->new_columns and graph->mapping
533          *
534          * Some of the parents of this commit may already be in
535          * graph->columns.  If so, graph->new_columns should only contain a
536          * single entry for each such commit.  graph->mapping should
537          * contain information about where each current branch line is
538          * supposed to end up after the collapsing is performed.
539          */
540         seen_this = 0;
541         is_commit_in_columns = 1;
542         for (i = 0; i <= graph->num_columns; i++) {
543                 struct commit *col_commit;
544                 if (i == graph->num_columns) {
545                         if (seen_this)
546                                 break;
547                         is_commit_in_columns = 0;
548                         col_commit = graph->commit;
549                 } else {
550                         col_commit = graph->columns[i].commit;
551                 }
552
553                 if (col_commit == graph->commit) {
554                         seen_this = 1;
555                         graph->commit_index = i;
556                         for (parent = first_interesting_parent(graph);
557                              parent;
558                              parent = next_interesting_parent(graph, parent)) {
559                                 /*
560                                  * If this is a merge, or the start of a new
561                                  * childless column, increment the current
562                                  * color.
563                                  */
564                                 if (graph->num_parents > 1 ||
565                                     !is_commit_in_columns) {
566                                         graph_increment_column_color(graph);
567                                 }
568                                 graph_insert_into_new_columns(graph, parent->item);
569                         }
570                         /*
571                          * We always need to increment graph->width by at
572                          * least 2, even if it has no interesting parents.
573                          * The current commit always takes up at least 2
574                          * spaces.
575                          */
576                         if (graph->num_parents == 0)
577                                 graph->width += 2;
578                 } else {
579                         graph_insert_into_new_columns(graph, col_commit);
580                 }
581         }
582
583         /*
584          * Shrink mapping_size to be the minimum necessary
585          */
586         while (graph->mapping_size > 1 &&
587                graph->mapping[graph->mapping_size - 1] < 0)
588                 graph->mapping_size--;
589 }
590
591 void graph_update(struct git_graph *graph, struct commit *commit)
592 {
593         struct commit_list *parent;
594
595         /*
596          * Set the new commit
597          */
598         graph->commit = commit;
599
600         /*
601          * Count how many interesting parents this commit has
602          */
603         graph->num_parents = 0;
604         for (parent = first_interesting_parent(graph);
605              parent;
606              parent = next_interesting_parent(graph, parent))
607         {
608                 graph->num_parents++;
609         }
610
611         /*
612          * Store the old commit_index in prev_commit_index.
613          * graph_update_columns() will update graph->commit_index for this
614          * commit.
615          */
616         graph->prev_commit_index = graph->commit_index;
617
618         /*
619          * Call graph_update_columns() to update
620          * columns, new_columns, and mapping.
621          */
622         graph_update_columns(graph);
623
624         graph->expansion_row = 0;
625
626         /*
627          * Update graph->state.
628          * Note that we don't call graph_update_state() here, since
629          * we don't want to update graph->prev_state.  No line for
630          * graph->state was ever printed.
631          *
632          * If the previous commit didn't get to the GRAPH_PADDING state,
633          * it never finished its output.  Goto GRAPH_SKIP, to print out
634          * a line to indicate that portion of the graph is missing.
635          *
636          * If there are 3 or more parents, we may need to print extra rows
637          * before the commit, to expand the branch lines around it and make
638          * room for it.  We need to do this only if there is a branch row
639          * (or more) to the right of this commit.
640          *
641          * If there are less than 3 parents, we can immediately print the
642          * commit line.
643          */
644         if (graph->state != GRAPH_PADDING)
645                 graph->state = GRAPH_SKIP;
646         else if (graph->num_parents >= 3 &&
647                  graph->commit_index < (graph->num_columns - 1))
648                 graph->state = GRAPH_PRE_COMMIT;
649         else
650                 graph->state = GRAPH_COMMIT;
651 }
652
653 static int graph_is_mapping_correct(struct git_graph *graph)
654 {
655         int i;
656
657         /*
658          * The mapping is up to date if each entry is at its target,
659          * or is 1 greater than its target.
660          * (If it is 1 greater than the target, '/' will be printed, so it
661          * will look correct on the next row.)
662          */
663         for (i = 0; i < graph->mapping_size; i++) {
664                 int target = graph->mapping[i];
665                 if (target < 0)
666                         continue;
667                 if (target == (i / 2))
668                         continue;
669                 return 0;
670         }
671
672         return 1;
673 }
674
675 static void graph_pad_horizontally(struct git_graph *graph, struct graph_line *line)
676 {
677         /*
678          * Add additional spaces to the end of the strbuf, so that all
679          * lines for a particular commit have the same width.
680          *
681          * This way, fields printed to the right of the graph will remain
682          * aligned for the entire commit.
683          */
684         if (line->width < graph->width)
685                 graph_line_addchars(line, ' ', graph->width - line->width);
686 }
687
688 static void graph_output_padding_line(struct git_graph *graph,
689                                       struct graph_line *line)
690 {
691         int i;
692
693         /*
694          * Output a padding row, that leaves all branch lines unchanged
695          */
696         for (i = 0; i < graph->num_new_columns; i++) {
697                 graph_line_write_column(line, &graph->new_columns[i], '|');
698                 graph_line_addch(line, ' ');
699         }
700 }
701
702
703 int graph_width(struct git_graph *graph)
704 {
705         return graph->width;
706 }
707
708
709 static void graph_output_skip_line(struct git_graph *graph, struct graph_line *line)
710 {
711         /*
712          * Output an ellipsis to indicate that a portion
713          * of the graph is missing.
714          */
715         graph_line_addstr(line, "...");
716
717         if (graph->num_parents >= 3 &&
718             graph->commit_index < (graph->num_columns - 1))
719                 graph_update_state(graph, GRAPH_PRE_COMMIT);
720         else
721                 graph_update_state(graph, GRAPH_COMMIT);
722 }
723
724 static void graph_output_pre_commit_line(struct git_graph *graph,
725                                          struct graph_line *line)
726 {
727         int num_expansion_rows;
728         int i, seen_this;
729
730         /*
731          * This function formats a row that increases the space around a commit
732          * with multiple parents, to make room for it.  It should only be
733          * called when there are 3 or more parents.
734          *
735          * We need 2 extra rows for every parent over 2.
736          */
737         assert(graph->num_parents >= 3);
738         num_expansion_rows = (graph->num_parents - 2) * 2;
739
740         /*
741          * graph->expansion_row tracks the current expansion row we are on.
742          * It should be in the range [0, num_expansion_rows - 1]
743          */
744         assert(0 <= graph->expansion_row &&
745                graph->expansion_row < num_expansion_rows);
746
747         /*
748          * Output the row
749          */
750         seen_this = 0;
751         for (i = 0; i < graph->num_columns; i++) {
752                 struct column *col = &graph->columns[i];
753                 if (col->commit == graph->commit) {
754                         seen_this = 1;
755                         graph_line_write_column(line, col, '|');
756                         graph_line_addchars(line, ' ', graph->expansion_row);
757                 } else if (seen_this && (graph->expansion_row == 0)) {
758                         /*
759                          * This is the first line of the pre-commit output.
760                          * If the previous commit was a merge commit and
761                          * ended in the GRAPH_POST_MERGE state, all branch
762                          * lines after graph->prev_commit_index were
763                          * printed as "\" on the previous line.  Continue
764                          * to print them as "\" on this line.  Otherwise,
765                          * print the branch lines as "|".
766                          */
767                         if (graph->prev_state == GRAPH_POST_MERGE &&
768                             graph->prev_commit_index < i)
769                                 graph_line_write_column(line, col, '\\');
770                         else
771                                 graph_line_write_column(line, col, '|');
772                 } else if (seen_this && (graph->expansion_row > 0)) {
773                         graph_line_write_column(line, col, '\\');
774                 } else {
775                         graph_line_write_column(line, col, '|');
776                 }
777                 graph_line_addch(line, ' ');
778         }
779
780         /*
781          * Increment graph->expansion_row,
782          * and move to state GRAPH_COMMIT if necessary
783          */
784         graph->expansion_row++;
785         if (graph->expansion_row >= num_expansion_rows)
786                 graph_update_state(graph, GRAPH_COMMIT);
787 }
788
789 static void graph_output_commit_char(struct git_graph *graph, struct graph_line *line)
790 {
791         /*
792          * For boundary commits, print 'o'
793          * (We should only see boundary commits when revs->boundary is set.)
794          */
795         if (graph->commit->object.flags & BOUNDARY) {
796                 assert(graph->revs->boundary);
797                 graph_line_addch(line, 'o');
798                 return;
799         }
800
801         /*
802          * get_revision_mark() handles all other cases without assert()
803          */
804         graph_line_addstr(line, get_revision_mark(graph->revs, graph->commit));
805 }
806
807 /*
808  * Draw the horizontal dashes of an octopus merge.
809  */
810 static void graph_draw_octopus_merge(struct git_graph *graph, struct graph_line *line)
811 {
812         /*
813          * Here dashless_parents represents the number of parents which don't
814          * need to have dashes (the edges labeled "0" and "1").  And
815          * dashful_parents are the remaining ones.
816          *
817          * | *---.
818          * | |\ \ \
819          * | | | | |
820          * x 0 1 2 3
821          *
822          */
823         const int dashless_parents = 2;
824         int dashful_parents = graph->num_parents - dashless_parents;
825
826         /*
827          * Usually, we add one new column for each parent (like the diagram
828          * above) but sometimes the first parent goes into an existing column,
829          * like this:
830          *
831          * | *---.
832          * | |\ \ \
833          * |/ / / /
834          * x 0 1 2
835          *
836          * In which case the number of parents will be one greater than the
837          * number of added columns.
838          */
839         int added_cols = (graph->num_new_columns - graph->num_columns);
840         int parent_in_old_cols = graph->num_parents - added_cols;
841
842         /*
843          * In both cases, commit_index corresponds to the edge labeled "0".
844          */
845         int first_col = graph->commit_index + dashless_parents
846             - parent_in_old_cols;
847
848         int i;
849         for (i = 0; i < dashful_parents; i++) {
850                 graph_line_write_column(line, &graph->new_columns[i+first_col], '-');
851                 graph_line_write_column(line, &graph->new_columns[i+first_col],
852                                           i == dashful_parents-1 ? '.' : '-');
853         }
854 }
855
856 static void graph_output_commit_line(struct git_graph *graph, struct graph_line *line)
857 {
858         int seen_this = 0;
859         int i;
860
861         /*
862          * Output the row containing this commit
863          * Iterate up to and including graph->num_columns,
864          * since the current commit may not be in any of the existing
865          * columns.  (This happens when the current commit doesn't have any
866          * children that we have already processed.)
867          */
868         seen_this = 0;
869         for (i = 0; i <= graph->num_columns; i++) {
870                 struct column *col = &graph->columns[i];
871                 struct commit *col_commit;
872                 if (i == graph->num_columns) {
873                         if (seen_this)
874                                 break;
875                         col_commit = graph->commit;
876                 } else {
877                         col_commit = graph->columns[i].commit;
878                 }
879
880                 if (col_commit == graph->commit) {
881                         seen_this = 1;
882                         graph_output_commit_char(graph, line);
883
884                         if (graph->num_parents > 2)
885                                 graph_draw_octopus_merge(graph, line);
886                 } else if (seen_this && (graph->num_parents > 2)) {
887                         graph_line_write_column(line, col, '\\');
888                 } else if (seen_this && (graph->num_parents == 2)) {
889                         /*
890                          * This is a 2-way merge commit.
891                          * There is no GRAPH_PRE_COMMIT stage for 2-way
892                          * merges, so this is the first line of output
893                          * for this commit.  Check to see what the previous
894                          * line of output was.
895                          *
896                          * If it was GRAPH_POST_MERGE, the branch line
897                          * coming into this commit may have been '\',
898                          * and not '|' or '/'.  If so, output the branch
899                          * line as '\' on this line, instead of '|'.  This
900                          * makes the output look nicer.
901                          */
902                         if (graph->prev_state == GRAPH_POST_MERGE &&
903                             graph->prev_commit_index < i)
904                                 graph_line_write_column(line, col, '\\');
905                         else
906                                 graph_line_write_column(line, col, '|');
907                 } else {
908                         graph_line_write_column(line, col, '|');
909                 }
910                 graph_line_addch(line, ' ');
911         }
912
913         /*
914          * Update graph->state
915          */
916         if (graph->num_parents > 1)
917                 graph_update_state(graph, GRAPH_POST_MERGE);
918         else if (graph_is_mapping_correct(graph))
919                 graph_update_state(graph, GRAPH_PADDING);
920         else
921                 graph_update_state(graph, GRAPH_COLLAPSING);
922 }
923
924 static void graph_output_post_merge_line(struct git_graph *graph, struct graph_line *line)
925 {
926         int seen_this = 0;
927         int i, j;
928
929         /*
930          * Output the post-merge row
931          */
932         for (i = 0; i <= graph->num_columns; i++) {
933                 struct column *col = &graph->columns[i];
934                 struct commit *col_commit;
935                 if (i == graph->num_columns) {
936                         if (seen_this)
937                                 break;
938                         col_commit = graph->commit;
939                 } else {
940                         col_commit = col->commit;
941                 }
942
943                 if (col_commit == graph->commit) {
944                         /*
945                          * Since the current commit is a merge find
946                          * the columns for the parent commits in
947                          * new_columns and use those to format the
948                          * edges.
949                          */
950                         struct commit_list *parents = NULL;
951                         int par_column;
952                         seen_this = 1;
953                         parents = first_interesting_parent(graph);
954                         assert(parents);
955                         par_column = graph_find_new_column_by_commit(graph, parents->item);
956                         assert(par_column >= 0);
957
958                         graph_line_write_column(line, &graph->new_columns[par_column], '|');
959                         for (j = 0; j < graph->num_parents - 1; j++) {
960                                 parents = next_interesting_parent(graph, parents);
961                                 assert(parents);
962                                 par_column = graph_find_new_column_by_commit(graph, parents->item);
963                                 assert(par_column >= 0);
964                                 graph_line_write_column(line, &graph->new_columns[par_column], '\\');
965                                 graph_line_addch(line, ' ');
966                         }
967                 } else if (seen_this) {
968                         graph_line_write_column(line, col, '\\');
969                         graph_line_addch(line, ' ');
970                 } else {
971                         graph_line_write_column(line, col, '|');
972                         graph_line_addch(line, ' ');
973                 }
974         }
975
976         /*
977          * Update graph->state
978          */
979         if (graph_is_mapping_correct(graph))
980                 graph_update_state(graph, GRAPH_PADDING);
981         else
982                 graph_update_state(graph, GRAPH_COLLAPSING);
983 }
984
985 static void graph_output_collapsing_line(struct git_graph *graph, struct graph_line *line)
986 {
987         int i;
988         short used_horizontal = 0;
989         int horizontal_edge = -1;
990         int horizontal_edge_target = -1;
991
992         /*
993          * Clear out the new_mapping array
994          */
995         for (i = 0; i < graph->mapping_size; i++)
996                 graph->new_mapping[i] = -1;
997
998         for (i = 0; i < graph->mapping_size; i++) {
999                 int target = graph->mapping[i];
1000                 if (target < 0)
1001                         continue;
1002
1003                 /*
1004                  * Since update_columns() always inserts the leftmost
1005                  * column first, each branch's target location should
1006                  * always be either its current location or to the left of
1007                  * its current location.
1008                  *
1009                  * We never have to move branches to the right.  This makes
1010                  * the graph much more legible, since whenever branches
1011                  * cross, only one is moving directions.
1012                  */
1013                 assert(target * 2 <= i);
1014
1015                 if (target * 2 == i) {
1016                         /*
1017                          * This column is already in the
1018                          * correct place
1019                          */
1020                         assert(graph->new_mapping[i] == -1);
1021                         graph->new_mapping[i] = target;
1022                 } else if (graph->new_mapping[i - 1] < 0) {
1023                         /*
1024                          * Nothing is to the left.
1025                          * Move to the left by one
1026                          */
1027                         graph->new_mapping[i - 1] = target;
1028                         /*
1029                          * If there isn't already an edge moving horizontally
1030                          * select this one.
1031                          */
1032                         if (horizontal_edge == -1) {
1033                                 int j;
1034                                 horizontal_edge = i;
1035                                 horizontal_edge_target = target;
1036                                 /*
1037                                  * The variable target is the index of the graph
1038                                  * column, and therefore target*2+3 is the
1039                                  * actual screen column of the first horizontal
1040                                  * line.
1041                                  */
1042                                 for (j = (target * 2)+3; j < (i - 2); j += 2)
1043                                         graph->new_mapping[j] = target;
1044                         }
1045                 } else if (graph->new_mapping[i - 1] == target) {
1046                         /*
1047                          * There is a branch line to our left
1048                          * already, and it is our target.  We
1049                          * combine with this line, since we share
1050                          * the same parent commit.
1051                          *
1052                          * We don't have to add anything to the
1053                          * output or new_mapping, since the
1054                          * existing branch line has already taken
1055                          * care of it.
1056                          */
1057                 } else {
1058                         /*
1059                          * There is a branch line to our left,
1060                          * but it isn't our target.  We need to
1061                          * cross over it.
1062                          *
1063                          * The space just to the left of this
1064                          * branch should always be empty.
1065                          *
1066                          * The branch to the left of that space
1067                          * should be our eventual target.
1068                          */
1069                         assert(graph->new_mapping[i - 1] > target);
1070                         assert(graph->new_mapping[i - 2] < 0);
1071                         assert(graph->new_mapping[i - 3] == target);
1072                         graph->new_mapping[i - 2] = target;
1073                         /*
1074                          * Mark this branch as the horizontal edge to
1075                          * prevent any other edges from moving
1076                          * horizontally.
1077                          */
1078                         if (horizontal_edge == -1)
1079                                 horizontal_edge = i;
1080                 }
1081         }
1082
1083         /*
1084          * The new mapping may be 1 smaller than the old mapping
1085          */
1086         if (graph->new_mapping[graph->mapping_size - 1] < 0)
1087                 graph->mapping_size--;
1088
1089         /*
1090          * Output out a line based on the new mapping info
1091          */
1092         for (i = 0; i < graph->mapping_size; i++) {
1093                 int target = graph->new_mapping[i];
1094                 if (target < 0)
1095                         graph_line_addch(line, ' ');
1096                 else if (target * 2 == i)
1097                         graph_line_write_column(line, &graph->new_columns[target], '|');
1098                 else if (target == horizontal_edge_target &&
1099                          i != horizontal_edge - 1) {
1100                                 /*
1101                                  * Set the mappings for all but the
1102                                  * first segment to -1 so that they
1103                                  * won't continue into the next line.
1104                                  */
1105                                 if (i != (target * 2)+3)
1106                                         graph->new_mapping[i] = -1;
1107                                 used_horizontal = 1;
1108                         graph_line_write_column(line, &graph->new_columns[target], '_');
1109                 } else {
1110                         if (used_horizontal && i < horizontal_edge)
1111                                 graph->new_mapping[i] = -1;
1112                         graph_line_write_column(line, &graph->new_columns[target], '/');
1113
1114                 }
1115         }
1116
1117         /*
1118          * Swap mapping and new_mapping
1119          */
1120         SWAP(graph->mapping, graph->new_mapping);
1121
1122         /*
1123          * If graph->mapping indicates that all of the branch lines
1124          * are already in the correct positions, we are done.
1125          * Otherwise, we need to collapse some branch lines together.
1126          */
1127         if (graph_is_mapping_correct(graph))
1128                 graph_update_state(graph, GRAPH_PADDING);
1129 }
1130
1131 int graph_next_line(struct git_graph *graph, struct strbuf *sb)
1132 {
1133         int shown_commit_line = 0;
1134         struct graph_line line = { .buf = sb, .width = 0 };
1135
1136         /*
1137          * We could conceivable be called with a NULL commit
1138          * if our caller has a bug, and invokes graph_next_line()
1139          * immediately after graph_init(), without first calling
1140          * graph_update().  Return without outputting anything in this
1141          * case.
1142          */
1143         if (!graph->commit)
1144                 return -1;
1145
1146         switch (graph->state) {
1147         case GRAPH_PADDING:
1148                 graph_output_padding_line(graph, &line);
1149                 break;
1150         case GRAPH_SKIP:
1151                 graph_output_skip_line(graph, &line);
1152                 break;
1153         case GRAPH_PRE_COMMIT:
1154                 graph_output_pre_commit_line(graph, &line);
1155                 break;
1156         case GRAPH_COMMIT:
1157                 graph_output_commit_line(graph, &line);
1158                 shown_commit_line = 1;
1159                 break;
1160         case GRAPH_POST_MERGE:
1161                 graph_output_post_merge_line(graph, &line);
1162                 break;
1163         case GRAPH_COLLAPSING:
1164                 graph_output_collapsing_line(graph, &line);
1165                 break;
1166         }
1167
1168         graph_pad_horizontally(graph, &line);
1169         return shown_commit_line;
1170 }
1171
1172 static void graph_padding_line(struct git_graph *graph, struct strbuf *sb)
1173 {
1174         int i;
1175         struct graph_line line = { .buf = sb, .width = 0 };
1176
1177         if (graph->state != GRAPH_COMMIT) {
1178                 graph_next_line(graph, sb);
1179                 return;
1180         }
1181
1182         /*
1183          * Output the row containing this commit
1184          * Iterate up to and including graph->num_columns,
1185          * since the current commit may not be in any of the existing
1186          * columns.  (This happens when the current commit doesn't have any
1187          * children that we have already processed.)
1188          */
1189         for (i = 0; i < graph->num_columns; i++) {
1190                 struct column *col = &graph->columns[i];
1191
1192                 graph_line_write_column(&line, col, '|');
1193
1194                 if (col->commit == graph->commit && graph->num_parents > 2) {
1195                         int len = (graph->num_parents - 2) * 2;
1196                         graph_line_addchars(&line, ' ', len);
1197                 } else {
1198                         graph_line_addch(&line, ' ');
1199                 }
1200         }
1201
1202         graph_pad_horizontally(graph, &line);
1203
1204         /*
1205          * Update graph->prev_state since we have output a padding line
1206          */
1207         graph->prev_state = GRAPH_PADDING;
1208 }
1209
1210 int graph_is_commit_finished(struct git_graph const *graph)
1211 {
1212         return (graph->state == GRAPH_PADDING);
1213 }
1214
1215 void graph_show_commit(struct git_graph *graph)
1216 {
1217         struct strbuf msgbuf = STRBUF_INIT;
1218         int shown_commit_line = 0;
1219
1220         graph_show_line_prefix(default_diffopt);
1221
1222         if (!graph)
1223                 return;
1224
1225         /*
1226          * When showing a diff of a merge against each of its parents, we
1227          * are called once for each parent without graph_update having been
1228          * called.  In this case, simply output a single padding line.
1229          */
1230         if (graph_is_commit_finished(graph)) {
1231                 graph_show_padding(graph);
1232                 shown_commit_line = 1;
1233         }
1234
1235         while (!shown_commit_line && !graph_is_commit_finished(graph)) {
1236                 shown_commit_line = graph_next_line(graph, &msgbuf);
1237                 fwrite(msgbuf.buf, sizeof(char), msgbuf.len,
1238                         graph->revs->diffopt.file);
1239                 if (!shown_commit_line) {
1240                         putc('\n', graph->revs->diffopt.file);
1241                         graph_show_line_prefix(&graph->revs->diffopt);
1242                 }
1243                 strbuf_setlen(&msgbuf, 0);
1244         }
1245
1246         strbuf_release(&msgbuf);
1247 }
1248
1249 void graph_show_oneline(struct git_graph *graph)
1250 {
1251         struct strbuf msgbuf = STRBUF_INIT;
1252
1253         graph_show_line_prefix(default_diffopt);
1254
1255         if (!graph)
1256                 return;
1257
1258         graph_next_line(graph, &msgbuf);
1259         fwrite(msgbuf.buf, sizeof(char), msgbuf.len, graph->revs->diffopt.file);
1260         strbuf_release(&msgbuf);
1261 }
1262
1263 void graph_show_padding(struct git_graph *graph)
1264 {
1265         struct strbuf msgbuf = STRBUF_INIT;
1266
1267         graph_show_line_prefix(default_diffopt);
1268
1269         if (!graph)
1270                 return;
1271
1272         graph_padding_line(graph, &msgbuf);
1273         fwrite(msgbuf.buf, sizeof(char), msgbuf.len, graph->revs->diffopt.file);
1274         strbuf_release(&msgbuf);
1275 }
1276
1277 int graph_show_remainder(struct git_graph *graph)
1278 {
1279         struct strbuf msgbuf = STRBUF_INIT;
1280         int shown = 0;
1281
1282         graph_show_line_prefix(default_diffopt);
1283
1284         if (!graph)
1285                 return 0;
1286
1287         if (graph_is_commit_finished(graph))
1288                 return 0;
1289
1290         for (;;) {
1291                 graph_next_line(graph, &msgbuf);
1292                 fwrite(msgbuf.buf, sizeof(char), msgbuf.len,
1293                         graph->revs->diffopt.file);
1294                 strbuf_setlen(&msgbuf, 0);
1295                 shown = 1;
1296
1297                 if (!graph_is_commit_finished(graph)) {
1298                         putc('\n', graph->revs->diffopt.file);
1299                         graph_show_line_prefix(&graph->revs->diffopt);
1300                 } else {
1301                         break;
1302                 }
1303         }
1304         strbuf_release(&msgbuf);
1305
1306         return shown;
1307 }
1308
1309 static void graph_show_strbuf(struct git_graph *graph,
1310                               FILE *file,
1311                               struct strbuf const *sb)
1312 {
1313         char *p;
1314
1315         /*
1316          * Print the strbuf line by line,
1317          * and display the graph info before each line but the first.
1318          */
1319         p = sb->buf;
1320         while (p) {
1321                 size_t len;
1322                 char *next_p = strchr(p, '\n');
1323                 if (next_p) {
1324                         next_p++;
1325                         len = next_p - p;
1326                 } else {
1327                         len = (sb->buf + sb->len) - p;
1328                 }
1329                 fwrite(p, sizeof(char), len, file);
1330                 if (next_p && *next_p != '\0')
1331                         graph_show_oneline(graph);
1332                 p = next_p;
1333         }
1334 }
1335
1336 void graph_show_commit_msg(struct git_graph *graph,
1337                            FILE *file,
1338                            struct strbuf const *sb)
1339 {
1340         int newline_terminated;
1341
1342         /*
1343          * Show the commit message
1344          */
1345         graph_show_strbuf(graph, file, sb);
1346
1347         if (!graph)
1348                 return;
1349
1350         newline_terminated = (sb->len && sb->buf[sb->len - 1] == '\n');
1351
1352         /*
1353          * If there is more output needed for this commit, show it now
1354          */
1355         if (!graph_is_commit_finished(graph)) {
1356                 /*
1357                  * If sb doesn't have a terminating newline, print one now,
1358                  * so we can start the remainder of the graph output on a
1359                  * new line.
1360                  */
1361                 if (!newline_terminated)
1362                         putc('\n', file);
1363
1364                 graph_show_remainder(graph);
1365
1366                 /*
1367                  * If sb ends with a newline, our output should too.
1368                  */
1369                 if (newline_terminated)
1370                         putc('\n', file);
1371         }
1372 }