/usr/include/palabos/io/serializerIO.h is in libplb-dev 1.5~r1+repack1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | /* This file is part of the Palabos library.
*
* Copyright (C) 2011-2015 FlowKit Sarl
* Route d'Oron 2
* 1010 Lausanne, Switzerland
* E-mail contact: contact@flowkit.com
*
* The most recent release of Palabos can be downloaded at
* <http://www.palabos.org/>
*
* The library Palabos is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SERIALIZER_IO_H
#define SERIALIZER_IO_H
#include "core/globalDefs.h"
#include "core/serializer.h"
#include <iosfwd>
#include <iomanip>
namespace plb {
/// Take a Serializer, convert into Base64 format (ASCII based binary representation), and stream into output stream.
/** Ahead of the data, an integer value is encoded which stands for the total size of
* serialized data. For compatibility with the VTK file format (as of this writing),
* you can enforce that the type of this variable is converted to "unsigned int".
* Note that this may lead to errors on 64-bit platforms, if the total amount of
* data exceeds 2 GB.
*/
void serializerToBase64Stream(DataSerializer const* serializer, std::ostream* ostr, bool enforceUint=false);
/// Take an input stream with Base64 encoded binary content, and stream into an unSerializer
/** If the integer value which indicates the amount of data to be unSerialized is of type
* "unsigned int", this fact can be enforced with the flag enforceUplint to ensure
* compatibility between 32-bit and 64-bit platforms.
*/
void base64StreamToUnSerializer(std::istream* istr, DataUnSerializer* unSerializer, bool enforceUint=false);
/// Take a Serializer, convert and stream into output in ASCII format.
/** Number of digits in the ASCII representation of numbers is given by the variable numDigits.
*/
template<typename T>
void serializerToAsciiStream(DataSerializer const* serializer, std::ostream* ostr, plint numDigits=8);
/// Take an UnSerializer and fill it with data from an ASCII-format input stream.
/** Number of digits in the ASCII representation of numbers is given by the variable numDigits.
*/
template<typename T>
void asciiStreamToUnSerializer(std::istream* istr, DataUnSerializer* unSerializer);
/* *************** Class AsciiWriter ******************************** */
template<typename T>
class AsciiWriter : public SerializedWriter {
public:
AsciiWriter(std::ostream* ostr_, plint numDigits_);
virtual AsciiWriter<T>* clone() const;
virtual void writeHeader(pluint dataSize);
virtual void writeData(char const* dataBuffer, pluint bufferSize);
private:
std::ostream* ostr;
plint numDigits;
};
/* *************** Class AsciiReader ******************************** */
template<typename T>
class AsciiReader : public SerializedReader {
public:
AsciiReader(std::istream* istr_);
virtual AsciiReader<T>* clone() const;
virtual void readHeader(pluint dataSize) const;
virtual void readData(char* dataBuffer, pluint bufferSize) const;
private:
std::istream* istr;
};
template<typename T>
void serializerToAsciiStream(DataSerializer const* serializer, std::ostream* ostr, plint numDigits);
template<typename T>
void asciiStreamToUnSerializer(std::istream* istr, DataUnSerializer* unSerializer);
} // namespace plb
#endif // SERIALIZER_IO_H
|