]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/scripts/crontab.sh
ocaml 3.09 transition
[helm.git] / helm / matita / scripts / crontab.sh
1 #!/bin/bash
2 TODAY=`date +%Y%m%d`
3 YESTERDAY=`date -d yesterday +%Y%m%d`
4 TMPDIRNAME=.__${TODAY}_crontab
5 CVSROOT=":ext:$USER@marcello.cs.unibo.it:/home/faculty/PROJECTS/cvs/helm"
6 SHELLTIME2CENTSPHP=helm/matita/scripts/shell_time2cents.php
7 SHELLADDERPHP=helm/matita/scripts/shell_adder.php
8 COMMONPHP=helm/matita/scripts/public_html/common.php
9
10 OLD=$PWD
11 rm -rf $TMPDIRNAME 
12 mkdir $TMPDIRNAME
13 cd $TMPDIRNAME
14 cvs -d $CVSROOT co helm/matita/scripts 1>/dev/null 2>/dev/null
15 helm/matita/scripts/profile_cvs.sh 2> LOG
16
17 MARK=`echo "select distinct mark from bench where mark like '$TODAY%' order by mark" | mysql -u helm matita | tail -n 1`
18 LASTMARK=`echo "select distinct mark from bench where mark like '$YESTERDAY%' order by mark" | mysql -u helm matita | tail -n 1`
19
20 if [ -z "$MARK" ]; then
21   echo "No benchmark records for $TODAY"
22   exit 1
23 fi
24
25 if [ -z "$LASTMARK" ]; then
26   echo "No benchmark records for $YESTERDAY"
27   exit 1
28 fi
29
30 CUR_TIME=`/usr/bin/php4 -c /etc/php4/apache/php.ini -f $SHELLADDERPHP -- $COMMONPHP "select SEC_TO_TIME(SUM(TIME_TO_SEC(time))) from bench where mark = \"$MARK\" group by mark;"`
31 OLD_TIME=`/usr/bin/php4 -c /etc/php4/apache/php.ini -f $SHELLADDERPHP -- $COMMONPHP  "select SEC_TO_TIME(SUM(TIME_TO_SEC(time))) from bench where mark = \"$LASTMARK\" group by mark;"`
32
33 CUR_CENTS=`/usr/bin/php4 -c /etc/php4/apache/php.ini -f $SHELLTIME2CENTSPHP -- $COMMONPHP $CUR_TIME`
34 OLD_CENTS=`/usr/bin/php4 -c /etc/php4/apache/php.ini -f $SHELLTIME2CENTSPHP -- $COMMONPHP $OLD_TIME`
35
36 ((DELTA=$CUR_CENTS-$OLD_CENTS))
37 if [ $DELTA -lt 0 ]; then
38   PERC=0
39 else
40   ((PERC=100 * $DELTA))
41   ((PERC=$PERC / $OLD_CENTS))
42 fi
43 if [ $PERC -ge 5 ]; then
44   cat <<EOT
45   REPORT FOR `date`
46   http://mowgli.cs.unibo.it/~tassi/bench.php
47
48   PERFORMANCE LOSS DETECTED (MARK $MARK vs MARK $LASTMARK)
49   is $CUR_TIME sec 
50   was $OLD_TIME sec
51
52 EOT
53 fi
54
55 CUR_FAIL=`/usr/bin/php4 -c /etc/php4/apache/php.ini -f $SHELLADDERPHP -- $COMMONPHP "select count(distinct test) from bench where mark = \"$MARK\" and result = 'fail';"`
56 OLD_FAIL=`/usr/bin/php4 -c /etc/php4/apache/php.ini -f $SHELLADDERPHP -- $COMMONPHP "select count(distinct test) from bench where mark = \"$LASTMARK\" and result = 'fail';"`
57
58 if [ $CUR_FAIL -gt $OLD_FAIL ]; then
59   cat <<EOT
60   REPORT FOR `date`
61   http://mowgli.cs.unibo.it/~tassi/bench.php
62
63   MORE BROKEN TESTS DETECTED (MARK $MARK vs MARK $LASTMARK)
64   now broken:
65   `echo "select distinct test from bench where mark = \"$MARK\" and result = 'fail';" | mysql -u helm -h mowgli.cs.unibo.it matita`
66   were broken:
67   `echo "select distinct test from bench where mark = \"$LASTMARK\" and result = 'fail';" | mysql -u helm -h mowgli.cs.unibo.it matita`
68   
69 EOT
70
71 fi
72
73 cd $OLD
74 rm -rf $TMPDIRNAME
75