[PATCH] Prevent git-rev-list without --merge-order producing duplicates in output
[git/dscho.git] / cvs2git.c
blobab0590872e113531aba897e587a08a8dbacf84d9
1 /*
2 * cvs2git
4 * Copyright (C) Linus Torvalds 2005
5 */
7 #include <stdio.h>
8 #include <ctype.h>
9 #include <string.h>
10 #include <stdlib.h>
11 #include <unistd.h>
13 static int verbose = 0;
16 * This is a really stupid program that takes cvsps output, and
17 * generates a a long _shell_script_ that will create the GIT archive
18 * from it.
20 * You've been warned. I told you it was stupid.
22 * NOTE NOTE NOTE! In order to do branches correctly, this needs
23 * the fixed cvsps that has the "Ancestor branch" tag output.
24 * Hopefully David Mansfield will update his distribution soon
25 * enough (he's the one who wrote the patch, so at least we don't
26 * have to figt maintainer issues ;)
28 * Usage:
30 * TZ=UTC cvsps -A |
31 * git-cvs2git --cvsroot=[root] --module=[module] > script
33 * Creates a shell script that will generate the .git archive of
34 * the names CVS repository.
36 * TZ=UTC cvsps -s 1234- -A |
37 * git-cvs2git -u --cvsroot=[root] --module=[module] > script
39 * Creates a shell script that will update the .git archive with
40 * CVS changes from patchset 1234 until the last one.
42 * IMPORTANT NOTE ABOUT "cvsps"! This requires version 2.1 or better,
43 * and the "TZ=UTC" and the "-A" flag is required for sane results!
45 enum state {
46 Header,
47 Log,
48 Members
51 static const char *cvsroot;
52 static const char *cvsmodule;
54 static char date[100];
55 static char author[100];
56 static char branch[100];
57 static char ancestor[100];
58 static char tag[100];
59 static char log[32768];
60 static int loglen = 0;
61 static int initial_commit = 1;
63 static void lookup_author(char *n, char **name, char **email)
66 * FIXME!!! I'm lazy and stupid.
68 * This could be something like
70 * printf("lookup_author '%s'\n", n);
71 * *name = "$author_name";
72 * *email = "$author_email";
74 * and that would allow the script to do its own
75 * lookups at run-time.
77 *name = n;
78 *email = n;
81 static void prepare_commit(void)
83 char *author_name, *author_email;
84 char *src_branch;
86 lookup_author(author, &author_name, &author_email);
88 printf("export GIT_COMMITTER_NAME=%s\n", author_name);
89 printf("export GIT_COMMITTER_EMAIL=%s\n", author_email);
90 printf("export GIT_COMMITTER_DATE='+0000 %s'\n", date);
92 printf("export GIT_AUTHOR_NAME=%s\n", author_name);
93 printf("export GIT_AUTHOR_EMAIL=%s\n", author_email);
94 printf("export GIT_AUTHOR_DATE='+0000 %s'\n", date);
96 if (initial_commit)
97 return;
99 src_branch = *ancestor ? ancestor : branch;
100 if (!strcmp(src_branch, "HEAD"))
101 src_branch = "master";
102 printf("ln -sf refs/heads/'%s' .git/HEAD\n", src_branch);
105 * Even if cvsps claims an ancestor, we'll let the new
106 * branch name take precedence if it already exists
108 if (*ancestor) {
109 src_branch = branch;
110 if (!strcmp(src_branch, "HEAD"))
111 src_branch = "master";
112 printf("[ -e .git/refs/heads/'%s' ] && ln -sf refs/heads/'%s' .git/HEAD\n",
113 src_branch, src_branch);
116 printf("git-read-tree -m HEAD || exit 1\n");
117 printf("git-checkout-cache -f -u -a\n");
120 static void commit(void)
122 const char *cmit_parent = initial_commit ? "" : "-p HEAD";
123 const char *dst_branch;
124 char *space;
125 int i;
127 printf("tree=$(git-write-tree)\n");
128 printf("cat > .cmitmsg <<EOFMSG\n");
130 /* Escape $ characters, and remove control characters */
131 for (i = 0; i < loglen; i++) {
132 unsigned char c = log[i];
134 switch (c) {
135 case '$':
136 case '\\':
137 case '`':
138 putchar('\\');
139 break;
140 case 0 ... 31:
141 if (c == '\n' || c == '\t')
142 break;
143 case 128 ... 159:
144 continue;
146 putchar(c);
148 printf("\nEOFMSG\n");
149 printf("commit=$(cat .cmitmsg | git-commit-tree $tree %s)\n", cmit_parent);
151 dst_branch = branch;
152 if (!strcmp(dst_branch, "HEAD"))
153 dst_branch = "master";
155 printf("echo $commit > .git/refs/heads/'%s'\n", dst_branch);
157 space = strchr(tag, ' ');
158 if (space)
159 *space = 0;
160 if (strcmp(tag, "(none)"))
161 printf("echo $commit > .git/refs/tags/'%s'\n", tag);
163 printf("echo 'Committed (to %s):' ; cat .cmitmsg; echo\n", dst_branch);
165 *date = 0;
166 *author = 0;
167 *branch = 0;
168 *ancestor = 0;
169 *tag = 0;
170 loglen = 0;
172 initial_commit = 0;
175 static void update_file(char *line)
177 char *name, *version;
178 char *dir;
180 while (isspace(*line))
181 line++;
182 name = line;
183 line = strchr(line, ':');
184 if (!line)
185 return;
186 *line++ = 0;
187 line = strchr(line, '>');
188 if (!line)
189 return;
190 *line++ = 0;
191 version = line;
192 line = strchr(line, '(');
193 if (line) { /* "(DEAD)" */
194 printf("git-update-cache --force-remove '%s'\n", name);
195 return;
198 dir = strrchr(name, '/');
199 if (dir)
200 printf("mkdir -p %.*s\n", (int)(dir - name), name);
202 printf("cvs -q -d %s checkout -d .git-tmp -r%s '%s/%s'\n",
203 cvsroot, version, cvsmodule, name);
204 printf("mv -f .git-tmp/%s %s\n", dir ? dir+1 : name, name);
205 printf("rm -rf .git-tmp\n");
206 printf("git-update-cache --add -- '%s'\n", name);
209 struct hdrentry {
210 const char *name;
211 char *dest;
212 } hdrs[] = {
213 { "Date:", date },
214 { "Author:", author },
215 { "Branch:", branch },
216 { "Ancestor branch:", ancestor },
217 { "Tag:", tag },
218 { "Log:", NULL },
219 { NULL, NULL }
222 int main(int argc, char **argv)
224 static char line[1000];
225 enum state state = Header;
226 int i;
228 for (i = 1; i < argc; i++) {
229 const char *arg = argv[i];
230 if (!memcmp(arg, "--cvsroot=", 10)) {
231 cvsroot = arg + 10;
232 continue;
234 if (!memcmp(arg, "--module=", 9)) {
235 cvsmodule = arg+9;
236 continue;
238 if (!strcmp(arg, "-v")) {
239 verbose = 1;
240 continue;
242 if (!strcmp(arg, "-u")) {
243 initial_commit = 0;
244 continue;
249 if (!cvsroot)
250 cvsroot = getenv("CVSROOT");
252 if (!cvsmodule || !cvsroot) {
253 fprintf(stderr, "I need a CVSROOT and module name\n");
254 exit(1);
257 if (initial_commit) {
258 printf("[ -d .git ] && exit 1\n");
259 printf("git-init-db\n");
260 printf("mkdir -p .git/refs/heads\n");
261 printf("mkdir -p .git/refs/tags\n");
262 printf("ln -sf refs/heads/master .git/HEAD\n");
265 while (fgets(line, sizeof(line), stdin) != NULL) {
266 int linelen = strlen(line);
268 while (linelen && isspace(line[linelen-1]))
269 line[--linelen] = 0;
271 switch (state) {
272 struct hdrentry *entry;
274 case Header:
275 if (verbose)
276 printf("# H: %s\n", line);
277 for (entry = hdrs ; entry->name ; entry++) {
278 int len = strlen(entry->name);
279 char *val;
281 if (memcmp(entry->name, line, len))
282 continue;
283 if (!entry->dest) {
284 state = Log;
285 break;
287 val = line + len;
288 linelen -= len;
289 while (isspace(*val)) {
290 val++;
291 linelen--;
293 memcpy(entry->dest, val, linelen+1);
294 break;
296 continue;
298 case Log:
299 if (verbose)
300 printf("# L: %s\n", line);
301 if (!strcmp(line, "Members:")) {
302 while (loglen && isspace(log[loglen-1]))
303 log[--loglen] = 0;
304 prepare_commit();
305 state = Members;
306 continue;
309 if (loglen + linelen + 5 > sizeof(log))
310 continue;
311 memcpy(log + loglen, line, linelen);
312 loglen += linelen;
313 log[loglen++] = '\n';
314 continue;
316 case Members:
317 if (verbose)
318 printf("# M: %s\n", line);
319 if (!linelen) {
320 commit();
321 state = Header;
322 continue;
324 update_file(line);
325 continue;
328 return 0;