# The LearningOnline Network with CAPA # $Id: Makefile.cvs,v 1.9 2003/02/03 18:03:52 harris41 Exp $ STATDIR="loncom/build/cvsstats" STATSUBDIR="cvsstats" TIMEAGO=7 help: @echo "*** You need to specify a valid target ***" @echo "cvsreport: look at the latest changes over the last week" @echo "cvscommit: look at the number of commits since the origin of" @echo " LON-CAPA archiving" @echo "linesofcode: look at the number of unique lines of code since" @echo " LON-CAPA archiving" @echo "statpage: an HTML formatted presentation of cvscommit and" @echo " linesofcode" @echo "Information is placed inside CVS:loncom/build/cvsstats" cvsreport: # Header echo "

Automatically generated CVS report

" > \ ../../doc/build/cvsreport.html # General Date Info echo "

LON-CAPA Software Changes from \ `date --date='$(TIMEAGO) days ago' \ +\"%Y-%m-%d\"` to `date +\"%Y-%m-%d\"`

" >> \ ../../doc/build/cvsreport.html # General Alteration Info echo "

Number of altered files:" >> ../../doc/build/cvsreport.html cd ../..; cvs log \ -d ">`date --date='$(TIMEAGO) days ago' +\"%Y-%m-%d\"`" \ loncom CAPA doc 2>/dev/null | perl \ loncom/build/cvsfilter.pl | grep '^Working file:' | cut -b15- | \ wc -l >> doc/build/cvsreport.html # Listing of Altered Files echo "

Altered files:

" >> \
	../../doc/build/cvsreport.html
	cd ../..; cvs log \
	-d ">`date --date='$(TIMEAGO) days ago' +\"%Y-%m-%d\"`" \
	loncom CAPA doc 2>/dev/null | \
	perl loncom/build/cvsfilter.pl | grep '^Working file:' | cut -b15- \
	>> doc/build/cvsreport.html
	echo "

" >> ../../doc/build/cvsreport.html make -f Makefile.cvs COMPONENT=loncom logentries make -f Makefile.cvs COMPONENT=CAPA logentries make -f Makefile.cvs COMPONENT=doc logentries logentries: # Log entries for $(COMPONENT) echo "

Log entries for $(COMPONENT):

" >>\
	../../doc/build/cvsreport.html
	cd ../../$(COMPONENT); cvs log -d ">`date --date='$(TIMEAGO) days ago' \
	+\"%Y-%m-%d\"`" . 2>/dev/null | perl ../loncom/build/cvsfilter.pl >> \
	../doc/build/cvsreport.html
	echo "

" >> ../../doc/build/cvsreport.html statpage: install -d $(STATSUBDIR) echo 'LON-CAPA Coding Metrics' > $(STATSUBDIR)/index.html echo '' >> $(STATSUBDIR)/index.html echo '

LON-CAPA Coding Metrics

' >> $(STATSUBDIR)/index.html echo '
Compiled as of ' >> $(STATSUBDIR)/index.html date >> $(STATSUBDIR)/index.html echo "

The general algorithm for counting lines of code (this excludes blank lines) is

cvs -q diff -D'start-date' -D'end-date' -b -B -N | egrep '^> .*[^ \t]' | sed 's/^> //g' | sort | uniq | wc -l
 

" >> $(STATSUBDIR)/index.html echo "

The general algorithm for counting the number of CVS repository commits (includes additions, deletions, and modifications) is:

cvs history -D'start-date' -a -xMAR | wc -l
 

" >> $(STATSUBDIR)/index.html echo "

Each listing contains two graphs. One graph relates to the entire LON-CAPA repository. The other graph relates solely to the *.pm files (perl modules including Apache handlers).

" >> $(STATSUBDIR)/index.html echo '
Lines of Code; unique changes per month' >> $(STATSUBDIR)/index.html echo '
Lines of Code; aggregate sum of unique changes per month' >> $(STATSUBDIR)/index.html echo '
Number of commits to software repository per month' >> $(STATSUBDIR)/index.html echo '
Aggregate sum of number of commits to software repository per month' >> $(STATSUBDIR)/index.html echo '

Lines of Code

' >> $(STATSUBDIR)/index.html echo 'The first graph displays the number of unique line changes made in the CVS repository per month. The second graphs displays the number of unique line changes made to *.pm files in the CVS repository per month.' >> $(STATSUBDIR)/index.html echo '
lines of code' >> $(STATSUBDIR)/index.html echo '
lines of code, perl modules' >> $(STATSUBDIR)/index.html echo '

Aggregate Lines of Code

' >> $(STATSUBDIR)/index.html echo 'The first graph displays the aggregate number of unique line changes made in the CVS repository per month. The second graphs displays the aggregate number of unique line changes made to *.pm files in the CVS repository per month.' >> $(STATSUBDIR)/index.html echo '
aggregate lines of code' >> $(STATSUBDIR)/index.html echo '
aggregate lines of code, perl modules' >> $(STATSUBDIR)/index.html echo '

Commits to Repository

' >> $(STATSUBDIR)/index.html echo 'The first graph displays the number of repository commits (additions, deletions, and modifications) made in the CVS repository per month. The second graphs displays the number of repository commits involving *.pm files made in the CVS repository per month.' >> $(STATSUBDIR)/index.html echo '
number of commits' >> $(STATSUBDIR)/index.html echo '
number of commits, perl modules' >> $(STATSUBDIR)/index.html echo '

Aggregate Commits to Repository

' >> $(STATSUBDIR)/index.html echo 'The first graph displays the aggregate number of repository commits (additions, deletions, and modifications) made in the CVS repository per month. The second graphs displays the aggregate number of repository commits involving *.pm files made in the CVS repository per month.' >> $(STATSUBDIR)/index.html echo '
aggregate number of commits' >> $(STATSUBDIR)/index.html echo '
aggregate number of commits, perl modules' >> $(STATSUBDIR)/index.html echo '' >> $(STATSUBDIR)/index.html echo '' >> $(STATSUBDIR)/index.html linesofcode: install -d cvsstats # for all, and for .pm # get date array cd ../..; perl -e ' \ ($$begindate,$$enddate)=@ARGV;\ ($$by,$$bm,$$bd)=($$begindate=~/(\d{4,4})(\d{2,2})(\d{2,2})/);\ ($$ey,$$em,$$ed)=($$enddate=~/(\d{4,4})(\d{2,2})(\d{2,2})/);\ for ($$y=$$by; $$y<=$$ey; $$y++) {\ if ($$y==$$by) {$$m=$$bm;} else {$$m=1;}\ if ($$y==$$ey) {$$m2=$$em;} else {$$m2=12;}\ for ($$m; $$m<=$$m2; $$m++) {\ printf("$$odate\t%4.4d%2.2d%2.2d\n",$$y,$$m,$$bd) if $$odate; \ $$odate=sprintf("%4.4d%2.2d%2.2d",$$y,$$m,$$bd);\ }\ }' 20000101 `date +"%Y%m%d"` |\ perl -nle '($$d1,$$d2)=split(/\t/);$$loc=`cvs -q diff -D$$d1 -D$$d2 -b -B -N | egrep \"^> .*[^ \t]\" | sed \"s/^> //g\" | sort | uniq | wc -l`;chomp $$loc;$$locsum+=$$loc;print "$$d2\t$$loc\t$$locsum";' > $(STATDIR)/table.txt echo -e 'set xdata time\nset timefmt "%Y%m%d"\nset format x "%b %y"\nset xlabel "time"\nset ylabel "lines of code"\nset nokey\nset title "Lines of Code\\nUnique changes per month"\nset output "cvsstats/loc.png"\nset term png color\nplot "cvsstats/table.txt" using 1:2 with lines' | gnuplot echo -e 'set xdata time\nset timefmt "%Y%m%d"\nset format x "%b %y"\nset xlabel "time"\nset ylabel "lines of code"\nset nokey\nset title "Lines of Code\\nAggregate count; Unique changes per month"\nset output "cvsstats/locsum.png"\nset term png color\nplot "cvsstats/table.txt" using 1:3 with lines' | gnuplot cd ../..; perl -e ' \ ($$begindate,$$enddate)=@ARGV;\ ($$by,$$bm,$$bd)=($$begindate=~/(\d{4,4})(\d{2,2})(\d{2,2})/);\ ($$ey,$$em,$$ed)=($$enddate=~/(\d{4,4})(\d{2,2})(\d{2,2})/);\ for ($$y=$$by; $$y<=$$ey; $$y++) {\ if ($$y==$$by) {$$m=$$bm;} else {$$m=1;}\ if ($$y==$$ey) {$$m2=$$em;} else {$$m2=12;}\ for ($$m; $$m<=$$m2; $$m++) {\ printf("$$odate\t%4.4d%2.2d%2.2d\n",$$y,$$m,$$bd) if $$odate; \ $$odate=sprintf("%4.4d%2.2d%2.2d",$$y,$$m,$$bd);\ }\ }' 20000101 `date +"%Y%m%d"` |\ perl -nle '($$d1,$$d2)=split(/\t/);$$loc=`cvs -q diff -D$$d1 -D$$d2 -b -B -N |\ perl -e "\@flag=(1);while(<>){if (/RCS file:/) {\@flag=(); pop \@flag; \@flag=(1) if /^RCS file: .*\.pm\,v/;} print if \@flag;}" |\ egrep \"^> .*[^ \t]\" | sed \"s/^> //g\" | sort | uniq | wc -l`;chomp $$loc;$$locsum+=$$loc;print "$$d2\t$$loc\t$$locsum";' > $(STATDIR)/tablepm.txt # process counts, generate table # pass table to gnuplot echo -e 'set xdata time\nset timefmt "%Y%m%d"\nset format x "%b %y"\nset xlabel "time"\nset ylabel "lines of code"\nset nokey\nset title "Lines of Code, perl modules\\nUnique changes per month"\nset output "cvsstats/locpm.png"\nset term png color\nplot "cvsstats/tablepm.txt" using 1:2 with lines' | gnuplot echo -e 'set xdata time\nset timefmt "%Y%m%d"\nset format x "%b %y"\nset xlabel "time"\nset ylabel "lines of code"\nset nokey\nset title "Lines of Code, perl modules\\nAggregate count; Unique changes per month"\nset output "cvsstats/locpmsum.png"\nset term png color\nplot "cvsstats/tablepm.txt" using 1:3 with lines' | gnuplot cvscommit: install -d cvsstats # for all, and for .pm # get date array cd ../..; perl -e ' \ ($$begindate,$$enddate)=@ARGV;\ ($$by,$$bm,$$bd)=($$begindate=~/(\d{4,4})(\d{2,2})(\d{2,2})/);\ ($$ey,$$em,$$ed)=($$enddate=~/(\d{4,4})(\d{2,2})(\d{2,2})/);\ for ($$y=$$by; $$y<=$$ey; $$y++) {\ if ($$y==$$by) {$$m=$$bm;} else {$$m=1;}\ if ($$y==$$ey) {$$m2=$$em;} else {$$m2=12;}\ for ($$m; $$m<=$$m2; $$m++) {\ printf("$$odate\t%4.4d%2.2d%2.2d\n",$$y,$$m,$$bd) if $$odate; \ $$odate=sprintf("%4.4d%2.2d%2.2d",$$y,$$m,$$bd);\ }\ }' 20000101 `date +"%Y%m%d"` |\ perl -nle '($$d1,$$d2)=split(/\t/);$$cmt1=`cvs history -D$$d1 -a -xMAR | wc -l`;chomp $$cmt1;$$cmt2=`cvs history -D$$d2 -a -xMAR | wc -l`;chomp $$cmt2;$$cmt=$$cmt1-$$cmt2;$$cmtsum+=$$cmt;print "$$d2\t$$cmt\t$$cmtsum";' > $(STATDIR)/ctable.txt echo -e 'set xdata time\nset timefmt "%Y%m%d"\nset format x "%b %y"\nset xlabel "time"\nset ylabel "commits"\nset nokey\nset title "Commits\\n(Additions, Deletions, and Modifications)"\nset output "cvsstats/commit.png"\nset term png color\nplot "cvsstats/ctable.txt" using 1:2 with lines' | gnuplot echo -e 'set xdata time\nset timefmt "%Y%m%d"\nset format x "%b %y"\nset xlabel "time"\nset ylabel "commits"\nset nokey\nset title "Commits\\nAggregate count (Additions, Deletions, and Modifications"\nset output "cvsstats/commitsum.png"\nset term png color\nplot "cvsstats/ctable.txt" using 1:3 with lines' | gnuplot cd ../..; perl -e ' \ ($$begindate,$$enddate)=@ARGV;\ ($$by,$$bm,$$bd)=($$begindate=~/(\d{4,4})(\d{2,2})(\d{2,2})/);\ ($$ey,$$em,$$ed)=($$enddate=~/(\d{4,4})(\d{2,2})(\d{2,2})/);\ for ($$y=$$by; $$y<=$$ey; $$y++) {\ if ($$y==$$by) {$$m=$$bm;} else {$$m=1;}\ if ($$y==$$ey) {$$m2=$$em;} else {$$m2=12;}\ for ($$m; $$m<=$$m2; $$m++) {\ printf("$$odate\t%4.4d%2.2d%2.2d\n",$$y,$$m,$$bd) if $$odate; \ $$odate=sprintf("%4.4d%2.2d%2.2d",$$y,$$m,$$bd);\ }\ }' 20000101 `date +"%Y%m%d"` |\ perl -nle '($$d1,$$d2)=split(/\t/);$$cmt1=`cvs history -D$$d1 -a -xMAR | grep "\.pm[[:space:]]" | wc -l`;chomp $$cmt1;$$cmt2=`cvs history -D$$d2 -a -xMAR | grep "\.pm[[:space:]]" | wc -l`;chomp $$cmt2;$$cmt=$$cmt1-$$cmt2;$$cmtsum+=$$cmt;print "$$d2\t$$cmt\t$$cmtsum";' > $(STATDIR)/ctablepm.txt # process counts, generate table # pass table to gnuplot echo -e 'set xdata time\nset timefmt "%Y%m%d"\nset format x "%b %y"\nset xlabel "time"\nset ylabel "commits"\nset nokey\nset title "Commits, perl modules\\n(Additions, Deletions, and Modifications)"\nset output "cvsstats/commitpm.png"\nset term png color\nplot "cvsstats/ctablepm.txt" using 1:2 with lines' | gnuplot echo -e 'set xdata time\nset timefmt "%Y%m%d"\nset format x "%b %y"\nset xlabel "time"\nset ylabel "commits"\nset nokey\nset title "Commits, perl modules\\nAggregate count (Additions, Deletions, and Modifications)"\nset output "cvsstats/commitpmsum.png"\nset term png color\nplot "cvsstats/ctablepm.txt" using 1:3 with lines' | gnuplot clean: rm -Rf cvsstats