44#include "XrdSys/XrdSysHeaders.hh"
46#define IDXVEC_MINCAPACITY 128
75 inline void Init(
int cap = -1) {
86 std::cerr <<
"XrdClientIdxVector::Init .... out of memory. sizeof_t=" <<
sizeof_t <<
87 " sizeof(myindex)=" <<
sizeof(
myindex) <<
" capacity=" <<
mincap << std::endl;
113 std::cerr <<
"XrdClientIdxVector::put .... internal error." << std::endl;
120 if (
index[pos].notempty) {
134 std::cerr <<
"XrdClientIdxVector::put .... out of memory." << std::endl;
145 for (
long i = 0; i <
size; i++)
167 for (
int i = 0; i <
v.size; i++)
172 for (
long i = 0; i <
size; i++)
182 if (newsize > oldsize) {
186 for (
long i = oldsize; i < newsize; i++) {
192 for (
long i = oldsize; i > newsize; i--)
266 void Erase(
unsigned int pos,
bool dontrealloc=
true) {
305 if ((pos < 0) || (
static_cast<unsigned long>(pos) >=
306 static_cast<unsigned long>(
size))) abort();
325 if ((size+holecount >= capacity-2) && (holecount > 4*size))
326 while (size+holecount >= capacity-2) {
327 long lastempty = size+holecount-1;
335 memmove(rawdata + index[lastempty].offs, rawdata + index[lastempty].offs + sizeof_t,
336 (size+holecount)*sizeof_t - index[lastempty].offs );
339 index[lastempty].notempty =
false;
343 for (
long i = 0; i < size+holecount; i++)
344 if (index[i].notempty && (index[i].offs > index[lastempty].offs))
345 index[i].offs -= sizeof_t;
349 if (newsize > maxsize) maxsize = newsize;
351 while (newsize+holecount > capacity*2/3) {
357 rawdata =
static_cast<char *
>(
realloc(rawdata, capacity*sizeof_t));
359 std::cerr <<
"XrdClientIdxVector::BufRealloc .... out of memory." << std::endl;
364 memset(index+capacity/2, 0, capacity*
sizeof(
myindex)/2);
368 while ((newsize+holecount < capacity/3) && (capacity > 2*mincap)) {
375 rawdata =
static_cast<char *
>(
realloc(rawdata, capacity*sizeof_t));
377 std::cerr <<
"XrdClientIdxVector::BufRealloc .... out of memory." << std::endl;
#define IDXVEC_MINCAPACITY
XrdClientVector(XrdClientVector &v)
void Erase(unsigned int pos, bool dontrealloc=true)
void put(T &item, long pos)
XrdClientVector(int cap=-1)
struct XrdClientVector::myindex * index
void DestroyElem(myindex *el)
void Insert(T &item, int pos)
int BufRealloc(int newsize)