log-tree.con commit merge-recursive: separate out xdl_merge() interface. (3e5261a)
   1#include "cache.h"
   2#include "diff.h"
   3#include "commit.h"
   4#include "log-tree.h"
   5#include "reflog-walk.h"
   6
   7static void show_parents(struct commit *commit, int abbrev)
   8{
   9        struct commit_list *p;
  10        for (p = commit->parents; p ; p = p->next) {
  11                struct commit *parent = p->item;
  12                printf(" %s", diff_unique_abbrev(parent->object.sha1, abbrev));
  13        }
  14}
  15
  16/*
  17 * Search for "^[-A-Za-z]+: [^@]+@" pattern. It usually matches
  18 * Signed-off-by: and Acked-by: lines.
  19 */
  20static int detect_any_signoff(char *letter, int size)
  21{
  22        char ch, *cp;
  23        int seen_colon = 0;
  24        int seen_at = 0;
  25        int seen_name = 0;
  26        int seen_head = 0;
  27
  28        cp = letter + size;
  29        while (letter <= --cp && (ch = *cp) == '\n')
  30                continue;
  31
  32        while (letter <= cp) {
  33                ch = *cp--;
  34                if (ch == '\n')
  35                        break;
  36
  37                if (!seen_at) {
  38                        if (ch == '@')
  39                                seen_at = 1;
  40                        continue;
  41                }
  42                if (!seen_colon) {
  43                        if (ch == '@')
  44                                return 0;
  45                        else if (ch == ':')
  46                                seen_colon = 1;
  47                        else
  48                                seen_name = 1;
  49                        continue;
  50                }
  51                if (('A' <= ch && ch <= 'Z') ||
  52                    ('a' <= ch && ch <= 'z') ||
  53                    ch == '-') {
  54                        seen_head = 1;
  55                        continue;
  56                }
  57                /* no empty last line doesn't match */
  58                return 0;
  59        }
  60        return seen_head && seen_name;
  61}
  62
  63static int append_signoff(char *buf, int buf_sz, int at, const char *signoff)
  64{
  65        static const char signed_off_by[] = "Signed-off-by: ";
  66        int signoff_len = strlen(signoff);
  67        int has_signoff = 0;
  68        char *cp = buf;
  69
  70        /* Do we have enough space to add it? */
  71        if (buf_sz - at <= strlen(signed_off_by) + signoff_len + 3)
  72                return at;
  73
  74        /* First see if we already have the sign-off by the signer */
  75        while ((cp = strstr(cp, signed_off_by))) {
  76
  77                has_signoff = 1;
  78
  79                cp += strlen(signed_off_by);
  80                if (cp + signoff_len >= buf + at)
  81                        break;
  82                if (strncmp(cp, signoff, signoff_len))
  83                        continue;
  84                if (!isspace(cp[signoff_len]))
  85                        continue;
  86                /* we already have him */
  87                return at;
  88        }
  89
  90        if (!has_signoff)
  91                has_signoff = detect_any_signoff(buf, at);
  92
  93        if (!has_signoff)
  94                buf[at++] = '\n';
  95
  96        strcpy(buf + at, signed_off_by);
  97        at += strlen(signed_off_by);
  98        strcpy(buf + at, signoff);
  99        at += signoff_len;
 100        buf[at++] = '\n';
 101        buf[at] = 0;
 102        return at;
 103}
 104
 105static unsigned int digits_in_number(unsigned int number)
 106{
 107        unsigned int i = 10, result = 1;
 108        while (i <= number) {
 109                i *= 10;
 110                result++;
 111        }
 112        return result;
 113}
 114
 115void show_log(struct rev_info *opt, const char *sep)
 116{
 117        static char this_header[16384];
 118        struct log_info *log = opt->loginfo;
 119        struct commit *commit = log->commit, *parent = log->parent;
 120        int abbrev = opt->diffopt.abbrev;
 121        int abbrev_commit = opt->abbrev_commit ? opt->abbrev : 40;
 122        const char *extra;
 123        int len;
 124        const char *subject = NULL, *extra_headers = opt->extra_headers;
 125
 126        opt->loginfo = NULL;
 127        if (!opt->verbose_header) {
 128                if (opt->left_right) {
 129                        if (commit->object.flags & BOUNDARY)
 130                                putchar('-');
 131                        else if (commit->object.flags & SYMMETRIC_LEFT)
 132                                putchar('<');
 133                        else
 134                                putchar('>');
 135                }
 136                fputs(diff_unique_abbrev(commit->object.sha1, abbrev_commit), stdout);
 137                if (opt->parents)
 138                        show_parents(commit, abbrev_commit);
 139                putchar(opt->diffopt.line_termination);
 140                return;
 141        }
 142
 143        /*
 144         * The "oneline" format has several special cases:
 145         *  - The pretty-printed commit lacks a newline at the end
 146         *    of the buffer, but we do want to make sure that we
 147         *    have a newline there. If the separator isn't already
 148         *    a newline, add an extra one.
 149         *  - unlike other log messages, the one-line format does
 150         *    not have an empty line between entries.
 151         */
 152        extra = "";
 153        if (*sep != '\n' && opt->commit_format == CMIT_FMT_ONELINE)
 154                extra = "\n";
 155        if (opt->shown_one && opt->commit_format != CMIT_FMT_ONELINE)
 156                putchar(opt->diffopt.line_termination);
 157        opt->shown_one = 1;
 158
 159        /*
 160         * Print header line of header..
 161         */
 162
 163        if (opt->commit_format == CMIT_FMT_EMAIL) {
 164                char *sha1 = sha1_to_hex(commit->object.sha1);
 165                if (opt->total > 0) {
 166                        static char buffer[64];
 167                        snprintf(buffer, sizeof(buffer),
 168                                        "Subject: [%s %0*d/%d] ",
 169                                        opt->subject_prefix,
 170                                        digits_in_number(opt->total),
 171                                        opt->nr, opt->total);
 172                        subject = buffer;
 173                } else if (opt->total == 0) {
 174                        static char buffer[256];
 175                        snprintf(buffer, sizeof(buffer),
 176                                        "Subject: [%s] ",
 177                                        opt->subject_prefix);
 178                        subject = buffer;
 179                } else {
 180                        subject = "Subject: ";
 181                }
 182
 183                printf("From %s Mon Sep 17 00:00:00 2001\n", sha1);
 184                if (opt->message_id)
 185                        printf("Message-Id: <%s>\n", opt->message_id);
 186                if (opt->ref_message_id)
 187                        printf("In-Reply-To: <%s>\nReferences: <%s>\n",
 188                               opt->ref_message_id, opt->ref_message_id);
 189                if (opt->mime_boundary) {
 190                        static char subject_buffer[1024];
 191                        static char buffer[1024];
 192                        snprintf(subject_buffer, sizeof(subject_buffer) - 1,
 193                                 "%s"
 194                                 "MIME-Version: 1.0\n"
 195                                 "Content-Type: multipart/mixed;"
 196                                 " boundary=\"%s%s\"\n"
 197                                 "\n"
 198                                 "This is a multi-part message in MIME "
 199                                 "format.\n"
 200                                 "--%s%s\n"
 201                                 "Content-Type: text/plain; "
 202                                 "charset=UTF-8; format=fixed\n"
 203                                 "Content-Transfer-Encoding: 8bit\n\n",
 204                                 extra_headers ? extra_headers : "",
 205                                 mime_boundary_leader, opt->mime_boundary,
 206                                 mime_boundary_leader, opt->mime_boundary);
 207                        extra_headers = subject_buffer;
 208
 209                        snprintf(buffer, sizeof(buffer) - 1,
 210                                 "--%s%s\n"
 211                                 "Content-Type: text/x-patch;"
 212                                 " name=\"%s.diff\"\n"
 213                                 "Content-Transfer-Encoding: 8bit\n"
 214                                 "Content-Disposition: %s;"
 215                                 " filename=\"%s.diff\"\n\n",
 216                                 mime_boundary_leader, opt->mime_boundary,
 217                                 sha1,
 218                                 opt->no_inline ? "attachment" : "inline",
 219                                 sha1);
 220                        opt->diffopt.stat_sep = buffer;
 221                }
 222        } else if (opt->commit_format != CMIT_FMT_USERFORMAT) {
 223                fputs(diff_get_color(opt->diffopt.color_diff, DIFF_COMMIT),
 224                      stdout);
 225                if (opt->commit_format != CMIT_FMT_ONELINE)
 226                        fputs("commit ", stdout);
 227                if (opt->left_right) {
 228                        if (commit->object.flags & BOUNDARY)
 229                                putchar('-');
 230                        else if (commit->object.flags & SYMMETRIC_LEFT)
 231                                putchar('<');
 232                        else
 233                                putchar('>');
 234                }
 235                fputs(diff_unique_abbrev(commit->object.sha1, abbrev_commit),
 236                      stdout);
 237                if (opt->parents)
 238                        show_parents(commit, abbrev_commit);
 239                if (parent)
 240                        printf(" (from %s)",
 241                               diff_unique_abbrev(parent->object.sha1,
 242                                                  abbrev_commit));
 243                printf("%s",
 244                       diff_get_color(opt->diffopt.color_diff, DIFF_RESET));
 245                putchar(opt->commit_format == CMIT_FMT_ONELINE ? ' ' : '\n');
 246                if (opt->reflog_info) {
 247                        show_reflog_message(opt->reflog_info,
 248                                    opt->commit_format == CMIT_FMT_ONELINE,
 249                                    opt->relative_date);
 250                        if (opt->commit_format == CMIT_FMT_ONELINE) {
 251                                printf("%s", sep);
 252                                return;
 253                        }
 254                }
 255        }
 256
 257        /*
 258         * And then the pretty-printed message itself
 259         */
 260        len = pretty_print_commit(opt->commit_format, commit, ~0u, this_header,
 261                                  sizeof(this_header), abbrev, subject,
 262                                  extra_headers, opt->relative_date);
 263
 264        if (opt->add_signoff)
 265                len = append_signoff(this_header, sizeof(this_header), len,
 266                                     opt->add_signoff);
 267        printf("%s%s%s", this_header, extra, sep);
 268}
 269
 270int log_tree_diff_flush(struct rev_info *opt)
 271{
 272        diffcore_std(&opt->diffopt);
 273
 274        if (diff_queue_is_empty()) {
 275                int saved_fmt = opt->diffopt.output_format;
 276                opt->diffopt.output_format = DIFF_FORMAT_NO_OUTPUT;
 277                diff_flush(&opt->diffopt);
 278                opt->diffopt.output_format = saved_fmt;
 279                return 0;
 280        }
 281
 282        if (opt->loginfo && !opt->no_commit_id) {
 283                /* When showing a verbose header (i.e. log message),
 284                 * and not in --pretty=oneline format, we would want
 285                 * an extra newline between the end of log and the
 286                 * output for readability.
 287                 */
 288                show_log(opt, opt->diffopt.msg_sep);
 289                if (opt->verbose_header &&
 290                    opt->commit_format != CMIT_FMT_ONELINE) {
 291                        int pch = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_PATCH;
 292                        if ((pch & opt->diffopt.output_format) == pch)
 293                                printf("---");
 294                        putchar('\n');
 295                }
 296        }
 297        diff_flush(&opt->diffopt);
 298        return 1;
 299}
 300
 301static int do_diff_combined(struct rev_info *opt, struct commit *commit)
 302{
 303        unsigned const char *sha1 = commit->object.sha1;
 304
 305        diff_tree_combined_merge(sha1, opt->dense_combined_merges, opt);
 306        return !opt->loginfo;
 307}
 308
 309/*
 310 * Show the diff of a commit.
 311 *
 312 * Return true if we printed any log info messages
 313 */
 314static int log_tree_diff(struct rev_info *opt, struct commit *commit, struct log_info *log)
 315{
 316        int showed_log;
 317        struct commit_list *parents;
 318        unsigned const char *sha1 = commit->object.sha1;
 319
 320        if (!opt->diff)
 321                return 0;
 322
 323        /* Root commit? */
 324        parents = commit->parents;
 325        if (!parents) {
 326                if (opt->show_root_diff) {
 327                        diff_root_tree_sha1(sha1, "", &opt->diffopt);
 328                        log_tree_diff_flush(opt);
 329                }
 330                return !opt->loginfo;
 331        }
 332
 333        /* More than one parent? */
 334        if (parents && parents->next) {
 335                if (opt->ignore_merges)
 336                        return 0;
 337                else if (opt->combine_merges)
 338                        return do_diff_combined(opt, commit);
 339
 340                /* If we show individual diffs, show the parent info */
 341                log->parent = parents->item;
 342        }
 343
 344        showed_log = 0;
 345        for (;;) {
 346                struct commit *parent = parents->item;
 347
 348                diff_tree_sha1(parent->object.sha1, sha1, "", &opt->diffopt);
 349                log_tree_diff_flush(opt);
 350
 351                showed_log |= !opt->loginfo;
 352
 353                /* Set up the log info for the next parent, if any.. */
 354                parents = parents->next;
 355                if (!parents)
 356                        break;
 357                log->parent = parents->item;
 358                opt->loginfo = log;
 359        }
 360        return showed_log;
 361}
 362
 363int log_tree_commit(struct rev_info *opt, struct commit *commit)
 364{
 365        struct log_info log;
 366        int shown;
 367
 368        log.commit = commit;
 369        log.parent = NULL;
 370        opt->loginfo = &log;
 371
 372        shown = log_tree_diff(opt, commit, &log);
 373        if (!shown && opt->loginfo && opt->always_show_header) {
 374                log.parent = NULL;
 375                show_log(opt, "");
 376                shown = 1;
 377        }
 378        opt->loginfo = NULL;
 379        return shown;
 380}