BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / OpenFOAM / memory / Xfer / XferI.H
blob3cb507726540859f1044d0d56566c4b7ab7693c3
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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 // * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * * //
28 template<class T>
29 inline const Foam::Xfer<T>& Foam::Xfer<T>::null()
31     return *reinterpret_cast< Xfer<T>* >(0);
35 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
37 template<class T>
38 inline Foam::Xfer<T>::Xfer(T* p)
40     ptr_(p ? p : new T)
44 template<class T>
45 inline Foam::Xfer<T>::Xfer(T& t, bool allowTransfer)
47     ptr_(new T)
49     if (allowTransfer)
50     {
51         ptr_->transfer(t);
52     }
53     else
54     {
55         ptr_->operator=(t);
56     }
60 template<class T>
61 inline Foam::Xfer<T>::Xfer(const T& t)
63     ptr_(new T)
65     ptr_->operator=(t);
69 template<class T>
70 inline Foam::Xfer<T>::Xfer(const Xfer<T>& t)
72     ptr_(new T)
74     ptr_->transfer(*(t.ptr_));
78 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
80 template<class T>
81 inline Foam::Xfer<T>::~Xfer()
83     delete ptr_;
84     ptr_ = 0;
88 // * * * * * * * * * * * * *  Member Functions * * * * * * * * * * * * * * * //
91 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
93 template<class T>
94 inline void Foam::Xfer<T>::operator=(T& t)
96     ptr_->transfer(t);
100 template<class T>
101 inline void Foam::Xfer<T>::operator=(const Xfer<T>& t)
103     // silently ignore attempted copy to self
104     if (this != &t)
105     {
106         ptr_->transfer(*(t.ptr_));
107     }
111 template<class T>
112 inline T& Foam::Xfer<T>::operator()() const
114     return *ptr_;
118 template<class T>
119 inline T* Foam::Xfer<T>::operator->() const
121     return ptr_;
125 // * * * * * * * * * * * * *  Helper Functions * * * * * * * * * * * * * * * //
128 template<class T>
129 inline Foam::Xfer<T> Foam::xferCopy(const T& t)
131     return Foam::Xfer<T>(t);
135 template<class T>
136 inline Foam::Xfer<T> Foam::xferMove(T& t)
138     return Foam::Xfer<T>(t, true);
142 template<class T>
143 inline Foam::Xfer<T> Foam::xferTmp(Foam::tmp<T>& tt)
145     return Foam::Xfer<T>(tt(), tt.isTmp());
149 template<class To, class From>
150 inline Foam::Xfer<To> Foam::xferCopyTo(const From& t)
152     Foam::Xfer<To> xf;
153     xf() = t;
154     return xf;
158 template<class To, class From>
159 inline Foam::Xfer<To> Foam::xferMoveTo(From& t)
161     Foam::Xfer<To> xf;
162     xf().transfer(t);
163     return xf;
167 // ************************************************************************* //