mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- use ignore instead of seekg/tellg to swallow input (robuster) - check for bad gcount() values - wrap Foam::fileSize() compressed/uncompressed handling into IFstream. - improve handling of compressed files in masterUncollatedFileOperation. Previously read into a string via stream iterators. Now read chunk-wise into a List of char for fewer reallocations.
156 lines
4.6 KiB
C++
156 lines
4.6 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2018-2023 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 <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::Detail::STLAsciiParse
|
|
|
|
Description
|
|
Internal class used when parsing STL ASCII format
|
|
|
|
SourceFiles
|
|
STLAsciiParse.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef Foam_STLAsciiParse_H
|
|
#define Foam_STLAsciiParse_H
|
|
|
|
#include "DynamicList.H"
|
|
#include "HashTable.H"
|
|
#include "STLpoint.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace Detail
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class Detail::STLAsciiParse Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class STLAsciiParse
|
|
{
|
|
protected:
|
|
|
|
// Protected Data
|
|
|
|
bool sorted_;
|
|
label groupId_; // The current solid group
|
|
label lineNum_;
|
|
|
|
//- The number of local points on the current facet
|
|
int nFacetPoints_;
|
|
|
|
//- Current vertex component when reading 'vertex'
|
|
int nVertexCmpt_;
|
|
|
|
//- Scratch space for reading 'vertex'
|
|
STLpoint currVertex_;
|
|
|
|
DynamicList<STLpoint> points_;
|
|
DynamicList<label> facets_;
|
|
DynamicList<word> names_;
|
|
DynamicList<label> sizes_;
|
|
HashTable<label> nameLookup_;
|
|
|
|
|
|
// Protected Member Functions
|
|
|
|
//- Action when entering 'solid'
|
|
inline void beginSolid(word solidName);
|
|
|
|
//- Action when entering 'facet'
|
|
inline void beginFacet();
|
|
|
|
//- Reset vertex component to zero
|
|
inline void resetVertex();
|
|
|
|
//- Add next vertex component. On each third call, adds the point.
|
|
// \return true when point has been added (on the last component)
|
|
inline bool addVertexComponent(float val);
|
|
|
|
//- Add next vertex component. On each third call, adds the point.
|
|
// \return true when point has been added (on the last component)
|
|
inline bool addVertexComponent(const char* text);
|
|
|
|
//- Action on 'endfacet'
|
|
inline void endFacet();
|
|
|
|
|
|
//- No copy construct
|
|
STLAsciiParse(const STLAsciiParse&) = delete;
|
|
|
|
//- No copy assignment
|
|
void operator=(const STLAsciiParse&) = delete;
|
|
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Construct with the estimated number of triangles in the STL
|
|
inline STLAsciiParse(const label nTrisEstimated);
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Reset stored values
|
|
inline void clear();
|
|
|
|
//- Do all the solid groups appear in order?
|
|
bool is_sorted() const noexcept { return sorted_; }
|
|
|
|
//- A list of unstitched triangle points
|
|
DynamicList<STLpoint>& points() noexcept { return points_; }
|
|
|
|
//- A list of facet IDs (group IDs)
|
|
//- corresponds to the number of triangles
|
|
DynamicList<label>& facets() noexcept { return facets_; }
|
|
|
|
//- Solid names in the order of their appearance.
|
|
DynamicList<word>& names() noexcept { return names_; }
|
|
|
|
//- Solid sizes in the order of their appearance.
|
|
DynamicList<label>& sizes() noexcept { return sizes_; }
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Detail
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "STLAsciiParseI.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|