Loading...
Searching...
No Matches
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-------------------------------------------------------------------------------
11License
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
30#include "IFstream.H"
31#include "Time.H"
33
34// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
35
36Foam::fileFormats::extendedEdgeMeshFormat::extendedEdgeMeshFormat
37(
38 const fileName& filename
39)
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)
60 (
61 filename,
62 *dummyTimePtr,
66 );
67
68 if (!io.typeHeaderOk<extendedFeatureEdgeMesh>(false))
69 {
71 << "Cannot read file " << filename
72 << exit(FatalError);
73 }
74
75 const fileName fName(io.typeFilePath<extendedFeatureEdgeMesh>());
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// ************************************************************************* //
Input from file stream as an ISstream, normally using std::ifstream for the actual input.
Definition IFstream.H:55
@ NO_REGISTER
Do not request registration (bool: false).
@ NO_READ
Nothing to be read.
@ NO_WRITE
Ignore writing from objectRegistry::writeObject().
Defines the attributes of an object for which implicit objectRegistry management is supported,...
Definition IOobject.H:191
bool good() const noexcept
True if next operation might succeed.
Definition IOstream.H:281
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition Istream.H:60
static autoPtr< Time > New()
Construct (dummy) Time - no functionObjects or libraries.
Definition TimeNew.C:26
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
Definition autoPtr.H:65
virtual bool read(const fileName &)
Read from file.
A class for handling file names.
Definition fileName.H:75
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition error.H:600
const auto & io
surface1 clear()
error FatalError
Error stream (stdout output on all processes), with additional 'FOAM FATAL ERROR' header text and sta...
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition errorManip.H:125