mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
218 lines
6.5 KiB
C++
218 lines
6.5 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
\\/ M anipulation | Copyright (C) 2017 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/>.
|
|
|
|
Class
|
|
Foam::primitiveEntry
|
|
|
|
Description
|
|
A keyword and a list of tokens comprise a primitiveEntry.
|
|
A primitiveEntry can be read, written and printed, and the types and
|
|
values of its tokens analysed.
|
|
|
|
A primitiveEntry is a high-level building block for data description.
|
|
It is a front-end for the token parser. A list of entries can be used
|
|
as a set of keyword syntax elements, for example.
|
|
|
|
SourceFiles
|
|
primitiveEntry.C
|
|
primitiveEntryIO.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef primitiveEntry_H
|
|
#define primitiveEntry_H
|
|
|
|
#include "entry.H"
|
|
#include "ITstream.H"
|
|
#include "InfoProxy.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
class dictionary;
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class primitiveEntry Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class primitiveEntry
|
|
:
|
|
public entry,
|
|
public ITstream
|
|
{
|
|
// Private Member Functions
|
|
|
|
//- Test if token is acceptable after filtering for function entries
|
|
//- and variable expansions.
|
|
bool acceptToken
|
|
(
|
|
const token& tok,
|
|
const dictionary& dict,
|
|
Istream& is
|
|
);
|
|
|
|
//- Copy append the given tokens at the current tokenIndex
|
|
// No filtering on the tokens.
|
|
void appendTokenList(const UList<token>& toks);
|
|
|
|
//- Move append the given tokens at the current tokenIndex
|
|
// No filtering on the tokens.
|
|
void appendTokenList(List<token>&& toks);
|
|
|
|
|
|
//- Expand the given variable.
|
|
// The keyword starts with '$', but has been removed by the caller
|
|
// and thus passed as a varName.
|
|
// Keywords with '${}' are expanded recursively.
|
|
bool expandVariable
|
|
(
|
|
const string& varName,
|
|
const dictionary& dict
|
|
);
|
|
|
|
//- Expand the given function.
|
|
// The keyword starts with '#', but has been removed by the caller.
|
|
// and thus passed as a functionName.
|
|
bool expandFunction
|
|
(
|
|
const word& functionName,
|
|
const dictionary& dict,
|
|
Istream& is
|
|
);
|
|
|
|
//- Read the complete entry from the given stream
|
|
void readEntry(const dictionary& dict, Istream& is);
|
|
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Construct from keyword and a Istream
|
|
primitiveEntry(const keyType& key, Istream& is);
|
|
|
|
//- Construct from keyword, parent dictionary and Istream
|
|
primitiveEntry(const keyType& key, const dictionary& dict, Istream& is);
|
|
|
|
//- Construct from keyword and a ITstream
|
|
primitiveEntry(const keyType& key, const ITstream& is);
|
|
|
|
//- Construct from keyword and a single token
|
|
primitiveEntry(const keyType& key, const token& tok);
|
|
|
|
//- Construct from keyword and a list of tokens
|
|
primitiveEntry(const keyType& key, const UList<token>& tokens);
|
|
|
|
//- Construct from keyword and by transferring a list of tokens
|
|
primitiveEntry(const keyType& key, const Xfer<List<token>>& tokens);
|
|
|
|
//- Construct from keyword and a T
|
|
template<class T>
|
|
primitiveEntry(const keyType& key, const T& val);
|
|
|
|
autoPtr<entry> clone(const dictionary&) const
|
|
{
|
|
return autoPtr<entry>(new primitiveEntry(*this));
|
|
}
|
|
|
|
|
|
// Member functions
|
|
|
|
//- Inherit read from ITstream
|
|
using ITstream::read;
|
|
|
|
//- Return the dictionary name
|
|
const fileName& name() const
|
|
{
|
|
return ITstream::name();
|
|
}
|
|
|
|
//- Return the dictionary name
|
|
fileName& name()
|
|
{
|
|
return ITstream::name();
|
|
}
|
|
|
|
//- Return line number of first token in dictionary
|
|
label startLineNumber() const;
|
|
|
|
//- Return line number of last token in dictionary
|
|
label endLineNumber() const;
|
|
|
|
//- Return true because this entry is a stream
|
|
bool isStream() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
//- Return token stream for this primitive entry
|
|
ITstream& stream() const;
|
|
|
|
//- This entry is not a dictionary,
|
|
// calling this function generates a FatalError
|
|
const dictionary& dict() const;
|
|
|
|
//- This entry is not a dictionary,
|
|
// calling this function generates a FatalError
|
|
dictionary& dict();
|
|
|
|
//- Read tokens from the given stream
|
|
virtual bool read(const dictionary& dict, Istream& is);
|
|
|
|
//- Write
|
|
void write(Ostream& os) const;
|
|
|
|
//- Write, optionally with contents only (no keyword, etc)
|
|
void write(Ostream& os, const bool contentsOnly) const;
|
|
|
|
//- Return info proxy.
|
|
// Used to print token information to a stream
|
|
InfoProxy<primitiveEntry> info() const
|
|
{
|
|
return *this;
|
|
}
|
|
};
|
|
|
|
|
|
template<>
|
|
Ostream& operator<<(Ostream& os, const InfoProxy<primitiveEntry>& ip);
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
#include "primitiveEntryTemplates.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|