7 #include "argv-array.h"
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.
18 static void graph_padding_line(struct git_graph *graph, struct strbuf *sb);
21 * Print a strbuf. If the graph is non-NULL, all lines but the first will be
22 * prefixed with the graph output.
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.
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().
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.
38 static void graph_show_strbuf(struct git_graph *graph,
40 struct strbuf const *sb);
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.
51 * The parent commit of this column.
53 struct commit *commit;
55 * The color to (optionally) print this column in. This is an
56 * index into column_colors.
70 static void graph_show_line_prefix(const struct diff_options *diffopt)
72 if (!diffopt || !diffopt->line_prefix)
75 fwrite(diffopt->line_prefix,
77 diffopt->line_prefix_length,
81 static const char **column_colors;
82 static unsigned short column_colors_max;
84 static void parse_graph_colors_config(struct argv_array *colors, const char *string)
86 const char *end, *start;
89 end = string + strlen(string);
91 const char *comma = strchrnul(start, ',');
92 char color[COLOR_MAXLEN];
94 if (!color_parse_mem(start, comma - start, color))
95 argv_array_push(colors, color);
97 warning(_("ignore invalid color '%.*s' in log.graphColors"),
98 (int)(comma - start), start);
101 argv_array_push(colors, GIT_COLOR_RESET);
104 void graph_set_column_colors(const char **colors, unsigned short colors_max)
106 column_colors = colors;
107 column_colors_max = colors_max;
110 static const char *column_get_color_code(unsigned short color)
112 return column_colors[color];
120 static inline void graph_line_addch(struct graph_line *line, int c)
122 strbuf_addch(line->buf, c);
126 static inline void graph_line_addchars(struct graph_line *line, int c, size_t n)
128 strbuf_addchars(line->buf, c, n);
132 static inline void graph_line_addstr(struct graph_line *line, const char *s)
134 strbuf_addstr(line->buf, s);
135 line->width += strlen(s);
138 static inline void graph_line_addcolor(struct graph_line *line, unsigned short color)
140 strbuf_addstr(line->buf, column_get_color_code(color));
143 static void graph_line_write_column(struct graph_line *line, const struct column *c,
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);
155 * The commit currently being processed
157 struct commit *commit;
158 /* The rev-info used for the current traversal */
159 struct rev_info *revs;
161 * The number of interesting parents that this commit has.
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().
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.
175 * The next expansion row to print
176 * when state is GRAPH_PRE_COMMIT
180 * The current output state.
181 * This tells us what kind of line graph_next_line() should output.
183 enum graph_state state;
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.
189 enum graph_state prev_state;
191 * The index of the column that refers to this commit.
193 * If none of the incoming columns refer to this commit,
194 * this will be equal to num_columns.
198 * The commit_index for the previously displayed commit.
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
204 int prev_commit_index;
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.
212 * The number of columns (also called "branch lines" in some places)
216 * The number of columns in the new_columns array
220 * The number of entries in the mapping array
224 * The column state before we output the current commit.
226 struct column *columns;
228 * The new column state after we output the current commit.
229 * Only valid when state is GRAPH_COLLAPSING.
231 struct column *new_columns;
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.)
241 * The maximum capacity of this array is always
242 * sizeof(int) * 2 * column_capacity.
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.
253 * The current default column color being used. This is
254 * stored as an index into the array column_colors.
256 unsigned short default_column_color;
259 static struct strbuf *diff_output_prefix_callback(struct diff_options *opt, void *data)
261 struct git_graph *graph = data;
262 static struct strbuf msgbuf = STRBUF_INIT;
266 strbuf_reset(&msgbuf);
267 if (opt->line_prefix)
268 strbuf_add(&msgbuf, opt->line_prefix,
269 opt->line_prefix_length);
271 graph_padding_line(graph, &msgbuf);
275 static const struct diff_options *default_diffopt;
277 void graph_setup_line_prefix(struct diff_options *diffopt)
279 default_diffopt = diffopt;
281 /* setup an output prefix callback if necessary */
282 if (diffopt && !diffopt->output_prefix)
283 diffopt->output_prefix = diff_output_prefix_callback;
287 struct git_graph *graph_init(struct rev_info *opt)
289 struct git_graph *graph = xmalloc(sizeof(struct git_graph));
291 if (!column_colors) {
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);
298 static struct argv_array custom_colors = ARGV_ARRAY_INIT;
299 argv_array_clear(&custom_colors);
300 parse_graph_colors_config(&custom_colors, 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);
308 graph->commit = NULL;
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;
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.
324 graph->default_column_color = column_colors_max - 1;
327 * Allocate a reasonably large default number of columns
328 * We'll automatically grow columns later if we need more room.
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);
337 * The diff output prefix callback, with this we can make
338 * all the diff output to align with the graph lines.
340 opt->diffopt.output_prefix = diff_output_prefix_callback;
341 opt->diffopt.output_prefix_data = graph;
346 static void graph_update_state(struct git_graph *graph, enum graph_state s)
348 graph->prev_state = graph->state;
352 static void graph_ensure_capacity(struct git_graph *graph, int num_columns)
354 if (graph->column_capacity >= num_columns)
358 graph->column_capacity *= 2;
359 } while (graph->column_capacity < num_columns);
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);
368 * Returns 1 if the commit will be printed in the graph output,
371 static int graph_is_interesting(struct git_graph *graph, struct commit *commit)
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.
378 if (graph->revs && graph->revs->boundary) {
379 if (commit->object.flags & CHILD_SHOWN)
384 * Otherwise, use get_commit_action() to see if this commit is
387 return get_commit_action(graph->revs, commit) == commit_show;
390 static struct commit_list *next_interesting_parent(struct git_graph *graph,
391 struct commit_list *orig)
393 struct commit_list *list;
396 * If revs->first_parent_only is set, only the first
397 * parent is interesting. None of the others are.
399 if (graph->revs->first_parent_only)
403 * Return the next interesting commit after orig
405 for (list = orig->next; list; list = list->next) {
406 if (graph_is_interesting(graph, list->item))
413 static struct commit_list *first_interesting_parent(struct git_graph *graph)
415 struct commit_list *parents = graph->commit->parents;
418 * If this commit has no parents, ignore it
424 * If the first parent is interesting, return it
426 if (graph_is_interesting(graph, parents->item))
430 * Otherwise, call next_interesting_parent() to get
431 * the next interesting parent
433 return next_interesting_parent(graph, parents);
436 static unsigned short graph_get_current_column_color(const struct git_graph *graph)
438 if (!want_color(graph->revs->diffopt.use_color))
439 return column_colors_max;
440 return graph->default_column_color;
444 * Update the graph's default column color.
446 static void graph_increment_column_color(struct git_graph *graph)
448 graph->default_column_color = (graph->default_column_color + 1) %
452 static unsigned short graph_find_commit_color(const struct git_graph *graph,
453 const struct commit *commit)
456 for (i = 0; i < graph->num_columns; i++) {
457 if (graph->columns[i].commit == commit)
458 return graph->columns[i].color;
460 return graph_get_current_column_color(graph);
463 static int graph_find_new_column_by_commit(struct git_graph *graph,
464 struct commit *commit)
467 for (i = 0; i < graph->num_new_columns; i++) {
468 if (graph->new_columns[i].commit == commit)
474 static void graph_insert_into_new_columns(struct git_graph *graph,
475 struct commit *commit)
477 int i = graph_find_new_column_by_commit(graph, commit);
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.
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);
489 graph->mapping[graph->width] = i;
493 static void graph_update_columns(struct git_graph *graph)
495 struct commit_list *parent;
497 int i, seen_this, is_commit_in_columns;
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.
504 * We'll re-use the old columns array as storage to compute the new
505 * columns list for the commit after this one.
507 SWAP(graph->columns, graph->new_columns);
508 graph->num_columns = graph->num_new_columns;
509 graph->num_new_columns = 0;
512 * Now update new_columns and mapping with the information for the
513 * commit after this one.
515 * First, make sure we have enough room. At most, there will
516 * be graph->num_columns + graph->num_parents columns for the next
519 max_new_columns = graph->num_columns + graph->num_parents;
520 graph_ensure_capacity(graph, max_new_columns);
523 * Clear out graph->mapping
525 graph->mapping_size = 2 * max_new_columns;
526 for (i = 0; i < graph->mapping_size; i++)
527 graph->mapping[i] = -1;
532 * Populate graph->new_columns and graph->mapping
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.
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) {
547 is_commit_in_columns = 0;
548 col_commit = graph->commit;
550 col_commit = graph->columns[i].commit;
553 if (col_commit == graph->commit) {
555 graph->commit_index = i;
556 for (parent = first_interesting_parent(graph);
558 parent = next_interesting_parent(graph, parent)) {
560 * If this is a merge, or the start of a new
561 * childless column, increment the current
564 if (graph->num_parents > 1 ||
565 !is_commit_in_columns) {
566 graph_increment_column_color(graph);
568 graph_insert_into_new_columns(graph, parent->item);
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
576 if (graph->num_parents == 0)
579 graph_insert_into_new_columns(graph, col_commit);
584 * Shrink mapping_size to be the minimum necessary
586 while (graph->mapping_size > 1 &&
587 graph->mapping[graph->mapping_size - 1] < 0)
588 graph->mapping_size--;
591 static int graph_needs_pre_commit_line(struct git_graph *graph)
593 return graph->num_parents >= 3 &&
594 graph->commit_index < (graph->num_columns - 1);
597 void graph_update(struct git_graph *graph, struct commit *commit)
599 struct commit_list *parent;
604 graph->commit = commit;
607 * Count how many interesting parents this commit has
609 graph->num_parents = 0;
610 for (parent = first_interesting_parent(graph);
612 parent = next_interesting_parent(graph, parent))
614 graph->num_parents++;
618 * Store the old commit_index in prev_commit_index.
619 * graph_update_columns() will update graph->commit_index for this
622 graph->prev_commit_index = graph->commit_index;
625 * Call graph_update_columns() to update
626 * columns, new_columns, and mapping.
628 graph_update_columns(graph);
630 graph->expansion_row = 0;
633 * Update graph->state.
634 * Note that we don't call graph_update_state() here, since
635 * we don't want to update graph->prev_state. No line for
636 * graph->state was ever printed.
638 * If the previous commit didn't get to the GRAPH_PADDING state,
639 * it never finished its output. Goto GRAPH_SKIP, to print out
640 * a line to indicate that portion of the graph is missing.
642 * If there are 3 or more parents, we may need to print extra rows
643 * before the commit, to expand the branch lines around it and make
644 * room for it. We need to do this only if there is a branch row
645 * (or more) to the right of this commit.
647 * If there are less than 3 parents, we can immediately print the
650 if (graph->state != GRAPH_PADDING)
651 graph->state = GRAPH_SKIP;
652 else if (graph_needs_pre_commit_line(graph))
653 graph->state = GRAPH_PRE_COMMIT;
655 graph->state = GRAPH_COMMIT;
658 static int graph_is_mapping_correct(struct git_graph *graph)
663 * The mapping is up to date if each entry is at its target,
664 * or is 1 greater than its target.
665 * (If it is 1 greater than the target, '/' will be printed, so it
666 * will look correct on the next row.)
668 for (i = 0; i < graph->mapping_size; i++) {
669 int target = graph->mapping[i];
672 if (target == (i / 2))
680 static void graph_pad_horizontally(struct git_graph *graph, struct graph_line *line)
683 * Add additional spaces to the end of the strbuf, so that all
684 * lines for a particular commit have the same width.
686 * This way, fields printed to the right of the graph will remain
687 * aligned for the entire commit.
689 if (line->width < graph->width)
690 graph_line_addchars(line, ' ', graph->width - line->width);
693 static void graph_output_padding_line(struct git_graph *graph,
694 struct graph_line *line)
699 * Output a padding row, that leaves all branch lines unchanged
701 for (i = 0; i < graph->num_new_columns; i++) {
702 graph_line_write_column(line, &graph->new_columns[i], '|');
703 graph_line_addch(line, ' ');
708 int graph_width(struct git_graph *graph)
714 static void graph_output_skip_line(struct git_graph *graph, struct graph_line *line)
717 * Output an ellipsis to indicate that a portion
718 * of the graph is missing.
720 graph_line_addstr(line, "...");
722 if (graph_needs_pre_commit_line(graph))
723 graph_update_state(graph, GRAPH_PRE_COMMIT);
725 graph_update_state(graph, GRAPH_COMMIT);
728 static void graph_output_pre_commit_line(struct git_graph *graph,
729 struct graph_line *line)
731 int num_expansion_rows;
735 * This function formats a row that increases the space around a commit
736 * with multiple parents, to make room for it. It should only be
737 * called when there are 3 or more parents.
739 * We need 2 extra rows for every parent over 2.
741 assert(graph->num_parents >= 3);
742 num_expansion_rows = (graph->num_parents - 2) * 2;
745 * graph->expansion_row tracks the current expansion row we are on.
746 * It should be in the range [0, num_expansion_rows - 1]
748 assert(0 <= graph->expansion_row &&
749 graph->expansion_row < num_expansion_rows);
755 for (i = 0; i < graph->num_columns; i++) {
756 struct column *col = &graph->columns[i];
757 if (col->commit == graph->commit) {
759 graph_line_write_column(line, col, '|');
760 graph_line_addchars(line, ' ', graph->expansion_row);
761 } else if (seen_this && (graph->expansion_row == 0)) {
763 * This is the first line of the pre-commit output.
764 * If the previous commit was a merge commit and
765 * ended in the GRAPH_POST_MERGE state, all branch
766 * lines after graph->prev_commit_index were
767 * printed as "\" on the previous line. Continue
768 * to print them as "\" on this line. Otherwise,
769 * print the branch lines as "|".
771 if (graph->prev_state == GRAPH_POST_MERGE &&
772 graph->prev_commit_index < i)
773 graph_line_write_column(line, col, '\\');
775 graph_line_write_column(line, col, '|');
776 } else if (seen_this && (graph->expansion_row > 0)) {
777 graph_line_write_column(line, col, '\\');
779 graph_line_write_column(line, col, '|');
781 graph_line_addch(line, ' ');
785 * Increment graph->expansion_row,
786 * and move to state GRAPH_COMMIT if necessary
788 graph->expansion_row++;
789 if (graph->expansion_row >= num_expansion_rows)
790 graph_update_state(graph, GRAPH_COMMIT);
793 static void graph_output_commit_char(struct git_graph *graph, struct graph_line *line)
796 * For boundary commits, print 'o'
797 * (We should only see boundary commits when revs->boundary is set.)
799 if (graph->commit->object.flags & BOUNDARY) {
800 assert(graph->revs->boundary);
801 graph_line_addch(line, 'o');
806 * get_revision_mark() handles all other cases without assert()
808 graph_line_addstr(line, get_revision_mark(graph->revs, graph->commit));
812 * Draw the horizontal dashes of an octopus merge.
814 static void graph_draw_octopus_merge(struct git_graph *graph, struct graph_line *line)
817 * Here dashless_parents represents the number of parents which don't
818 * need to have dashes (the edges labeled "0" and "1"). And
819 * dashful_parents are the remaining ones.
827 const int dashless_parents = 2;
828 int dashful_parents = graph->num_parents - dashless_parents;
831 * Usually, we add one new column for each parent (like the diagram
832 * above) but sometimes the first parent goes into an existing column,
840 * In which case the number of parents will be one greater than the
841 * number of added columns.
843 int added_cols = (graph->num_new_columns - graph->num_columns);
844 int parent_in_old_cols = graph->num_parents - added_cols;
847 * In both cases, commit_index corresponds to the edge labeled "0".
849 int first_col = graph->commit_index + dashless_parents
850 - parent_in_old_cols;
853 for (i = 0; i < dashful_parents; i++) {
854 graph_line_write_column(line, &graph->new_columns[i+first_col], '-');
855 graph_line_write_column(line, &graph->new_columns[i+first_col],
856 i == dashful_parents-1 ? '.' : '-');
860 static void graph_output_commit_line(struct git_graph *graph, struct graph_line *line)
866 * Output the row containing this commit
867 * Iterate up to and including graph->num_columns,
868 * since the current commit may not be in any of the existing
869 * columns. (This happens when the current commit doesn't have any
870 * children that we have already processed.)
873 for (i = 0; i <= graph->num_columns; i++) {
874 struct column *col = &graph->columns[i];
875 struct commit *col_commit;
876 if (i == graph->num_columns) {
879 col_commit = graph->commit;
881 col_commit = graph->columns[i].commit;
884 if (col_commit == graph->commit) {
886 graph_output_commit_char(graph, line);
888 if (graph->num_parents > 2)
889 graph_draw_octopus_merge(graph, line);
890 } else if (seen_this && (graph->num_parents > 2)) {
891 graph_line_write_column(line, col, '\\');
892 } else if (seen_this && (graph->num_parents == 2)) {
894 * This is a 2-way merge commit.
895 * There is no GRAPH_PRE_COMMIT stage for 2-way
896 * merges, so this is the first line of output
897 * for this commit. Check to see what the previous
898 * line of output was.
900 * If it was GRAPH_POST_MERGE, the branch line
901 * coming into this commit may have been '\',
902 * and not '|' or '/'. If so, output the branch
903 * line as '\' on this line, instead of '|'. This
904 * makes the output look nicer.
906 if (graph->prev_state == GRAPH_POST_MERGE &&
907 graph->prev_commit_index < i)
908 graph_line_write_column(line, col, '\\');
910 graph_line_write_column(line, col, '|');
912 graph_line_write_column(line, col, '|');
914 graph_line_addch(line, ' ');
918 * Update graph->state
920 if (graph->num_parents > 1)
921 graph_update_state(graph, GRAPH_POST_MERGE);
922 else if (graph_is_mapping_correct(graph))
923 graph_update_state(graph, GRAPH_PADDING);
925 graph_update_state(graph, GRAPH_COLLAPSING);
928 static void graph_output_post_merge_line(struct git_graph *graph, struct graph_line *line)
934 * Output the post-merge row
936 for (i = 0; i <= graph->num_columns; i++) {
937 struct column *col = &graph->columns[i];
938 struct commit *col_commit;
939 if (i == graph->num_columns) {
942 col_commit = graph->commit;
944 col_commit = col->commit;
947 if (col_commit == graph->commit) {
949 * Since the current commit is a merge find
950 * the columns for the parent commits in
951 * new_columns and use those to format the
954 struct commit_list *parents = NULL;
957 parents = first_interesting_parent(graph);
959 par_column = graph_find_new_column_by_commit(graph, parents->item);
960 assert(par_column >= 0);
962 graph_line_write_column(line, &graph->new_columns[par_column], '|');
963 for (j = 0; j < graph->num_parents - 1; j++) {
964 parents = next_interesting_parent(graph, parents);
966 par_column = graph_find_new_column_by_commit(graph, parents->item);
967 assert(par_column >= 0);
968 graph_line_write_column(line, &graph->new_columns[par_column], '\\');
969 graph_line_addch(line, ' ');
971 } else if (seen_this) {
972 graph_line_write_column(line, col, '\\');
973 graph_line_addch(line, ' ');
975 graph_line_write_column(line, col, '|');
976 graph_line_addch(line, ' ');
981 * Update graph->state
983 if (graph_is_mapping_correct(graph))
984 graph_update_state(graph, GRAPH_PADDING);
986 graph_update_state(graph, GRAPH_COLLAPSING);
989 static void graph_output_collapsing_line(struct git_graph *graph, struct graph_line *line)
992 short used_horizontal = 0;
993 int horizontal_edge = -1;
994 int horizontal_edge_target = -1;
997 * Clear out the new_mapping array
999 for (i = 0; i < graph->mapping_size; i++)
1000 graph->new_mapping[i] = -1;
1002 for (i = 0; i < graph->mapping_size; i++) {
1003 int target = graph->mapping[i];
1008 * Since update_columns() always inserts the leftmost
1009 * column first, each branch's target location should
1010 * always be either its current location or to the left of
1011 * its current location.
1013 * We never have to move branches to the right. This makes
1014 * the graph much more legible, since whenever branches
1015 * cross, only one is moving directions.
1017 assert(target * 2 <= i);
1019 if (target * 2 == i) {
1021 * This column is already in the
1024 assert(graph->new_mapping[i] == -1);
1025 graph->new_mapping[i] = target;
1026 } else if (graph->new_mapping[i - 1] < 0) {
1028 * Nothing is to the left.
1029 * Move to the left by one
1031 graph->new_mapping[i - 1] = target;
1033 * If there isn't already an edge moving horizontally
1036 if (horizontal_edge == -1) {
1038 horizontal_edge = i;
1039 horizontal_edge_target = target;
1041 * The variable target is the index of the graph
1042 * column, and therefore target*2+3 is the
1043 * actual screen column of the first horizontal
1046 for (j = (target * 2)+3; j < (i - 2); j += 2)
1047 graph->new_mapping[j] = target;
1049 } else if (graph->new_mapping[i - 1] == target) {
1051 * There is a branch line to our left
1052 * already, and it is our target. We
1053 * combine with this line, since we share
1054 * the same parent commit.
1056 * We don't have to add anything to the
1057 * output or new_mapping, since the
1058 * existing branch line has already taken
1063 * There is a branch line to our left,
1064 * but it isn't our target. We need to
1067 * The space just to the left of this
1068 * branch should always be empty.
1070 * The branch to the left of that space
1071 * should be our eventual target.
1073 assert(graph->new_mapping[i - 1] > target);
1074 assert(graph->new_mapping[i - 2] < 0);
1075 assert(graph->new_mapping[i - 3] == target);
1076 graph->new_mapping[i - 2] = target;
1078 * Mark this branch as the horizontal edge to
1079 * prevent any other edges from moving
1082 if (horizontal_edge == -1)
1083 horizontal_edge = i;
1088 * The new mapping may be 1 smaller than the old mapping
1090 if (graph->new_mapping[graph->mapping_size - 1] < 0)
1091 graph->mapping_size--;
1094 * Output out a line based on the new mapping info
1096 for (i = 0; i < graph->mapping_size; i++) {
1097 int target = graph->new_mapping[i];
1099 graph_line_addch(line, ' ');
1100 else if (target * 2 == i)
1101 graph_line_write_column(line, &graph->new_columns[target], '|');
1102 else if (target == horizontal_edge_target &&
1103 i != horizontal_edge - 1) {
1105 * Set the mappings for all but the
1106 * first segment to -1 so that they
1107 * won't continue into the next line.
1109 if (i != (target * 2)+3)
1110 graph->new_mapping[i] = -1;
1111 used_horizontal = 1;
1112 graph_line_write_column(line, &graph->new_columns[target], '_');
1114 if (used_horizontal && i < horizontal_edge)
1115 graph->new_mapping[i] = -1;
1116 graph_line_write_column(line, &graph->new_columns[target], '/');
1122 * Swap mapping and new_mapping
1124 SWAP(graph->mapping, graph->new_mapping);
1127 * If graph->mapping indicates that all of the branch lines
1128 * are already in the correct positions, we are done.
1129 * Otherwise, we need to collapse some branch lines together.
1131 if (graph_is_mapping_correct(graph))
1132 graph_update_state(graph, GRAPH_PADDING);
1135 int graph_next_line(struct git_graph *graph, struct strbuf *sb)
1137 int shown_commit_line = 0;
1138 struct graph_line line = { .buf = sb, .width = 0 };
1141 * We could conceivable be called with a NULL commit
1142 * if our caller has a bug, and invokes graph_next_line()
1143 * immediately after graph_init(), without first calling
1144 * graph_update(). Return without outputting anything in this
1150 switch (graph->state) {
1152 graph_output_padding_line(graph, &line);
1155 graph_output_skip_line(graph, &line);
1157 case GRAPH_PRE_COMMIT:
1158 graph_output_pre_commit_line(graph, &line);
1161 graph_output_commit_line(graph, &line);
1162 shown_commit_line = 1;
1164 case GRAPH_POST_MERGE:
1165 graph_output_post_merge_line(graph, &line);
1167 case GRAPH_COLLAPSING:
1168 graph_output_collapsing_line(graph, &line);
1172 graph_pad_horizontally(graph, &line);
1173 return shown_commit_line;
1176 static void graph_padding_line(struct git_graph *graph, struct strbuf *sb)
1179 struct graph_line line = { .buf = sb, .width = 0 };
1181 if (graph->state != GRAPH_COMMIT) {
1182 graph_next_line(graph, sb);
1187 * Output the row containing this commit
1188 * Iterate up to and including graph->num_columns,
1189 * since the current commit may not be in any of the existing
1190 * columns. (This happens when the current commit doesn't have any
1191 * children that we have already processed.)
1193 for (i = 0; i < graph->num_columns; i++) {
1194 struct column *col = &graph->columns[i];
1196 graph_line_write_column(&line, col, '|');
1198 if (col->commit == graph->commit && graph->num_parents > 2) {
1199 int len = (graph->num_parents - 2) * 2;
1200 graph_line_addchars(&line, ' ', len);
1202 graph_line_addch(&line, ' ');
1206 graph_pad_horizontally(graph, &line);
1209 * Update graph->prev_state since we have output a padding line
1211 graph->prev_state = GRAPH_PADDING;
1214 int graph_is_commit_finished(struct git_graph const *graph)
1216 return (graph->state == GRAPH_PADDING);
1219 void graph_show_commit(struct git_graph *graph)
1221 struct strbuf msgbuf = STRBUF_INIT;
1222 int shown_commit_line = 0;
1224 graph_show_line_prefix(default_diffopt);
1230 * When showing a diff of a merge against each of its parents, we
1231 * are called once for each parent without graph_update having been
1232 * called. In this case, simply output a single padding line.
1234 if (graph_is_commit_finished(graph)) {
1235 graph_show_padding(graph);
1236 shown_commit_line = 1;
1239 while (!shown_commit_line && !graph_is_commit_finished(graph)) {
1240 shown_commit_line = graph_next_line(graph, &msgbuf);
1241 fwrite(msgbuf.buf, sizeof(char), msgbuf.len,
1242 graph->revs->diffopt.file);
1243 if (!shown_commit_line) {
1244 putc('\n', graph->revs->diffopt.file);
1245 graph_show_line_prefix(&graph->revs->diffopt);
1247 strbuf_setlen(&msgbuf, 0);
1250 strbuf_release(&msgbuf);
1253 void graph_show_oneline(struct git_graph *graph)
1255 struct strbuf msgbuf = STRBUF_INIT;
1257 graph_show_line_prefix(default_diffopt);
1262 graph_next_line(graph, &msgbuf);
1263 fwrite(msgbuf.buf, sizeof(char), msgbuf.len, graph->revs->diffopt.file);
1264 strbuf_release(&msgbuf);
1267 void graph_show_padding(struct git_graph *graph)
1269 struct strbuf msgbuf = STRBUF_INIT;
1271 graph_show_line_prefix(default_diffopt);
1276 graph_padding_line(graph, &msgbuf);
1277 fwrite(msgbuf.buf, sizeof(char), msgbuf.len, graph->revs->diffopt.file);
1278 strbuf_release(&msgbuf);
1281 int graph_show_remainder(struct git_graph *graph)
1283 struct strbuf msgbuf = STRBUF_INIT;
1286 graph_show_line_prefix(default_diffopt);
1291 if (graph_is_commit_finished(graph))
1295 graph_next_line(graph, &msgbuf);
1296 fwrite(msgbuf.buf, sizeof(char), msgbuf.len,
1297 graph->revs->diffopt.file);
1298 strbuf_setlen(&msgbuf, 0);
1301 if (!graph_is_commit_finished(graph)) {
1302 putc('\n', graph->revs->diffopt.file);
1303 graph_show_line_prefix(&graph->revs->diffopt);
1308 strbuf_release(&msgbuf);
1313 static void graph_show_strbuf(struct git_graph *graph,
1315 struct strbuf const *sb)
1320 * Print the strbuf line by line,
1321 * and display the graph info before each line but the first.
1326 char *next_p = strchr(p, '\n');
1331 len = (sb->buf + sb->len) - p;
1333 fwrite(p, sizeof(char), len, file);
1334 if (next_p && *next_p != '\0')
1335 graph_show_oneline(graph);
1340 void graph_show_commit_msg(struct git_graph *graph,
1342 struct strbuf const *sb)
1344 int newline_terminated;
1347 * Show the commit message
1349 graph_show_strbuf(graph, file, sb);
1354 newline_terminated = (sb->len && sb->buf[sb->len - 1] == '\n');
1357 * If there is more output needed for this commit, show it now
1359 if (!graph_is_commit_finished(graph)) {
1361 * If sb doesn't have a terminating newline, print one now,
1362 * so we can start the remainder of the graph output on a
1365 if (!newline_terminated)
1368 graph_show_remainder(graph);
1371 * If sb ends with a newline, our output should too.
1373 if (newline_terminated)