This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/src/OpenFOAM/db/dictionary/dictionary.C

994 lines
22 KiB
C
Raw Normal View History

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright held by original author
\\/ 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 2 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, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
\*---------------------------------------------------------------------------*/
#include "dictionary.H"
#include "primitiveEntry.H"
#include "dictionaryEntry.H"
2010-08-24 15:19:39 +00:00
#include "regExp.H"
#include "OSHA1stream.H"
/* * * * * * * * * * * * * * * Static Member Data * * * * * * * * * * * * * */
defineTypeNameAndDebug(Foam::dictionary, 0);
const Foam::dictionary Foam::dictionary::null;
2010-08-24 15:19:39 +00:00
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
bool Foam::dictionary::findInPatterns
(
const bool patternMatch,
const word& Keyword,
DLList<entry*>::const_iterator& wcLink,
DLList<autoPtr<regExp> >::const_iterator& reLink
) const
{
if (patternEntries_.size())
{
while (wcLink != patternEntries_.end())
{
if
(
patternMatch
? reLink()->match(Keyword)
: wcLink()->keyword() == Keyword
)
{
return true;
}
++reLink;
++wcLink;
}
}
return false;
}
bool Foam::dictionary::findInPatterns
(
const bool patternMatch,
const word& Keyword,
DLList<entry*>::iterator& wcLink,
DLList<autoPtr<regExp> >::iterator& reLink
)
{
if (patternEntries_.size())
{
while (wcLink != patternEntries_.end())
{
if
(
patternMatch
? reLink()->match(Keyword)
: wcLink()->keyword() == Keyword
)
{
return true;
}
++reLink;
++wcLink;
}
}
return false;
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::dictionary::dictionary()
:
parent_(dictionary::null)
{}
2010-08-24 15:19:39 +00:00
Foam::dictionary::dictionary(const fileName& name)
:
dictionaryName(name),
parent_(dictionary::null)
{}
Foam::dictionary::dictionary
(
const dictionary& parentDict,
const dictionary& dict
)
:
2010-08-24 15:19:39 +00:00
dictionaryName(dict.name()),
IDLList<entry>(dict, *this),
parent_(parentDict)
{
2010-08-24 15:19:39 +00:00
forAllIter(IDLList<entry>, *this, iter)
{
hashedEntries_.insert(iter().keyword(), &iter());
2010-08-24 15:19:39 +00:00
if (iter().keyword().isPattern())
{
patternEntries_.insert(&iter());
patternRegexps_.insert
(
autoPtr<regExp>(new regExp(iter().keyword()))
);
}
}
}
Foam::dictionary::dictionary
(
const dictionary& dict
)
:
2010-08-24 15:19:39 +00:00
dictionaryName(dict.name()),
IDLList<entry>(dict, *this),
parent_(dictionary::null)
{
2010-08-24 15:19:39 +00:00
forAllIter(IDLList<entry>, *this, iter)
{
hashedEntries_.insert(iter().keyword(), &iter());
2010-08-24 15:19:39 +00:00
if (iter().keyword().isPattern())
{
patternEntries_.insert(&iter());
patternRegexps_.insert
(
autoPtr<regExp>(new regExp(iter().keyword()))
);
}
}
}
2010-08-24 15:19:39 +00:00
Foam::dictionary::dictionary
(
const dictionary* dictPtr
)
:
parent_(dictionary::null)
{
if (dictPtr)
{
operator=(*dictPtr);
}
}
Foam::dictionary::dictionary
(
const dictionary& parentDict,
const Xfer<dictionary>& dict
)
:
parent_(parentDict)
{
transfer(dict());
name() = parentDict.name() + "::" + name();
}
Foam::dictionary::dictionary
(
const Xfer<dictionary>& dict
)
:
parent_(dictionary::null)
{
transfer(dict());
}
Foam::autoPtr<Foam::dictionary> Foam::dictionary::clone() const
{
return autoPtr<dictionary>(new dictionary(*this));
}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
Foam::dictionary::~dictionary()
{
// cerr<< "~dictionary() " << name() << " " << long(this) << std::endl;
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
Foam::label Foam::dictionary::startLineNumber() const
{
if (size())
{
return first()->startLineNumber();
}
else
{
return -1;
}
}
Foam::label Foam::dictionary::endLineNumber() const
{
if (size())
{
return last()->endLineNumber();
}
else
{
return -1;
}
}
2010-08-24 15:19:39 +00:00
Foam::SHA1Digest Foam::dictionary::digest() const
{
OSHA1stream os;
// process entries
forAllConstIter(IDLList<entry>, *this, iter)
{
os << *iter;
}
return os.digest();
}
bool Foam::dictionary::found(const word& keyword, bool recursive) const
{
if (hashedEntries_.found(keyword))
{
return true;
}
else
{
2010-08-24 15:19:39 +00:00
if (patternEntries_.size())
{
DLList<entry*>::const_iterator wcLink =
patternEntries_.begin();
DLList<autoPtr<regExp> >::const_iterator reLink =
patternRegexps_.begin();
// Find in patterns using regular expressions only
if (findInPatterns(true, keyword, wcLink, reLink))
{
return true;
}
}
if (recursive && &parent_ != &dictionary::null)
{
return parent_.found(keyword, recursive);
}
else
{
return false;
}
}
}
const Foam::entry* Foam::dictionary::lookupEntryPtr
(
const word& keyword,
2010-08-24 15:19:39 +00:00
bool recursive,
bool patternMatch
) const
{
HashTable<entry*>::const_iterator iter = hashedEntries_.find(keyword);
if (iter == hashedEntries_.end())
{
2010-08-24 15:19:39 +00:00
if (patternMatch && patternEntries_.size())
{
DLList<entry*>::const_iterator wcLink =
patternEntries_.begin();
DLList<autoPtr<regExp> >::const_iterator reLink =
patternRegexps_.begin();
// Find in patterns using regular expressions only
if (findInPatterns(patternMatch, keyword, wcLink, reLink))
{
return wcLink();
}
}
if (recursive && &parent_ != &dictionary::null)
{
2010-08-24 15:19:39 +00:00
return parent_.lookupEntryPtr(keyword, recursive, patternMatch);
}
else
{
return NULL;
}
}
return iter();
}
Foam::entry* Foam::dictionary::lookupEntryPtr
(
const word& keyword,
2010-08-24 15:19:39 +00:00
bool recursive,
bool patternMatch
)
{
HashTable<entry*>::iterator iter = hashedEntries_.find(keyword);
if (iter == hashedEntries_.end())
{
2010-08-24 15:19:39 +00:00
if (patternMatch && patternEntries_.size())
{
DLList<entry*>::iterator wcLink =
patternEntries_.begin();
DLList<autoPtr<regExp> >::iterator reLink =
patternRegexps_.begin();
// Find in patterns using regular expressions only
if (findInPatterns(patternMatch, keyword, wcLink, reLink))
{
return wcLink();
}
}
if (recursive && &parent_ != &dictionary::null)
{
return const_cast<dictionary&>(parent_).lookupEntryPtr
(
keyword,
2010-08-24 15:19:39 +00:00
recursive,
patternMatch
);
}
else
{
return NULL;
}
}
return iter();
}
const Foam::entry& Foam::dictionary::lookupEntry
(
const word& keyword,
2010-08-24 15:19:39 +00:00
bool recursive,
bool patternMatch
) const
{
2010-08-24 15:19:39 +00:00
const entry* entryPtr = lookupEntryPtr(keyword, recursive, patternMatch);
if (entryPtr == NULL)
{
FatalIOErrorIn
(
2010-08-24 15:19:39 +00:00
"dictionary::lookupEntry(const word&, bool, bool) const",
*this
) << "keyword " << keyword << " is undefined in dictionary "
<< name()
<< exit(FatalIOError);
}
return *entryPtr;
}
Foam::ITstream& Foam::dictionary::lookup
(
const word& keyword,
2010-08-24 15:19:39 +00:00
bool recursive,
bool patternMatch
) const
{
2010-08-24 15:19:39 +00:00
return lookupEntry(keyword, recursive, patternMatch).stream();
}
bool Foam::dictionary::isDict(const word& keyword) const
{
2010-08-24 15:19:39 +00:00
// Find non-recursive with patterns
const entry* entryPtr = lookupEntryPtr(keyword, false, true);
if (entryPtr)
{
return entryPtr->isDict();
}
else
{
return false;
}
}
const Foam::dictionary* Foam::dictionary::subDictPtr(const word& keyword) const
{
2010-08-24 15:19:39 +00:00
const entry* entryPtr = lookupEntryPtr(keyword, false, true);
if (entryPtr)
{
return &entryPtr->dict();
}
else
{
return NULL;
}
}
const Foam::dictionary& Foam::dictionary::subDict(const word& keyword) const
{
2010-08-24 15:19:39 +00:00
const entry* entryPtr = lookupEntryPtr(keyword, false, true);
if (entryPtr == NULL)
{
FatalIOErrorIn
(
"dictionary::subDict(const word& keyword) const",
*this
) << "keyword " << keyword << " is undefined in dictionary "
<< name()
<< exit(FatalIOError);
}
return entryPtr->dict();
}
Foam::dictionary& Foam::dictionary::subDict(const word& keyword)
{
2010-08-24 15:19:39 +00:00
entry* entryPtr = lookupEntryPtr(keyword, false, true);
if (entryPtr == NULL)
{
FatalIOErrorIn
(
"dictionary::subDict(const word& keyword)",
*this
) << "keyword " << keyword << " is undefined in dictionary "
<< name()
<< exit(FatalIOError);
}
return entryPtr->dict();
}
2010-08-24 15:19:39 +00:00
Foam::dictionary Foam::dictionary::subOrEmptyDict
(
const word& keyword
) const
{
const entry* entryPtr = lookupEntryPtr(keyword, false, true);
if (entryPtr == NULL)
{
return dictionary(*this, dictionary(name() + "::" + keyword));
}
else
{
return entryPtr->dict();
}
}
Foam::wordList Foam::dictionary::toc() const
{
wordList keys(size());
2010-08-24 15:19:39 +00:00
label nKeys = 0;
forAllConstIter(IDLList<entry>, *this, iter)
{
2010-08-24 15:19:39 +00:00
keys[nKeys++] = iter().keyword();
}
return keys;
}
Foam::List<Foam::keyType> Foam::dictionary::keys(bool patterns) const
{
List<keyType> keys(size());
label nKeys = 0;
forAllConstIter(IDLList<entry>, *this, iter)
{
if (iter().keyword().isPattern() ? patterns : !patterns)
{
keys[nKeys++] = iter().keyword();
}
}
2010-08-24 15:19:39 +00:00
keys.setSize(nKeys);
return keys;
}
bool Foam::dictionary::add(entry* entryPtr, bool mergeEntry)
{
2010-08-24 15:19:39 +00:00
HashTable<entry*>::iterator iter = hashedEntries_.find
(
entryPtr->keyword()
);
if (mergeEntry && iter != hashedEntries_.end())
{
// merge dictionary with dictionary
if (iter()->isDict() && entryPtr->isDict())
{
iter()->dict().merge(entryPtr->dict());
delete entryPtr;
return true;
}
else
{
// replace existing dictionary with entry or vice versa
IDLList<entry>::replace(iter(), entryPtr);
delete iter();
hashedEntries_.erase(iter);
if (hashedEntries_.insert(entryPtr->keyword(), entryPtr))
{
2010-08-24 15:19:39 +00:00
entryPtr->name() = name() + "::" + entryPtr->keyword();
if (entryPtr->keyword().isPattern())
{
patternEntries_.insert(entryPtr);
patternRegexps_.insert
(
autoPtr<regExp>(new regExp(entryPtr->keyword()))
);
}
return true;
}
else
{
2010-08-24 15:19:39 +00:00
IOWarningIn("dictionary::add(entry*, bool)", (*this))
<< "problem replacing entry "<< entryPtr->keyword()
<< " in dictionary " << name() << endl;
IDLList<entry>::remove(entryPtr);
delete entryPtr;
return false;
}
}
}
if (hashedEntries_.insert(entryPtr->keyword(), entryPtr))
{
2010-08-24 15:19:39 +00:00
entryPtr->name() = name() + "::" + entryPtr->keyword();
IDLList<entry>::append(entryPtr);
2010-08-24 15:19:39 +00:00
if (entryPtr->keyword().isPattern())
{
patternEntries_.insert(entryPtr);
patternRegexps_.insert
(
autoPtr<regExp>(new regExp(entryPtr->keyword()))
);
}
return true;
}
else
{
2010-08-24 15:19:39 +00:00
IOWarningIn("dictionary::add(entry*, bool)", (*this))
<< "attempt to add entry "<< entryPtr->keyword()
<< " which already exists in dictionary " << name()
<< endl;
delete entryPtr;
return false;
}
}
void Foam::dictionary::add(const entry& e, bool mergeEntry)
{
add(e.clone(*this).ptr(), mergeEntry);
}
2010-08-24 15:19:39 +00:00
void Foam::dictionary::add(const keyType& k, const word& w, bool overwrite)
{
add(new primitiveEntry(k, token(w)), overwrite);
}
2010-08-24 15:19:39 +00:00
void Foam::dictionary::add
(
const keyType& k,
const Foam::string& s,
bool overwrite
)
{
add(new primitiveEntry(k, token(s)), overwrite);
}
2010-08-24 15:19:39 +00:00
void Foam::dictionary::add(const keyType& k, const label l, bool overwrite)
{
add(new primitiveEntry(k, token(l)), overwrite);
}
2010-08-24 15:19:39 +00:00
void Foam::dictionary::add(const keyType& k, const scalar s, bool overwrite)
{
add(new primitiveEntry(k, token(s)), overwrite);
}
2010-08-24 15:19:39 +00:00
void Foam::dictionary::add
(
const keyType& k,
const dictionary& d,
bool mergeEntry
)
{
add(new dictionaryEntry(k, *this, d), mergeEntry);
}
void Foam::dictionary::set(entry* entryPtr)
{
2010-08-24 15:19:39 +00:00
entry* existingPtr = lookupEntryPtr(entryPtr->keyword(), false, true);
// clear dictionary so merge acts like overwrite
if (existingPtr && existingPtr->isDict())
{
existingPtr->dict().clear();
}
add(entryPtr, true);
}
void Foam::dictionary::set(const entry& e)
{
set(e.clone(*this).ptr());
}
2010-08-24 15:19:39 +00:00
void Foam::dictionary::set(const keyType& k, const dictionary& d)
{
set(new dictionaryEntry(k, *this, d));
}
bool Foam::dictionary::remove(const word& Keyword)
{
HashTable<entry*>::iterator iter = hashedEntries_.find(Keyword);
if (iter != hashedEntries_.end())
{
2010-08-24 15:19:39 +00:00
// Delete from patterns first
DLList<entry*>::iterator wcLink =
patternEntries_.begin();
DLList<autoPtr<regExp> >::iterator reLink =
patternRegexps_.begin();
// Find in pattern using exact match only
if (findInPatterns(false, Keyword, wcLink, reLink))
{
patternEntries_.remove(wcLink);
patternRegexps_.remove(reLink);
}
IDLList<entry>::remove(iter());
delete iter();
hashedEntries_.erase(iter);
return true;
}
else
{
return false;
}
}
bool Foam::dictionary::changeKeyword
(
2010-08-24 15:19:39 +00:00
const keyType& oldKeyword,
const keyType& newKeyword,
bool forceOverwrite
)
{
// no change
if (oldKeyword == newKeyword)
{
return false;
}
HashTable<entry*>::iterator iter = hashedEntries_.find(oldKeyword);
// oldKeyword not found - do nothing
if (iter == hashedEntries_.end())
{
return false;
}
2010-08-24 15:19:39 +00:00
if (iter()->keyword().isPattern())
{
FatalErrorIn
(
"dictionary::changeKeyword(const word&, const word&, bool)"
) << "Old keyword "<< oldKeyword
<< " is a pattern."
<< "Pattern replacement not yet implemented."
<< exit(FatalError);
}
HashTable<entry*>::iterator iter2 = hashedEntries_.find(newKeyword);
// newKeyword already exists
if (iter2 != hashedEntries_.end())
{
if (forceOverwrite)
{
2010-08-24 15:19:39 +00:00
if (iter2()->keyword().isPattern())
{
// Delete from patterns first
DLList<entry*>::iterator wcLink =
patternEntries_.begin();
DLList<autoPtr<regExp> >::iterator reLink =
patternRegexps_.begin();
// Find in patterns using exact match only
if (findInPatterns(false, iter2()->keyword(), wcLink, reLink))
{
patternEntries_.remove(wcLink);
patternRegexps_.remove(reLink);
}
}
IDLList<entry>::replace(iter2(), iter());
delete iter2();
hashedEntries_.erase(iter2);
2010-08-24 15:19:39 +00:00
}
else
{
2010-08-24 15:19:39 +00:00
WarningIn
(
"dictionary::changeKeyword(const word&, const word&, bool)"
) << "cannot rename keyword "<< oldKeyword
<< " to existing keyword " << newKeyword
<< " in dictionary " << name() << endl;
return false;
}
}
// change name and HashTable, but leave DL-List untouched
iter()->keyword() = newKeyword;
2010-08-24 15:19:39 +00:00
iter()->name() = name() + "::" + newKeyword;
hashedEntries_.erase(oldKeyword);
hashedEntries_.insert(newKeyword, iter());
2010-08-24 15:19:39 +00:00
if (newKeyword.isPattern())
{
patternEntries_.insert(iter());
patternRegexps_.insert
(
autoPtr<regExp>(new regExp(newKeyword))
);
}
return true;
}
bool Foam::dictionary::merge(const dictionary& dict)
{
// Check for assignment to self
if (this == &dict)
{
FatalErrorIn("dictionary::merge(const dictionary&)")
<< "attempted merge to self for dictionary " << name()
<< abort(FatalError);
}
bool changed = false;
2010-08-24 15:19:39 +00:00
forAllConstIter(IDLList<entry>, dict, iter)
{
2010-08-24 15:19:39 +00:00
HashTable<entry*>::iterator fnd = hashedEntries_.find(iter().keyword());
2010-08-24 15:19:39 +00:00
if (fnd != hashedEntries_.end())
{
// Recursively merge sub-dictionaries
// TODO: merge without copying
2010-08-24 15:19:39 +00:00
if (fnd()->isDict() && iter().isDict())
{
2010-08-24 15:19:39 +00:00
if (fnd()->dict().merge(iter().dict()))
{
changed = true;
}
}
else
{
add(iter().clone(*this).ptr(), true);
changed = true;
}
}
else
{
// not found - just add
add(iter().clone(*this).ptr());
changed = true;
}
}
return changed;
}
void Foam::dictionary::clear()
{
IDLList<entry>::clear();
hashedEntries_.clear();
2010-08-24 15:19:39 +00:00
patternEntries_.clear();
patternRegexps_.clear();
}
void Foam::dictionary::transfer(dictionary& dict)
{
// changing parents probably doesn't make much sense,
// but what about the names?
name() = dict.name();
IDLList<entry>::transfer(dict);
hashedEntries_.transfer(dict.hashedEntries_);
patternEntries_.transfer(dict.patternEntries_);
patternRegexps_.transfer(dict.patternRegexps_);
}
Foam::Xfer<Foam::dictionary> Foam::dictionary::xfer()
{
return xferMove(*this);
}
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
Foam::ITstream& Foam::dictionary::operator[](const word& keyword) const
{
return lookup(keyword);
}
2010-08-24 15:19:39 +00:00
void Foam::dictionary::operator=(const dictionary& rhs)
{
// Check for assignment to self
2010-08-24 15:19:39 +00:00
if (this == &rhs)
{
FatalErrorIn("dictionary::operator=(const dictionary&)")
<< "attempted assignment to self for dictionary " << name()
<< abort(FatalError);
}
2010-08-24 15:19:39 +00:00
name() = rhs.name();
clear();
// Create clones of the entries in the given dictionary
// resetting the parentDict to this dictionary
2010-08-24 15:19:39 +00:00
forAllConstIter(IDLList<entry>, rhs, iter)
{
2010-08-24 15:19:39 +00:00
add(iter().clone(*this).ptr());
}
}
2010-08-24 15:19:39 +00:00
void Foam::dictionary::operator+=(const dictionary& rhs)
{
// Check for assignment to self
2010-08-24 15:19:39 +00:00
if (this == &rhs)
{
FatalErrorIn("dictionary::operator+=(const dictionary&)")
<< "attempted addition assignment to self for dictionary " << name()
<< abort(FatalError);
}
2010-08-24 15:19:39 +00:00
forAllConstIter(IDLList<entry>, rhs, iter)
{
add(iter().clone(*this).ptr());
}
}
2010-08-24 15:19:39 +00:00
void Foam::dictionary::operator|=(const dictionary& rhs)
{
// Check for assignment to self
2010-08-24 15:19:39 +00:00
if (this == &rhs)
{
FatalErrorIn("dictionary::operator|=(const dictionary&)")
<< "attempted assignment to self for dictionary " << name()
<< abort(FatalError);
}
2010-08-24 15:19:39 +00:00
forAllConstIter(IDLList<entry>, rhs, iter)
{
if (!found(iter().keyword()))
{
add(iter().clone(*this).ptr());
}
}
}
2010-08-24 15:19:39 +00:00
void Foam::dictionary::operator<<=(const dictionary& rhs)
{
// Check for assignment to self
2010-08-24 15:19:39 +00:00
if (this == &rhs)
{
FatalErrorIn("dictionary::operator<<=(const dictionary&)")
<< "attempted assignment to self for dictionary " << name()
<< abort(FatalError);
}
2010-08-24 15:19:39 +00:00
forAllConstIter(IDLList<entry>, rhs, iter)
{
set(iter().clone(*this).ptr());
}
}
/* * * * * * * * * * * * * * * * Global operators * * * * * * * * * * * * * */
Foam::dictionary Foam::operator+
(
const dictionary& dict1,
const dictionary& dict2
)
{
dictionary sum(dict1);
sum += dict2;
return sum;
}
Foam::dictionary Foam::operator|
(
const dictionary& dict1,
const dictionary& dict2
)
{
dictionary sum(dict1);
sum |= dict2;
return sum;
}
// ************************************************************************* //