initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / surfMesh / UnsortedMeshedSurface / UnsortedMeshedSurfaceNew.C
blob44f4dcd4de3025523dd537b7df9ef9ac8397f68a
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "UnsortedMeshedSurface.H"
29 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
31 template<class Face>
32 Foam::autoPtr< Foam::UnsortedMeshedSurface<Face> >
33 Foam::UnsortedMeshedSurface<Face>::New(const fileName& name, const word& ext)
35     if (debug)
36     {
37         Info<< "UnsortedMeshedSurface::New(const fileName&, const word&) : "
38             "constructing UnsortedMeshedSurface"
39             << endl;
40     }
42     typename fileExtensionConstructorTable::iterator cstrIter =
43         fileExtensionConstructorTablePtr_->find(ext);
45     if (cstrIter == fileExtensionConstructorTablePtr_->end())
46     {
47         // no direct reader, use the parent if possible
48         wordHashSet supported = ParentType::readTypes();
49         if (supported.found(ext))
50         {
51             // create indirectly
52             autoPtr<UnsortedMeshedSurface<Face> > surf
53             (
54                 new UnsortedMeshedSurface<Face>
55             );
56             surf().transfer(ParentType::New(name, ext)());
58             return surf;
59         }
61         // nothing left but to issue an error
62         supported += readTypes();
64         FatalErrorIn
65         (
66             "UnsortedMeshedSurface<Face>::New"
67             "(const fileName&, const word&) : "
68             "constructing UnsortedMeshedSurface"
69         )   << "Unknown file extension " << ext << nl << nl
70             << "Valid types are:" << nl
71             << supported
72             << exit(FatalError);
73     }
75     return autoPtr<UnsortedMeshedSurface<Face> >(cstrIter()(name));
79 template<class Face>
80 Foam::autoPtr< Foam::UnsortedMeshedSurface<Face> >
81 Foam::UnsortedMeshedSurface<Face>::New(const fileName& name)
83     word ext = name.ext();
84     if (ext == "gz")
85     {
86         ext = name.lessExt().ext();
87     }
89     return New(name, ext);
93 // ************************************************************************* //