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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
//# nISMBucket.cc :Simulation program for bucket behaviour of IncrementalStman
//# Copyright (C) 1996,1999,2001,2002,2003
//# Associated Universities, Inc. Washington DC, USA.
//#
//# This program is free software; you can redistribute it and/or modify it
//# under the terms of the GNU General Public License as published by the Free
//# Software Foundation; either version 2 of the License, or (at your option)
//# any later version.
//#
//# This program is distributed in the hope that it will be useful, but WITHOUT
//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
//# more details.
//#
//# You should have received a copy of the GNU General Public License along
//# with this program; if not, write to the Free Software Foundation, Inc.,
//# 675 Massachusetts Ave, Cambridge, MA 02139, USA.
//#
//# Correspondence concerning AIPS++ should be addressed as follows:
//# Internet email: casa-feedback@nrao.edu.
//# Postal address: AIPS++ Project Office
//# National Radio Astronomy Observatory
//# 520 Edgemont Road
//# Charlottesville, VA 22903-2475 USA
#include <casacore/casa/Arrays/Vector.h>
#include <casacore/casa/Containers/Block.h>
#include <casacore/casa/Containers/BlockIO.h>
#include <casacore/casa/Utilities/GenSort.h>
#include <casacore/casa/iostream.h>
#include <casacore/casa/sstream.h>
#include <casacore/casa/namespace.h>
// <summary>
// Simulation program for bucket behaviour of IncrementalStman.
// </summary>
// <synopsis>
// nISMBucket shows how much disk space is needed when using the
// IncrementalStMan for a given scenario. It also shows the gain
// compared to storing each data value separately.
// <p>
// The programs asks for the bucket size and total number of rows.
// Then it asks in a loop for the column(s), value length and how
// often a value varies.
// </synopsis>
int main (int argc, const char* argv[])
{
if (argc < 2) {
cout << "This program calculates the number of buckets needed" << endl;
cout << "for a scenario with the IncrementalStMan" << endl;
cout << "Start as:" << endl;
cout << " nISMBucket <bucketSize> <nrows>" << endl;
cout << "bucketSize==0 means it will be calculated using the" <<endl;
cout << "tIncrementalStMan heuristics" << endl;
return 0;
}
uInt i, bucketSize, nrow, nrent, n, totNrcol;
Block<uInt> nrcol, leng, same;
istringstream istr1(argv[1]);
istr1 >> bucketSize;
if (argc < 3) {
cerr << "#rows: ";
cin >> nrow;
}else{
istringstream istr2(argv[2]);
istr2 >> nrow;
}
nrent = 0;
totNrcol = 0;
cerr <<"You can now specify the distribution of the values" << endl;
cerr <<"by giving #columns, value length, and #rows with same value"<<endl;
cerr <<"one or more times. For simplicity the lowest #rows has to" << endl;
cerr <<"divide the other ones" << endl;
while (True) {
cerr << "#columns (0=end): ";
cin >> n;
if (n == 0) {
break;
}
nrent++;
nrcol.resize (nrent);
leng.resize (nrent);
same.resize (nrent);
nrcol[nrent-1] = n;
totNrcol += n;
cerr << "value length: ";
cin >> leng[nrent-1];
cerr << "#rows with same value: ";
cin >> same[nrent-1];
if (n == 0 || leng[nrent-1] == 0 || same[nrent-1] == 0) {
cerr << "One or more zero values were given" << endl;
return 1;
}
}
if (nrent < 1) {
cerr << "No columns given" << endl;
return 1;
}
// Sort the "same" array in ascending order.
Vector<uInt> index;
genSort (index, same);
uInt lowest = same[index(0)];
// Calculate the bucket size if not specified.
// This piece of code is similar to that in ISMBase.cc.
uInt headerSize = 4 * (totNrcol + 1); // needed per column
uInt fixedSize = 0;
for (i=0; i<nrent; i++) {
fixedSize += nrcol[i] * (2 * 4 + leng[i]);
}
if (bucketSize > 0) {
// The bucket size is defined. Check if at least 2
// fixed-length items for each row fit in it.
// When the bucket is smaller than 32768 bytes, check
// if can hold at least 10 rows (since it makes no sense to
// have very small buckets).
if (bucketSize < headerSize + 2*fixedSize) {
cout << "bucket too small to hold 2 rows" << endl;
}else if (bucketSize < 32768) {
if (bucketSize < headerSize + 10*fixedSize) {
cout << "bucket < 32768 and too small to hold 10 rows" << endl;
}
}
}
if (bucketSize == 0) {
// Calculate the bucket size.
// Try to fit 100 rows (with a minimum of 32768 bytes).
// If that results in a very large size (> 327680) try to fit
// 10 rows. If that still results in a large size, use 327680
// but at least 2 rows have to fit in it.
bucketSize = headerSize + 100 * fixedSize;
if (bucketSize < 32768) {
bucketSize = 32768;
} else if (bucketSize > 327680) {
bucketSize = headerSize + 10 * fixedSize;
if (bucketSize > 327680) {
bucketSize = headerSize + 2 * fixedSize;
if (bucketSize < 327680) {
bucketSize = 327680;
}
}
}
}
// Check if #rows divide.
// Now determine how many buckets are needed for this stuff.
// First determine initial length (i.e. values of all columns).
// The column index takes 4 initial bytes and 4 bytes per column.
// Per value the index takes 8 bytes.
uInt initleng = 0;
uInt colindex = 4;
uInt normalleng = 0;
Block<uInt> sameleng (nrent, 0u);
Block<uInt> times (nrent);
for (i=0; i<nrent; i++) {
if (same[i] % lowest != 0) {
cerr << "Lowest #rows value " << lowest << " does not divide "
<< same[i] << endl;
}
times[i] = same[i] / lowest;
initleng += nrcol[i] * leng[i];
colindex += nrcol[i] * 4;
sameleng[i] = nrcol[i] * (leng[i] + 8);
normalleng += nrcol[i] * leng[i] * nrow;
}
Int spare = bucketSize - colindex - initleng;
if (spare < 0) {
cerr << "Bucketsize too small; should be at least "
<< colindex + initleng << " bytes" << endl;
return 1;
}
// Iterate until a bucket is filled.
uInt used = 0;
uInt lastused = 0;
n = 1;
while (Int(used) <= spare) {
lastused = used;
if (n > nrow/lowest) {
break;
}
for (i=0; i<nrent; i++) {
if (n % times[i] == 0) {
used += sameleng[i];
}
}
n++;
}
n--;
n *= lowest;
uInt nbucket = 1 + (nrow - 1) / n;
uInt totalleng = nbucket * (bucketSize + 8); // add 8 for bucketindex
// Okay, n is the number of rows fitting in a bucket.
// Display the values.
cout << endl;
cout << endl;
cout << " #columns = " << nrcol << endl;
cout << " value length = " << leng << endl;
cout << " #rows/same value = " << same << endl;
cout << "#rows = " << nrow << endl;
cout << "Bucketsize = " << bucketSize << endl;
cout << "#rows/bucket = " << n << endl;
cout << "waste/bucket = " << spare - lastused << endl;
cout << "#buckets = " << nbucket << endl;
cout << "total length = " << totalleng << endl;
cout << "normal length = " << normalleng << endl;
cout << "gain factor = " << float(normalleng) / totalleng << endl;
return 0;
}
|