/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2017 OpenFOAM Foundation
Copyright (C) 2020-2025 OpenCFD Ltd.
-------------------------------------------------------------------------------
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 .
\*---------------------------------------------------------------------------*/
#include "csvTableReader.H"
#include "fileOperation.H"
#include "DynamicList.H"
#include "ListOps.H"
// * * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * //
template
Foam::labelList Foam::csvTableReader::getComponentColumns
(
const word& name,
std::initializer_list> compat,
const dictionary& dict
)
{
// Writing of columns was forced to be ASCII,
// do the same when reading
labelList cols;
ITstream& is = dict.lookupCompat(name, compat);
is.format(IOstreamOption::ASCII);
is >> cols;
dict.checkITstream(is, name);
if (cols.size() != pTraits::nComponents)
{
FatalIOErrorInFunction(dict)
<< name << " with " << cols
<< " does not have the expected length "
<< pTraits::nComponents << nl
<< exit(FatalIOError);
}
return cols;
}
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
template
Type Foam::csvTableReader::readValue
(
const UList& strings
) const
{
Type result;
if constexpr (std::is_integral_v)
{
// nComponents == 1
setComponent(result, 0) = readLabel(strings[componentColumns_[0]]);
}
else
{
for (direction cmpt = 0; cmpt < pTraits::nComponents; ++cmpt)
{
setComponent(result, cmpt) =
readScalar(strings[componentColumns_[cmpt]]);
}
}
return result;
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template
Foam::csvTableReader::csvTableReader(const dictionary& dict)
:
tableReader(dict),
headerLine_(dict.get("hasHeaderLine")),
refColumn_(dict.getCompat