/usr/share/netgen/libsrc/general/table.hpp is in netgen-headers 4.9.13.dfsg-8build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 | #ifndef FILE_TABLE
#define FILE_TABLE
/**************************************************************************/
/* File: table.hpp */
/* Author: Joachim Schoeberl */
/* Date: 01. Jun. 95 */
/**************************************************************************/
namespace netgen
{
/// Base class to generic class TABLE.
class BASE_TABLE
{
protected:
///
class linestruct
{
public:
///
int size;
///
int maxsize;
///
void * col;
};
///
Array<linestruct> data;
char * oneblock;
public:
///
BASE_TABLE (int size);
///
BASE_TABLE (const FlatArray<int> & entrysizes, int elemsize);
///
~BASE_TABLE ();
///
void SetSize (int size);
///
void ChangeSize (int size);
/// increment size of entry i by one, i is 0-based
void IncSize (int i, int elsize)
{
if (data[i].size < data[i].maxsize)
data[i].size++;
else
IncSize2 (i, elsize);
}
///
void IncSize2 (int i, int elsize);
// void DecSize (int i);
///
void AllocateElementsOneBlock (int elemsize);
int AllocatedElements () const;
int UsedElements () const;
void SetElementSizesToMaxSizes ();
};
/**
Abstract data type TABLE.
To an integer i in the range from 1 to size a set of elements of the
generic type T is associated.
*/
template <class T, int BASE = 0>
class TABLE : public BASE_TABLE
{
public:
/// Creates table.
inline TABLE () : BASE_TABLE(0) { ; }
/// Creates table of size size
inline TABLE (int size) : BASE_TABLE (size) { ; }
/// Creates fixed maximal element size table
inline TABLE (const FlatArray<int,BASE> & entrysizes)
: BASE_TABLE (FlatArray<int> (entrysizes.Size(), const_cast<int*>(&entrysizes[BASE])),
sizeof(T))
{ ; }
/// Changes Size of table to size, deletes data
inline void SetSize (int size)
{
BASE_TABLE::SetSize (size);
}
/// Changes Size of table to size, keep data
inline void ChangeSize (int size)
{
BASE_TABLE::ChangeSize (size);
}
/// Inserts element acont into row i, BASE-based. Does not test if already used.
inline void Add (int i, const T & acont)
{
IncSize (i-BASE, sizeof (T));
((T*)data[i-BASE].col)[data[i-BASE].size-1] = acont;
}
/// Inserts element acont into row i, 1-based. Does not test if already used.
inline void Add1 (int i, const T & acont)
{
IncSize (i-1, sizeof (T));
((T*)data.Elem(i).col)[data.Elem(i).size-1] = acont;
}
///
void IncSizePrepare (int i)
{
data[i-BASE].maxsize++;
}
/// Inserts element acont into row i. BASE-based. Does not test if already used, assumes to have enough memory
inline void AddSave (int i, const T & acont)
{
((T*)data[i-BASE].col)[data[i-BASE].size] = acont;
data[i-BASE].size++;
}
/// Inserts element acont into row i. 1-based. Does not test if already used, assumes to have mem
inline void AddSave1 (int i, const T & acont)
{
((T*)data.Elem(i).col)[data.Elem(i).size] = acont;
data.Elem(i).size++;
}
/// Inserts element acont into row i. Does not test if already used.
inline void AddEmpty (int i)
{
IncSize (i-BASE, sizeof (T));
}
/** Set the nr-th element in the i-th row to acont.
Does not check for overflow. */
inline void Set (int i, int nr, const T & acont)
{ ((T*)data.Get(i).col)[nr-1] = acont; }
/** Returns the nr-th element in the i-th row.
Does not check for overflow. */
inline const T & Get (int i, int nr) const
{ return ((T*)data.Get(i).col)[nr-1]; }
/** Returns pointer to the first element in row i. */
inline const T * GetLine (int i) const
{
return ((const T*)data.Get(i).col);
}
/// Returns size of the table.
inline int Size () const
{
return data.Size();
}
/// Returns size of the i-th row.
inline int EntrySize (int i) const
{ return data.Get(i).size; }
/*
inline void DecEntrySize (int i)
{ DecSize(i); }
*/
void AllocateElementsOneBlock ()
{ BASE_TABLE::AllocateElementsOneBlock (sizeof(T)); }
inline void PrintMemInfo (ostream & ost) const
{
int els = AllocatedElements();
ost << "table: allocaed " << els
<< " a " << sizeof(T) << " Byts = "
<< els * sizeof(T)
<< " bytes in " << Size() << " bags."
<< " used: " << UsedElements()
<< endl;
}
/// Access entry.
FlatArray<T> operator[] (int i) const
{
#ifdef DEBUG
if (i-BASE < 0 || i-BASE >= data.Size())
cout << "table out of range, i = " << i << ", s = " << data.Size() << endl;
#endif
return FlatArray<T> (data[i-BASE].size, (T*)data[i-BASE].col);
}
};
template <class T, int BASE>
inline ostream & operator<< (ostream & ost, const TABLE<T,BASE> & table)
{
for (int i = BASE; i < table.Size()+BASE; i++)
{
ost << i << ": ";
FlatArray<T> row = table[i];
ost << "(" << row.Size() << ") ";
for (int j = 0; j < row.Size(); j++)
ost << row[j] << " ";
ost << endl;
}
return ost;
}
}
#endif
|