/usr/include/rheolef/rheostream.h is in librheolef-dev 6.5-1+b1.
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 | #ifndef _RHEOLEF_STREAM_H
#define _RHEOLEF_STREAM_H
///
/// This file is part of Rheolef.
///
/// Copyright (C) 2000-2009 Pierre Saramito <Pierre.Saramito@imag.fr>
///
/// Rheolef 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 2 of the License, or
/// (at your option) any later version.
///
/// Rheolef 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 Rheolef; if not, write to the Free Software
/// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
///
/// =========================================================================
/*Class:rheostream
NAME: @code{irheostream}, @code{orheostream} - large data streams
@clindex irheostream
@clindex orheostream
@clindex iorheo
@fiindex @file{.gz} gzip
@cindex RHEOPATH environment variable
@findex scatch
@findex has_suffix
@findex delete_suffix
@findex get_basename
@findex get_dirname
@findex get_full_name_from_rheo_path
@findex append_dir_to_rheo_path
@findex prepend_dir_to_rheo_path
@findex file_exists
@findex itos
@findex ftos
@toindex @code{gzip}
ABSTRACT:
@noindent
This class provides a stream interface for large
data management.
File decompresion is assumed using
@code{gzip} and a recursive seach in a directory list
is provided for input.
@example
orheostream foo("NAME", "suffix");
@end example
@noindent
is like
@example
ofstream foo("NAME.suffix").
@end example
@noindent
However, if @var{NAME} does not end with @file{.suffix}, then
@file{.suffix} is added, and compression
is done with gzip, adding an additional @file{.gz} suffix.
@noindent
Conversely,
@example
irheostream foo("NAME","suffix");
@end example
@noindent
is like
@example
ifstream foo("NAME.suffix").
@end example
@noindent
However, we look at a search path environment variable
@code{RHEOPATH} in order to find @var{NAME} while suffix is assumed.
Moreover, @code{gzip} compressed files, ending
with the @file{.gz} suffix is assumed, and decompression is done.
Finally, a set of useful functions are provided.
DESCRIPTION:
@noindent
The following code:
@example
irheostream is("results", "data");
@end example
@noindent
will recursively look for a @file{results[.data[.gz]]} file in the
directory mentionned by the @code{RHEOPATH} environment variable.
@noindent
For instance, if you insert in our ".cshrc" something like:
@example
setenv RHEOPATH ".:/home/dupont:/usr/local/math/demo"
@end example
@noindent
the process will study the current directory @file{.}, then, if
neither @file{square.data.gz} nor @file{square.data} exits, it scan
all subdirectory of the current directory. Then, if file
is not founded, it start recusively in @file{/home/dupond}
and then in @file{/usr/local/math/demo}.
@noindent
File decompression is performed by using
the @code{gzip} command, and data are pipe-lined
directly in memory.
@noindent
If the file start with @file{.} as @file{./square} or with a @file{/}
as @file{/home/oscar/square}, no search occurs and @code{RHEOPATH}
environment variable is not used.
@noindent
Also, if the environment variable @code{RHEOPATH} is not set, the
default value is the current directory @file{.}.
@noindent
For output stream:
@example
orheostream os("newresults", "data");
@end example
@noindent
file compression is assumed, and "newresults.data.gz"
will be created.
@noindent
File loading and storing are mentionned by a message,
either:
@example
! load "./results.data.gz"
@end example
@noindent
or:
@example
! file "./newresults.data.gz" created.
@end example
on the @code{clog} stream.
By adding the following:
@example
clog << noverbose;
@end example
@noindent
you turn off these messages
(@pxref{iorheo ialgorithm}).
AUTHORS:
LMC-IMAG, 38041 Grenoble cedex 9, France
| Pierre.Saramito@imag.fr
DATE: 31 october 1997
METHODS: @rheostream
End:
*/
#include "rheolef/compiler.h"
#include <boost/iostreams/filtering_stream.hpp>
namespace rheolef {
namespace io = boost::iostreams;
//<rheostream:
class irheostream : public io::filtering_stream<io::input> {
public:
irheostream() : io::filtering_stream<io::input>() {}
irheostream(const std::string& name, const std::string& suffix = std::string());
virtual ~irheostream();
void open (const std::string& name, const std::string& suffix = std::string());
void close();
protected:
std::ifstream _ifs;
};
static const bool dont_gzip = false;
class orheostream : public io::filtering_stream<io::output> {
public:
orheostream() : io::filtering_stream<io::output>() {}
orheostream(const std::string& name, const std::string& suffix = std::string(),
bool use_gzip = true);
virtual ~orheostream();
void open (const std::string& name, const std::string& suffix = std::string(),
bool use_gzip = true);
void flush();
void close();
protected:
std::ofstream _ofs;
bool _use_gzip;
std::string _full_name;
};
std::string itos (std::string::size_type i);
std::string ftos (const Float& x);
// catch first occurence of string in file
bool scatch (std::istream& in, const std::string& ch, bool full_match = true);
// has_suffix("toto.suffix", "suffix") -> true
bool has_suffix (const std::string& name, const std::string& suffix);
// "toto.suffix" --> "toto"
std::string delete_suffix (const std::string& name, const std::string& suffix);
// "/usr/local/dir/toto.suffix" --> "toto.suffix"
std::string get_basename (const std::string& name);
// "/usr/local/dir/toto.suffix" --> "/usr/local/dir"
std::string get_dirname (const std::string& name);
// "toto" --> "/usr/local/math/data/toto.suffix"
std::string get_full_name_from_rheo_path (const std::string& rootname, const std::string& suffix);
// "." + "../geodir" --> ".:../geodir"
void append_dir_to_rheo_path (const std::string& dir);
// "../geodir" + "." --> "../geodir:."
void prepend_dir_to_rheo_path (const std::string& dir);
bool file_exists (const std::string& filename);
// string to float
bool is_float (const std::string&);
Float to_float (const std::string&);
// in TMPDIR environment variable or "/tmp" by default
std::string get_tmpdir();
//>rheostream:
}// namespace rheolef
#endif // _RHEOLEF_STREAM_H
|