/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2017-2018 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 "HashPtrTable.H"
#include "Istream.H"
#include "Ostream.H"
#include "INew.H"
#include "dictionary.H"
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //
template
template
void Foam::HashPtrTable::readIstream
(
Istream& is,
const INew& inew
)
{
is.fatalCheck(FUNCTION_NAME);
token firstToken(is);
is.fatalCheck
(
"HashPtrTable::readIstream : "
"reading first token"
);
if (firstToken.isLabel())
{
const label len = firstToken.labelToken();
// Read beginning of contents
const char delimiter = is.readBeginList("HashPtrTable");
if (len)
{
if (2*len > this->capacity())
{
this->resize(2*len);
}
if (delimiter == token::BEGIN_LIST)
{
for (label i=0; i> key;
this->set(key, inew(key, is).ptr());
is.fatalCheck
(
"HashPtrTable::readIstream : "
"reading entry"
);
}
}
else
{
FatalIOErrorInFunction(is)
<< "incorrect first token, '(', found " << firstToken.info()
<< exit(FatalIOError);
}
}
// Read end of contents
is.readEndList("HashPtrTable");
}
else if (firstToken.isPunctuation())
{
if (firstToken.pToken() != token::BEGIN_LIST)
{
FatalIOErrorInFunction(is)
<< "incorrect first token, '(', found " << firstToken.info()
<< exit(FatalIOError);
}
token lastToken(is);
while
(
!(
lastToken.isPunctuation()
&& lastToken.pToken() == token::END_LIST
)
)
{
is.putBack(lastToken);
Key key;
is >> key;
this->set(key, inew(key, is).ptr());
is.fatalCheck
(
"HashPtrTable::readIstream : "
"reading entry"
);
is >> lastToken;
}
}
else
{
FatalIOErrorInFunction(is)
<< "incorrect first token, expected or '(', found "
<< firstToken.info()
<< exit(FatalIOError);
}
is.fatalCheck(FUNCTION_NAME);
}
template
template
void Foam::HashPtrTable::read
(
const dictionary& dict,
const INew& inew
)
{
for (const entry& e : dict)
{
this->set(e.keyword(), inew(e.dict()).ptr());
}
}
template
void Foam::HashPtrTable::write(Ostream& os) const
{
for (const_iterator iter = this->cbegin(); iter != this->cend(); ++iter)
{
const T* ptr = iter.object();
if (ptr)
{
ptr->write(os);
}
}
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template
template
Foam::HashPtrTable::HashPtrTable(Istream& is, const INew& inew)
{
this->readIstream(is, inew);
}
template
Foam::HashPtrTable::HashPtrTable(Istream& is)
{
this->readIstream(is, INew());
}
template
Foam::HashPtrTable::HashPtrTable(const dictionary& dict)
{
this->read(dict, INew());
}
// * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
template
Foam::Istream& Foam::operator>>(Istream& is, HashPtrTable& tbl)
{
tbl.clear();
tbl.readIstream(is, INew());
return is;
}
template
Foam::Ostream& Foam::operator<<
(
Ostream& os,
const HashPtrTable& tbl
)
{
const label len = tbl.size();
if (len)
{
// Size and start list delimiter
os << nl << len << nl << token::BEGIN_LIST << nl;
// Contents
for (auto iter = tbl.cbegin(); iter != tbl.cend(); ++iter)
{
const T* ptr = iter.object();
os << iter.key();
if (ptr)
{
os << token::SPACE << *ptr;
}
os << nl;
}
os << token::END_LIST; // End list delimiter
}
else
{
// Empty hash table
os << len << token::BEGIN_LIST << token::END_LIST;
}
os.check(FUNCTION_NAME);
return os;
}
// ************************************************************************* //