4 # Author: John Rouillard (rouilj@cs.umb.edu)
5 # Supported: Yeah right. (Well what do you expect for 2 hours work?)
6 # Blame-to: rouilj@cs.umb.edu
7 # Complaints to: Anybody except Brian Berliner, he's blameless for
9 # Acknowlegements: The base code for this script has been acquired
10 # from the log.pl script.
12 # rcslock.pl - A program to prevent commits when a file to be ckecked
13 # in is locked in the repository.
15 # There are times when you need exclusive access to a file. This
16 # often occurs when binaries are checked into the repository, since
17 # cvs's (actually rcs's) text based merging mechanism won't work. This
18 # script allows you to use the rcs lock mechanism (rcs -l) to make
19 # sure that no changes to a repository are able to be committed if
20 # those changes would result in a locked file being changed.
23 # This script will work only if locking is set to strict.
27 # Add the following line to the commitinfo file:
29 # ALL /local/location/for/script/lockcheck [options]
31 # Where ALL is replaced by any suitable regular expression.
32 # Options are -v for verbose info, or -d for debugging info.
33 # The %s will provide the repository directory name and the names of
37 # When a developer needs exclusive access to a version of a file, s/he
38 # should use "rcs -l" in the repository tree to lock the version they
39 # are working on. CVS will automagically release the lock when the
40 # commit is performed.
43 # An "rlog -h" is exec'ed to give info on all about to be
44 # committed files. This (header) information is parsed to determine
45 # if any locks are outstanding and what versions of the file are
46 # locked. This filename, version number info is used to index an
47 # associative array. All of the files to be committed are checked to
48 # see if any locks are outstanding. If locks are outstanding, the
49 # version number of the current file (taken from the CVS/Entries
50 # subdirectory) is used in the key to determine if that version is
51 # locked. If the file being checked in is locked by the person doing
52 # the checkin, the commit is allowed, but if the lock is held on that
53 # version of a file by another person, the commit is not allowed.
55 $ext = ",v"; # The extension on your rcs files.
57 $\
="\n"; # I hate having to put \n's at the end of my print statements
58 $,=' '; # Spaces should occur between arguments to print when printed
65 # parse command line arguments
69 &Getopts
("vd"); # verbose or debugging
71 # Verbose is useful when debugging
72 $opt_v = $opt_d if defined $opt_d;
74 # $files[0] is really the name of the subdirectory.
75 # @files = split(/ /,$ARGV[0]);
76 @files = @ARGV[0..$#ARGV];
77 $cvsroot = $ENV{'CVSROOT'};
82 $login = getlogin || (getpwuid($<))[0] || "nobody";
85 # save the current directory since we have to return here to parse the
86 # CVS/Entries file if a lock is found.
91 print "Starting directory is $pwd" if defined $opt_d ;
94 # cd to the repository directory and check on the files.
96 print "Checking directory ", $files[0] if defined $opt_v ;
98 if ( $files[0] =~ /^\// )
100 print "Directory path is $files[0]" if defined $opt_d ;
101 chdir $files[0] || die "Can't change to repository directory $files[0]" ;
105 print "Directory path is $cvsroot/$files[0]" if defined $opt_d ;
106 chdir ($cvsroot . "/" . $files[0]) ||
107 die "Can't change to repository directory $files[0] in $cvsroot" ;
111 # Open the rlog process and apss all of the file names to that one
112 # process to cut down on exec overhead. This may backfire if there
113 # are too many files for the system buffer to handle, but if there are
114 # that many files, chances are that the cvs repository is not set up
117 print "opening rlog -h @files[1..$#files] |" if defined $opt_d;
119 open( RLOG
, "rlog -h @files[1..$#files] |") || die "Can't run rlog command" ;
121 # Create the locks associative array. The elements in the array are
124 # The name of the RCS file with a value of the total number of locks found
128 # The name of the rcs file concatenated with the version number of the lock.
129 # The value of this element is the name of the locker.
131 # The regular expressions used to split the rcs info may have to be changed.
132 # The current ones work for rcs 5.6.
139 next if /^$/; # ditch blank lines
141 if ( $_ =~ /^RCS file: (.*)$/ )
147 if ( $_ =~ /^locks: strict$/ )
155 # access list: is the line immediately following the list of locks.
156 if ( /^access list:/ )
157 { # we are done getting lock info for this file.
161 { # We are accumulating lock info.
163 # increment the lock count
165 # save the info on the version that is locked. $2 is the
166 # version number $1 is the name of the locker.
167 $locks{"$curfile" . "$2"} = $1
168 if /[ ]*([a-zA-Z._]*): ([0-9.]*)$/;
170 print "lock by $1 found on $curfile version $2" if defined $opt_d;
176 # Lets go back to the starting directory and see if any locked files
177 # are ones we are interested in.
181 # fo all of the file names (remember $files[0] is the directory name
182 foreach $i (@files[1..$#files])
184 if ( defined $locks{$i . $ext} )
185 { # well the file has at least one lock outstanding
187 # find the base version number of our file
188 &parse_cvs_entry
($i,*entry
);
190 # is our version of this file locked?
191 if ( defined $locks{$i . $ext . $entry{"version"}} )
192 { # if so, it is by us?
193 if ( $login ne ($by = $locks{$i . $ext . $entry{"version"}}) )
194 {# crud somebody else has it locked.
195 $outstanding_lock++ ;
196 print "$by has file $i locked for version " , $entry{"version"};
199 { # yeah I have it locked.
200 print "You have a lock on file $i for version " , $entry{"version"}
207 exit $outstanding_lock;
210 ### End of main program
213 { # a very simple minded hack at parsing an entries file.
214 local ( $file, *entry
) = @_;
218 open(ENTRIES
, "< CVS/Entries") || die "Can't open entries file";
222 if ( $_ =~ /^\/$file\
// )
226 $entry{"name"} = $pp[1];
227 $entry{"version"} = $pp[2];
228 $entry{"dates"} = $pp[3];
229 $entry{"name"} = $pp[4];
230 $entry{"name"} = $pp[5];
231 $entry{"sticky"} = $pp[6];