commit-tree.con commit Merge branch 'fix' (016cd9f)
   1/*
   2 * GIT - The information manager from hell
   3 *
   4 * Copyright (C) Linus Torvalds, 2005
   5 */
   6#include "cache.h"
   7#include "commit.h"
   8#include "tree.h"
   9
  10#define BLOCKING (1ul << 14)
  11
  12/*
  13 * FIXME! Share the code with "write-tree.c"
  14 */
  15static void init_buffer(char **bufp, unsigned int *sizep)
  16{
  17        char *buf = xmalloc(BLOCKING);
  18        *sizep = 0;
  19        *bufp = buf;
  20}
  21
  22static void add_buffer(char **bufp, unsigned int *sizep, const char *fmt, ...)
  23{
  24        char one_line[2048];
  25        va_list args;
  26        int len;
  27        unsigned long alloc, size, newsize;
  28        char *buf;
  29
  30        va_start(args, fmt);
  31        len = vsnprintf(one_line, sizeof(one_line), fmt, args);
  32        va_end(args);
  33        size = *sizep;
  34        newsize = size + len;
  35        alloc = (size + 32767) & ~32767;
  36        buf = *bufp;
  37        if (newsize > alloc) {
  38                alloc = (newsize + 32767) & ~32767;
  39                buf = xrealloc(buf, alloc);
  40                *bufp = buf;
  41        }
  42        *sizep = newsize;
  43        memcpy(buf + size, one_line, len);
  44}
  45
  46static void check_valid(unsigned char *sha1, const char *expect)
  47{
  48        char type[20];
  49
  50        if (sha1_object_info(sha1, type, NULL))
  51                die("%s is not a valid object", sha1_to_hex(sha1));
  52        if (expect && strcmp(type, expect))
  53                die("%s is not a valid '%s' object", sha1_to_hex(sha1),
  54                    expect);
  55}
  56
  57/*
  58 * Having more than two parents is not strange at all, and this is
  59 * how multi-way merges are represented.
  60 */
  61#define MAXPARENT (16)
  62static unsigned char parent_sha1[MAXPARENT][20];
  63
  64static const char commit_tree_usage[] = "git-commit-tree <sha1> [-p <sha1>]* < changelog";
  65
  66static int new_parent(int idx)
  67{
  68        int i;
  69        unsigned char *sha1 = parent_sha1[idx];
  70        for (i = 0; i < idx; i++) {
  71                if (!memcmp(parent_sha1[i], sha1, 20)) {
  72                        error("duplicate parent %s ignored", sha1_to_hex(sha1));
  73                        return 0;
  74                }
  75        }
  76        return 1;
  77}
  78
  79int main(int argc, char **argv)
  80{
  81        int i;
  82        int parents = 0;
  83        unsigned char tree_sha1[20];
  84        unsigned char commit_sha1[20];
  85        char comment[1000];
  86        char *buffer;
  87        unsigned int size;
  88
  89        setup_ident();
  90        setup_git_directory();
  91
  92        git_config(git_default_config);
  93
  94        if (argc < 2)
  95                usage(commit_tree_usage);
  96        if (get_sha1(argv[1], tree_sha1))
  97                die("Not a valid object name %s", argv[1]);
  98
  99        check_valid(tree_sha1, tree_type);
 100        for (i = 2; i < argc; i += 2) {
 101                char *a, *b;
 102                a = argv[i]; b = argv[i+1];
 103                if (!b || strcmp(a, "-p"))
 104                        usage(commit_tree_usage);
 105                if (get_sha1(b, parent_sha1[parents]))
 106                        die("Not a valid object name %s", b);
 107                check_valid(parent_sha1[parents], commit_type);
 108                if (new_parent(parents))
 109                        parents++;
 110        }
 111        if (!parents)
 112                fprintf(stderr, "Committing initial tree %s\n", argv[1]);
 113
 114        init_buffer(&buffer, &size);
 115        add_buffer(&buffer, &size, "tree %s\n", sha1_to_hex(tree_sha1));
 116
 117        /*
 118         * NOTE! This ordering means that the same exact tree merged with a
 119         * different order of parents will be a _different_ changeset even
 120         * if everything else stays the same.
 121         */
 122        for (i = 0; i < parents; i++)
 123                add_buffer(&buffer, &size, "parent %s\n", sha1_to_hex(parent_sha1[i]));
 124
 125        /* Person/date information */
 126        add_buffer(&buffer, &size, "author %s\n", git_author_info(1));
 127        add_buffer(&buffer, &size, "committer %s\n\n", git_committer_info(1));
 128
 129        /* And add the comment */
 130        while (fgets(comment, sizeof(comment), stdin) != NULL)
 131                add_buffer(&buffer, &size, "%s", comment);
 132
 133        if (!write_sha1_file(buffer, size, commit_type, commit_sha1)) {
 134                printf("%s\n", sha1_to_hex(commit_sha1));
 135                return 0;
 136        }
 137        else
 138                return 1;
 139}