00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044 #ifndef HashTable_H
00045 #define HashTable_H
00046
00047 #include <OpenFOAM/label.H>
00048 #include <OpenFOAM/uLabel.H>
00049 #include <OpenFOAM/word.H>
00050 #include <OpenFOAM/Xfer.H>
00051 #include <OpenFOAM/className.H>
00052
00053
00054
00055 namespace Foam
00056 {
00057
00058
00059
00060 template<class T> class List;
00061 template<class T> class UList;
00062 template<class T, class Key, class Hash> class HashTable;
00063 template<class T, class Key, class Hash> class HashPtrTable;
00064
00065 template<class T, class Key, class Hash>
00066 Istream& operator>>(Istream&, HashTable<T, Key, Hash>&);
00067
00068 template<class T, class Key, class Hash>
00069 Ostream& operator<<(Ostream&, const HashTable<T, Key, Hash>&);
00070
00071
00072
00073
00074
00075
00076 TemplateName(HashTable);
00077
00078
00079
00080
00081
00082
00083 template<class T, class Key=word, class Hash=string::hash>
00084 class HashTable
00085 :
00086 public HashTableName
00087 {
00088
00089
00090 struct hashedEntry
00091 {
00092
00093 Key key_;
00094
00095
00096 hashedEntry* next_;
00097
00098
00099 T obj_;
00100
00101
00102
00103
00104 inline hashedEntry
00105 (
00106 const Key&,
00107 hashedEntry* next,
00108 const T& newEntry
00109 );
00110
00111
00112 hashedEntry(const hashedEntry&);
00113 };
00114
00115
00116
00117
00118
00119 label nElmts_;
00120
00121
00122 label tableSize_;
00123
00124
00125 hashedEntry** table_;
00126
00127
00128
00129
00130
00131 static label canonicalSize(const label);
00132
00133
00134
00135 inline label hashKeyIndex(const Key&) const;
00136
00137
00138 bool set(const Key&, const T& newElmt, bool protect);
00139
00140
00141 public:
00142
00143
00144 template<class T2, class Key2, class Hash2>
00145 friend class HashPtrTable;
00146
00147
00148
00149
00150 class iterator;
00151 friend class iterator;
00152
00153 class const_iterator;
00154 friend class const_iterator;
00155
00156
00157
00158
00159
00160 HashTable(const label size = 128);
00161
00162
00163 HashTable(Istream&, const label size = 128);
00164
00165
00166 HashTable(const HashTable<T, Key, Hash>&);
00167
00168
00169 HashTable(const Xfer<HashTable<T, Key, Hash> >&);
00170
00171
00172
00173
00174 ~HashTable();
00175
00176
00177
00178
00179
00180
00181
00182 inline label size() const;
00183
00184
00185 inline bool empty() const;
00186
00187
00188 bool found(const Key&) const;
00189
00190
00191
00192 iterator find(const Key&);
00193
00194
00195
00196 const_iterator find(const Key&) const;
00197
00198
00199 List<Key> toc() const;
00200
00201
00202 List<Key> sortedToc() const;
00203
00204
00205 Ostream& printInfo(Ostream&) const;
00206
00207
00208
00209
00210 inline bool insert(const Key&, const T& newElmt);
00211
00212
00213 inline bool set(const Key&, const T& newElmt);
00214
00215
00216 bool erase(const iterator&);
00217
00218
00219 bool erase(const Key&);
00220
00221
00222
00223 label erase(const UList<Key>&);
00224
00225
00226
00227
00228
00229 template<class AnyType, class AnyHash>
00230 label erase(const HashTable<AnyType, Key, AnyHash>&);
00231
00232
00233 void resize(const label newSize);
00234
00235
00236 void clear();
00237
00238
00239
00240 void clearStorage();
00241
00242
00243
00244 void transfer(HashTable<T, Key, Hash>&);
00245
00246
00247 inline Xfer<HashTable<T, Key, Hash> > xfer();
00248
00249
00250
00251
00252
00253 inline T& operator[](const Key&);
00254
00255
00256 inline const T& operator[](const Key&) const;
00257
00258
00259 inline T& operator()(const Key&);
00260
00261
00262 void operator=(const HashTable<T, Key, Hash>&);
00263
00264
00265
00266
00267 bool operator==(const HashTable<T, Key, Hash>&) const;
00268
00269
00270 bool operator!=(const HashTable<T, Key, Hash>&) const;
00271
00272
00273
00274
00275
00276 typedef T value_type;
00277
00278
00279
00280 typedef T& reference;
00281
00282
00283
00284
00285 typedef const T& const_reference;
00286
00287
00288 typedef label size_type;
00289
00290
00291
00292
00293
00294 class iterator
00295 {
00296 friend class HashTable;
00297 friend class const_iterator;
00298
00299
00300
00301
00302 HashTable<T, Key, Hash>& hashTable_;
00303
00304
00305 hashedEntry* elmtPtr_;
00306
00307
00308 label hashIndex_;
00309
00310 public:
00311
00312
00313
00314
00315 inline iterator
00316 (
00317 HashTable<T, Key, Hash>& curHashTable,
00318 hashedEntry* elmt,
00319 label hashIndex
00320 );
00321
00322
00323
00324 inline void operator=(const iterator&);
00325
00326 inline bool operator==(const iterator&) const;
00327 inline bool operator!=(const iterator&) const;
00328
00329 inline bool operator==(const const_iterator&) const;
00330 inline bool operator!=(const const_iterator&) const;
00331
00332 inline T& operator*();
00333 inline T& operator()();
00334
00335 inline const T& operator*() const;
00336 inline const T& operator()() const;
00337
00338 inline iterator& operator++();
00339 inline iterator operator++(int);
00340
00341 inline const Key& key() const;
00342 };
00343
00344
00345
00346 inline iterator begin();
00347
00348
00349 inline const iterator& end();
00350
00351
00352
00353
00354
00355 class const_iterator
00356 {
00357 friend class iterator;
00358
00359
00360
00361
00362 const HashTable<T, Key, Hash>& hashTable_;
00363
00364
00365 const hashedEntry* elmtPtr_;
00366
00367
00368 label hashIndex_;
00369
00370
00371 public:
00372
00373
00374
00375
00376 inline const_iterator
00377 (
00378 const HashTable<T, Key, Hash>& curHashTable,
00379 const hashedEntry* elmt,
00380 label hashIndex
00381 );
00382
00383
00384 inline const_iterator(const iterator&);
00385
00386
00387
00388
00389 inline void operator=(const const_iterator&);
00390
00391 inline bool operator==(const const_iterator&) const;
00392 inline bool operator!=(const const_iterator&) const;
00393
00394 inline bool operator==(const iterator&) const;
00395 inline bool operator!=(const iterator&) const;
00396
00397 inline const T& operator*() const;
00398 inline const T& operator()() const;
00399
00400 inline const_iterator& operator++();
00401 inline const_iterator operator++(int);
00402
00403 inline const Key& key() const;
00404 };
00405
00406
00407
00408 inline const_iterator cbegin() const;
00409
00410
00411 inline const const_iterator& cend() const;
00412
00413
00414 inline const_iterator begin() const;
00415
00416
00417 inline const const_iterator& end() const;
00418
00419
00420
00421
00422 friend Istream& operator>> <T, Key, Hash>
00423 (
00424 Istream&,
00425 HashTable<T, Key, Hash>&
00426 );
00427
00428 friend Ostream& operator<< <T, Key, Hash>
00429 (
00430 Ostream&,
00431 const HashTable<T, Key, Hash>&
00432 );
00433
00434
00435 private:
00436
00437
00438 iterator endIter_;
00439
00440
00441 const_iterator endConstIter_;
00442 };
00443
00444
00445
00446
00447 }
00448
00449
00450
00451 # include <OpenFOAM/HashTableI.H>
00452
00453
00454
00455 #ifndef NoHashTableC
00456 #ifdef NoRepository
00457 # include <OpenFOAM/HashTable.C>
00458 #endif
00459 #endif
00460
00461
00462
00463 #endif
00464
00465