Add test about issue with no commit on a branch
[cvsps-hv.git] / cvsps.c
blob81c6e219a9e23375733c90834153548dcaac6436
1 /*
2 * Copyright 2001, 2002, 2003 David Mansfield and Cobite, Inc.
3 * See COPYING file for license information
4 */
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <string.h>
9 #include <limits.h>
10 #include <unistd.h>
11 #include <search.h>
12 #include <time.h>
13 #include <ctype.h>
14 #include <sys/stat.h>
15 #include <sys/types.h>
16 #include <fcntl.h>
17 #include <regex.h>
18 #include <sys/wait.h> /* for WEXITSTATUS - see system(3) */
20 #include <cbtcommon/hash.h>
21 #include <cbtcommon/list.h>
22 #include <cbtcommon/text_util.h>
23 #include <cbtcommon/debug.h>
24 #include <cbtcommon/rcsid.h>
26 #include "cache.h"
27 #include "cvsps_types.h"
28 #include "cvsps.h"
29 #include "util.h"
30 #include "stats.h"
31 #include "cap.h"
32 #include "cvs_direct.h"
33 #include "list_sort.h"
35 RCSID("$Id: cvsps.c,v 4.106 2005/05/26 03:39:29 david Exp $");
37 #define CVS_LOG_BOUNDARY "----------------------------\n"
38 #define CVS_FILE_BOUNDARY "=============================================================================\n"
40 enum
42 NEED_RCS_FILE,
43 NEED_WORKING_FILE,
44 NEED_SYMS,
45 NEED_EOS,
46 NEED_START_LOG,
47 NEED_REVISION,
48 NEED_DATE_AUTHOR_STATE,
49 NEED_EOM
52 /* true globals */
53 struct hash_table * file_hash;
54 CvsServerCtx * cvs_direct_ctx;
55 char root_path[PATH_MAX];
56 char repository_path[PATH_MAX];
58 const char * tag_flag_descr[] = {
59 "",
60 "**FUNKY**",
61 "**INVALID**",
62 "**INVALID**"
65 const char * fnk_descr[] = {
66 "",
67 "FNK_SHOW_SOME",
68 "FNK_SHOW_ALL",
69 "FNK_HIDE_ALL",
70 "FNK_HIDE_SOME"
73 /* static globals */
74 static int ps_counter;
75 static void * ps_tree;
76 static struct hash_table * global_symbols;
77 static char strip_path[PATH_MAX];
78 static int strip_path_len;
79 static time_t cache_date;
80 static int update_cache;
81 static int ignore_cache;
82 static int do_write_cache;
83 static int statistics;
84 static const char * test_log_file;
85 static struct hash_table * branch_heads;
86 static struct list_head all_patch_sets;
87 static struct list_head collisions;
89 /* settable via options */
90 static int timestamp_fuzz_factor = 300;
91 static int do_diff;
92 static const char * restrict_author;
93 static int have_restrict_log;
94 static regex_t restrict_log;
95 static int have_restrict_file;
96 static regex_t restrict_file;
97 static time_t restrict_date_start;
98 static time_t restrict_date_end;
99 static const char * restrict_branch;
100 static struct list_head show_patch_set_ranges;
101 static int summary_first;
102 static const char * norc = "";
103 static const char * patch_set_dir;
104 static const char * restrict_tag_start;
105 static const char * restrict_tag_end;
106 static int restrict_tag_ps_start;
107 static int restrict_tag_ps_end = INT_MAX;
108 static const char * diff_opts;
109 static int bkcvs;
110 static int no_rlog;
111 static int cvs_direct;
112 static int compress;
113 static char compress_arg[8];
114 static int track_branch_ancestry;
116 static void check_norc(int, char *[]);
117 static int parse_args(int, char *[]);
118 static int parse_rc();
119 static void load_from_cvs();
120 static void init_paths();
121 static CvsFile * build_file_by_name(const char *);
122 static CvsFile * parse_rcs_file(const char *);
123 static CvsFile * parse_working_file(const char *);
124 static CvsFileRevision * parse_revision(CvsFile * file, char * rev_str);
125 static void assign_pre_revision(PatchSetMember *, CvsFileRevision * rev);
126 static void check_print_patch_set(PatchSet *);
127 static void print_patch_set(PatchSet *);
128 static void assign_patchset_id(PatchSet *);
129 static int compare_rev_strings(const char *, const char *);
130 static int compare_patch_sets_by_members(const PatchSet * ps1, const PatchSet * ps2);
131 static int compare_patch_sets_bk(const void *, const void *);
132 static int compare_patch_sets(const void *, const void *);
133 static int compare_patch_sets_bytime_list(struct list_head *, struct list_head *);
134 static int compare_patch_sets_bytime(const PatchSet *, const PatchSet *);
135 static int is_revision_metadata(const char *);
136 static int patch_set_member_regex(PatchSet * ps, regex_t * reg);
137 static int patch_set_affects_branch(PatchSet *, const char *);
138 static void do_cvs_diff(PatchSet *);
139 static PatchSet * create_patch_set();
140 static PatchSetRange * create_patch_set_range();
141 static void parse_sym(CvsFile *, char *);
142 static void resolve_global_symbols();
143 static int revision_affects_branch(CvsFileRevision *, const char *);
144 static int is_vendor_branch(const char *);
145 static void set_psm_initial(PatchSetMember * psm);
146 static int check_rev_funk(PatchSet *, CvsFileRevision *);
147 static CvsFileRevision * rev_follow_branch(CvsFileRevision *, const char *);
148 static int before_tag(CvsFileRevision * rev, const char * tag);
149 static void determine_branch_ancestor(PatchSet * ps, PatchSet * head_ps);
150 static void handle_collisions();
152 int main(int argc, char *argv[])
154 debuglvl = DEBUG_APPERROR|DEBUG_SYSERROR|DEBUG_APPMSG1;
156 INIT_LIST_HEAD(&show_patch_set_ranges);
159 * we want to parse the rc first, so command line can override it
160 * but also, --norc should stop the rc from being processed, so
161 * we look for --norc explicitly first. Note: --norc in the rc
162 * file itself will prevent the cvs rc file from being used.
164 check_norc(argc, argv);
166 if (strlen(norc) == 0 && parse_rc() < 0)
167 exit(1);
169 if (parse_args(argc, argv) < 0)
170 exit(1);
172 if (diff_opts && !cvs_direct && do_diff)
174 debug(DEBUG_APPMSG1, "\nWARNING: diff options are not supported by 'cvs rdiff'");
175 debug(DEBUG_APPMSG1, " which is usually used to create diffs. 'cvs diff'");
176 debug(DEBUG_APPMSG1, " will be used instead, but the resulting patches ");
177 debug(DEBUG_APPMSG1, " will need to be applied using the '-p0' option");
178 debug(DEBUG_APPMSG1, " to patch(1) (in the working directory), ");
179 debug(DEBUG_APPMSG1, " instead of '-p1'\n");
182 file_hash = create_hash_table(1023);
183 global_symbols = create_hash_table(111);
184 branch_heads = create_hash_table(1023);
185 INIT_LIST_HEAD(&all_patch_sets);
186 INIT_LIST_HEAD(&collisions);
188 /* this parses some of the CVS/ files, and initializes
189 * the repository_path and other variables
191 init_paths();
193 if (!ignore_cache)
195 int save_fuzz_factor = timestamp_fuzz_factor;
197 /* the timestamp fuzz should only be in effect when loading from
198 * CVS, not re-fuzzed when loading from cache. This is a hack
199 * working around bad use of global variables
202 timestamp_fuzz_factor = 0;
204 if ((cache_date = read_cache()) < 0)
205 update_cache = 1;
207 timestamp_fuzz_factor = save_fuzz_factor;
210 if (cvs_direct && (do_diff || (update_cache && !test_log_file)))
211 cvs_direct_ctx = open_cvs_server(root_path, compress);
213 if (update_cache)
215 load_from_cvs();
216 do_write_cache = 1;
219 //XXX
220 //handle_collisions();
222 list_sort(&all_patch_sets, compare_patch_sets_bytime_list);
224 ps_counter = 0;
225 walk_all_patch_sets(assign_patchset_id);
227 handle_collisions();
229 resolve_global_symbols();
231 if (do_write_cache)
232 write_cache(cache_date);
234 if (statistics)
235 print_statistics(ps_tree);
237 /* check that the '-r' symbols (if specified) were resolved */
238 if (restrict_tag_start && restrict_tag_ps_start == 0 &&
239 strcmp(restrict_tag_start, "#CVSPS_EPOCH") != 0)
241 debug(DEBUG_APPERROR, "symbol given with -r: %s: not found", restrict_tag_start);
242 exit(1);
245 if (restrict_tag_end && restrict_tag_ps_end == INT_MAX)
247 debug(DEBUG_APPERROR, "symbol given with second -r: %s: not found", restrict_tag_end);
248 exit(1);
251 walk_all_patch_sets(check_print_patch_set);
253 if (summary_first++)
254 walk_all_patch_sets(check_print_patch_set);
256 if (cvs_direct_ctx)
257 close_cvs_server(cvs_direct_ctx);
259 exit(0);
262 static void load_from_cvs()
264 FILE * cvsfp;
265 char buff[BUFSIZ];
266 int state = NEED_RCS_FILE;
267 CvsFile * file = NULL;
268 PatchSetMember * psm = NULL;
269 char datebuff[20];
270 char authbuff[AUTH_STR_MAX];
271 int logbufflen = LOG_STR_MAX + 1;
272 char * logbuff = malloc(logbufflen);
273 int loglen = 0;
274 int have_log = 0;
275 char cmd[BUFSIZ];
276 char date_str[64];
277 char use_rep_buff[PATH_MAX];
278 char * ltype;
280 if (logbuff == NULL)
282 debug(DEBUG_SYSERROR, "could not malloc %d bytes for logbuff in load_from_cvs", logbufflen);
283 exit(1);
286 if (!no_rlog && !test_log_file && cvs_check_cap(CAP_HAVE_RLOG))
288 ltype = "rlog";
289 snprintf(use_rep_buff, PATH_MAX, "%s", repository_path);
291 else
293 ltype = "log";
294 use_rep_buff[0] = 0;
297 if (cache_date > 0)
299 struct tm * tm = gmtime(&cache_date);
300 strftime(date_str, 64, "%d %b %Y %H:%M:%S %z", tm);
302 /* this command asks for logs using two different date
303 * arguments, separated by ';' (see man rlog). The first
304 * gets all revisions more recent than date, the second
305 * gets a single revision no later than date, which combined
306 * get us all revisions that have occurred since last update
307 * and overlaps what we had before by exactly one revision,
308 * which is necessary to fill in the pre_rev stuff for a
309 * PatchSetMember
311 snprintf(cmd, BUFSIZ, "cvs %s %s -q %s -d '%s<;%s' %s", compress_arg, norc, ltype, date_str, date_str, use_rep_buff);
313 else
315 date_str[0] = 0;
316 snprintf(cmd, BUFSIZ, "cvs %s %s -q %s %s", compress_arg, norc, ltype, use_rep_buff);
319 debug(DEBUG_STATUS, "******* USING CMD %s", cmd);
321 cache_date = time(NULL);
323 /* FIXME: this is ugly, need to virtualize the accesses away from here */
324 if (test_log_file)
325 cvsfp = fopen(test_log_file, "r");
326 else if (cvs_direct_ctx)
327 cvsfp = cvs_rlog_open(cvs_direct_ctx, repository_path, date_str);
328 else
329 cvsfp = popen(cmd, "r");
331 if (!cvsfp)
333 debug(DEBUG_SYSERROR, "can't open cvs pipe using command %s", cmd);
334 exit(1);
337 for (;;)
339 char * tst;
340 if (cvs_direct_ctx)
341 tst = cvs_rlog_fgets(buff, BUFSIZ, cvs_direct_ctx);
342 else
343 tst = fgets(buff, BUFSIZ, cvsfp);
345 if (!tst)
346 break;
348 debug(DEBUG_STATUS, "state: %d read line:%s", state, buff);
350 switch(state)
352 case NEED_RCS_FILE:
353 if (strncmp(buff, "RCS file", 8) == 0) {
354 if ((file = parse_rcs_file(buff)) != NULL)
355 state = NEED_SYMS;
356 else
357 state = NEED_WORKING_FILE;
359 break;
360 case NEED_WORKING_FILE:
361 if (strncmp(buff, "Working file", 12) == 0) {
362 if ((file = parse_working_file(buff)))
363 state = NEED_SYMS;
364 else
365 state = NEED_RCS_FILE;
366 break;
367 } else {
368 // Working file come just after RCS file. So reset state if it was not found
369 state = NEED_RCS_FILE;
371 break;
372 case NEED_SYMS:
373 if (strncmp(buff, "symbolic names:", 15) == 0)
374 state = NEED_EOS;
375 break;
376 case NEED_EOS:
377 if (!isspace(buff[0]))
379 /* see cvsps_types.h for commentary on have_branches */
380 file->have_branches = 1;
381 state = NEED_START_LOG;
383 else
384 parse_sym(file, buff);
385 break;
386 case NEED_START_LOG:
387 if (strcmp(buff, CVS_LOG_BOUNDARY) == 0)
388 state = NEED_REVISION;
389 break;
390 case NEED_REVISION:
391 if (strncmp(buff, "revision", 8) == 0)
393 char new_rev[REV_STR_MAX];
394 CvsFileRevision * rev;
396 strcpy(new_rev, buff + 9);
397 chop(new_rev);
400 * rev may already exist (think cvsps -u), in which
401 * case parse_revision is a hash lookup
403 rev = parse_revision(file, new_rev);
406 * in the simple case, we are copying rev to psm->pre_rev
407 * (psm refers to last patch set processed at this point)
408 * since generally speaking the log is reverse chronological.
409 * This breaks down slightly when branches are introduced
412 assign_pre_revision(psm, rev);
415 * if this is a new revision, it will have no post_psm associated.
416 * otherwise we are (probably?) hitting the overlap in cvsps -u
418 if (!rev->post_psm)
420 psm = rev->post_psm = create_patch_set_member();
421 psm->post_rev = rev;
422 psm->file = file;
423 state = NEED_DATE_AUTHOR_STATE;
425 else
427 /* we hit this in cvsps -u mode, we are now up-to-date
428 * w.r.t this particular file. skip all of the rest
429 * of the info (revs and logs) until we hit the next file
431 psm = NULL;
432 state = NEED_EOM;
435 break;
436 case NEED_DATE_AUTHOR_STATE:
437 if (strncmp(buff, "date:", 5) == 0)
439 char * p;
441 strncpy(datebuff, buff + 6, 19);
442 datebuff[19] = 0;
444 strcpy(authbuff, "unknown");
445 p = strstr(buff, "author: ");
446 if (p)
448 char * op;
449 p += 8;
450 op = strchr(p, ';');
451 if (op)
453 strzncpy(authbuff, p, op - p + 1);
457 /* read the 'state' tag to see if this is a dead revision */
458 p = strstr(buff, "state: ");
459 if (p)
461 char * op;
462 p += 7;
463 op = strchr(p, ';');
464 if (op)
465 if (strncmp(p, "dead", MIN(4, op - p)) == 0)
466 psm->post_rev->dead = 1;
469 state = NEED_EOM;
471 break;
472 case NEED_EOM:
473 if (strcmp(buff, CVS_LOG_BOUNDARY) == 0)
475 if (psm)
477 PatchSet * ps = get_patch_set(datebuff, logbuff, authbuff, psm->post_rev->branch, psm);
478 patch_set_add_member(ps, psm);
481 logbuff[0] = 0;
482 loglen = 0;
483 have_log = 0;
484 state = NEED_REVISION;
486 else if (strcmp(buff, CVS_FILE_BOUNDARY) == 0)
488 if (psm)
490 PatchSet * ps = get_patch_set(datebuff, logbuff, authbuff, psm->post_rev->branch, psm);
491 patch_set_add_member(ps, psm);
492 assign_pre_revision(psm, NULL);
495 logbuff[0] = 0;
496 loglen = 0;
497 have_log = 0;
498 psm = NULL;
499 file = NULL;
500 state = NEED_RCS_FILE;
502 else
504 /* other "blahblah: information;" messages can
505 * follow the stuff we pay attention to
507 if (have_log || !is_revision_metadata(buff))
509 /* If the log buffer is full, try to reallocate more. */
510 if (loglen < logbufflen)
512 int len = strlen(buff);
514 if (len >= logbufflen - loglen)
516 debug(DEBUG_STATUS, "reallocating logbufflen to %d bytes for file %s", logbufflen, file->filename);
517 logbufflen += (len >= LOG_STR_MAX ? (len+1) : LOG_STR_MAX);
518 char * newlogbuff = realloc(logbuff, logbufflen);
519 if (newlogbuff == NULL)
521 debug(DEBUG_SYSERROR, "could not realloc %d bytes for logbuff in load_from_cvs", logbufflen);
522 exit(1);
524 logbuff = newlogbuff;
527 debug(DEBUG_STATUS, "appending %s to log", buff);
528 memcpy(logbuff + loglen, buff, len);
529 loglen += len;
530 logbuff[loglen] = 0;
531 have_log = 1;
534 else
536 debug(DEBUG_STATUS, "ignoring unhandled info %s", buff);
540 break;
544 if (state == NEED_SYMS)
546 debug(DEBUG_APPERROR, "Error: 'symbolic names' not found in log output.");
547 debug(DEBUG_APPERROR, " Perhaps you should try running with --norc");
548 exit(1);
551 if (state != NEED_RCS_FILE)
553 debug(DEBUG_APPERROR, "Error: Log file parsing error. (%d) Use -v to debug", state);
554 exit(1);
557 if (test_log_file)
559 fclose(cvsfp);
561 else if (cvs_direct_ctx)
563 cvs_rlog_close(cvs_direct_ctx);
565 else
567 if (pclose(cvsfp) < 0)
569 debug(DEBUG_APPERROR, "cvs rlog command exited with error. aborting");
570 exit(1);
575 static int usage(const char * str1, const char * str2)
577 if (str1)
578 debug(DEBUG_APPERROR, "\nbad usage: %s %s\n", str1, str2);
580 debug(DEBUG_APPERROR, "Usage: cvsps [-h] [-x] [-u] [-z <fuzz>] [-g] [-s <range>[,<range>]] ");
581 debug(DEBUG_APPERROR, " [-a <author>] [-f <file>] [-d <date1> [-d <date2>]] ");
582 debug(DEBUG_APPERROR, " [-b <branch>] [-l <regex>] [-r <tag> [-r <tag>]] ");
583 debug(DEBUG_APPERROR, " [-p <directory>] [-v] [-t] [--norc] [--summary-first]");
584 debug(DEBUG_APPERROR, " [--test-log <captured cvs log file>] [--bkcvs]");
585 debug(DEBUG_APPERROR, " [--no-rlog] [--diff-opts <option string>] [--cvs-direct]");
586 debug(DEBUG_APPERROR, " [--debuglvl <bitmask>] [-Z <compression>] [--root <cvsroot>]");
587 debug(DEBUG_APPERROR, " [-q] [-A] [<repository>]");
588 debug(DEBUG_APPERROR, "");
589 debug(DEBUG_APPERROR, "Where:");
590 debug(DEBUG_APPERROR, " -h display this informative message");
591 debug(DEBUG_APPERROR, " -x ignore (and rebuild) cvsps.cache file");
592 debug(DEBUG_APPERROR, " -u update cvsps.cache file");
593 debug(DEBUG_APPERROR, " -z <fuzz> set the timestamp fuzz factor for identifying patch sets");
594 debug(DEBUG_APPERROR, " -g generate diffs of the selected patch sets");
595 debug(DEBUG_APPERROR, " -s <patch set>[-[<patch set>]][,<patch set>...] restrict patch sets by id");
596 debug(DEBUG_APPERROR, " -a <author> restrict output to patch sets created by author");
597 debug(DEBUG_APPERROR, " -f <file> restrict output to patch sets involving file");
598 debug(DEBUG_APPERROR, " -d <date1> -d <date2> if just one date specified, show");
599 debug(DEBUG_APPERROR, " revisions newer than date1. If two dates specified,");
600 debug(DEBUG_APPERROR, " show revisions between two dates.");
601 debug(DEBUG_APPERROR, " -b <branch> restrict output to patch sets affecting history of branch");
602 debug(DEBUG_APPERROR, " -l <regex> restrict output to patch sets matching <regex> in log message");
603 debug(DEBUG_APPERROR, " -r <tag1> -r <tag2> if just one tag specified, show");
604 debug(DEBUG_APPERROR, " revisions since tag1. If two tags specified, show");
605 debug(DEBUG_APPERROR, " revisions between the two tags.");
606 debug(DEBUG_APPERROR, " -p <directory> output patch sets to individual files in <directory>");
607 debug(DEBUG_APPERROR, " -v show very verbose parsing messages");
608 debug(DEBUG_APPERROR, " -t show some brief memory usage statistics");
609 debug(DEBUG_APPERROR, " --norc when invoking cvs, ignore the .cvsrc file");
610 debug(DEBUG_APPERROR, " --summary-first when multiple patch sets are shown, put all summaries first");
611 debug(DEBUG_APPERROR, " --test-log <captured cvs log> supply a captured cvs log for testing");
612 debug(DEBUG_APPERROR, " --diff-opts <option string> supply special set of options to diff");
613 debug(DEBUG_APPERROR, " --bkcvs special hack for parsing the BK -> CVS log format");
614 debug(DEBUG_APPERROR, " --no-rlog disable rlog (it's faulty in some setups)");
615 debug(DEBUG_APPERROR, " --cvs-direct (--no-cvs-direct) enable (disable) built-in cvs client code");
616 debug(DEBUG_APPERROR, " --debuglvl <bitmask> enable various debug channels.");
617 debug(DEBUG_APPERROR, " -Z <compression> A value 1-9 which specifies amount of compression");
618 debug(DEBUG_APPERROR, " --root <cvsroot> specify cvsroot. overrides env. and working directory (cvs-direct only)");
619 debug(DEBUG_APPERROR, " -q be quiet about warnings");
620 debug(DEBUG_APPERROR, " -A track and report branch ancestry");
621 debug(DEBUG_APPERROR, " <repository> apply cvsps to repository. overrides working directory");
622 debug(DEBUG_APPERROR, "\ncvsps version %s\n", VERSION);
624 return -1;
627 static int parse_args(int argc, char *argv[])
629 int i = 1;
630 while (i < argc)
632 if (strcmp(argv[i], "-z") == 0)
634 if (++i >= argc)
635 return usage("argument to -z missing", "");
637 timestamp_fuzz_factor = atoi(argv[i++]);
638 continue;
641 if (strcmp(argv[i], "-g") == 0)
643 do_diff = 1;
644 i++;
645 continue;
648 if (strcmp(argv[i], "-s") == 0)
650 PatchSetRange * range;
651 char * min_str, * max_str;
653 if (++i >= argc)
654 return usage("argument to -s missing", "");
656 min_str = strtok(argv[i++], ",");
659 range = create_patch_set_range();
661 max_str = strrchr(min_str, '-');
662 if (max_str)
663 *max_str++ = '\0';
664 else
665 max_str = min_str;
667 range->min_counter = atoi(min_str);
669 if (*max_str)
670 range->max_counter = atoi(max_str);
671 else
672 range->max_counter = INT_MAX;
674 list_add(&range->link, show_patch_set_ranges.prev);
676 while ((min_str = strtok(NULL, ",")));
678 continue;
681 if (strcmp(argv[i], "-a") == 0)
683 if (++i >= argc)
684 return usage("argument to -a missing", "");
686 restrict_author = argv[i++];
687 continue;
690 if (strcmp(argv[i], "-l") == 0)
692 int err;
694 if (++i >= argc)
695 return usage("argument to -l missing", "");
697 if ((err = regcomp(&restrict_log, argv[i++], REG_EXTENDED|REG_NOSUB)) != 0)
699 char errbuf[256];
700 regerror(err, &restrict_log, errbuf, 256);
701 return usage("bad regex to -l", errbuf);
704 have_restrict_log = 1;
706 continue;
709 if (strcmp(argv[i], "-f") == 0)
711 int err;
713 if (++i >= argc)
714 return usage("argument to -f missing", "");
716 if ((err = regcomp(&restrict_file, argv[i++], REG_EXTENDED|REG_NOSUB)) != 0)
718 char errbuf[256];
719 regerror(err, &restrict_file, errbuf, 256);
720 return usage("bad regex to -f", errbuf);
723 have_restrict_file = 1;
725 continue;
728 if (strcmp(argv[i], "-d") == 0)
730 time_t *pt;
732 if (++i >= argc)
733 return usage("argument to -d missing", "");
735 pt = (restrict_date_start == 0) ? &restrict_date_start : &restrict_date_end;
736 convert_date(pt, argv[i++]);
737 continue;
740 if (strcmp(argv[i], "-r") == 0)
742 if (++i >= argc)
743 return usage("argument to -r missing", "");
745 if (restrict_tag_start)
746 restrict_tag_end = argv[i];
747 else
748 restrict_tag_start = argv[i];
750 i++;
751 continue;
754 if (strcmp(argv[i], "-u") == 0)
756 update_cache = 1;
757 i++;
758 continue;
761 if (strcmp(argv[i], "-x") == 0)
763 ignore_cache = 1;
764 update_cache = 1;
765 i++;
766 continue;
769 if (strcmp(argv[i], "-b") == 0)
771 if (++i >= argc)
772 return usage("argument to -b missing", "");
774 restrict_branch = argv[i++];
775 /* Warn if the user tries to use TRUNK. Should eventually
776 * go away as TRUNK may be a valid branch within CVS
778 if (strcmp(restrict_branch, "TRUNK") == 0)
779 debug(DEBUG_APPMSG1, "WARNING: The HEAD branch of CVS is called HEAD, not TRUNK");
780 continue;
783 if (strcmp(argv[i], "-p") == 0)
785 if (++i >= argc)
786 return usage("argument to -p missing", "");
788 patch_set_dir = argv[i++];
789 continue;
792 if (strcmp(argv[i], "-v") == 0)
794 debuglvl = ~0;
795 i++;
796 continue;
799 if (strcmp(argv[i], "-t") == 0)
801 statistics = 1;
802 i++;
803 continue;
806 if (strcmp(argv[i], "--summary-first") == 0)
808 summary_first = 1;
809 i++;
810 continue;
813 if (strcmp(argv[i], "-h") == 0)
814 return usage(NULL, NULL);
816 /* see special handling of --norc in main */
817 if (strcmp(argv[i], "--norc") == 0)
819 norc = "-f";
820 i++;
821 continue;
824 if (strcmp(argv[i], "--test-log") == 0)
826 if (++i >= argc)
827 return usage("argument to --test-log missing", "");
829 test_log_file = argv[i++];
830 continue;
833 if (strcmp(argv[i], "--diff-opts") == 0)
835 if (++i >= argc)
836 return usage("argument to --diff-opts missing", "");
838 /* allow diff_opts to be turned off by making empty string
839 * into NULL
841 if (!strlen(argv[i]))
842 diff_opts = NULL;
843 else
844 diff_opts = argv[i];
845 i++;
846 continue;
849 if (strcmp(argv[i], "--bkcvs") == 0)
851 bkcvs = 1;
852 i++;
853 continue;
856 if (strcmp(argv[i], "--no-rlog") == 0)
858 no_rlog = 1;
859 i++;
860 continue;
863 if (strcmp(argv[i], "--cvs-direct") == 0)
865 cvs_direct = 1;
866 i++;
867 continue;
870 if (strcmp(argv[i], "--no-cvs-direct") == 0)
872 cvs_direct = 0;
873 i++;
874 continue;
877 if (strcmp(argv[i], "--debuglvl") == 0)
879 if (++i >= argc)
880 return usage("argument to --debuglvl missing", "");
882 debuglvl = atoi(argv[i++]);
883 continue;
886 if (strcmp(argv[i], "-Z") == 0)
888 if (++i >= argc)
889 return usage("argument to -Z", "");
891 compress = atoi(argv[i++]);
893 if (compress < 0 || compress > 9)
894 return usage("-Z level must be between 1 and 9 inclusive (0 disables compression)", argv[i-1]);
896 if (compress == 0)
897 compress_arg[0] = 0;
898 else
899 snprintf(compress_arg, 8, "-z%d", compress);
900 continue;
903 if (strcmp(argv[i], "--root") == 0)
905 if (++i >= argc)
906 return usage("argument to --root missing", "");
908 strcpy(root_path, argv[i++]);
909 continue;
912 if (strcmp(argv[i], "-q") == 0)
914 debuglvl &= ~DEBUG_APPMSG1;
915 i++;
916 continue;
919 if (strcmp(argv[i], "-A") == 0)
921 track_branch_ancestry = 1;
922 i++;
923 continue;
926 if (argv[i][0] == '-')
927 return usage("invalid argument", argv[i]);
929 strcpy(repository_path, argv[i++]);
932 return 0;
935 static int parse_rc()
937 char rcfile[PATH_MAX];
938 FILE * fp;
939 snprintf(rcfile, PATH_MAX, "%s/cvspsrc", get_cvsps_dir());
940 if ((fp = fopen(rcfile, "r")))
942 char buff[BUFSIZ];
943 while (fgets(buff, BUFSIZ, fp))
945 char * argv[3], *p;
946 int argc = 2;
948 chop(buff);
950 argv[0] = "garbage";
952 p = strchr(buff, ' ');
953 if (p)
955 *p++ = '\0';
956 argv[2] = xstrdup(p);
957 argc = 3;
960 argv[1] = xstrdup(buff);
962 if (parse_args(argc, argv) < 0)
963 return -1;
965 fclose(fp);
968 return 0;
971 static void init_paths()
973 FILE * fp;
974 char * p;
975 int len;
977 /* determine the CVSROOT. precedence:
978 * 1) command line
979 * 2) working directory (if present)
980 * 3) environment variable CVSROOT
982 if (!root_path[0])
984 if (!(fp = fopen("CVS/Root", "r")))
986 const char * e;
988 debug(DEBUG_STATUS, "Can't open CVS/Root");
989 e = getenv("CVSROOT");
991 if (!e)
993 debug(DEBUG_APPERROR, "cannot determine CVSROOT");
994 exit(1);
997 strcpy(root_path, e);
999 else
1001 if (!fgets(root_path, PATH_MAX, fp))
1003 debug(DEBUG_APPERROR, "Error reading CVSROOT");
1004 exit(1);
1007 fclose(fp);
1009 /* chop the lf and optional trailing '/' */
1010 len = strlen(root_path) - 1;
1011 root_path[len] = 0;
1012 if (root_path[len - 1] == '/')
1013 root_path[--len] = 0;
1017 /* Determine the repository path, precedence:
1018 * 1) command line
1019 * 2) working directory
1022 if (!repository_path[0])
1024 if (!(fp = fopen("CVS/Repository", "r")))
1026 debug(DEBUG_SYSERROR, "Can't open CVS/Repository");
1027 exit(1);
1030 if (!fgets(repository_path, PATH_MAX, fp))
1032 debug(DEBUG_APPERROR, "Error reading repository path");
1033 exit(1);
1036 chop(repository_path);
1037 fclose(fp);
1040 /* get the path portion of the root */
1041 p = strrchr(root_path, ':');
1043 if (!p)
1044 p = root_path;
1045 else
1046 p++;
1048 /* some CVS have the CVSROOT string as part of the repository
1049 * string (initial substring). remove it.
1051 len = strlen(p);
1053 if (strncmp(p, repository_path, len) == 0)
1055 int rlen = strlen(repository_path + len + 1);
1056 memmove(repository_path, repository_path + len + 1, rlen + 1);
1059 /* the 'strip_path' will be used whenever the CVS server gives us a
1060 * path to an 'rcs file'. the strip_path portion of these paths is
1061 * stripped off, leaving us with the working file.
1063 * NOTE: because of some bizarre 'feature' in cvs, when 'rlog' is used
1064 * (instead of log) it gives the 'real' RCS file path, which can be different
1065 * from the 'nominal' repository path because of symlinks in the server and
1066 * the like. See also the 'parse_rcs_file' routine
1068 strip_path_len = snprintf(strip_path, PATH_MAX, "%s/%s/", p, repository_path);
1070 if (strip_path_len < 0 || strip_path_len >= PATH_MAX)
1072 debug(DEBUG_APPERROR, "strip_path overflow");
1073 exit(1);
1076 debug(DEBUG_STATUS, "strip_path: %s", strip_path);
1079 static CvsFile * parse_rcs_file(const char * buff)
1081 char fn[PATH_MAX];
1082 int len = strlen(buff + 10);
1083 char * p;
1085 /* once a single file has been parsed ok we set this */
1086 static int path_ok;
1088 /* chop the ",v" string and the "LF" */
1089 len -= 3;
1090 memcpy(fn, buff + 10, len);
1091 fn[len] = 0;
1093 if (strncmp(fn, strip_path, strip_path_len) != 0)
1095 /* if the very first file fails the strip path,
1096 * then maybe we need to try for an alternate.
1097 * this will happen if symlinks are being used
1098 * on the server. our best guess is to look
1099 * for the final occurance of the repository
1100 * path in the filename and use that. it should work
1101 * except in the case where:
1102 * 1) the project has no files in the top-level directory
1103 * 2) the project has a directory with the same name as the project
1104 * 3) that directory sorts alphabetically before any other directory
1105 * in which case, you are scr**ed
1107 if (!path_ok)
1109 char * p = fn, *lastp = NULL;
1111 while ((p = strstr(p, repository_path)))
1112 lastp = p++;
1114 if (lastp)
1116 int len = strlen(repository_path);
1117 memcpy(strip_path, fn, lastp - fn + len + 1);
1118 strip_path_len = lastp - fn + len + 1;
1119 strip_path[strip_path_len] = 0;
1120 debug(DEBUG_APPMSG1, "NOTICE: used alternate strip path %s", strip_path);
1121 goto ok;
1125 /* FIXME: a subdirectory may have a different Repository path
1126 * than it's parent. we'll fail the above test since strip_path
1127 * is global for the entire checked out tree (recursively).
1129 * For now just ignore such files
1131 debug(DEBUG_APPMSG1, "WARNING: file %s doesn't match strip_path %s. ignoring",
1132 fn, strip_path);
1133 return NULL;
1137 path_ok = 1;
1139 /* remove from beginning the 'strip_path' string */
1140 len -= strip_path_len;
1141 memmove(fn, fn + strip_path_len, len);
1142 fn[len] = 0;
1144 /* check if file is in the 'Attic/' and remove it */
1145 if ((p = strrchr(fn, '/')) &&
1146 p - fn >= 5 && strncmp(p - 5, "Attic", 5) == 0)
1148 memmove(p - 5, p + 1, len - (p - fn + 1));
1149 len -= 6;
1150 fn[len] = 0;
1153 debug(DEBUG_STATUS, "stripped filename %s", fn);
1155 return build_file_by_name(fn);
1158 static CvsFile * parse_working_file(const char * buff)
1160 char fn[PATH_MAX];
1161 int len = strlen(buff + 14);
1163 /* chop the "LF" */
1164 len -= 1;
1165 memcpy(fn, buff + 14, len);
1166 fn[len] = 0;
1168 debug(DEBUG_STATUS, "working filename %s", fn);
1170 return build_file_by_name(fn);
1173 static CvsFile * build_file_by_name(const char * fn)
1175 CvsFile * retval;
1177 retval = (CvsFile*)get_hash_object(file_hash, fn);
1179 if (!retval)
1181 if ((retval = create_cvsfile()))
1183 retval->filename = xstrdup(fn);
1184 put_hash_object_ex(file_hash, retval->filename, retval, HT_NO_KEYCOPY, NULL, NULL);
1186 else
1188 debug(DEBUG_SYSERROR, "malloc failed");
1189 exit(1);
1192 debug(DEBUG_STATUS, "new file: %s", retval->filename);
1194 else
1196 debug(DEBUG_STATUS, "existing file: %s", retval->filename);
1199 return retval;
1202 PatchSet * get_patch_set(const char * dte, const char * log, const char * author, const char * branch, PatchSetMember * psm)
1204 PatchSet * retval = NULL, **find = NULL;
1205 int (*cmp1)(const void *,const void*) = (bkcvs) ? compare_patch_sets_bk : compare_patch_sets;
1207 if (!(retval = create_patch_set()))
1209 debug(DEBUG_SYSERROR, "malloc failed for PatchSet");
1210 return NULL;
1213 convert_date(&retval->date, dte);
1214 retval->author = get_string(author);
1215 retval->descr = xstrdup(log);
1216 retval->branch = get_string(branch);
1218 /* we are looking for a patchset suitable for holding this member.
1219 * this means two things:
1220 * 1) a patchset already containing an entry for the file is no good
1221 * 2) for two patchsets with same exact date/time, if they reference
1222 * the same file, we can properly order them. this primarily solves
1223 * the 'cvs import' problem and may not have general usefulness
1224 * because it would only work if the first member we consider is
1225 * present in the existing ps.
1227 if (psm)
1228 list_add(&psm->link, retval->members.prev);
1230 find = (PatchSet**)tsearch(retval, &ps_tree, cmp1);
1232 if (psm)
1233 list_del(&psm->link);
1235 if (*find != retval)
1237 debug(DEBUG_STATUS, "found existing patch set");
1239 if (bkcvs && strstr(retval->descr, "BKrev:"))
1241 free((*find)->descr);
1242 (*find)->descr = retval->descr;
1244 else
1246 free(retval->descr);
1249 /* keep the minimum date of any member as the 'actual' date */
1250 if (retval->date < (*find)->date)
1251 (*find)->date = retval->date;
1253 /* expand the min_date/max_date window to help finding other members .
1254 * open the window by an extra margin determined by the fuzz factor
1256 if (retval->date - timestamp_fuzz_factor < (*find)->min_date)
1258 (*find)->min_date = retval->date - timestamp_fuzz_factor;
1259 //debug(DEBUG_APPMSG1, "WARNING: non-increasing dates in encountered patchset members");
1261 else if (retval->date + timestamp_fuzz_factor > (*find)->max_date)
1262 (*find)->max_date = retval->date + timestamp_fuzz_factor;
1264 free(retval);
1265 retval = *find;
1267 else
1269 debug(DEBUG_STATUS, "new patch set!");
1270 debug(DEBUG_STATUS, "%s %s %s", retval->author, retval->descr, dte);
1272 retval->min_date = retval->date - timestamp_fuzz_factor;
1273 retval->max_date = retval->date + timestamp_fuzz_factor;
1275 list_add(&retval->all_link, &all_patch_sets);
1279 return retval;
1282 static int get_branch_ext(char * buff, const char * rev, int * leaf)
1284 char * p;
1285 int len = strlen(rev);
1287 /* allow get_branch(buff, buff) without destroying contents */
1288 memmove(buff, rev, len);
1289 buff[len] = 0;
1291 p = strrchr(buff, '.');
1292 if (!p)
1293 return 0;
1294 *p++ = 0;
1296 if (leaf)
1297 *leaf = atoi(p);
1299 return 1;
1302 static int get_branch(char * buff, const char * rev)
1304 return get_branch_ext(buff, rev, NULL);
1308 * the goal if this function is to determine what revision to assign to
1309 * the psm->pre_rev field. usually, the log file is strictly
1310 * reverse chronological, so rev is direct ancestor to psm,
1312 * This all breaks down at branch points however
1315 static void assign_pre_revision(PatchSetMember * psm, CvsFileRevision * rev)
1317 char pre[REV_STR_MAX], post[REV_STR_MAX];
1319 if (!psm)
1320 return;
1322 if (!rev)
1324 /* if psm was last rev. for file, it's either an
1325 * INITIAL, or first rev of a branch. to test if it's
1326 * the first rev of a branch, do get_branch twice -
1327 * this should be the bp.
1329 if (get_branch(post, psm->post_rev->rev) &&
1330 get_branch(pre, post))
1332 psm->pre_rev = file_get_revision(psm->file, pre);
1333 list_add(&psm->post_rev->link, &psm->pre_rev->branch_children);
1335 else
1337 set_psm_initial(psm);
1339 return;
1343 * is this canditate for 'pre' on the same branch as our 'post'?
1344 * this is the normal case
1346 if (!get_branch(pre, rev->rev))
1348 debug(DEBUG_APPERROR, "get_branch malformed input (1)");
1349 return;
1352 if (!get_branch(post, psm->post_rev->rev))
1354 debug(DEBUG_APPERROR, "get_branch malformed input (2)");
1355 return;
1358 if (strcmp(pre, post) == 0)
1360 psm->pre_rev = rev;
1361 rev->pre_psm = psm;
1362 return;
1365 /* branches don't match. new_psm must be head of branch,
1366 * so psm is oldest rev. on branch. or oldest
1367 * revision overall. if former, derive predecessor.
1368 * use get_branch to chop another rev. off of string.
1370 * FIXME:
1371 * There's also a weird case. it's possible to just re-number
1372 * a revision to any future revision. i.e. rev 1.9 becomes 2.0
1373 * It's not widely used. In those cases of discontinuity,
1374 * we end up stamping the predecessor as 'INITIAL' incorrectly
1377 if (!get_branch(pre, post))
1379 set_psm_initial(psm);
1380 return;
1383 psm->pre_rev = file_get_revision(psm->file, pre);
1384 list_add(&psm->post_rev->link, &psm->pre_rev->branch_children);
1387 static void check_print_patch_set(PatchSet * ps)
1389 if (ps->psid < 0)
1390 return;
1392 /* the funk_factor overrides the restrict_tag_start and end */
1393 if (ps->funk_factor == FNK_SHOW_SOME || ps->funk_factor == FNK_SHOW_ALL)
1394 goto ok;
1396 if (ps->funk_factor == FNK_HIDE_ALL)
1397 return;
1399 if (ps->psid <= restrict_tag_ps_start)
1401 if (ps->psid == restrict_tag_ps_start)
1402 debug(DEBUG_STATUS, "PatchSet %d matches tag %s.", ps->psid, restrict_tag_start);
1404 return;
1407 if (ps->psid > restrict_tag_ps_end)
1408 return;
1411 if (restrict_date_start > 0 &&
1412 (ps->date < restrict_date_start ||
1413 (restrict_date_end > 0 && ps->date > restrict_date_end)))
1414 return;
1416 if (restrict_author && strcmp(restrict_author, ps->author) != 0)
1417 return;
1419 if (have_restrict_log && regexec(&restrict_log, ps->descr, 0, NULL, 0) != 0)
1420 return;
1422 if (have_restrict_file && !patch_set_member_regex(ps, &restrict_file))
1423 return;
1425 if (restrict_branch && !patch_set_affects_branch(ps, restrict_branch))
1426 return;
1428 if (!list_empty(&show_patch_set_ranges))
1430 struct list_head * next = show_patch_set_ranges.next;
1432 while (next != &show_patch_set_ranges)
1434 PatchSetRange *range = list_entry(next, PatchSetRange, link);
1435 if (range->min_counter <= ps->psid &&
1436 ps->psid <= range->max_counter)
1438 break;
1440 next = next->next;
1443 if (next == &show_patch_set_ranges)
1444 return;
1447 if (patch_set_dir)
1449 char path[PATH_MAX];
1451 snprintf(path, PATH_MAX, "%s/%d.patch", patch_set_dir, ps->psid);
1453 fflush(stdout);
1454 close(1);
1455 if (open(path, O_WRONLY|O_TRUNC|O_CREAT, 0666) < 0)
1457 debug(DEBUG_SYSERROR, "can't open patch file %s", path);
1458 exit(1);
1461 fprintf(stderr, "Directing PatchSet %d to file %s\n", ps->psid, path);
1465 * If the summary_first option is in effect, there will be
1466 * two passes through the tree. the first with summary_first == 1
1467 * the second with summary_first == 2. if the option is not
1468 * in effect, there will be one pass with summary_first == 0
1470 * When the -s option is in effect, the show_patch_set_ranges
1471 * list will be non-empty.
1473 if (summary_first <= 1)
1474 print_patch_set(ps);
1475 if (do_diff && summary_first != 1)
1476 do_cvs_diff(ps);
1478 fflush(stdout);
1481 static void print_patch_set(PatchSet * ps)
1483 struct tm *tm;
1484 struct list_head * next;
1485 const char * funk = "";
1487 tm = localtime(&ps->date);
1488 next = ps->members.next;
1490 funk = fnk_descr[ps->funk_factor];
1492 /* this '---...' is different from the 28 hyphens that separate cvs log output */
1493 printf("---------------------\n");
1494 printf("PatchSet %d %s\n", ps->psid, funk);
1495 printf("Date: %d/%02d/%02d %02d:%02d:%02d\n",
1496 1900 + tm->tm_year, tm->tm_mon + 1, tm->tm_mday,
1497 tm->tm_hour, tm->tm_min, tm->tm_sec);
1498 printf("Author: %s\n", ps->author);
1499 printf("Branch: %s\n", ps->branch);
1500 if (ps->ancestor_branch)
1501 printf("Ancestor branch: %s\n", ps->ancestor_branch);
1502 printf("Tag: %s %s\n", ps->tag ? ps->tag : "(none)", tag_flag_descr[ps->tag_flags]);
1503 printf("Log:\n%s\n", ps->descr);
1504 printf("Members: \n");
1506 while (next != &ps->members)
1508 PatchSetMember * psm = list_entry(next, PatchSetMember, link);
1509 if (ps->funk_factor == FNK_SHOW_SOME && psm->bad_funk)
1510 funk = "(BEFORE START TAG)";
1511 else if (ps->funk_factor == FNK_HIDE_SOME && !psm->bad_funk)
1512 funk = "(AFTER END TAG)";
1513 else
1514 funk = "";
1516 printf("\t%s:%s->%s%s %s\n",
1517 psm->file->filename,
1518 psm->pre_rev ? psm->pre_rev->rev : "INITIAL",
1519 psm->post_rev->rev,
1520 psm->post_rev->dead ? "(DEAD)": "",
1521 funk);
1523 next = next->next;
1526 printf("\n");
1529 /* walk all the patchsets to assign monotonic psid,
1530 * and to establish branch ancestry
1532 static void assign_patchset_id(PatchSet * ps)
1535 * Ignore the 'BRANCH ADD' patchsets
1537 if (!ps->branch_add)
1539 ps_counter++;
1540 ps->psid = ps_counter;
1542 if (track_branch_ancestry && strcmp(ps->branch, "HEAD") != 0)
1544 PatchSet * head_ps = (PatchSet*)get_hash_object(branch_heads, ps->branch);
1545 if (!head_ps)
1547 head_ps = ps;
1548 put_hash_object(branch_heads, ps->branch, head_ps);
1551 determine_branch_ancestor(ps, head_ps);
1554 else
1556 ps->psid = -1;
1560 static int compare_rev_strings(const char * cr1, const char * cr2)
1562 char r1[REV_STR_MAX];
1563 char r2[REV_STR_MAX];
1564 char *s1 = r1, *s2 = r2;
1565 char *p1, *p2;
1566 int n1, n2;
1568 strcpy(s1, cr1);
1569 strcpy(s2, cr2);
1571 for (;;)
1573 p1 = strchr(s1, '.');
1574 p2 = strchr(s2, '.');
1576 if (p1) *p1++ = 0;
1577 if (p2) *p2++ = 0;
1579 n1 = atoi(s1);
1580 n2 = atoi(s2);
1582 if (n1 < n2)
1583 return -1;
1584 if (n1 > n2)
1585 return 1;
1587 if (!p1 && p2)
1588 return -1;
1589 if (p1 && !p2)
1590 return 1;
1591 if (!p1 && !p2)
1592 return 0;
1594 s1 = p1;
1595 s2 = p2;
1599 static int compare_patch_sets_by_members(const PatchSet * ps1, const PatchSet * ps2)
1601 struct list_head * i;
1603 for (i = ps1->members.next; i != &ps1->members; i = i->next)
1605 PatchSetMember * psm1 = list_entry(i, PatchSetMember, link);
1606 struct list_head * j;
1608 for (j = ps2->members.next; j != &ps2->members; j = j->next)
1610 PatchSetMember * psm2 = list_entry(j, PatchSetMember, link);
1611 if (psm1->file == psm2->file)
1613 int ret = compare_rev_strings(psm1->post_rev->rev, psm2->post_rev->rev);
1614 //debug(DEBUG_APPMSG1, "file: %s comparing %s %s = %d", psm1->file->filename, psm1->post_rev->rev, psm2->post_rev->rev, ret);
1615 return ret;
1620 return 0;
1623 static int compare_patch_sets_bk(const void * v_ps1, const void * v_ps2)
1625 const PatchSet * ps1 = (const PatchSet *)v_ps1;
1626 const PatchSet * ps2 = (const PatchSet *)v_ps2;
1627 long diff;
1629 diff = ps1->date - ps2->date;
1631 return (diff < 0) ? -1 : ((diff > 0) ? 1 : 0);
1634 static int compare_patch_sets(const void * v_ps1, const void * v_ps2)
1636 const PatchSet * ps1 = (const PatchSet *)v_ps1;
1637 const PatchSet * ps2 = (const PatchSet *)v_ps2;
1638 long diff;
1639 int ret;
1640 time_t d, min, max;
1642 /* We order by (author, descr, branch, members, date), but because of the fuzz factor
1643 * we treat times within a certain distance as equal IFF the author
1644 * and descr match.
1647 ret = strcmp(ps1->author, ps2->author);
1648 if (ret)
1649 return ret;
1651 ret = strcmp(ps1->descr, ps2->descr);
1652 if (ret)
1653 return ret;
1655 ret = strcmp(ps1->branch, ps2->branch);
1656 if (ret)
1657 return ret;
1659 ret = compare_patch_sets_by_members(ps1, ps2);
1660 if (ret)
1661 return ret;
1664 * one of ps1 or ps2 is new. the other should have the min_date
1665 * and max_date set to a window opened by the fuzz_factor
1667 if (ps1->min_date == 0)
1669 d = ps1->date;
1670 min = ps2->min_date;
1671 max = ps2->max_date;
1673 else if (ps2->min_date == 0)
1675 d = ps2->date;
1676 min = ps1->min_date;
1677 max = ps1->max_date;
1679 else
1681 debug(DEBUG_APPERROR, "how can we have both patchsets pre-existing?");
1682 exit(1);
1685 if (min < d && d < max)
1686 return 0;
1688 diff = ps1->date - ps2->date;
1690 return (diff < 0) ? -1 : 1;
1693 static int compare_patch_sets_bytime_list(struct list_head * l1, struct list_head * l2)
1695 const PatchSet *ps1 = list_entry(l1, PatchSet, all_link);
1696 const PatchSet *ps2 = list_entry(l2, PatchSet, all_link);
1697 return compare_patch_sets_bytime(ps1, ps2);
1700 static int compare_patch_sets_bytime(const PatchSet * ps1, const PatchSet * ps2)
1702 long diff;
1703 int ret;
1705 /* When doing a time-ordering of patchsets, we don't need to
1706 * fuzzy-match the time. We've already done fuzzy-matching so we
1707 * know that insertions are unique at this point.
1710 diff = ps1->date - ps2->date;
1711 if (diff)
1712 return (diff < 0) ? -1 : 1;
1714 ret = compare_patch_sets_by_members(ps1, ps2);
1715 if (ret)
1716 return ret;
1718 ret = strcmp(ps1->author, ps2->author);
1719 if (ret)
1720 return ret;
1722 ret = strcmp(ps1->descr, ps2->descr);
1723 if (ret)
1724 return ret;
1726 ret = strcmp(ps1->branch, ps2->branch);
1727 return ret;
1731 static int is_revision_metadata(const char * buff)
1733 char * p1, *p2;
1734 int len;
1736 if (!(p1 = strchr(buff, ':')))
1737 return 0;
1739 p2 = strchr(buff, ' ');
1741 if (p2 && p2 < p1)
1742 return 0;
1744 len = strlen(buff);
1746 /* lines have LF at end */
1747 if (len > 1 && buff[len - 2] == ';')
1748 return 1;
1750 return 0;
1753 static int patch_set_member_regex(PatchSet * ps, regex_t * reg)
1755 struct list_head * next = ps->members.next;
1757 while (next != &ps->members)
1759 PatchSetMember * psm = list_entry(next, PatchSetMember, link);
1761 if (regexec(&restrict_file, psm->file->filename, 0, NULL, 0) == 0)
1762 return 1;
1764 next = next->next;
1767 return 0;
1770 static int patch_set_affects_branch(PatchSet * ps, const char * branch)
1772 struct list_head * next;
1774 for (next = ps->members.next; next != &ps->members; next = next->next)
1776 PatchSetMember * psm = list_entry(next, PatchSetMember, link);
1779 * slight hack. if -r is specified, and this patchset
1780 * is 'before' the tag, but is FNK_SHOW_SOME, only
1781 * check if the 'after tag' revisions affect
1782 * the branch. this is especially important when
1783 * the tag is a branch point.
1785 if (ps->funk_factor == FNK_SHOW_SOME && psm->bad_funk)
1786 continue;
1788 if (revision_affects_branch(psm->post_rev, branch))
1789 return 1;
1792 return 0;
1795 static void do_cvs_diff(PatchSet * ps)
1797 struct list_head * next;
1798 const char * dtype;
1799 const char * dopts;
1800 const char * utype;
1801 char use_rep_path[PATH_MAX];
1802 char esc_use_rep_path[PATH_MAX];
1804 fflush(stdout);
1805 fflush(stderr);
1808 * if cvs_direct is not in effect, and diff options are specified,
1809 * then we have to use diff instead of rdiff and we'll get a -p0
1810 * diff (instead of -p1) [in a manner of speaking]. So to make sure
1811 * that the add/remove diffs get generated likewise, we need to use
1812 * 'update' instead of 'co'
1814 * cvs_direct will always use diff (not rdiff), but will also always
1815 * generate -p1 diffs.
1817 if (diff_opts == NULL)
1819 dopts = "-u";
1820 dtype = "rdiff";
1821 utype = "co";
1822 sprintf(use_rep_path, "%s/", repository_path);
1823 /* the rep_path may contain characters that the shell will barf on */
1824 escape_filename(esc_use_rep_path, PATH_MAX, use_rep_path);
1826 else
1828 dopts = diff_opts;
1829 dtype = "diff";
1830 utype = "update";
1831 use_rep_path[0] = 0;
1832 esc_use_rep_path[0] = 0;
1835 for (next = ps->members.next; next != &ps->members; next = next->next)
1837 PatchSetMember * psm = list_entry(next, PatchSetMember, link);
1838 char cmdbuff[PATH_MAX * 2+1];
1839 char esc_file[PATH_MAX];
1840 int ret, check_ret = 0;
1842 cmdbuff[0] = 0;
1843 cmdbuff[PATH_MAX*2] = 0;
1845 /* the filename may contain characters that the shell will barf on */
1846 escape_filename(esc_file, PATH_MAX, psm->file->filename);
1849 * Check the patchset funk. we may not want to diff this particular file
1851 if (ps->funk_factor == FNK_SHOW_SOME && psm->bad_funk)
1853 printf("Index: %s\n", psm->file->filename);
1854 printf("===================================================================\n");
1855 printf("*** Member not diffed, before start tag\n");
1856 continue;
1858 else if (ps->funk_factor == FNK_HIDE_SOME && !psm->bad_funk)
1860 printf("Index: %s\n", psm->file->filename);
1861 printf("===================================================================\n");
1862 printf("*** Member not diffed, after end tag\n");
1863 continue;
1867 * When creating diffs for INITIAL or DEAD revisions, we have to use 'cvs co'
1868 * or 'cvs update' to get the file, because cvs won't generate these diffs.
1869 * The problem is that this must be piped to diff, and so the resulting
1870 * diff doesn't contain the filename anywhere! (diff between - and /dev/null).
1871 * sed is used to replace the '-' with the filename.
1873 * It's possible for pre_rev to be a 'dead' revision. This happens when a file
1874 * is added on a branch. post_rev will be dead dead for remove
1876 if (!psm->pre_rev || psm->pre_rev->dead || psm->post_rev->dead)
1878 int cr;
1879 const char * rev;
1881 if (!psm->pre_rev || psm->pre_rev->dead)
1883 cr = 1;
1884 rev = psm->post_rev->rev;
1886 else
1888 cr = 0;
1889 rev = psm->pre_rev->rev;
1892 if (cvs_direct_ctx)
1894 /* cvs_rupdate does the pipe through diff thing internally */
1895 cvs_rupdate(cvs_direct_ctx, repository_path, psm->file->filename, rev, cr, dopts);
1897 else
1899 snprintf(cmdbuff, PATH_MAX * 2, "cvs %s %s %s -p -r %s %s%s | diff %s %s /dev/null %s | sed -e '%s s|^\\([+-][+-][+-]\\) -|\\1 %s%s|g'",
1900 compress_arg, norc, utype, rev, esc_use_rep_path, esc_file, dopts,
1901 cr?"":"-",cr?"-":"", cr?"2":"1",
1902 use_rep_path, psm->file->filename);
1905 else
1907 /* a regular diff */
1908 if (cvs_direct_ctx)
1910 cvs_diff(cvs_direct_ctx, repository_path, psm->file->filename, psm->pre_rev->rev, psm->post_rev->rev, dopts);
1912 else
1914 /* 'cvs diff' exit status '1' is ok, just means files are different */
1915 if (strcmp(dtype, "diff") == 0)
1916 check_ret = 1;
1918 snprintf(cmdbuff, PATH_MAX * 2, "cvs %s %s %s %s -r %s -r %s %s%s",
1919 compress_arg, norc, dtype, dopts, psm->pre_rev->rev, psm->post_rev->rev,
1920 esc_use_rep_path, esc_file);
1925 * my_system doesn't block signals the way system does.
1926 * if ctrl-c is pressed while in there, we probably exit
1927 * immediately and hope the shell has sent the signal
1928 * to all of the process group members
1930 if (cmdbuff[0] && (ret = my_system(cmdbuff)))
1932 int stat = WEXITSTATUS(ret);
1935 * cvs diff returns 1 in exit status for 'files are different'
1936 * so use a better method to check for failure
1938 if (stat < 0 || stat > check_ret || WIFSIGNALED(ret))
1940 debug(DEBUG_APPERROR, "system command returned non-zero exit status: %d: aborting", stat);
1941 exit(1);
1947 static CvsFileRevision * parse_revision(CvsFile * file, char * rev_str)
1949 char * p;
1951 /* The "revision" log line can include extra information
1952 * including who is locking the file --- strip that out.
1955 p = rev_str;
1956 while (isdigit(*p) || *p == '.')
1957 p++;
1958 *p = 0;
1960 return cvs_file_add_revision(file, rev_str);
1963 CvsFileRevision * cvs_file_add_revision(CvsFile * file, const char * rev_str)
1965 CvsFileRevision * rev;
1967 if (!(rev = (CvsFileRevision*)get_hash_object(file->revisions, rev_str)))
1969 rev = (CvsFileRevision*)calloc(1, sizeof(*rev));
1970 rev->rev = get_string(rev_str);
1971 rev->file = file;
1972 rev->branch = NULL;
1973 rev->present = 0;
1974 rev->pre_psm = NULL;
1975 rev->post_psm = NULL;
1976 INIT_LIST_HEAD(&rev->branch_children);
1977 INIT_LIST_HEAD(&rev->tags);
1979 put_hash_object_ex(file->revisions, rev->rev, rev, HT_NO_KEYCOPY, NULL, NULL);
1981 debug(DEBUG_STATUS, "added revision %s to file %s", rev_str, file->filename);
1983 else
1985 debug(DEBUG_STATUS, "found revision %s to file %s", rev_str, file->filename);
1989 * note: we are guaranteed to get here at least once with 'have_branches' == 1.
1990 * we may pass through once before this, because of symbolic tags, then once
1991 * always when processing the actual revision logs
1993 * rev->branch will always be set to something, maybe "HEAD"
1995 if (!rev->branch && file->have_branches)
1997 char branch_str[REV_STR_MAX];
1999 /* in the cvs cvs repository (ccvs) there are tagged versions
2000 * that don't exist. let's mark every 'known to exist'
2001 * version
2003 rev->present = 1;
2005 /* determine the branch this revision was committed on */
2006 if (!get_branch(branch_str, rev->rev))
2008 debug(DEBUG_APPERROR, "invalid rev format %s", rev->rev);
2009 exit(1);
2012 rev->branch = (char*)get_hash_object(file->branches, branch_str);
2014 /* if there's no branch and it's not on the trunk, blab */
2015 if (!rev->branch)
2017 if (get_branch(branch_str, branch_str))
2019 debug(DEBUG_APPMSG1, "WARNING: revision %s of file %s on unnamed branch", rev->rev, rev->file->filename);
2020 rev->branch = "#CVSPS_NO_BRANCH";
2022 else
2024 rev->branch = "HEAD";
2028 debug(DEBUG_STATUS, "revision %s of file %s on branch %s", rev->rev, rev->file->filename, rev->branch);
2031 return rev;
2034 CvsFile * create_cvsfile()
2036 CvsFile * f = (CvsFile*)calloc(1, sizeof(*f));
2037 if (!f)
2038 return NULL;
2040 f->revisions = create_hash_table(53);
2041 f->branches = create_hash_table(13);
2042 f->branches_sym = create_hash_table(13);
2043 f->symbols = create_hash_table(253);
2044 f->have_branches = 0;
2046 if (!f->revisions || !f->branches || !f->branches_sym)
2048 if (f->branches)
2049 destroy_hash_table(f->branches, NULL);
2050 if (f->revisions)
2051 destroy_hash_table(f->revisions, NULL);
2052 free(f);
2053 return NULL;
2056 return f;
2059 static PatchSet * create_patch_set()
2061 PatchSet * ps = (PatchSet*)calloc(1, sizeof(*ps));;
2063 if (ps)
2065 INIT_LIST_HEAD(&ps->members);
2066 ps->psid = -1;
2067 ps->date = 0;
2068 ps->min_date = 0;
2069 ps->max_date = 0;
2070 ps->descr = NULL;
2071 ps->author = NULL;
2072 ps->tag = NULL;
2073 ps->tag_flags = 0;
2074 ps->branch_add = 0;
2075 ps->funk_factor = 0;
2076 ps->ancestor_branch = NULL;
2077 CLEAR_LIST_NODE(&ps->collision_link);
2080 return ps;
2083 PatchSetMember * create_patch_set_member()
2085 PatchSetMember * psm = (PatchSetMember*)calloc(1, sizeof(*psm));
2086 psm->pre_rev = NULL;
2087 psm->post_rev = NULL;
2088 psm->ps = NULL;
2089 psm->file = NULL;
2090 psm->bad_funk = 0;
2091 return psm;
2094 static PatchSetRange * create_patch_set_range()
2096 PatchSetRange * psr = (PatchSetRange*)calloc(1, sizeof(*psr));
2097 return psr;
2100 CvsFileRevision * file_get_revision(CvsFile * file, const char * r)
2102 CvsFileRevision * rev;
2104 if (strcmp(r, "INITIAL") == 0)
2105 return NULL;
2107 rev = (CvsFileRevision*)get_hash_object(file->revisions, r);
2109 if (!rev)
2111 debug(DEBUG_APPERROR, "request for non-existent rev %s in file %s", r, file->filename);
2112 exit(1);
2115 return rev;
2119 * Parse lines in the format:
2121 * <white space>tag_name: <rev>;
2123 * Handles both regular tags (these go into the symbols hash)
2124 * and magic-branch-tags (second to last node of revision is 0)
2125 * which go into branches and branches_sym hashes. Magic-branch
2126 * format is hidden in CVS everwhere except the 'cvs log' output.
2129 static void parse_sym(CvsFile * file, char * sym)
2131 char * tag = sym, *eot;
2132 int leaf, final_branch = -1;
2133 char rev[REV_STR_MAX];
2134 char rev2[REV_STR_MAX];
2136 while (*tag && isspace(*tag))
2137 tag++;
2139 if (!*tag)
2140 return;
2142 eot = strchr(tag, ':');
2144 if (!eot)
2145 return;
2147 *eot = 0;
2148 eot += 2;
2150 if (!get_branch_ext(rev, eot, &leaf))
2152 if (strcmp(tag, "TRUNK") == 0)
2154 debug(DEBUG_STATUS, "ignoring the TRUNK branch/tag");
2155 return;
2157 debug(DEBUG_APPERROR, "malformed revision");
2158 exit(1);
2162 * get_branch_ext will leave final_branch alone
2163 * if there aren't enough '.' in string
2165 get_branch_ext(rev2, rev, &final_branch);
2167 if (final_branch == 0)
2169 snprintf(rev, REV_STR_MAX, "%s.%d", rev2, leaf);
2170 debug(DEBUG_STATUS, "got sym: %s for %s", tag, rev);
2172 cvs_file_add_branch(file, rev, tag);
2174 else
2176 strcpy(rev, eot);
2177 chop(rev);
2179 /* see cvs manual: what is this vendor tag? */
2180 if (is_vendor_branch(rev))
2181 cvs_file_add_branch(file, rev, tag);
2182 else
2183 cvs_file_add_symbol(file, rev, tag);
2187 void cvs_file_add_symbol(CvsFile * file, const char * rev_str, const char * p_tag_str)
2189 CvsFileRevision * rev;
2190 GlobalSymbol * sym;
2191 Tag * tag;
2193 /* get a permanent storage string */
2194 char * tag_str = get_string(p_tag_str);
2196 debug(DEBUG_STATUS, "adding symbol to file: %s %s->%s", file->filename, tag_str, rev_str);
2197 rev = cvs_file_add_revision(file, rev_str);
2198 put_hash_object_ex(file->symbols, tag_str, rev, HT_NO_KEYCOPY, NULL, NULL);
2201 * check the global_symbols
2203 sym = (GlobalSymbol*)get_hash_object(global_symbols, tag_str);
2204 if (!sym)
2206 sym = (GlobalSymbol*)malloc(sizeof(*sym));
2207 sym->tag = tag_str;
2208 sym->ps = NULL;
2209 INIT_LIST_HEAD(&sym->tags);
2211 put_hash_object_ex(global_symbols, sym->tag, sym, HT_NO_KEYCOPY, NULL, NULL);
2214 tag = (Tag*)malloc(sizeof(*tag));
2215 tag->tag = tag_str;
2216 tag->rev = rev;
2217 tag->sym = sym;
2218 list_add(&tag->global_link, &sym->tags);
2219 list_add(&tag->rev_link, &rev->tags);
2222 char * cvs_file_add_branch(CvsFile * file, const char * rev, const char * tag)
2224 char * new_tag;
2225 char * new_rev;
2227 if (get_hash_object(file->branches, rev))
2229 debug(DEBUG_STATUS, "attempt to add existing branch %s:%s to %s",
2230 rev, tag, file->filename);
2231 return NULL;
2234 /* get permanent storage for the strings */
2235 new_tag = get_string(tag);
2236 new_rev = get_string(rev);
2238 put_hash_object_ex(file->branches, new_rev, new_tag, HT_NO_KEYCOPY, NULL, NULL);
2239 put_hash_object_ex(file->branches_sym, new_tag, new_rev, HT_NO_KEYCOPY, NULL, NULL);
2241 return new_tag;
2245 * Resolve each global symbol to a PatchSet. This is
2246 * not necessarily doable, because tagging isn't
2247 * necessarily done to the project as a whole, and
2248 * it's possible that no tag is valid for all files
2249 * at a single point in time. We check for that
2250 * case though.
2252 * Implementation: the most recent PatchSet containing
2253 * a revision (post_rev) tagged by the symbol is considered
2254 * the 'tagged' PatchSet.
2257 static void resolve_global_symbols()
2259 struct hash_entry * he_sym;
2260 reset_hash_iterator(global_symbols);
2261 while ((he_sym = next_hash_entry(global_symbols)))
2263 GlobalSymbol * sym = (GlobalSymbol*)he_sym->he_obj;
2264 PatchSet * ps;
2265 struct list_head * next;
2267 debug(DEBUG_STATUS, "resolving global symbol %s", sym->tag);
2270 * First pass, determine the most recent PatchSet with a
2271 * revision tagged with the symbolic tag. This is 'the'
2272 * patchset with the tag
2275 for (next = sym->tags.next; next != &sym->tags; next = next->next)
2277 Tag * tag = list_entry(next, Tag, global_link);
2278 CvsFileRevision * rev = tag->rev;
2280 /* FIXME:test for rev->post_psm from DEBIAN. not sure how this could happen */
2281 if (!rev->present || !rev->post_psm)
2283 struct list_head *tmp = next->prev;
2284 debug(DEBUG_APPERROR, "revision %s of file %s is tagged but not present",
2285 rev->rev, rev->file->filename);
2286 /* FIXME: memleak */
2287 list_del(next);
2288 next = tmp;
2289 continue;
2292 ps = rev->post_psm->ps;
2294 if (!sym->ps || ps->date > sym->ps->date)
2295 sym->ps = ps;
2298 /* convenience variable */
2299 ps = sym->ps;
2301 if (!ps)
2303 debug(DEBUG_APPERROR, "no patchset for tag %s", sym->tag);
2304 return;
2307 ps->tag = sym->tag;
2309 /* check if this ps is one of the '-r' patchsets */
2310 if (restrict_tag_start && strcmp(restrict_tag_start, ps->tag) == 0)
2311 restrict_tag_ps_start = ps->psid;
2313 /* the second -r implies -b */
2314 if (restrict_tag_end && strcmp(restrict_tag_end, ps->tag) == 0)
2316 restrict_tag_ps_end = ps->psid;
2318 if (restrict_branch)
2320 if (strcmp(ps->branch, restrict_branch) != 0)
2322 debug(DEBUG_APPMSG1,
2323 "WARNING: -b option and second -r have conflicting branches: %s %s",
2324 restrict_branch, ps->branch);
2327 else
2329 debug(DEBUG_APPMSG1, "NOTICE: implicit branch restriction set to %s", ps->branch);
2330 restrict_branch = ps->branch;
2335 * Second pass.
2336 * check if this is an invalid patchset,
2337 * check which members are invalid. determine
2338 * the funk factor etc.
2340 for (next = sym->tags.next; next != &sym->tags; next = next->next)
2342 Tag * tag = list_entry(next, Tag, global_link);
2343 CvsFileRevision * rev = tag->rev;
2344 CvsFileRevision * next_rev = rev_follow_branch(rev, ps->branch);
2346 if (!next_rev)
2347 continue;
2350 * we want the 'tagged revision' to be valid until after
2351 * the date of the 'tagged patchset' or else there's something
2352 * funky going on
2354 if (next_rev->post_psm->ps->date < ps->date)
2356 int flag = check_rev_funk(ps, next_rev);
2357 debug(DEBUG_STATUS, "file %s revision %s tag %s: TAG VIOLATION %s",
2358 rev->file->filename, rev->rev, sym->tag, tag_flag_descr[flag]);
2359 ps->tag_flags |= flag;
2365 static int revision_affects_branch(CvsFileRevision * rev, const char * branch)
2367 /* special case the branch called 'HEAD' */
2368 if (strcmp(branch, "HEAD") == 0)
2370 /* look for only one '.' in rev */
2371 char * p = strchr(rev->rev, '.');
2372 if (p && !strchr(p + 1, '.'))
2373 return 1;
2375 else
2377 char * branch_rev = (char*)get_hash_object(rev->file->branches_sym, branch);
2379 if (branch_rev)
2381 char post_rev[REV_STR_MAX];
2382 char branch[REV_STR_MAX];
2383 int file_leaf, branch_leaf;
2385 strcpy(branch, branch_rev);
2387 /* first get the branch the file rev is on */
2388 if (get_branch_ext(post_rev, rev->rev, &file_leaf))
2390 branch_leaf = file_leaf;
2392 /* check against branch and all branch ancestor branches */
2395 debug(DEBUG_STATUS, "check %s against %s for %s", branch, post_rev, rev->file->filename);
2396 if (strcmp(branch, post_rev) == 0)
2397 return (file_leaf <= branch_leaf);
2399 while(get_branch_ext(branch, branch, &branch_leaf));
2404 return 0;
2407 static int count_dots(const char * p)
2409 int dots = 0;
2411 while (*p)
2412 if (*p++ == '.')
2413 dots++;
2415 return dots;
2419 * When importing vendor sources, (apparently people do this)
2420 * the code is added on a 'vendor' branch, which, for some reason
2421 * doesn't use the magic-branch-tag format. Try to detect that now
2423 static int is_vendor_branch(const char * rev)
2425 return !(count_dots(rev)&1);
2428 void patch_set_add_member(PatchSet * ps, PatchSetMember * psm)
2430 /* check if a member for the same file already exists, if so
2431 * put this PatchSet on the collisions list
2433 struct list_head * next;
2434 for (next = ps->members.next; next != &ps->members; next = next->next)
2436 PatchSetMember * m = list_entry(next, PatchSetMember, link);
2437 if (m->file == psm->file) {
2438 int order = compare_rev_strings(psm->post_rev->rev, m->post_rev->rev);
2441 * Same revision too? Add it to the collision list
2442 * if it isn't already.
2444 if (!order) {
2445 if (ps->collision_link.next == NULL)
2446 list_add(&ps->collision_link, &collisions);
2447 return;
2451 * If this is an older revision than the one we already have
2452 * in this patchset, just ignore it
2454 if (order < 0)
2455 return;
2458 * This is a newer one, remove the old one
2460 list_del(&m->link);
2464 psm->ps = ps;
2465 list_add(&psm->link, ps->members.prev);
2468 static void set_psm_initial(PatchSetMember * psm)
2470 psm->pre_rev = NULL;
2471 if (psm->post_rev->dead)
2474 * We expect a 'file xyz initially added on branch abc' here.
2475 * There can only be several such member in a given patchset,
2476 * since cvs only includes the file basename in the log message.
2478 psm->ps->branch_add = 1;
2483 * look at all revisions starting at rev and going forward until
2484 * ps->date and see whether they are invalid or just funky.
2486 static int check_rev_funk(PatchSet * ps, CvsFileRevision * rev)
2488 int retval = TAG_FUNKY;
2490 while (rev)
2492 PatchSet * next_ps = rev->post_psm->ps;
2493 struct list_head * next;
2495 if (next_ps->date > ps->date)
2496 break;
2498 debug(DEBUG_STATUS, "ps->date %d next_ps->date %d rev->rev %s rev->branch %s",
2499 ps->date, next_ps->date, rev->rev, rev->branch);
2502 * If the ps->tag is one of the two possible '-r' tags
2503 * then the funkyness is even more important.
2505 * In the restrict_tag_start case, this next_ps is chronologically
2506 * before ps, but tagwise after, so set the funk_factor so it will
2507 * be included.
2509 * The restrict_tag_end case is similar, but backwards.
2511 * Start assuming the HIDE/SHOW_ALL case, we will determine
2512 * below if we have a split ps case
2514 if (restrict_tag_start && strcmp(ps->tag, restrict_tag_start) == 0)
2515 next_ps->funk_factor = FNK_SHOW_ALL;
2516 if (restrict_tag_end && strcmp(ps->tag, restrict_tag_end) == 0)
2517 next_ps->funk_factor = FNK_HIDE_ALL;
2520 * if all of the other members of this patchset are also 'after' the tag
2521 * then this is a 'funky' patchset w.r.t. the tag. however, if some are
2522 * before then the patchset is 'invalid' w.r.t. the tag, and we mark
2523 * the members individually with 'bad_funk' ,if this tag is the
2524 * '-r' tag. Then we can actually split the diff on this patchset
2526 for (next = next_ps->members.next; next != &next_ps->members; next = next->next)
2528 PatchSetMember * psm = list_entry(next, PatchSetMember, link);
2529 if (before_tag(psm->post_rev, ps->tag))
2531 retval = TAG_INVALID;
2532 /* only set bad_funk for one of the -r tags */
2533 if (next_ps->funk_factor)
2535 psm->bad_funk = 1;
2536 next_ps->funk_factor =
2537 (next_ps->funk_factor == FNK_SHOW_ALL) ? FNK_SHOW_SOME : FNK_HIDE_SOME;
2539 debug(DEBUG_APPMSG1,
2540 "WARNING: Invalid PatchSet %d, Tag %s:\n"
2541 " %s:%s=after, %s:%s=before. Treated as 'before'",
2542 next_ps->psid, ps->tag,
2543 rev->file->filename, rev->rev,
2544 psm->post_rev->file->filename, psm->post_rev->rev);
2548 rev = rev_follow_branch(rev, ps->branch);
2551 return retval;
2554 /* determine if the revision is before the tag */
2555 static int before_tag(CvsFileRevision * rev, const char * tag)
2557 CvsFileRevision * tagged_rev = (CvsFileRevision*)get_hash_object(rev->file->symbols, tag);
2558 int retval = 0;
2560 if (tagged_rev &&
2561 revision_affects_branch(rev, tagged_rev->branch) &&
2562 rev->post_psm->ps->date <= tagged_rev->post_psm->ps->date)
2563 retval = 1;
2565 debug(DEBUG_STATUS, "before_tag: %s %s %s %s %d",
2566 rev->file->filename, tag, rev->rev, tagged_rev ? tagged_rev->rev : "N/A", retval);
2568 return retval;
2571 /* get the next revision from this one following branch if possible */
2572 /* FIXME: not sure if this needs to follow branches leading up to branches? */
2573 static CvsFileRevision * rev_follow_branch(CvsFileRevision * rev, const char * branch)
2575 struct list_head * next;
2577 /* check for 'main line of inheritance' */
2578 if (strcmp(rev->branch, branch) == 0)
2579 return rev->pre_psm ? rev->pre_psm->post_rev : NULL;
2581 /* look down branches */
2582 for (next = rev->branch_children.next; next != &rev->branch_children; next = next->next)
2584 CvsFileRevision * next_rev = list_entry(next, CvsFileRevision, link);
2585 //debug(DEBUG_STATUS, "SCANNING BRANCH CHILDREN: %s %s", next_rev->branch, branch);
2586 if (strcmp(next_rev->branch, branch) == 0)
2587 return next_rev;
2590 return NULL;
2593 static void check_norc(int argc, char * argv[])
2595 int i = 1;
2596 while (i < argc)
2598 if (strcmp(argv[i], "--norc") == 0)
2600 norc = "-f";
2601 break;
2603 i++;
2607 static void determine_branch_ancestor(PatchSet * ps, PatchSet * head_ps)
2609 struct list_head * next;
2610 CvsFileRevision * rev;
2612 /* PatchSet 1 has no ancestor */
2613 if (ps->psid == 1)
2614 return;
2616 /* HEAD branch patchsets have no ancestry, but callers should know that */
2617 if (strcmp(ps->branch, "HEAD") == 0)
2619 debug(DEBUG_APPMSG1, "WARNING: no branch ancestry for HEAD");
2620 return;
2623 for (next = ps->members.next; next != &ps->members; next = next->next)
2625 PatchSetMember * psm = list_entry(next, PatchSetMember, link);
2626 rev = psm->pre_rev;
2627 int d1, d2;
2629 /* the reason this is at all complicated has to do with a
2630 * branch off of a branch. it is possible (and indeed
2631 * likely) that some file would not have been modified
2632 * from the initial branch point to the branch-off-branch
2633 * point, and therefore the branch-off-branch point is
2634 * really branch-off-HEAD for that specific member (file).
2635 * in that case, rev->branch will say HEAD but we want
2636 * to know the symbolic name of the first branch
2637 * so we continue to look member after member until we find
2638 * the 'deepest' branching. deepest can actually be determined
2639 * by considering the revision currently indicated by
2640 * ps->ancestor_branch (by symbolic lookup) and rev->rev. the
2641 * one with more dots wins
2643 * also, the first commit in which a branch-off-branch is
2644 * mentioned may ONLY modify files never committed since
2645 * original branch-off-HEAD was created, so we have to keep
2646 * checking, ps after ps to be sure to get the deepest ancestor
2648 * note: rev is the pre-commit revision, not the post-commit
2650 if (!head_ps->ancestor_branch)
2651 d1 = -1;
2652 else if (strcmp(ps->branch, rev->branch) == 0)
2653 continue;
2654 else if (strcmp(head_ps->ancestor_branch, "HEAD") == 0)
2655 d1 = 1;
2656 else {
2657 /* branch_rev may not exist if the file was added on this branch for example */
2658 const char * branch_rev = (char *)get_hash_object(rev->file->branches_sym, head_ps->ancestor_branch);
2659 d1 = branch_rev ? count_dots(branch_rev) : 1;
2662 /* HACK: we sometimes pretend to derive from the import branch.
2663 * just don't do that. this is the easiest way to prevent...
2665 d2 = (strcmp(rev->rev, "1.1.1.1") == 0) ? 0 : count_dots(rev->rev);
2667 if (d2 > d1)
2668 head_ps->ancestor_branch = rev->branch;
2670 //printf("-----> %d ancestry %s %s %s\n", ps->psid, ps->branch, head_ps->ancestor_branch, rev->file->filename);
2674 static void handle_collisions()
2676 struct list_head *next;
2677 for (next = collisions.next; next != &collisions; next = next->next)
2679 PatchSet * ps = list_entry(next, PatchSet, collision_link);
2680 printf("PatchSet %d has collisions\n", ps->psid);
2684 void walk_all_patch_sets(void (*action)(PatchSet *))
2686 struct list_head * next;;
2687 for (next = all_patch_sets.next; next != &all_patch_sets; next = next->next) {
2688 PatchSet * ps = list_entry(next, PatchSet, all_link);
2689 action(ps);