- Place common code under OSspecific. By including "endian.H", either one of WM_BIG_ENDIAN or WM_LITTLE_ENDIAN will be defined. Provides inline 32-bit and 64-bit byte swap routines that can be used/re-used elsewhere. The inplace memory swaps currently used by the VTK output are left for the moment pending further cleanup of that code.
226 lines
4.4 KiB
C
226 lines
4.4 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 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 "writeFuns.H"
|
|
#include "endian.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
void Foam::writeFuns::swapWord(int32_t& word32)
|
|
{
|
|
char* mem = reinterpret_cast<char*>(&word32);
|
|
|
|
char a = mem[0];
|
|
mem[0] = mem[3];
|
|
mem[3] = a;
|
|
|
|
a = mem[1];
|
|
mem[1] = mem[2];
|
|
mem[2] = a;
|
|
}
|
|
|
|
|
|
void Foam::writeFuns::swapWords(const label nWords, int32_t* words32)
|
|
{
|
|
for (label i=0; i<nWords; i++)
|
|
{
|
|
swapWord(words32[i]);
|
|
}
|
|
}
|
|
|
|
|
|
void Foam::writeFuns::write
|
|
(
|
|
std::ostream& os,
|
|
const bool binary,
|
|
List<floatScalar>& fField
|
|
)
|
|
{
|
|
if (binary)
|
|
{
|
|
#ifdef WM_LITTLE_ENDIAN
|
|
swapWords(fField.size(), reinterpret_cast<int32_t*>(fField.begin()));
|
|
#endif
|
|
|
|
os.write
|
|
(
|
|
reinterpret_cast<char*>(fField.begin()),
|
|
fField.size()*sizeof(float)
|
|
);
|
|
|
|
os << std::endl;
|
|
}
|
|
else
|
|
{
|
|
forAll(fField, i)
|
|
{
|
|
os << fField[i] << ' ';
|
|
|
|
if (i > 0 && (i % 10) == 0)
|
|
{
|
|
os << std::endl;
|
|
}
|
|
}
|
|
os << std::endl;
|
|
}
|
|
}
|
|
|
|
|
|
void Foam::writeFuns::write
|
|
(
|
|
std::ostream& os,
|
|
const bool binary,
|
|
DynamicList<floatScalar>& fField
|
|
)
|
|
{
|
|
List<floatScalar>& fld = fField.shrink();
|
|
write(os, binary, fld);
|
|
}
|
|
|
|
|
|
void Foam::writeFuns::write
|
|
(
|
|
std::ostream& os,
|
|
const bool binary,
|
|
labelList& elems
|
|
)
|
|
{
|
|
if (binary)
|
|
{
|
|
#ifdef WM_LITTLE_ENDIAN
|
|
swapWords
|
|
(
|
|
(sizeof(label)/4)*elems.size(),
|
|
reinterpret_cast<int32_t*>(elems.begin())
|
|
);
|
|
#endif
|
|
os.write
|
|
(
|
|
reinterpret_cast<char*>(elems.begin()),
|
|
elems.size()*sizeof(label)
|
|
);
|
|
|
|
os << std::endl;
|
|
}
|
|
else
|
|
{
|
|
forAll(elems, i)
|
|
{
|
|
os << elems[i] << ' ';
|
|
|
|
if (i > 0 && (i % 10) == 0)
|
|
{
|
|
os << std::endl;
|
|
}
|
|
}
|
|
os << std::endl;
|
|
}
|
|
}
|
|
|
|
|
|
void Foam::writeFuns::write
|
|
(
|
|
std::ostream& os,
|
|
const bool binary,
|
|
DynamicList<label>& elems
|
|
)
|
|
{
|
|
labelList& fld = elems.shrink();
|
|
write(os, binary, fld);
|
|
}
|
|
|
|
|
|
void Foam::writeFuns::insert(const point& pt, DynamicList<floatScalar>& dest)
|
|
{
|
|
dest.append(float(pt.x()));
|
|
dest.append(float(pt.y()));
|
|
dest.append(float(pt.z()));
|
|
}
|
|
|
|
|
|
void Foam::writeFuns::insert(const labelList& source, DynamicList<label>& dest)
|
|
{
|
|
forAll(source, i)
|
|
{
|
|
dest.append(source[i]);
|
|
}
|
|
}
|
|
|
|
|
|
void Foam::writeFuns::insert
|
|
(
|
|
const List<scalar>& source,
|
|
DynamicList<floatScalar>& dest
|
|
)
|
|
{
|
|
forAll(source, i)
|
|
{
|
|
dest.append(float(source[i]));
|
|
}
|
|
}
|
|
|
|
|
|
void Foam::writeFuns::insert
|
|
(
|
|
const labelList& map,
|
|
const List<scalar>& source,
|
|
DynamicList<floatScalar>& dest
|
|
)
|
|
{
|
|
forAll(map, i)
|
|
{
|
|
dest.append(float(source[map[i]]));
|
|
}
|
|
}
|
|
|
|
|
|
void Foam::writeFuns::insert
|
|
(
|
|
const List<point>& source,
|
|
DynamicList<floatScalar>& dest
|
|
)
|
|
{
|
|
forAll(source, i)
|
|
{
|
|
insert(source[i], dest);
|
|
}
|
|
}
|
|
|
|
void Foam::writeFuns::insert
|
|
(
|
|
const labelList& map,
|
|
const List<point>& source,
|
|
DynamicList<floatScalar>& dest
|
|
)
|
|
{
|
|
forAll(map, i)
|
|
{
|
|
insert(source[map[i]], dest);
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|