/*---------------------------------------------------------------------------*\ ========= | \\ / 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) 2016-2023 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 "CSV.H" #include "DynamicList.H" #include "ListOps.H" // * * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * // template Foam::labelList Foam::Function1Types::CSV::getComponentColumns ( const word& name, const dictionary& dict ) { // Writing of columns was forced to be ASCII, // do the same when reading labelList cols; ITstream& is = dict.lookup(name); 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::Function1Types::CSV::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; } template void Foam::Function1Types::CSV::read() { fileName expandedFile(fName_); autoPtr isPtr(fileHandler().NewIFstream(expandedFile.expand())); ISstream& is = isPtr(); if (!is.good()) { FatalIOErrorInFunction(is) << "Cannot open CSV file for reading." << exit(FatalIOError); } const label maxEntry = max(refColumn_, componentColumns_[findMax(componentColumns_)]); string line; label lineNo = 0; // Skip header for (label i = 0; i < nHeaderLine_; ++i) { is.getLine(nullptr); ++lineNo; } DynamicList> values; DynamicList strings(maxEntry+1); // reserve while (is.good()) { is.getLine(line); ++lineNo; strings.clear(); std::size_t pos = 0; for ( label n = 0; (pos != std::string::npos) && (n <= maxEntry); ++n ) { if (mergeSeparators_) { bool found = false; while (!found) { const auto nPos = line.find(separator_, pos); if ((nPos != std::string::npos) && (nPos - pos == 0)) { pos = nPos + 1; } else { found = true; } } } const auto nPos = line.find(separator_, pos); if (nPos == std::string::npos) { strings.push_back(line.substr(pos)); pos = nPos; } else { strings.push_back(line.substr(pos, nPos - pos)); pos = nPos + 1; } } if (strings.size() <= 1) { break; } if (strings.size() <= maxEntry) { FatalErrorInFunction << "Not enough columns near line " << lineNo << ". Require " << (maxEntry+1) << " but found " << strings << nl << exit(FatalError); } scalar x = readScalar(strings[refColumn_]); Type value = readValue(strings); values.emplace_back(x, value); } this->table_.transfer(values); } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template Foam::Function1Types::CSV::CSV ( const word& entryName, const dictionary& dict, const objectRegistry* obrPtr, const fileName& fName ) : TableBase(entryName, dict, obrPtr), nHeaderLine_(dict.get