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