192 lines
4.6 KiB
C++
192 lines
4.6 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2011-2023 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 "codedFunctionObject.H"
|
|
#include "volFields.H"
|
|
#include "dictionary.H"
|
|
#include "Time.H"
|
|
#include "SHA1Digest.H"
|
|
#include "dynamicCode.H"
|
|
#include "dynamicCodeContext.H"
|
|
#include "stringOps.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(codedFunctionObject, 0);
|
|
|
|
addToRunTimeSelectionTable
|
|
(
|
|
functionObject,
|
|
codedFunctionObject,
|
|
dictionary
|
|
);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
|
|
|
Foam::wordList Foam::codedFunctionObject::codeKeys() const
|
|
{
|
|
return
|
|
{
|
|
"codeData",
|
|
"codeEnd",
|
|
"codeExecute",
|
|
"codeInclude",
|
|
"codeRead",
|
|
"codeFields",
|
|
"codeWrite",
|
|
"localCode"
|
|
};
|
|
}
|
|
|
|
|
|
void Foam::codedFunctionObject::prepare
|
|
(
|
|
dynamicCode& dynCode,
|
|
const dynamicCodeContext& context
|
|
) const
|
|
{
|
|
dynCode.setFilterVariable("typeName", codeName());
|
|
|
|
// Compile filtered C template
|
|
dynCode.addCompileFile(codeTemplateC("codedFunctionObject"));
|
|
|
|
// Copy filtered H template
|
|
dynCode.addCopyFile(codeTemplateH("codedFunctionObject"));
|
|
|
|
// Debugging: make verbose
|
|
if (debug)
|
|
{
|
|
dynCode.setFilterVariable("verbose", "true");
|
|
Info<<"compile " << codeName() << " sha1: "
|
|
<< context.sha1() << endl;
|
|
}
|
|
|
|
// Define Make/options
|
|
dynCode.setMakeOptions
|
|
(
|
|
"EXE_INC = -g \\\n"
|
|
"-I$(LIB_SRC)/finiteVolume/lnInclude \\\n"
|
|
"-I$(LIB_SRC)/meshTools/lnInclude \\\n"
|
|
+ context.options()
|
|
+ "\n\nLIB_LIBS = \\\n"
|
|
+ " -lOpenFOAM \\\n"
|
|
+ " -lfiniteVolume \\\n"
|
|
+ " -lmeshTools \\\n"
|
|
+ context.libs()
|
|
);
|
|
}
|
|
|
|
|
|
void Foam::codedFunctionObject::clearRedirect() const
|
|
{
|
|
redirectFunctionObjectPtr_.clear();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::codedFunctionObject::codedFunctionObject
|
|
(
|
|
const word& name,
|
|
const Time& time,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
functionObject(name),
|
|
codedBase(name, dict),
|
|
time_(time)
|
|
{
|
|
read(dict);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::codedFunctionObject::~codedFunctionObject()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
Foam::functionObject& Foam::codedFunctionObject::redirectFunctionObject() const
|
|
{
|
|
if (!redirectFunctionObjectPtr_.valid())
|
|
{
|
|
dictionary constructDict(codeDict());
|
|
constructDict.set("type", codeName());
|
|
|
|
redirectFunctionObjectPtr_ = functionObject::New
|
|
(
|
|
codeName(),
|
|
time_,
|
|
constructDict
|
|
);
|
|
}
|
|
return redirectFunctionObjectPtr_();
|
|
}
|
|
|
|
|
|
Foam::wordList Foam::codedFunctionObject::fields() const
|
|
{
|
|
updateLibrary();
|
|
return redirectFunctionObject().fields();
|
|
}
|
|
|
|
|
|
bool Foam::codedFunctionObject::execute()
|
|
{
|
|
updateLibrary();
|
|
return redirectFunctionObject().execute();
|
|
}
|
|
|
|
|
|
bool Foam::codedFunctionObject::write()
|
|
{
|
|
updateLibrary();
|
|
return redirectFunctionObject().write();
|
|
}
|
|
|
|
|
|
bool Foam::codedFunctionObject::end()
|
|
{
|
|
updateLibrary();
|
|
return redirectFunctionObject().end();
|
|
}
|
|
|
|
|
|
bool Foam::codedFunctionObject::read(const dictionary& dict)
|
|
{
|
|
updateLibrary();
|
|
return functionObject::read(dict) && redirectFunctionObject().read(dict);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|