blob: f8b9d540b4e5ecfd257518f9a67371b81fba6818 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#!/bin/sh
#
# $Id$
#
if [ $# -lt 3 ]; then
echo "Usage: $0 <ACE_ROOT> <DEST> <DATE>"
exit 0
fi
ACE_ROOT=$1
DEST=$2
DATE=$3
BINS="TAO/tests/ORB_init/ORB_init TAO/tests/ORB_destroy/ORB_destroy"
LIBS="ace/libACE.a \
TAO/tao/libTAO.a \
TAO/tao/PortableServer/libTAO_PortableServer.a \
TAO/tao/Strategies/libTAO_Strategies.a \
TAO/tao/DynamicAny/libTAO_DynamicAny.a \
TAO/tao/DynamicInterface/libTAO_DynamicInterface.a \
TAO/tao/IFR_Client/libTAO_IFR_Client.a \
TAO/tao/BiDir_GIOP/libTAO_BiDirGIOP.a \
TAO/tao/Domain/libTAO_Domain.a \
TAO/tao/IORManipulation/libTAO_IORManip.a \
TAO/tao/IORTable/libTAO_IORTable.a \
TAO/tao/TypeCodeFactory/libTAO_TypeCodeFactory.a \
TAO/tao/SmartProxies/libTAO_SmartProxies.a \
TAO/tao/RTCORBA/libTAO_RTCORBA.a \
TAO/tao/RTPortableServer/libTAO_RTPortableServer.a"
cd $ACE_ROOT
for i in $BINS; do
b=`basename $i`
if [ -x $i ]; then
(
echo -n $DATE " ";
size $i |
grep -v text |
awk '{print $4}'
) >> $DEST/source/${b}_size.txt
fi
done
for i in $LIBS; do
b=`basename $i`;
if [ -f $i ]; then
(
echo -n $DATE " ";
size $i |
awk '{s += $4} END {print s}'
) >> $DEST/source/${b}_size.txt
fi
done
cd $DEST/source
for i in $LIBS $BINS; do
b=`basename $i`
/usr/bin/tac ${b}_size.txt > $DEST/data/${b}_size.txt
/usr/bin/tail -5 ${b}_size.txt > $DEST/data/LAST_${b}_size.txt
$ACE_ROOT/bin/generate_footprint_chart.sh ${b}_size.txt $DEST/images/${b}_size.png $b
done
|