extendedEdgeMeshFormat.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2013-2017 OpenFOAM Foundation
9  Copyright (C) 2019 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
12  This file is part of OpenFOAM.
13 
14  OpenFOAM is free software: you can redistribute it and/or modify it
15  under the terms of the GNU General Public License as published by
16  the Free Software Foundation, either version 3 of the License, or
17  (at your option) any later version.
18 
19  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22  for more details.
23 
24  You should have received a copy of the GNU General Public License
25  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26 
27 \*---------------------------------------------------------------------------*/
28 
29 #include "extendedEdgeMeshFormat.H"
30 #include "IFstream.H"
31 #include "Time.H"
33 
34 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
35 
36 Foam::fileFormats::extendedEdgeMeshFormat::extendedEdgeMeshFormat
37 (
38  const fileName& filename
39 )
40 {
41  read(filename);
42 }
43 
44 
45 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
46 
48 (
49  const fileName& filename
50 )
51 {
52  clear();
53 
54  // Use dummy Time for objectRegistry
55  autoPtr<Time> dummyTimePtr(Time::New());
56 
57  // Construct IOobject to re-use the headerOk & readHeader
58  // (so we can read ascii and binary)
59  IOobject io
60  (
61  filename,
62  *dummyTimePtr,
63  IOobject::NO_READ,
64  IOobject::NO_WRITE,
65  false
66  );
67 
68  if (!io.typeHeaderOk<extendedFeatureEdgeMesh>(false))
69  {
71  << "Cannot read file " << filename
72  << exit(FatalError);
73  }
74 
75  const fileName fName(typeFilePath<extendedFeatureEdgeMesh>(io));
76 
77  autoPtr<IFstream> isPtr(new IFstream(fName));
78  bool ok = false;
79  if (isPtr().good())
80  {
81  Istream& is = isPtr();
82  ok = io.readHeader(is);
83 
84  if (ok)
85  {
86  // Use extendedEdgeMesh IO
87  is >> *this;
88  ok = is.good();
89  }
90  }
91 
92  return ok;
93 }
94 
95 
96 // ************************************************************************* //
Foam::IOobject
Defines the attributes of an object for which implicit objectRegistry management is supported,...
Definition: IOobject.H:169
Foam::fileName
A class for handling file names.
Definition: fileName.H:73
Foam::IFstream
Input from file stream, using an ISstream.
Definition: IFstream.H:53
Foam::IOobject::typeHeaderOk
bool typeHeaderOk(const bool checkType=true, const bool search=true, const bool verbose=true)
Read header (uses typeFilePath to find file) and check its info.
Definition: IOobjectTemplates.C:39
extendedFeatureEdgeMesh.H
Foam::IOstream::good
bool good() const noexcept
True if next operation might succeed.
Definition: IOstream.H:233
Foam::IOobject::readHeader
bool readHeader(Istream &is)
Definition: IOobjectReadHeader.C:165
Foam::blockMeshTools::read
void read(Istream &, label &val, const dictionary &)
In-place read with dictionary lookup.
Definition: blockMeshTools.C:57
Foam::Istream
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition: Istream.H:61
IFstream.H
Foam::FatalError
error FatalError
Foam::fileFormats::extendedEdgeMeshFormat::read
virtual bool read(const fileName &)
Read from file.
Definition: extendedEdgeMeshFormat.C:48
Foam::exit
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:130
extendedEdgeMeshFormat.H
Foam::New
tmp< DimensionedField< TypeR, GeoMesh > > New(const tmp< DimensionedField< TypeR, GeoMesh >> &tdf1, const word &name, const dimensionSet &dimensions)
Global function forwards to reuseTmpDimensionedField::New.
Definition: DimensionedFieldReuseFunctions.H:105
Time.H
Foam::autoPtr
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
Definition: HashPtrTable.H:53
FatalErrorInFunction
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:453
clear
patchWriters clear()
Foam::extendedFeatureEdgeMesh
extendedEdgeMesh + IO.
Definition: extendedFeatureEdgeMesh.H:56