/usr/include/dcmtk/ofstd/ofset.h is in libdcmtk-dev 3.6.2-3build3.
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 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | /*
*
* Copyright (C) 2002-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: ofstd
*
* Author: Thomas Wilkens
*
* Purpose: Template class for administrating a set of elements of an
* arbitrary type.
*
*/
#ifndef OFSET_H
#define OFSET_H
#include "dcmtk/config/osconfig.h"
#include "dcmtk/ofstd/oftypes.h"
#define INCLUDE_CSTDDEF /* For NULL */
#include "dcmtk/ofstd/ofstdinc.h"
#define STARTING_SIZE 8
/** This abstract template class provides a data structure and operations for administrating a
* set of elements of an arbitrary type.
*/
template <class T> class OFSet
{
protected:
/// array containing the entries
T **items;
/// number of entries in the set
unsigned int num;
/// current size of the set (always >= num)
unsigned int size;
public:
/** Default constructor.
*/
OFSet()
: items( new T*[ STARTING_SIZE ] ), num( 0 ), size( STARTING_SIZE )
{
init();
}
/** This function is a workaround for avoiding a compiler warning on
* Solaris 2.5.1 using compiler SC 2.0.1.
*/
void init()
{
for( unsigned i=0 ; i<size ; i++ )
items[i] = NULL;
}
/** Copy constructor.
* @param src Source object of which this will be a copy.
*/
OFSet( const OFSet<T> &src )
: items( NULL ), num ( src.num ), size ( src.size )
{
init( src );
}
/** This function is a workaround for avoiding a compiler warning on
* Solaris 2.5.1 using compiler SC 2.0.1.
*/
void init( const OFSet<T> &src )
{
items = new T*[size];
for( unsigned int i=0 ; i<size ; i++ )
{
if( i<num )
items[i] = new T( *src.items[i] );
else
items[i] = NULL;
}
}
/** Destructor.
*/
virtual ~OFSet()
{
for( unsigned int i=0 ; i<num ; i++ )
delete items[i];
delete[] items;
}
/** operator=.
* @param src Source object whose values will be assigned to this.
* @return Reference to this.
*/
const OFSet<T> &operator=( const OFSet<T> &src )
{
if( this == &src )
return( *this );
unsigned int i;
for( i=0 ; i<num ; i++ )
delete items[i];
delete[] items;
num = src.num;
size = src.size;
items = new T*[size];
for( i=0 ; i<size ; i++ )
{
if( i<num )
items[i] = new T( *src.items[i] );
else
items[i] = NULL;
}
return( *this );
}
/** Returns a certain element which is contained in the set. Note that the
* original object which actually is contained in the set will be returned,
* and not a copy of the object. Further note that if the specified index
* is out of range, a newly default constructed object of class T will be
* returned.
* @return A certain element (original) which is contained in the set.
*/
virtual T &operator[]( unsigned int i ) const
{
if( i<num )
return( *items[i] );
else
{
T *obj = new T();
T &ret = *obj;
return( ret );
}
}
/** Resizes the set. If newSize is lower than the current number
* of elements in the set, this function doesn't do anything.
* @param newSize New size the set is supposed to have.
*/
virtual void Resize( unsigned int newSize )
{
unsigned int i;
if( newSize >= num )
{
T **tmp = new T*[newSize];
for( i=0 ; i<newSize ; i++ )
{
if( i<num )
tmp[i] = items[i];
else
tmp[i] = NULL;
}
delete[] items;
items = tmp;
size = newSize;
}
}
/** Removes all items from the set.
*/
virtual void Clear()
{
for( unsigned int i=0 ; i<num ; i++ )
{
delete items[i];
items[i] = NULL;
}
num = 0;
}
/** Determines if the set is an empty set.
* @return OFTrue, if the set is an empty set, OFFalse otherwise.
*/
virtual OFBool IsEmpty() const
{
if( num == 0 )
return( OFTrue );
else
return( OFFalse );
}
/** Returns the number of elements in the set.
* @return Number of elements in the set.
*/
virtual unsigned int NumberOfElements() const
{
return( num );
}
/** Inserts a new item into the set.
* @param item Item which shall be inserted into the set.
*/
virtual void Insert( const T &item ) = 0;
/** Removes one item from the set.
* @param item Item which shall be removed from the set.
*/
virtual void Remove( const T &item ) = 0;
/** Removes one item from the set.
* @param idx Index of the item which shall be removed from the set.
*/
virtual void RemoveByIndex( unsigned int idx ) = 0;
/** Tries to find a given object in the set. In case the specified object could
* be found, a pointer to the corresponding element within the set is returned;
* in case the specified object could not be found, NULL will be returned.
* @param item Search pattern.
* @return Pointer to the corresponding element within the set or NULL.
*/
virtual T *Find( const T &item ) const = 0;
/** Determines if a certain item is contained in the set.
* @param item - Item which shall be looked for.
* @return OFTrue, if item is contained in the set, OFFalse otherwise.
*/
virtual OFBool Contains( const T &item ) const = 0;
};
#endif
|