/usr/include/ossim/base/ossimIoStream.h is in libossim-dev 2.2.2-1.
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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | //---
//
// License: MIT
//
// Author: Garrett Potts
//
// Description:
//
// Class declarations for:
//
// ossimIStream
// ossimOStream
// ossimIOStream
// ossimIOMemoryStream
// ossimIMemoryStream
// ossimOMemoryStream
// ossimIOFStream
// ossimIFStream
// ossimOFStream
//
//---
// $Id$
#ifndef ossimIoStream_HEADER
#define ossimIoStream_HEADER 1
#include <ossim/base/ossimIosFwd.h>
// NOTE: All below includes will go away once deprecated code is replaced.
// drb 04 Nov. 2016
#include <ossim/base/ossimConstants.h>
#include <ossim/base/ossimStreamBase.h>
#include <ossim/base/ossimString.h>
#include <istream>
#include <iostream>
#include <ostream>
#include <fstream>
#include <sstream>
// needed by std::shared_ptr
#include <memory>
//---
// Depreciated:
//---
class OSSIM_DLL ossimIStream : public ossimStreamBase, public std::basic_istream<char>
{
public:
//ossimIStream();
ossimIStream(std::streambuf* sb);
virtual ~ossimIStream();
};
class OSSIM_DLL ossimOStream : public ossimStreamBase, public std::basic_ostream<char>
{
public:
//ossimOStream();
ossimOStream(std::streambuf* sb);
virtual ~ossimOStream();
};
class OSSIM_DLL ossimIOStream : public ossimStreamBase, public std::basic_iostream<char>
{
public:
//ossimIOStream();
ossimIOStream(std::streambuf* sb);
virtual ~ossimIOStream();
};
class OSSIM_DLL ossimIOMemoryStream : public ossimIOStream
{
public:
ossimIOMemoryStream();
virtual ~ossimIOMemoryStream();
// ??? (drb)
bool is_open()const;
// ??? (drb)
virtual void open(const char* /* protocolString */,
int /* openMode */);
ossimString str();
// ??? (drb)
virtual void close();
// ??? (drb) std::streamsize
ossim_uint64 size()const;
protected:
std::stringbuf theBuf;
};
class OSSIM_DLL ossimIMemoryStream : public ossimIStream
{
public:
ossimIMemoryStream(const ossimString& inputBuf);
virtual ~ossimIMemoryStream();
bool is_open()const;
ossim_uint64 size()const;
virtual void open(const char* /* protocolString */,
int /* openMode */ );
virtual void close();
ossimString str();
protected:
std::stringbuf theBuf;
};
class OSSIM_DLL ossimOMemoryStream : public ossimOStream
{
public:
ossimOMemoryStream();
virtual ~ossimOMemoryStream();
bool is_open()const;
ossim_uint64 size()const;
virtual void open(const char* /* protocolString */,
int /* openMode */ );
virtual void close();
ossimString str();
protected:
std::stringbuf theBuf;
};
class OSSIM_DLL ossimIOFStream : public ossimStreamBase, public std::basic_fstream<char>
{
public:
ossimIOFStream();
ossimIOFStream(const char* name,
std::ios_base::openmode mode =
std::ios_base::in | std::ios_base::out);
virtual ~ossimIOFStream();
};
class OSSIM_DLL ossimIFStream : public ossimStreamBase, public std::basic_ifstream<char>
{
public:
ossimIFStream();
ossimIFStream(const char* file,
std::ios_base::openmode mode = std::ios_base::in);
virtual ~ossimIFStream();
};
class OSSIM_DLL ossimOFStream : public ossimStreamBase, public std::basic_ofstream<char>
{
public:
ossimOFStream();
ossimOFStream(const char* name,
std::ios_base::openmode mode =
std::ios_base::out|std::ios_base::trunc);
virtual ~ossimOFStream();
};
/**
* Alows one to create a buffered input stream
*/
class OSSIM_DLL ossimBufferedInputStream : public ossim::istream
{
public:
/**
* will use the read buffer of the passed in input stream and
* will set the buffer based on the buffer size passed in
*/
ossimBufferedInputStream(std::shared_ptr<ossim::istream> in, ossim_uint32 bufferSize=1024 )
:ossim::istream(in->rdbuf()),
m_inputStream(in)
{
if(bufferSize > 0)
{
m_buffer.resize(bufferSize);
rdbuf()->pubsetbuf(&m_buffer.front(), m_buffer.size());
}
}
virtual ~ossimBufferedInputStream()
{
m_inputStream = 0;
}
protected:
/**
* We have a buffer that we allocate so it does not
* loose scope through the life of this stream
*/
std::vector<char> m_buffer;
/**
* We will save the input stream we set the buffer to.
*/
std::shared_ptr<ossim::istream> m_inputStream;
};
#ifdef _MSC_VER
class ossimIFStream64 : public std::basic_ifstream<char>
{
public:
ossimIFStream64(const char* pFilename,
std::ios_base::openmode mode = ios_base::in,
int prot = ios_base::_Openprot);
virtual ~ossimIFStream64();
void seekg64(off_type off, ios_base::seekdir way);
void seekg64(streampos pos, ios_base::seekdir way);
static void seekg64(std::istream& str, off_type off, ios_base::seekdir way);
static void seekg64(std::istream& str, std::streampos pos, ios_base::seekdir way);
private:
FILE* theFile;
};
class ossimOFStream64 : public std::basic_ofstream<char>
{
public:
ossimOFStream64(const char* pFilename,
std::ios_base::openmode mode = ios_base::out,
int prot = ios_base::_Openprot);
virtual ~ossimOFStream64();
ossim_uint64 tellp64();
};
#else
class ossimIFStream64 : public std::basic_ifstream<char>
{
public:
ossimIFStream64(const char* pFilename, std::ios_base::openmode mode = ios_base::in, long prot = 0666);
virtual ~ossimIFStream64();
void seekg64(off_type off, ios_base::seekdir way);
static void seekg64(std::istream& str, off_type off, ios_base::seekdir way);
};
class ossimOFStream64 : public std::basic_ofstream<char>
{
public:
ossimOFStream64(const char* pFilename, std::ios_base::openmode mode = ios_base::out, long prot = 0666);
virtual ~ossimOFStream64();
ossim_uint64 tellp64();
};
#endif // _MSC_VER
OSSIM_DLL void operator >> (ossimIStream& in,ossimOStream& out);
OSSIM_DLL ossimIOStream& operator >> (ossimIStream& in,ossimIOStream& out);
OSSIM_DLL void operator >> (ossimIOStream& in,ossimOStream& out);
OSSIM_DLL ossimIOStream& operator >> (ossimIOStream& in,ossimIOStream& out);
OSSIM_DLL void operator << (ossimOStream& out, ossimIStream& in);
OSSIM_DLL void operator << (ossimOStream& out, ossimIOStream& in);
OSSIM_DLL ossimIOStream& operator << (ossimIOStream& out, ossimIStream& in);
OSSIM_DLL ossimIOStream& operator << (ossimIOStream& out, ossimIOStream& in);
#endif
|