2 * Copyright 2001, 2002, 2003 David Mansfield and Cobite, Inc.
3 * See COPYING file for license information
15 #include <sys/types.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>
27 #include "cvsps_types.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"
48 NEED_DATE_AUTHOR_STATE
,
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
[] = {
65 const char * fnk_descr
[] = {
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;
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
;
111 static int cvs_direct
;
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)
169 if (parse_args(argc
, argv
) < 0)
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
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)
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
);
220 //handle_collisions();
222 list_sort(&all_patch_sets
, compare_patch_sets_bytime_list
);
225 walk_all_patch_sets(assign_patchset_id
);
229 resolve_global_symbols();
232 write_cache(cache_date
);
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
);
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
);
251 walk_all_patch_sets(check_print_patch_set
);
254 walk_all_patch_sets(check_print_patch_set
);
257 close_cvs_server(cvs_direct_ctx
);
262 static void load_from_cvs()
266 int state
= NEED_RCS_FILE
;
267 CvsFile
* file
= NULL
;
268 PatchSetMember
* psm
= NULL
;
270 char authbuff
[AUTH_STR_MAX
];
271 int logbufflen
= LOG_STR_MAX
+ 1;
272 char * logbuff
= malloc(logbufflen
);
277 char use_rep_buff
[PATH_MAX
];
282 debug(DEBUG_SYSERROR
, "could not malloc %d bytes for logbuff in load_from_cvs", logbufflen
);
286 if (!no_rlog
&& !test_log_file
&& cvs_check_cap(CAP_HAVE_RLOG
))
289 snprintf(use_rep_buff
, PATH_MAX
, "%s", repository_path
);
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
311 snprintf(cmd
, BUFSIZ
, "cvs %s %s -q %s -d '%s<;%s' %s", compress_arg
, norc
, ltype
, date_str
, date_str
, use_rep_buff
);
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 */
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
);
329 cvsfp
= popen(cmd
, "r");
333 debug(DEBUG_SYSERROR
, "can't open cvs pipe using command %s", cmd
);
341 tst
= cvs_rlog_fgets(buff
, BUFSIZ
, cvs_direct_ctx
);
343 tst
= fgets(buff
, BUFSIZ
, cvsfp
);
348 debug(DEBUG_STATUS
, "state: %d read line:%s", state
, buff
);
353 if (strncmp(buff
, "RCS file", 8) == 0) {
354 if ((file
= parse_rcs_file(buff
)) != NULL
)
357 state
= NEED_WORKING_FILE
;
360 case NEED_WORKING_FILE
:
361 if (strncmp(buff
, "Working file", 12) == 0) {
362 if ((file
= parse_working_file(buff
)))
365 state
= NEED_RCS_FILE
;
368 // Working file come just after RCS file. So reset state if it was not found
369 state
= NEED_RCS_FILE
;
373 if (strncmp(buff
, "symbolic names:", 15) == 0)
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
;
384 parse_sym(file
, buff
);
387 if (strcmp(buff
, CVS_LOG_BOUNDARY
) == 0)
388 state
= 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);
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
420 psm
= rev
->post_psm
= create_patch_set_member();
423 state
= NEED_DATE_AUTHOR_STATE
;
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
436 case NEED_DATE_AUTHOR_STATE
:
437 if (strncmp(buff
, "date:", 5) == 0)
441 strncpy(datebuff
, buff
+ 6, 19);
444 strcpy(authbuff
, "unknown");
445 p
= strstr(buff
, "author: ");
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: ");
465 if (strncmp(p
, "dead", MIN(4, op
- p
)) == 0)
466 psm
->post_rev
->dead
= 1;
473 if (strcmp(buff
, CVS_LOG_BOUNDARY
) == 0)
477 PatchSet
* ps
= get_patch_set(datebuff
, logbuff
, authbuff
, psm
->post_rev
->branch
, psm
);
478 patch_set_add_member(ps
, psm
);
484 state
= NEED_REVISION
;
486 else if (strcmp(buff
, CVS_FILE_BOUNDARY
) == 0)
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
);
500 state
= NEED_RCS_FILE
;
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
);
524 logbuff
= newlogbuff
;
527 debug(DEBUG_STATUS
, "appending %s to log", buff
);
528 memcpy(logbuff
+ loglen
, buff
, len
);
536 debug(DEBUG_STATUS
, "ignoring unhandled info %s", buff
);
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");
551 if (state
!= NEED_RCS_FILE
)
553 debug(DEBUG_APPERROR
, "Error: Log file parsing error. (%d) Use -v to debug", state
);
561 else if (cvs_direct_ctx
)
563 cvs_rlog_close(cvs_direct_ctx
);
567 if (pclose(cvsfp
) < 0)
569 debug(DEBUG_APPERROR
, "cvs rlog command exited with error. aborting");
575 static int usage(const char * str1
, const char * str2
)
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
);
627 static int parse_args(int argc
, char *argv
[])
632 if (strcmp(argv
[i
], "-z") == 0)
635 return usage("argument to -z missing", "");
637 timestamp_fuzz_factor
= atoi(argv
[i
++]);
641 if (strcmp(argv
[i
], "-g") == 0)
648 if (strcmp(argv
[i
], "-s") == 0)
650 PatchSetRange
* range
;
651 char * min_str
, * max_str
;
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
, '-');
667 range
->min_counter
= atoi(min_str
);
670 range
->max_counter
= atoi(max_str
);
672 range
->max_counter
= INT_MAX
;
674 list_add(&range
->link
, show_patch_set_ranges
.prev
);
676 while ((min_str
= strtok(NULL
, ",")));
681 if (strcmp(argv
[i
], "-a") == 0)
684 return usage("argument to -a missing", "");
686 restrict_author
= argv
[i
++];
690 if (strcmp(argv
[i
], "-l") == 0)
695 return usage("argument to -l missing", "");
697 if ((err
= regcomp(&restrict_log
, argv
[i
++], REG_EXTENDED
|REG_NOSUB
)) != 0)
700 regerror(err
, &restrict_log
, errbuf
, 256);
701 return usage("bad regex to -l", errbuf
);
704 have_restrict_log
= 1;
709 if (strcmp(argv
[i
], "-f") == 0)
714 return usage("argument to -f missing", "");
716 if ((err
= regcomp(&restrict_file
, argv
[i
++], REG_EXTENDED
|REG_NOSUB
)) != 0)
719 regerror(err
, &restrict_file
, errbuf
, 256);
720 return usage("bad regex to -f", errbuf
);
723 have_restrict_file
= 1;
728 if (strcmp(argv
[i
], "-d") == 0)
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
++]);
740 if (strcmp(argv
[i
], "-r") == 0)
743 return usage("argument to -r missing", "");
745 if (restrict_tag_start
)
746 restrict_tag_end
= argv
[i
];
748 restrict_tag_start
= argv
[i
];
754 if (strcmp(argv
[i
], "-u") == 0)
761 if (strcmp(argv
[i
], "-x") == 0)
769 if (strcmp(argv
[i
], "-b") == 0)
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");
783 if (strcmp(argv
[i
], "-p") == 0)
786 return usage("argument to -p missing", "");
788 patch_set_dir
= argv
[i
++];
792 if (strcmp(argv
[i
], "-v") == 0)
799 if (strcmp(argv
[i
], "-t") == 0)
806 if (strcmp(argv
[i
], "--summary-first") == 0)
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)
824 if (strcmp(argv
[i
], "--test-log") == 0)
827 return usage("argument to --test-log missing", "");
829 test_log_file
= argv
[i
++];
833 if (strcmp(argv
[i
], "--diff-opts") == 0)
836 return usage("argument to --diff-opts missing", "");
838 /* allow diff_opts to be turned off by making empty string
841 if (!strlen(argv
[i
]))
849 if (strcmp(argv
[i
], "--bkcvs") == 0)
856 if (strcmp(argv
[i
], "--no-rlog") == 0)
863 if (strcmp(argv
[i
], "--cvs-direct") == 0)
870 if (strcmp(argv
[i
], "--no-cvs-direct") == 0)
877 if (strcmp(argv
[i
], "--debuglvl") == 0)
880 return usage("argument to --debuglvl missing", "");
882 debuglvl
= atoi(argv
[i
++]);
886 if (strcmp(argv
[i
], "-Z") == 0)
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]);
899 snprintf(compress_arg
, 8, "-z%d", compress
);
903 if (strcmp(argv
[i
], "--root") == 0)
906 return usage("argument to --root missing", "");
908 strcpy(root_path
, argv
[i
++]);
912 if (strcmp(argv
[i
], "-q") == 0)
914 debuglvl
&= ~DEBUG_APPMSG1
;
919 if (strcmp(argv
[i
], "-A") == 0)
921 track_branch_ancestry
= 1;
926 if (argv
[i
][0] == '-')
927 return usage("invalid argument", argv
[i
]);
929 strcpy(repository_path
, argv
[i
++]);
935 static int parse_rc()
937 char rcfile
[PATH_MAX
];
939 snprintf(rcfile
, PATH_MAX
, "%s/cvspsrc", get_cvsps_dir());
940 if ((fp
= fopen(rcfile
, "r")))
943 while (fgets(buff
, BUFSIZ
, fp
))
952 p
= strchr(buff
, ' ');
956 argv
[2] = xstrdup(p
);
960 argv
[1] = xstrdup(buff
);
962 if (parse_args(argc
, argv
) < 0)
971 static void init_paths()
977 /* determine the CVSROOT. precedence:
979 * 2) working directory (if present)
980 * 3) environment variable CVSROOT
984 if (!(fp
= fopen("CVS/Root", "r")))
988 debug(DEBUG_STATUS
, "Can't open CVS/Root");
989 e
= getenv("CVSROOT");
993 debug(DEBUG_APPERROR
, "cannot determine CVSROOT");
997 strcpy(root_path
, e
);
1001 if (!fgets(root_path
, PATH_MAX
, fp
))
1003 debug(DEBUG_APPERROR
, "Error reading CVSROOT");
1009 /* chop the lf and optional trailing '/' */
1010 len
= strlen(root_path
) - 1;
1012 if (root_path
[len
- 1] == '/')
1013 root_path
[--len
] = 0;
1017 /* Determine the repository path, precedence:
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");
1030 if (!fgets(repository_path
, PATH_MAX
, fp
))
1032 debug(DEBUG_APPERROR
, "Error reading repository path");
1036 chop(repository_path
);
1040 /* get the path portion of the root */
1041 p
= strrchr(root_path
, ':');
1048 /* some CVS have the CVSROOT string as part of the repository
1049 * string (initial substring). remove it.
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");
1076 debug(DEBUG_STATUS
, "strip_path: %s", strip_path
);
1079 static CvsFile
* parse_rcs_file(const char * buff
)
1082 int len
= strlen(buff
+ 10);
1085 /* once a single file has been parsed ok we set this */
1088 /* chop the ",v" string and the "LF" */
1090 memcpy(fn
, buff
+ 10, len
);
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
1109 char * p
= fn
, *lastp
= NULL
;
1111 while ((p
= strstr(p
, repository_path
)))
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
);
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",
1139 /* remove from beginning the 'strip_path' string */
1140 len
-= strip_path_len
;
1141 memmove(fn
, fn
+ strip_path_len
, len
);
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));
1153 debug(DEBUG_STATUS
, "stripped filename %s", fn
);
1155 return build_file_by_name(fn
);
1158 static CvsFile
* parse_working_file(const char * buff
)
1161 int len
= strlen(buff
+ 14);
1165 memcpy(fn
, buff
+ 14, len
);
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
)
1177 retval
= (CvsFile
*)get_hash_object(file_hash
, fn
);
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
);
1188 debug(DEBUG_SYSERROR
, "malloc failed");
1192 debug(DEBUG_STATUS
, "new file: %s", retval
->filename
);
1196 debug(DEBUG_STATUS
, "existing file: %s", retval
->filename
);
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");
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.
1228 list_add(&psm
->link
, retval
->members
.prev
);
1230 find
= (PatchSet
**)tsearch(retval
, &ps_tree
, cmp1
);
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
;
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
;
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
);
1282 static int get_branch_ext(char * buff
, const char * rev
, int * leaf
)
1285 int len
= strlen(rev
);
1287 /* allow get_branch(buff, buff) without destroying contents */
1288 memmove(buff
, rev
, len
);
1291 p
= strrchr(buff
, '.');
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
];
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
);
1337 set_psm_initial(psm
);
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)");
1352 if (!get_branch(post
, psm
->post_rev
->rev
))
1354 debug(DEBUG_APPERROR
, "get_branch malformed input (2)");
1358 if (strcmp(pre
, post
) == 0)
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.
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
);
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
)
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
)
1396 if (ps
->funk_factor
== FNK_HIDE_ALL
)
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
);
1407 if (ps
->psid
> restrict_tag_ps_end
)
1411 if (restrict_date_start
> 0 &&
1412 (ps
->date
< restrict_date_start
||
1413 (restrict_date_end
> 0 && ps
->date
> restrict_date_end
)))
1416 if (restrict_author
&& strcmp(restrict_author
, ps
->author
) != 0)
1419 if (have_restrict_log
&& regexec(&restrict_log
, ps
->descr
, 0, NULL
, 0) != 0)
1422 if (have_restrict_file
&& !patch_set_member_regex(ps
, &restrict_file
))
1425 if (restrict_branch
&& !patch_set_affects_branch(ps
, restrict_branch
))
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
)
1443 if (next
== &show_patch_set_ranges
)
1449 char path
[PATH_MAX
];
1451 snprintf(path
, PATH_MAX
, "%s/%d.patch", patch_set_dir
, ps
->psid
);
1455 if (open(path
, O_WRONLY
|O_TRUNC
|O_CREAT
, 0666) < 0)
1457 debug(DEBUG_SYSERROR
, "can't open patch file %s", path
);
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)
1481 static void print_patch_set(PatchSet
* ps
)
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)";
1516 printf("\t%s:%s->%s%s %s\n",
1517 psm
->file
->filename
,
1518 psm
->pre_rev
? psm
->pre_rev
->rev
: "INITIAL",
1520 psm
->post_rev
->dead
? "(DEAD)": "",
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
)
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
);
1548 put_hash_object(branch_heads
, ps
->branch
, head_ps
);
1551 determine_branch_ancestor(ps
, head_ps
);
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
;
1573 p1
= strchr(s1
, '.');
1574 p2
= strchr(s2
, '.');
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);
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
;
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
;
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
1647 ret
= strcmp(ps1
->author
, ps2
->author
);
1651 ret
= strcmp(ps1
->descr
, ps2
->descr
);
1655 ret
= strcmp(ps1
->branch
, ps2
->branch
);
1659 ret
= compare_patch_sets_by_members(ps1
, ps2
);
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)
1670 min
= ps2
->min_date
;
1671 max
= ps2
->max_date
;
1673 else if (ps2
->min_date
== 0)
1676 min
= ps1
->min_date
;
1677 max
= ps1
->max_date
;
1681 debug(DEBUG_APPERROR
, "how can we have both patchsets pre-existing?");
1685 if (min
< d
&& d
< max
)
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
)
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
;
1712 return (diff
< 0) ? -1 : 1;
1714 ret
= compare_patch_sets_by_members(ps1
, ps2
);
1718 ret
= strcmp(ps1
->author
, ps2
->author
);
1722 ret
= strcmp(ps1
->descr
, ps2
->descr
);
1726 ret
= strcmp(ps1
->branch
, ps2
->branch
);
1731 static int is_revision_metadata(const char * buff
)
1736 if (!(p1
= strchr(buff
, ':')))
1739 p2
= strchr(buff
, ' ');
1746 /* lines have LF at end */
1747 if (len
> 1 && buff
[len
- 2] == ';')
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)
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
)
1788 if (revision_affects_branch(psm
->post_rev
, branch
))
1795 static void do_cvs_diff(PatchSet
* ps
)
1797 struct list_head
* next
;
1801 char use_rep_path
[PATH_MAX
];
1802 char esc_use_rep_path
[PATH_MAX
];
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
)
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
);
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;
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");
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");
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
)
1881 if (!psm
->pre_rev
|| psm
->pre_rev
->dead
)
1884 rev
= psm
->post_rev
->rev
;
1889 rev
= psm
->pre_rev
->rev
;
1894 /* cvs_rupdate does the pipe through diff thing internally */
1895 cvs_rupdate(cvs_direct_ctx
, repository_path
, psm
->file
->filename
, rev
, cr
, dopts
);
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
);
1907 /* a regular diff */
1910 cvs_diff(cvs_direct_ctx
, repository_path
, psm
->file
->filename
, psm
->pre_rev
->rev
, psm
->post_rev
->rev
, dopts
);
1914 /* 'cvs diff' exit status '1' is ok, just means files are different */
1915 if (strcmp(dtype
, "diff") == 0)
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
);
1947 static CvsFileRevision
* parse_revision(CvsFile
* file
, char * rev_str
)
1951 /* The "revision" log line can include extra information
1952 * including who is locking the file --- strip that out.
1956 while (isdigit(*p
) || *p
== '.')
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
);
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
);
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'
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
);
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 */
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";
2024 rev
->branch
= "HEAD";
2028 debug(DEBUG_STATUS
, "revision %s of file %s on branch %s", rev
->rev
, rev
->file
->filename
, rev
->branch
);
2034 CvsFile
* create_cvsfile()
2036 CvsFile
* f
= (CvsFile
*)calloc(1, sizeof(*f
));
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
)
2049 destroy_hash_table(f
->branches
, NULL
);
2051 destroy_hash_table(f
->revisions
, NULL
);
2059 static PatchSet
* create_patch_set()
2061 PatchSet
* ps
= (PatchSet
*)calloc(1, sizeof(*ps
));;
2065 INIT_LIST_HEAD(&ps
->members
);
2075 ps
->funk_factor
= 0;
2076 ps
->ancestor_branch
= NULL
;
2077 CLEAR_LIST_NODE(&ps
->collision_link
);
2083 PatchSetMember
* create_patch_set_member()
2085 PatchSetMember
* psm
= (PatchSetMember
*)calloc(1, sizeof(*psm
));
2086 psm
->pre_rev
= NULL
;
2087 psm
->post_rev
= NULL
;
2094 static PatchSetRange
* create_patch_set_range()
2096 PatchSetRange
* psr
= (PatchSetRange
*)calloc(1, sizeof(*psr
));
2100 CvsFileRevision
* file_get_revision(CvsFile
* file
, const char * r
)
2102 CvsFileRevision
* rev
;
2104 if (strcmp(r
, "INITIAL") == 0)
2107 rev
= (CvsFileRevision
*)get_hash_object(file
->revisions
, r
);
2111 debug(DEBUG_APPERROR
, "request for non-existent rev %s in file %s", r
, file
->filename
);
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
))
2142 eot
= strchr(tag
, ':');
2150 if (!get_branch_ext(rev
, eot
, &leaf
))
2152 if (strcmp(tag
, "TRUNK") == 0)
2154 debug(DEBUG_STATUS
, "ignoring the TRUNK branch/tag");
2157 debug(DEBUG_APPERROR
, "malformed revision");
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
);
2179 /* see cvs manual: what is this vendor tag? */
2180 if (is_vendor_branch(rev
))
2181 cvs_file_add_branch(file
, rev
, tag
);
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
;
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
);
2206 sym
= (GlobalSymbol
*)malloc(sizeof(*sym
));
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
));
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
)
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
);
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
);
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
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
;
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 */
2292 ps
= rev
->post_psm
->ps
;
2294 if (!sym
->ps
|| ps
->date
> sym
->ps
->date
)
2298 /* convenience variable */
2303 debug(DEBUG_APPERROR
, "no patchset for tag %s", 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
);
2329 debug(DEBUG_APPMSG1
, "NOTICE: implicit branch restriction set to %s", ps
->branch
);
2330 restrict_branch
= ps
->branch
;
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
);
2350 * we want the 'tagged revision' to be valid until after
2351 * the date of the 'tagged patchset' or else there's something
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, '.'))
2377 char * branch_rev
= (char*)get_hash_object(rev
->file
->branches_sym
, branch
);
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
));
2407 static int count_dots(const char * p
)
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.
2445 if (ps
->collision_link
.next
== NULL
)
2446 list_add(&ps
->collision_link
, &collisions
);
2451 * If this is an older revision than the one we already have
2452 * in this patchset, just ignore it
2458 * This is a newer one, remove the old one
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
;
2492 PatchSet
* next_ps
= rev
->post_psm
->ps
;
2493 struct list_head
* next
;
2495 if (next_ps
->date
> ps
->date
)
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
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
)
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
);
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
);
2561 revision_affects_branch(rev
, tagged_rev
->branch
) &&
2562 rev
->post_psm
->ps
->date
<= tagged_rev
->post_psm
->ps
->date
)
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
);
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)
2593 static void check_norc(int argc
, char * argv
[])
2598 if (strcmp(argv
[i
], "--norc") == 0)
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 */
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");
2623 for (next
= ps
->members
.next
; next
!= &ps
->members
; next
= next
->next
)
2625 PatchSetMember
* psm
= list_entry(next
, PatchSetMember
, link
);
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
)
2652 else if (strcmp(ps
->branch
, rev
->branch
) == 0)
2654 else if (strcmp(head_ps
->ancestor_branch
, "HEAD") == 0)
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
);
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
);