BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / utilities / mesh / manipulation / setSet / writeFuns.H
blob73e77eef2d79ecdb3d3b7a372c1dfbde3722a3f7
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::writeFuns
27 Description
28     Various functions for collecting and writing binary data.
30 SourceFiles
31     writeFuns.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef writeFuns_H
36 #define writeFuns_H
38 #include "labelList.H"
39 #include "floatScalar.H"
40 #include "OFstream.H"
41 #include "DynamicList.H"
42 #include "point.H"
44 using namespace Foam;
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 namespace Foam
52 /*---------------------------------------------------------------------------*\
53                            Class writeFuns Declaration
54 \*---------------------------------------------------------------------------*/
56 class writeFuns
58     //- Swap halves of word.
59     static void swapWord(label& word32);
60     static void swapWords(const label nWords, label* words32);
62 public:
64     //- Write ascii or binary. If binary optionally in-place swaps argument
65     static void write(std::ostream&, const bool, DynamicList<floatScalar>&);
66     static void write(std::ostream&, const bool, DynamicList<label>&);
68     //- Write ascii or binary. If binary optionally in-place swaps argument
69     static void write(std::ostream&, const bool, List<floatScalar>&);
70     static void write(std::ostream&, const bool, labelList&);
72     //- Append point to DynamicList
73     static void insert(const point&, DynamicList<floatScalar>& dest);
75     //- Append elements of labelList to DynamicList
76     static void insert(const labelList&, DynamicList<label>&);
77     //- Append elements of scalarList to DynamicList
78     static void insert(const List<scalar>&, DynamicList<floatScalar>&);
80     //- Append elements of scalarList to DynamicList using map
81     static void insert
82     (
83         const labelList& map,
84         const List<scalar>& source,
85         DynamicList<floatScalar>&
86     );
88     //- Append points to DynamicList of floats
89     static void insert(const List<point>& source, DynamicList<floatScalar>&);
90     //- As above but using map
91     static void insert
92     (
93         const labelList& map,
94         const List<point>& source,
95         DynamicList<floatScalar>&
96     );
101 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
103 } // End namespace Foam
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 #endif
110 // ************************************************************************* //