Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / containers / HashTables / HashPtrTable / HashPtrTable.C
blobce59155453f025e2515cd0e791ff50872d147dac
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "error.H"
27 #include "HashPtrTable.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 // Construct given initial table size
32 template<class T, class Key, class Hash>
33 Foam::HashPtrTable<T, Key, Hash>::HashPtrTable(const label size)
35     HashTable<T*, Key, Hash>(size)
39 // Construct as copy
40 template<class T, class Key, class Hash>
41 Foam::HashPtrTable<T, Key, Hash>::HashPtrTable
43     const HashPtrTable<T, Key, Hash>& ht
46     HashTable<T*, Key, Hash>()
48     for (const_iterator iter = ht.begin(); iter != ht.end(); ++iter)
49     {
50         this->insert(iter.key(), new T(**iter));
51     }
55 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
57 template<class T, class Key, class Hash>
58 Foam::HashPtrTable<T, Key, Hash>::~HashPtrTable()
60     clear();
64 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
66 template<class T, class Key, class Hash>
67 T* Foam::HashPtrTable<T, Key, Hash>::remove(iterator& it)
69     T* elemPtr = *it;
70     HashTable<T*, Key, Hash>::erase(it);
71     return elemPtr;
75 template<class T, class Key, class Hash>
76 bool Foam::HashPtrTable<T, Key, Hash>::erase(iterator& it)
78     T* elemPtr = *it;
80     if (HashTable<T*, Key, Hash>::erase(it))
81     {
82         if (elemPtr)
83         {
84             delete elemPtr;
85         }
87         return true;
88     }
89     else
90     {
91         return false;
92     }
96 template<class T, class Key, class Hash>
97 void Foam::HashPtrTable<T, Key, Hash>::clear()
99     for
100     (
101         iterator iter = this->begin();
102         iter != this->end();
103         ++iter
104     )
105     {
106         delete *iter;
107     }
109     HashTable<T*, Key, Hash>::clear();
113 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
115 template<class T, class Key, class Hash>
116 void Foam::HashPtrTable<T, Key, Hash>::operator=
118     const HashPtrTable<T, Key, Hash>& rhs
121     // Check for assignment to self
122     if (this == &rhs)
123     {
124         FatalErrorIn
125         (
126             "HashPtrTable<T, Key, Hash>::operator="
127             "(const HashPtrTable<T, Key, Hash>&)"
128         )   << "attempted assignment to self"
129             << abort(FatalError);
130     }
132     this->clear();
134     for (const_iterator iter = rhs.begin(); iter != rhs.end(); ++iter)
135     {
136         this->insert(iter.key(), new T(**iter));
137     }
140 // * * * * * * * * * * * * * * * Friend Operators  * * * * * * * * * * * * * //
142 #include "HashPtrTableIO.C"
144 // ************************************************************************* //