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#include"builtin.h" 10#include"utf8.h" 11#include"strbuf.h" 12 13#define BLOCKING (1ul << 14) 14 15/* 16 * FIXME! Share the code with "write-tree.c" 17 */ 18static voidcheck_valid(unsigned char*sha1,enum object_type expect) 19{ 20enum object_type type =sha1_object_info(sha1, NULL); 21if(type <0) 22die("%sis not a valid object",sha1_to_hex(sha1)); 23if(type != expect) 24die("%sis not a valid '%s' object",sha1_to_hex(sha1), 25typename(expect)); 26} 27 28/* 29 * Having more than two parents is not strange at all, and this is 30 * how multi-way merges are represented. 31 */ 32#define MAXPARENT (16) 33static unsigned char parent_sha1[MAXPARENT][20]; 34 35static const char commit_tree_usage[] ="git-commit-tree <sha1> [-p <sha1>]* < changelog"; 36 37static intnew_parent(int idx) 38{ 39int i; 40unsigned char*sha1 = parent_sha1[idx]; 41for(i =0; i < idx; i++) { 42if(!hashcmp(parent_sha1[i], sha1)) { 43error("duplicate parent%signored",sha1_to_hex(sha1)); 44return0; 45} 46} 47return1; 48} 49 50static const char commit_utf8_warn[] = 51"Warning: commit message does not conform to UTF-8.\n" 52"You may want to amend it after fixing the message, or set the config\n" 53"variable i18n.commitencoding to the encoding your project uses.\n"; 54 55intcmd_commit_tree(int argc,const char**argv,const char*prefix) 56{ 57int i; 58int parents =0; 59unsigned char tree_sha1[20]; 60unsigned char commit_sha1[20]; 61struct strbuf buffer; 62int encoding_is_utf8; 63 64git_config(git_default_config); 65 66if(argc <2) 67usage(commit_tree_usage); 68if(get_sha1(argv[1], tree_sha1)) 69die("Not a valid object name%s", argv[1]); 70 71check_valid(tree_sha1, OBJ_TREE); 72for(i =2; i < argc; i +=2) { 73const char*a, *b; 74 a = argv[i]; b = argv[i+1]; 75if(!b ||strcmp(a,"-p")) 76usage(commit_tree_usage); 77 78if(parents >= MAXPARENT) 79die("Too many parents (%dmax)", MAXPARENT); 80if(get_sha1(b, parent_sha1[parents])) 81die("Not a valid object name%s", b); 82check_valid(parent_sha1[parents], OBJ_COMMIT); 83if(new_parent(parents)) 84 parents++; 85} 86 87/* Not having i18n.commitencoding is the same as having utf-8 */ 88 encoding_is_utf8 =is_encoding_utf8(git_commit_encoding); 89 90strbuf_init(&buffer,8192);/* should avoid reallocs for the headers */ 91strbuf_addf(&buffer,"tree%s\n",sha1_to_hex(tree_sha1)); 92 93/* 94 * NOTE! This ordering means that the same exact tree merged with a 95 * different order of parents will be a _different_ changeset even 96 * if everything else stays the same. 97 */ 98for(i =0; i < parents; i++) 99strbuf_addf(&buffer,"parent%s\n",sha1_to_hex(parent_sha1[i])); 100 101/* Person/date information */ 102strbuf_addf(&buffer,"author%s\n",git_author_info(1)); 103strbuf_addf(&buffer,"committer%s\n",git_committer_info(1)); 104if(!encoding_is_utf8) 105strbuf_addf(&buffer,"encoding%s\n", git_commit_encoding); 106strbuf_addch(&buffer,'\n'); 107 108/* And add the comment */ 109if(strbuf_read(&buffer,0,0) <0) 110die("git-commit-tree: read returned%s",strerror(errno)); 111 112/* And check the encoding */ 113if(encoding_is_utf8 && !is_utf8(buffer.buf)) 114fprintf(stderr, commit_utf8_warn); 115 116if(!write_sha1_file(buffer.buf, buffer.len, commit_type, commit_sha1)) { 117printf("%s\n",sha1_to_hex(commit_sha1)); 118return0; 119} 120else 121return1; 122}