Files
openfoam/src/OpenFOAM/expressions/exprResult/exprResultGlobals.C
2020-01-28 16:09:14 +01:00

335 lines
7.0 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2012-2018 Bernhard Gschaider <bgschaid@hfd-research.com>
Copyright (C) 2019-2020 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 <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
#include "exprResultGlobals.H"
#include "Time.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace Foam
{
namespace expressions
{
defineTypeNameAndDebug(exprResultGlobals, 0);
} // End namespace expressions
} // End namespace Foam
Foam::autoPtr<Foam::expressions::exprResultGlobals>
Foam::expressions::exprResultGlobals::singleton_;
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::expressions::exprResultGlobals::exprResultGlobals
(
const objectRegistry& obr
)
:
regIOobject
(
IOobject
(
"exprResultGlobals",
obr.time().timeName(),
"expressions",
obr.time(),
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
)
),
timeIndex_(obr.time().timeIndex())
{
if (headerOk())
{
readData
(
readStream("exprResultGlobals", true)
);
}
}
Foam::expressions::exprResultGlobals::Table::Table()
:
HashPtrTable<exprResult>()
{}
Foam::expressions::exprResultGlobals::Table::Table(const Table& tbl)
:
HashPtrTable<exprResult>(tbl.capacity())
{
for (auto iter = tbl.cbegin(); iter != tbl.cend(); ++iter)
{
this->set(iter.key(), (*iter)->clone());
}
}
Foam::expressions::exprResultGlobals::Table::Table(Table&& tbl)
:
HashPtrTable<exprResult>(std::move(tbl))
{}
Foam::expressions::exprResultGlobals::Table::Table(Istream& is)
:
HashPtrTable<exprResult>(is)
{}
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
void Foam::expressions::exprResultGlobals::reset()
{
forAllIters(variables_, tablesIter)
{
forAllIters((*tablesIter), iter)
{
(*iter)->reset();
}
}
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
bool Foam::expressions::exprResultGlobals::writeData(Ostream& os) const
{
// Enforce ASCII to avoid any potential binary issues
const auto oldFmt = os.format(IOstream::ASCII);
os << variables_;
os.format(oldFmt);
return os.good();
}
bool Foam::expressions::exprResultGlobals::readData(Istream& is)
{
// Enforce ASCII to avoid any potential binary issues
const auto oldFmt = is.format(IOstream::ASCII);
is >> variables_;
is.format(oldFmt);
return !is.bad();
}
Foam::expressions::exprResultGlobals&
Foam::expressions::exprResultGlobals::New
(
const objectRegistry& obr
)
{
if (!singleton_)
{
singleton_.reset(new exprResultGlobals(obr));
}
if (singleton_->timeIndex_ != obr.time().timeIndex())
{
// Time changes, reset variables
singleton_->timeIndex_ = obr.time().timeIndex();
singleton_->reset();
}
return *singleton_;
}
Foam::expressions::exprResultGlobals::Table&
Foam::expressions::exprResultGlobals::getNamespace(const word& name)
{
return variables_[name];
}
const Foam::expressions::exprResult&
Foam::expressions::exprResultGlobals::get
(
const word& name,
const wordUList& scopes
) const
{
for (const word& scopeName : scopes)
{
const auto tableIter = variables_.find(scopeName);
if (tableIter.found())
{
const auto resultIter = (*tableIter).find(name);
if (resultIter.found())
{
return *(*resultIter);
}
}
#ifdef FULLDEBUG
else
{
WarningInFunction
<< "No scope " << scopeName << " for " << name << nl
<< "Known global scopes: " << variables_.sortedToc() << nl;
}
#endif
}
return exprResult::null;
}
Foam::expressions::exprResult&
Foam::expressions::exprResultGlobals::addValue
(
const word& name,
const word& scope,
const exprResult& value,
const bool overwrite
)
{
Table& tbl = getOrCreateScope(scope);
auto iter = tbl.find(name);
if (!iter.found())
{
tbl.set(name, new exprResult(value));
iter = tbl.find(name);
}
else if (overwrite)
{
*(*iter) = value;
}
return *(*iter);
}
Foam::expressions::exprResult&
Foam::expressions::exprResultGlobals::addValue
(
const word& name,
const word& scope,
autoPtr<exprResult>& value,
const bool overwrite
)
{
Table& tbl = getOrCreateScope(scope);
if (overwrite || !tbl.found(name))
{
tbl.set(name, value);
}
return *tbl[name];
}
Foam::expressions::exprResult&
Foam::expressions::exprResultGlobals::addValue
(
const word& name,
const word& scope,
autoPtr<exprResult>&& value,
const bool overwrite
)
{
Table& tbl = getOrCreateScope(scope);
if (overwrite || !tbl.found(name))
{
tbl.set(name, value);
}
return *tbl[name];
}
Foam::expressions::exprResult&
Foam::expressions::exprResultGlobals::addValue
(
const dictionary& dict,
const word& scope,
const bool overwrite
)
{
word scopeName(scope);
const word name(dict.get<word>("globalName"));
if (scopeName.empty())
{
scopeName = dict.get<word>("globalScope");
}
if (dict.found("resultType"))
{
return addValue
(
name,
scopeName,
exprResult::New(dict),
overwrite
);
}
else
{
return addValue
(
name,
scopeName,
exprResult(dict, true),
overwrite
);
}
}
bool Foam::expressions::exprResultGlobals::removeValue
(
const word& name,
const word& scope
)
{
auto iter = variables_.find(scope);
return (iter.found() && (*iter).erase(name));
}
// ************************************************************************* //