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