1 | #!/bin/bash
|
---|
2 | #$Id$
|
---|
3 |
|
---|
4 | set -e
|
---|
5 |
|
---|
6 | LOGSDIR=$1
|
---|
7 | VERSION=$2
|
---|
8 |
|
---|
9 | # Make sure that we have a directory as first argument
|
---|
10 | [[ ! -d "$LOGSDIR" ]] && \
|
---|
11 | echo -e "\nUSAGE: create-sbu_du-report.sh logs_directory [book_version]\n" && exit
|
---|
12 |
|
---|
13 | # Make sure that the first argument is a jhalfs logs directory
|
---|
14 | [[ ! -f "$LOGSDIR"/000-masterscript.log ]] && \
|
---|
15 | echo -e "\nLooks like $LOGSDIR isn't a jhalfs logs directory.\n" && exit
|
---|
16 |
|
---|
17 | # If this script is run manually, the book version may be unknown
|
---|
18 | [[ -z "$VERSION" ]] && VERSION=unknown
|
---|
19 |
|
---|
20 | # If there is iteration logs directories, copy the logs inside iteration-1
|
---|
21 | # to the top level dir
|
---|
22 | [[ -d "$LOGSDIR"/build_1 ]] && \
|
---|
23 | cp $LOGSDIR/build_1/* $LOGSDIR
|
---|
24 |
|
---|
25 | # Set the report file
|
---|
26 | REPORT="$VERSION"-SBU_DU-$(date --iso-8601).report
|
---|
27 |
|
---|
28 | # Dump generation time stamp and book version
|
---|
29 | echo -e "\n`date`\n" > "$REPORT"
|
---|
30 | echo -e "Book version is:\t$VERSION\n" >> "$REPORT"
|
---|
31 |
|
---|
32 | # If found, dump jhalfs.config file in a readable format
|
---|
33 | if [[ -f jhalfs.config ]] ; then
|
---|
34 | echo -e "\n\tjhalfs configuration settings:\n" >> "$REPORT"
|
---|
35 | cat jhalfs.config | sed -e '/parameters/d;s/.\[[013;]*m//g;s/</\t</;s/^\w\{1,6\}:/&\t/' >> "$REPORT"
|
---|
36 | else
|
---|
37 | echo -e "\nNOTE: the jhalfs configuration settings are unknown" >> "$REPORT"
|
---|
38 | fi
|
---|
39 |
|
---|
40 | # Dump CPU and memory info
|
---|
41 | echo -e "\n\n\t\tCPU type:\n" >> "$REPORT"
|
---|
42 | cat /proc/cpuinfo >> "$REPORT"
|
---|
43 | echo -e "\n\t\tMemory info:\n" >> "$REPORT"
|
---|
44 | free >> "$REPORT"
|
---|
45 |
|
---|
46 | # Parse only that logs that have time data
|
---|
47 | BUILDLOGS=`grep -l "^real\>" $LOGSDIR/*`
|
---|
48 |
|
---|
49 | # Match the first timed log to extract the SBU unit value from it
|
---|
50 | BASELOG=`grep -l "^real\>" $LOGSDIR/* | head -n1`
|
---|
51 | echo -e "\n\nUsing $BASELOG to obtain the SBU unit value." >> "$REPORT"
|
---|
52 | BASEMINUTES=`grep "^real\>" $BASELOG | cut -f2 | sed -e 's/m.*//'`
|
---|
53 | BASESECONDS=`grep "^real\>" $BASELOG | cut -f2 | sed -e 's/.*m//;s/s//'`
|
---|
54 | SBU_UNIT=`echo "scale=3; $BASEMINUTES * 60 + $BASESECONDS" | bc`
|
---|
55 | echo -e "The SBU unit value is equal to $SBU_UNIT seconds.\n" >> "$REPORT"
|
---|
56 |
|
---|
57 | # Set the first value to 0 for grand totals calculation
|
---|
58 | SBU2=0
|
---|
59 | INSTALL2=0
|
---|
60 | INSTALLMB2=0
|
---|
61 |
|
---|
62 | for log in $BUILDLOGS ; do
|
---|
63 |
|
---|
64 | #Start SBU calculation
|
---|
65 | # Build time
|
---|
66 | BUILDTIME=`grep "^real\>" $log | cut -f2`
|
---|
67 | # Build time in seconds
|
---|
68 | MINUTES=`grep "^real\>" $log | cut -f2 | sed -e 's/m.*//'`
|
---|
69 | SECS=`grep "^real\>" $log | cut -f2 | sed -e 's/.*m//;s/s//'`
|
---|
70 | TIME=`echo "scale=3; $MINUTES * 60 + $SECS" | bc`
|
---|
71 | # Calculate build time in SBU
|
---|
72 | SBU=`echo "scale=3; $TIME / $SBU_UNIT" | bc`
|
---|
73 | # Append SBU value to SBU2 for grand total
|
---|
74 | SBU2="$SBU2 + $SBU"
|
---|
75 |
|
---|
76 | #Start disk usage calculation
|
---|
77 | # Disk usage before unpacking the package
|
---|
78 | DU1=`grep "^KB: " $log | head -n1 | cut -f1 | sed -e 's/KB: //'`
|
---|
79 | DU1MB=`echo "scale=2; $DU1 / 1024" | bc`
|
---|
80 | # Disk usage before deleting the source and build dirs
|
---|
81 | DU2=`grep "^KB: " $log | tail -n1 | cut -f1 | sed -e 's/KB: //'`
|
---|
82 | DU2MB=`echo "scale=2; $DU2 / 1024" | bc`
|
---|
83 | # Calculate disk space required to do the build
|
---|
84 | REQUIRED1=`echo "$DU2 - $DU1" | bc`
|
---|
85 | REQUIRED2=`echo "scale=2; $DU2MB - $DU1MB" | bc`
|
---|
86 |
|
---|
87 | # Append installed files disk usage to the previous entry,
|
---|
88 | # except for the first parsed log
|
---|
89 | if [ "$log" != "$BASELOG" ] ; then
|
---|
90 | INSTALL=`echo "$DU1 - $DU1PREV" | bc`
|
---|
91 | INSTALLMB=`echo "scale=2; $DU1MB - $DU1MBPREV" | bc`
|
---|
92 | echo -e "Installed files disk usage:\t\t\t\t$INSTALL KB or $INSTALLMB MB\n" >> "$REPORT"
|
---|
93 | # Append install values for grand total
|
---|
94 | INSTALL2="$INSTALL2 + $INSTALL"
|
---|
95 | INSTALLMB2="$INSTALLMB2 + $INSTALLMB"
|
---|
96 | fi
|
---|
97 |
|
---|
98 | # Set variables to calculate installed files disk usage
|
---|
99 | DU1PREV=$DU1
|
---|
100 | DU1MBPREV=$DU1MB
|
---|
101 |
|
---|
102 | # Append log name
|
---|
103 | echo -e "\n\t$log" >> "$REPORT"
|
---|
104 |
|
---|
105 | # Dump time values
|
---|
106 | echo -e "Build time is:\t\t\t$BUILDTIME" >> "$REPORT"
|
---|
107 | echo -e "Build time in seconds is\t$TIME" >> "$REPORT"
|
---|
108 | echo -e "Approximate SBU time is:\t$SBU" >> "$REPORT"
|
---|
109 |
|
---|
110 | # Dump disk usage values
|
---|
111 | echo -e "\nDisk usage before unpacking the package:\t\t$DU1 KB or $DU1MB MB" >> "$REPORT"
|
---|
112 | echo -e "Disk usage before deleting the source and build dirs:\t$DU2 KB or $DU2MB MB" >> "$REPORT"
|
---|
113 | echo -e "Required space to build the package:\t\t\t$REQUIRED1 KB or $REQUIRED2 MB\n" >> "$REPORT"
|
---|
114 |
|
---|
115 | done
|
---|
116 |
|
---|
117 | # Dump grand totals
|
---|
118 | TOTALSBU=`echo "scale=3; ${SBU2}" | bc`
|
---|
119 | echo -e "\nTotal time required to build the systen:\t$TOTALSBU SBU\n" >> "$REPORT"
|
---|
120 | TOTALINSTALL=`echo "${INSTALL2}" | bc`
|
---|
121 | TOTALINSTALLMB=`echo "scale=2; ${INSTALLMB2}" | bc`
|
---|
122 | echo -e "Total Installed files disk usage
|
---|
123 | (including /tools but not /sources):\t$TOTALINSTALL KB or $TOTALINSTALLMB MB\n" >> "$REPORT"
|
---|
124 |
|
---|
125 |
|
---|