]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-commit-tree.c
GIT-VERSION-FILE: check ./version first.
[thirdparty/git.git] / builtin-commit-tree.c
CommitLineData
8bc9a0c7
LT
1/*
2 * GIT - The information manager from hell
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 */
e83c5163 6#include "cache.h"
8e440259
PE
7#include "commit.h"
8#include "tree.h"
6d96ac18 9#include "builtin.h"
9e832665 10#include "utf8.h"
e83c5163 11
e83c5163 12#define BLOCKING (1ul << 14)
e83c5163
LT
13
14/*
e83c5163
LT
15 * FIXME! Share the code with "write-tree.c"
16 */
17static void init_buffer(char **bufp, unsigned int *sizep)
18{
812666c8 19 char *buf = xmalloc(BLOCKING);
a44c9a5e 20 *sizep = 0;
e83c5163
LT
21 *bufp = buf;
22}
23
24static void add_buffer(char **bufp, unsigned int *sizep, const char *fmt, ...)
25{
26 char one_line[2048];
27 va_list args;
28 int len;
29 unsigned long alloc, size, newsize;
30 char *buf;
31
32 va_start(args, fmt);
33 len = vsnprintf(one_line, sizeof(one_line), fmt, args);
34 va_end(args);
35 size = *sizep;
9e832665 36 newsize = size + len + 1;
e83c5163
LT
37 alloc = (size + 32767) & ~32767;
38 buf = *bufp;
39 if (newsize > alloc) {
aebb2679 40 alloc = (newsize + 32767) & ~32767;
812666c8 41 buf = xrealloc(buf, alloc);
e83c5163
LT
42 *bufp = buf;
43 }
9e832665 44 *sizep = newsize - 1;
e83c5163
LT
45 memcpy(buf + size, one_line, len);
46}
47
d0d7cbe7
LT
48static void check_valid(unsigned char *sha1, const char *expect)
49{
d0d7cbe7 50 char type[20];
d0d7cbe7 51
5981e099
JH
52 if (sha1_object_info(sha1, type, NULL))
53 die("%s is not a valid object", sha1_to_hex(sha1));
54 if (expect && strcmp(type, expect))
55 die("%s is not a valid '%s' object", sha1_to_hex(sha1),
56 expect);
d0d7cbe7
LT
57}
58
e83c5163 59/*
c5bac17a
JH
60 * Having more than two parents is not strange at all, and this is
61 * how multi-way merges are represented.
e83c5163
LT
62 */
63#define MAXPARENT (16)
b389237a 64static unsigned char parent_sha1[MAXPARENT][20];
e83c5163 65
4d1f1190 66static const char commit_tree_usage[] = "git-commit-tree <sha1> [-p <sha1>]* < changelog";
c5bac17a 67
b389237a
LT
68static int new_parent(int idx)
69{
70 int i;
71 unsigned char *sha1 = parent_sha1[idx];
72 for (i = 0; i < idx; i++) {
a89fccd2 73 if (!hashcmp(parent_sha1[i], sha1)) {
b389237a
LT
74 error("duplicate parent %s ignored", sha1_to_hex(sha1));
75 return 0;
76 }
77 }
78 return 1;
79}
80
9e832665
JS
81static const char commit_utf8_warn[] =
82"Warning: commit message does not conform to UTF-8.\n"
83"You may want to amend it after fixing the message, or set the config\n"
84"variable i18n.commitencoding to the encoding your project uses.\n";
85
a633fca0 86int cmd_commit_tree(int argc, const char **argv, const char *prefix)
e83c5163 87{
6aa33f40 88 int i;
e83c5163
LT
89 int parents = 0;
90 unsigned char tree_sha1[20];
d6d3f9d0 91 unsigned char commit_sha1[20];
e83c5163 92 char comment[1000];
e83c5163
LT
93 char *buffer;
94 unsigned int size;
4b2bced5 95 int encoding_is_utf8;
e83c5163 96
e1b10391
LT
97 git_config(git_default_config);
98
31fff305 99 if (argc < 2)
c5bac17a 100 usage(commit_tree_usage);
31fff305
DL
101 if (get_sha1(argv[1], tree_sha1))
102 die("Not a valid object name %s", argv[1]);
e83c5163 103
8e440259 104 check_valid(tree_sha1, tree_type);
e83c5163 105 for (i = 2; i < argc; i += 2) {
6d96ac18 106 const char *a, *b;
e83c5163 107 a = argv[i]; b = argv[i+1];
31fff305 108 if (!b || strcmp(a, "-p"))
c5bac17a 109 usage(commit_tree_usage);
2295e8d0
JH
110
111 if (parents >= MAXPARENT)
112 die("Too many parents (%d max)", MAXPARENT);
31fff305
DL
113 if (get_sha1(b, parent_sha1[parents]))
114 die("Not a valid object name %s", b);
8e440259 115 check_valid(parent_sha1[parents], commit_type);
b389237a
LT
116 if (new_parent(parents))
117 parents++;
e83c5163 118 }
e83c5163 119
d2c11a38 120 /* Not having i18n.commitencoding is the same as having utf-8 */
677cfed5 121 encoding_is_utf8 = is_encoding_utf8(git_commit_encoding);
4b2bced5 122
e83c5163
LT
123 init_buffer(&buffer, &size);
124 add_buffer(&buffer, &size, "tree %s\n", sha1_to_hex(tree_sha1));
125
126 /*
127 * NOTE! This ordering means that the same exact tree merged with a
128 * different order of parents will be a _different_ changeset even
129 * if everything else stays the same.
130 */
131 for (i = 0; i < parents; i++)
132 add_buffer(&buffer, &size, "parent %s\n", sha1_to_hex(parent_sha1[i]));
133
134 /* Person/date information */
749be728 135 add_buffer(&buffer, &size, "author %s\n", git_author_info(1));
4b2bced5
JH
136 add_buffer(&buffer, &size, "committer %s\n", git_committer_info(1));
137 if (!encoding_is_utf8)
138 add_buffer(&buffer, &size,
139 "encoding %s\n", git_commit_encoding);
140 add_buffer(&buffer, &size, "\n");
e83c5163
LT
141
142 /* And add the comment */
143 while (fgets(comment, sizeof(comment), stdin) != NULL)
144 add_buffer(&buffer, &size, "%s", comment);
145
9e832665
JS
146 /* And check the encoding */
147 buffer[size] = '\0';
4b2bced5 148 if (encoding_is_utf8 && !is_utf8(buffer))
9e832665
JS
149 fprintf(stderr, commit_utf8_warn);
150
8e440259 151 if (!write_sha1_file(buffer, size, commit_type, commit_sha1)) {
7561d9f5
JH
152 printf("%s\n", sha1_to_hex(commit_sha1));
153 return 0;
154 }
155 else
156 return 1;
e83c5163 157}