BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / surfMesh / surfaceFormats / ofs / OFSsurfaceFormat.H
blobd80e0b3bff81dab4da1cfffbe005b1fcd1769433
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::fileFormats::OFSsurfaceFormat
27 Description
28     Provide a means of reading/writing the single-file OpenFOAM surface format.
30 Note
31     This class provides more methods than the regular surface format interface.
33 SourceFiles
34     OFSsurfaceFormat.C
36 \*---------------------------------------------------------------------------*/
38 #ifndef OFSsurfaceFormat_H
39 #define OFSsurfaceFormat_H
41 #include "Ostream.H"
42 #include "OFstream.H"
43 #include "MeshedSurface.H"
44 #include "MeshedSurfaceProxy.H"
45 #include "UnsortedMeshedSurface.H"
46 #include "OFSsurfaceFormatCore.H"
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 namespace Foam
52 namespace fileFormats
55 /*---------------------------------------------------------------------------*\
56                       Class OFSsurfaceFormat Declaration
57 \*---------------------------------------------------------------------------*/
59 template<class Face>
60 class OFSsurfaceFormat
62     public MeshedSurface<Face>,
63     public OFSsurfaceFormatCore
65     // Private Member Functions
67         //- Disallow default bitwise copy construct
68         OFSsurfaceFormat(const OFSsurfaceFormat<Face>&);
70         //- Disallow default bitwise assignment
71         void operator=(const OFSsurfaceFormat<Face>&);
74 public:
76     // Constructors
78         //- Construct from file name
79         OFSsurfaceFormat(const fileName&);
82     // Selectors
84         //- Read file and return surface
85         static autoPtr<MeshedSurface<Face> > New(const fileName& name)
86         {
87             return autoPtr<MeshedSurface<Face> >
88             (
89                 new OFSsurfaceFormat<Face>(name)
90             );
91         }
94     //- Destructor
95     virtual ~OFSsurfaceFormat()
96     {}
100     // Member Functions
102         //- Read surface mesh components
103         static bool read
104         (
105             Istream&,
106             pointField&,
107             List<Face>&,
108             List<surfZone>&
109         );
111         //- Read MeshedSurface
112         static bool read
113         (
114             Istream&,
115             MeshedSurface<Face>&
116         );
118         //- Read UnsortedMeshedSurface
119         //  The output is sorted by zones
120         static bool read
121         (
122             Istream&,
123             UnsortedMeshedSurface<Face>&
124         );
126         //- Write surface mesh components by proxy
127         static void write(const fileName&, const MeshedSurfaceProxy<Face>&);
129         //- Read from file
130         virtual bool read(const fileName&);
132         //- Write object
133         virtual void write(const fileName& name) const
134         {
135             write(name, MeshedSurfaceProxy<Face>(*this));
136         }
140 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
142 } // End namespace fileFormats
143 } // End namespace Foam
145 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
147 #ifdef NoRepository
148 #   include "OFSsurfaceFormat.C"
149 #endif
151 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
153 #endif
155 // ************************************************************************* //