The writeEntry form is now defined and used consistently throughout OpenFOAM making it easier to use and extend, particularly to support binary IO of complex dictionary entries.
222 lines
5.2 KiB
C
222 lines
5.2 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2019 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "ListCompactIO.H"
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
template<class T, class BaseType>
|
|
bool Foam::ListCompactIO<T, BaseType>::overflows() const
|
|
{
|
|
label size = 0;
|
|
forAll(*this, i)
|
|
{
|
|
label oldSize = size;
|
|
size += this->operator[](i).size();
|
|
if (size < oldSize)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
template<class T, class BaseType>
|
|
void Foam::ListCompactIO<T, BaseType>::convertToCompact
|
|
(
|
|
labelList& start,
|
|
List<BaseType>& elems
|
|
) const
|
|
{
|
|
start.setSize(this->size() + 1);
|
|
|
|
start[0] = 0;
|
|
for (label i = 1; i < start.size(); i++)
|
|
{
|
|
label prev = start[i-1];
|
|
start[i] = prev + this->operator[](i-1).size();
|
|
|
|
if (start[i] < prev)
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Overall number of elements " << start[i]
|
|
<< " of ListCompactIO of size "
|
|
<< this->size() << " overflows the representation of a label"
|
|
<< endl << "Please recompile with a larger representation"
|
|
<< " for label" << exit(FatalError);
|
|
}
|
|
}
|
|
|
|
elems.setSize(start[start.size() - 1]);
|
|
|
|
label elemi = 0;
|
|
forAll(*this, i)
|
|
{
|
|
const T& subList = this->operator[](i);
|
|
|
|
forAll(subList, j)
|
|
{
|
|
elems[elemi++] = subList[j];
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
template<class T, class BaseType>
|
|
void Foam::ListCompactIO<T, BaseType>::convertFromCompact
|
|
(
|
|
const labelList& start,
|
|
const List<BaseType>& elems
|
|
)
|
|
{
|
|
this->setSize(start.size() - 1);
|
|
|
|
forAll(*this, i)
|
|
{
|
|
T& subList = this->operator[](i);
|
|
|
|
label index = start[i];
|
|
subList.setSize(start[i+1] - index);
|
|
|
|
forAll(subList, j)
|
|
{
|
|
subList[j] = elems[index++];
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * * //
|
|
|
|
template<class T, class BaseType>
|
|
Foam::ListCompactIO<T, BaseType>::ListCompactIO()
|
|
{}
|
|
|
|
|
|
template<class T, class BaseType>
|
|
Foam::ListCompactIO<T, BaseType>::ListCompactIO(const UList<T>& l)
|
|
:
|
|
List<T>(l)
|
|
{}
|
|
|
|
|
|
template<class T, class BaseType>
|
|
Foam::ListCompactIO<T, BaseType>::ListCompactIO(Istream& is)
|
|
{
|
|
is >> *this;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
|
|
|
|
template<class T, class BaseType>
|
|
void Foam::ListCompactIO<T, BaseType>::operator=
|
|
(
|
|
const ListCompactIO<T, BaseType>& rhs
|
|
)
|
|
{
|
|
List<T>::operator=(rhs);
|
|
}
|
|
|
|
|
|
template<class T, class BaseType>
|
|
void Foam::ListCompactIO<T, BaseType>::operator=(const List<T>& rhs)
|
|
{
|
|
List<T>::operator=(rhs);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Friend Functions * * * * * * * * * * * * * //
|
|
|
|
template<class T, class BaseType>
|
|
void Foam::writeEntry(Ostream& os, const ListCompactIO<T, BaseType>& l)
|
|
{
|
|
// Keep ascii writing same.
|
|
if (os.format() == IOstream::ASCII)
|
|
{
|
|
os << static_cast<const List<T>&>(l);
|
|
}
|
|
else
|
|
{
|
|
labelList start;
|
|
List<BaseType> elems;
|
|
l.convertToCompact(start, elems);
|
|
writeEntry(os, start);
|
|
writeEntry(os, elems);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Friend Operators * * * * * * * * * * * * * //
|
|
|
|
template<class T, class BaseType>
|
|
Foam::Istream& Foam::operator>>
|
|
(
|
|
Foam::Istream& is,
|
|
Foam::ListCompactIO<T, BaseType>& L
|
|
)
|
|
{
|
|
if (is.format() == IOstream::ASCII)
|
|
{
|
|
is >> static_cast<List<T>&>(L);
|
|
}
|
|
else
|
|
{
|
|
labelList start(is);
|
|
List<BaseType> elems(is);
|
|
L.convertFromCompact(start, elems);
|
|
}
|
|
|
|
return is;
|
|
}
|
|
|
|
|
|
template<class T, class BaseType>
|
|
Foam::Ostream& Foam::operator<<
|
|
(
|
|
Foam::Ostream& os,
|
|
const Foam::ListCompactIO<T, BaseType>& L
|
|
)
|
|
{
|
|
// Keep ascii writing same.
|
|
if (os.format() == IOstream::ASCII)
|
|
{
|
|
os << static_cast<const List<T>&>(L);
|
|
}
|
|
else
|
|
{
|
|
labelList start;
|
|
List<BaseType> elems;
|
|
L.convertToCompact(start, elems);
|
|
os << start << elems;
|
|
}
|
|
|
|
return os;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|