Report patch name instead of index in debug
[foam-extend-3.2.git] / src / foam / db / IOobjects / IOMap / IOMap.C
blobdaca13afefe3af459e050ac0461ab932cc212c77
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "IOMap.H"
28 // * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * * //
30 template<class T>
31 Foam::IOMap<T>::IOMap(const IOobject& io)
33     regIOobject(io)
35     if
36     (
37         io.readOpt() == IOobject::MUST_READ
38      || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
39     )
40     {
41         readStream(typeName) >> *this;
42         close();
43     }
46 template<class T>
47 Foam::IOMap<T>::IOMap(const IOobject& io, const label size)
49     regIOobject(io)
51     if
52     (
53         io.readOpt() == IOobject::MUST_READ
54      || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
55     )
56     {
57         readStream(typeName) >> *this;
58         close();
59     }
60     else
61     {
62         Map<T>::setSize(size);
63     }
67 template<class T>
68 Foam::IOMap<T>::IOMap(const IOobject& io, const Map<T>& map)
70     regIOobject(io)
72     if
73     (
74         io.readOpt() == IOobject::MUST_READ
75      || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
76     )
77     {
78         readStream(typeName) >> *this;
79         close();
80     }
81     else
82     {
83         Map<T>::operator=(map);
84     }
88 template<class T>
89 Foam::IOMap<T>::IOMap(const IOobject& io, const Xfer<Map<T> >& map)
91     regIOobject(io)
93     Map<T>::transfer(map());
95     if
96     (
97         io.readOpt() == IOobject::MUST_READ
98      || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
99     )
100     {
101         readStream(typeName) >> *this;
102         close();
103     }
107 // * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * * //
109 template<class T>
110 Foam::IOMap<T>::~IOMap()
114 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
116 template<class T>
117 bool Foam::IOMap<T>::writeData(Ostream& os) const
119     return (os << *this).good();
123 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
125 template<class T>
126 void Foam::IOMap<T>::operator=(const IOMap<T>& rhs)
128     Map<T>::operator=(rhs);
132 template<class T>
133 void Foam::IOMap<T>::operator=(const Map<T>& rhs)
135     Map<T>::operator=(rhs);
139 // ************************************************************************* //