Mercurial > hg > octave-nkf
annotate libinterp/corefcn/zfstream.cc @ 20307:1f9ed81bd173
maint: Fix spelling and grammar mistakes in docs and comments (bug #44878)
* NEWS, io.txi, file-io.cc, jit-ir.h, jit-typeinfo.h, ls-oct-binary.cc:
Fix misspellings of "compatibility" and "compatible".
* bsxfun.cc, file-io.cc, ov-base.h, oct-shlib.h, mesh.m: Fix
misspellings of "overridden".
* emacs.txi, image.txi, graphics.cc, __magick_read__.cc: Replace verb
phrase "allows to" with "allows one to".
author | Rafael Laboissiere <rafael@laboissiere.net> |
---|---|
date | Sun, 19 Apr 2015 06:53:30 -0300 |
parents | 4197fc428c7d |
children |
rev | line source |
---|---|
5269 | 1 /* |
2 | |
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
19790
diff
changeset
|
3 Copyright (C) 2005-2015 Ludwig Schwardt, Kevin Ruland |
5269 | 4 |
5 | |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
5269 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
5269 | 21 |
22 */ | |
23 | |
24 /* | |
25 | |
26 This file is adapted from the zlib 1.2.2 contrib/iostream3 code, | |
27 written by | |
28 | |
29 Ludwig Schwardt <schwardt@sun.ac.za> | |
30 original version by Kevin Ruland <kevin@rodin.wustl.edu> | |
31 | |
32 */ | |
33 | |
8025
60e938e1459b
zfstream.cc: include <config.h>
John W. Eaton <jwe@octave.org>
parents:
7520
diff
changeset
|
34 #ifdef HAVE_CONFIG_H |
60e938e1459b
zfstream.cc: include <config.h>
John W. Eaton <jwe@octave.org>
parents:
7520
diff
changeset
|
35 #include <config.h> |
60e938e1459b
zfstream.cc: include <config.h>
John W. Eaton <jwe@octave.org>
parents:
7520
diff
changeset
|
36 #endif |
60e938e1459b
zfstream.cc: include <config.h>
John W. Eaton <jwe@octave.org>
parents:
7520
diff
changeset
|
37 |
8950
d865363208d6
include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
38 #include <iostream> |
d865363208d6
include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
39 |
5269 | 40 #include "zfstream.h" |
41 | |
42 #ifdef HAVE_ZLIB | |
43 | |
44 #include <cstring> // for strcpy, strcat, strlen (mode strings) | |
45 #include <cstdio> // for BUFSIZ | |
46 | |
47 // Internal buffer sizes (default and "unbuffered" versions) | |
6783 | 48 #define STASHED_CHARACTERS 16 |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
49 #define BIGBUFSIZE (256 * 1024 + STASHED_CHARACTERS) |
5269 | 50 #define SMALLBUFSIZE 1 |
51 | |
52 /*****************************************************************************/ | |
53 | |
54 // Default constructor | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
55 gzfilebuf::gzfilebuf () |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
56 : file(0), io_mode(std::ios_base::openmode(0)), own_fd(false), |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
57 buffer(0), buffer_size(BIGBUFSIZE), own_buffer(true) |
5269 | 58 { |
59 // No buffers to start with | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
60 this->disable_buffer (); |
5269 | 61 } |
62 | |
63 // Destructor | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
64 gzfilebuf::~gzfilebuf () |
5269 | 65 { |
66 // Sync output buffer and close only if responsible for file | |
67 // (i.e. attached streams should be left open at this stage) | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
68 this->sync (); |
5269 | 69 if (own_fd) |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
70 this->close (); |
5269 | 71 // Make sure internal buffer is deallocated |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
72 this->disable_buffer (); |
5269 | 73 } |
74 | |
75 // Set compression level and strategy | |
76 int | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
77 gzfilebuf::setcompression (int comp_level, int comp_strategy) |
5269 | 78 { |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
79 return gzsetparams (file, comp_level, comp_strategy); |
5269 | 80 } |
81 | |
82 // Open gzipped file | |
83 gzfilebuf* | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
84 gzfilebuf::open (const char *name, std::ios_base::openmode mode) |
5269 | 85 { |
86 // Fail if file already open | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
87 if (this->is_open ()) |
7520 | 88 return 0; |
5269 | 89 // Don't support simultaneous read/write access (yet) |
90 if ((mode & std::ios_base::in) && (mode & std::ios_base::out)) | |
7520 | 91 return 0; |
5269 | 92 |
93 // Build mode string for gzopen and check it [27.8.1.3.2] | |
94 char char_mode[6] = "\0\0\0\0\0"; | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
95 if (! this->open_mode (mode, char_mode)) |
7520 | 96 return 0; |
5269 | 97 |
98 // Attempt to open file | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
99 if ((file = gzopen (name, char_mode)) == 0) |
7520 | 100 return 0; |
5269 | 101 |
102 // On success, allocate internal buffer and set flags | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
103 this->enable_buffer (); |
5269 | 104 io_mode = mode; |
105 own_fd = true; | |
106 return this; | |
107 } | |
108 | |
109 // Attach to gzipped file | |
110 gzfilebuf* | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
111 gzfilebuf::attach (int fd, std::ios_base::openmode mode) |
5269 | 112 { |
113 // Fail if file already open | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
114 if (this->is_open ()) |
7520 | 115 return 0; |
5269 | 116 // Don't support simultaneous read/write access (yet) |
117 if ((mode & std::ios_base::in) && (mode & std::ios_base::out)) | |
7520 | 118 return 0; |
5269 | 119 |
120 // Build mode string for gzdopen and check it [27.8.1.3.2] | |
121 char char_mode[6] = "\0\0\0\0\0"; | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
122 if (! this->open_mode (mode, char_mode)) |
7520 | 123 return 0; |
5269 | 124 |
125 // Attempt to attach to file | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
126 if ((file = gzdopen (fd, char_mode)) == 0) |
7520 | 127 return 0; |
5269 | 128 |
129 // On success, allocate internal buffer and set flags | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
130 this->enable_buffer (); |
5269 | 131 io_mode = mode; |
132 own_fd = false; | |
133 return this; | |
134 } | |
135 | |
136 // Close gzipped file | |
137 gzfilebuf* | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
138 gzfilebuf::close () |
5269 | 139 { |
140 // Fail immediately if no file is open | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
141 if (! this->is_open ()) |
7520 | 142 return 0; |
5269 | 143 // Assume success |
144 gzfilebuf* retval = this; | |
145 // Attempt to sync and close gzipped file | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
146 if (this->sync () == -1) |
7520 | 147 retval = 0; |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
148 if (gzclose (file) < 0) |
7520 | 149 retval = 0; |
5269 | 150 // File is now gone anyway (postcondition [27.8.1.3.8]) |
7520 | 151 file = 0; |
5269 | 152 own_fd = false; |
153 // Destroy internal buffer if it exists | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
154 this->disable_buffer (); |
5269 | 155 return retval; |
156 } | |
157 | |
158 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |
159 | |
160 // Convert int open mode to mode string | |
161 bool | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
162 gzfilebuf::open_mode (std::ios_base::openmode mode, char* c_mode) const |
5269 | 163 { |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
164 // FIXME: do we need testb? |
6959 | 165 // bool testb = mode & std::ios_base::binary; |
5269 | 166 bool testi = mode & std::ios_base::in; |
167 bool testo = mode & std::ios_base::out; | |
168 bool testt = mode & std::ios_base::trunc; | |
169 bool testa = mode & std::ios_base::app; | |
170 | |
171 // Check for valid flag combinations - see [27.8.1.3.2] (Table 92) | |
172 // Original zfstream hardcoded the compression level to maximum here... | |
173 // Double the time for less than 1% size improvement seems | |
174 // excessive though - keeping it at the default level | |
175 // To change back, just append "9" to the next three mode strings | |
176 if (!testi && testo && !testt && !testa) | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
177 strcpy (c_mode, "w"); |
5269 | 178 if (!testi && testo && !testt && testa) |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
179 strcpy (c_mode, "a"); |
5269 | 180 if (!testi && testo && testt && !testa) |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
181 strcpy (c_mode, "w"); |
5269 | 182 if (testi && !testo && !testt && !testa) |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
183 strcpy (c_mode, "r"); |
5269 | 184 // No read/write mode yet |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
185 // if (testi && testo && !testt && !testa) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
186 // strcpy(c_mode, "r+"); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
187 // if (testi && testo && testt && !testa) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
188 // strcpy(c_mode, "w+"); |
5269 | 189 |
190 // Mode string should be empty for invalid combination of flags | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
191 if (strlen (c_mode) == 0) |
5269 | 192 return false; |
6275 | 193 |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
194 strcat (c_mode, "b"); |
6275 | 195 |
5269 | 196 return true; |
197 } | |
198 | |
199 // Determine number of characters in internal get buffer | |
200 std::streamsize | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
201 gzfilebuf::showmanyc () |
5269 | 202 { |
203 // Calls to underflow will fail if file not opened for reading | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
204 if (! this->is_open () || !(io_mode & std::ios_base::in)) |
5269 | 205 return -1; |
206 // Make sure get area is in use | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
207 if (this->gptr () && (this->gptr () < this->egptr ())) |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
208 return std::streamsize (this->egptr () - this->gptr ()); |
5269 | 209 else |
210 return 0; | |
211 } | |
212 | |
6777 | 213 // Puts back a character to the stream in two cases. Firstly, when there |
214 // is no putback position available, and secondly when the character putback | |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
215 // differs from the one in the file. We can only support the first case |
6777 | 216 // with gzipped files. |
217 gzfilebuf::int_type | |
218 gzfilebuf::pbackfail (gzfilebuf::int_type c) | |
219 { | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
220 if (this->is_open ()) |
6777 | 221 { |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
222 if (gzseek (file, this->gptr () - this->egptr () - 1, SEEK_CUR) < 0) |
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
223 return traits_type::eof (); |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
224 |
6777 | 225 // Invalidates contents of the buffer |
226 enable_buffer (); | |
227 | |
228 // Attempt to fill internal buffer from gzipped file | |
229 // (buffer must be guaranteed to exist...) | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
230 int bytes_read = gzread (file, buffer, buffer_size); |
6777 | 231 // Indicates error or EOF |
232 if (bytes_read <= 0) | |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
233 { |
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
234 // Reset get area |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
235 this->setg (buffer, buffer, buffer); |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
236 return traits_type::eof (); |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
237 } |
6777 | 238 |
239 // Make all bytes read from file available as get area | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
240 this->setg (buffer, buffer, buffer + bytes_read); |
6777 | 241 |
242 // If next character in get area differs from putback character | |
243 // flag a failure | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
244 gzfilebuf::int_type ret = traits_type::to_int_type (*(this->gptr ())); |
6777 | 245 if (ret != c) |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
246 return traits_type::eof (); |
6777 | 247 else |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
248 return ret; |
6777 | 249 } |
250 else | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
251 return traits_type::eof (); |
6777 | 252 } |
253 | |
5269 | 254 // Fill get area from gzipped file |
255 gzfilebuf::int_type | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
256 gzfilebuf::underflow () |
5269 | 257 { |
258 // If something is left in the get area by chance, return it | |
259 // (this shouldn't normally happen, as underflow is only supposed | |
260 // to be called when gptr >= egptr, but it serves as error check) | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
261 if (this->gptr () && (this->gptr () < this->egptr ())) |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
262 return traits_type::to_int_type (*(this->gptr ())); |
5269 | 263 |
264 // If the file hasn't been opened for reading, produce error | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
265 if (! this->is_open () || !(io_mode & std::ios_base::in)) |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
266 return traits_type::eof (); |
5269 | 267 |
6783 | 268 // Copy the final characters to the front of the buffer |
269 int stash = 0; | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
270 if (this->eback () && buffer && buffer_size > STASHED_CHARACTERS) |
6783 | 271 { |
272 char_type *ptr1 = buffer; | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
273 char_type *ptr2 = this->egptr () - STASHED_CHARACTERS + 1; |
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
274 if (ptr2 > this->eback ()) |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
275 while (stash++ <= STASHED_CHARACTERS) |
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
276 *ptr1++ = *ptr2++; |
6783 | 277 } |
278 | |
5269 | 279 // Attempt to fill internal buffer from gzipped file |
280 // (buffer must be guaranteed to exist...) | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
281 int bytes_read = gzread (file, buffer + stash, buffer_size - stash); |
6783 | 282 |
5269 | 283 // Indicates error or EOF |
284 if (bytes_read <= 0) | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
285 { |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
286 // Reset get area |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
287 this->setg (buffer, buffer, buffer); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
288 return traits_type::eof (); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
289 } |
6783 | 290 // Make all bytes read from file plus the stash available as get area |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
291 this->setg (buffer, buffer + stash, buffer + bytes_read + stash); |
5269 | 292 |
293 // Return next character in get area | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
294 return traits_type::to_int_type (*(this->gptr ())); |
5269 | 295 } |
296 | |
297 // Write put area to gzipped file | |
298 gzfilebuf::int_type | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
299 gzfilebuf::overflow (int_type c) |
5269 | 300 { |
301 // Determine whether put area is in use | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
302 if (this->pbase ()) |
5269 | 303 { |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
304 // Double-check pointer range |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
305 if (this->pptr () > this->epptr () || this->pptr () < this->pbase ()) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
306 return traits_type::eof (); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
307 // Add extra character to buffer if not EOF |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
308 if (! traits_type::eq_int_type (c, traits_type::eof ())) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
309 { |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
310 *(this->pptr ()) = traits_type::to_char_type (c); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
311 this->pbump (1); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
312 } |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
313 // Number of characters to write to file |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
314 int bytes_to_write = this->pptr () - this->pbase (); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
315 // Overflow doesn't fail if nothing is to be written |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
316 if (bytes_to_write > 0) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
317 { |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
318 // If the file hasn't been opened for writing, produce error |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
319 if (! this->is_open () || !(io_mode & std::ios_base::out)) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
320 return traits_type::eof (); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
321 // If gzipped file won't accept all bytes written to it, fail |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
322 if (gzwrite (file, this->pbase (), bytes_to_write) != bytes_to_write) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
323 return traits_type::eof (); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
324 // Reset next pointer to point to pbase on success |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
325 this->pbump (-bytes_to_write); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
326 } |
5269 | 327 } |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
328 // Write extra character to file if not EOF |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
329 else if (! traits_type::eq_int_type (c, traits_type::eof ())) |
5269 | 330 { |
331 // If the file hasn't been opened for writing, produce error | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
332 if (! this->is_open () || !(io_mode & std::ios_base::out)) |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
333 return traits_type::eof (); |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
334 // Impromptu char buffer (allows "unbuffered" output) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
335 char_type last_char = traits_type::to_char_type (c); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
336 // If gzipped file won't accept this character, fail |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
337 if (gzwrite (file, &last_char, 1) != 1) |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
338 return traits_type::eof (); |
5269 | 339 } |
340 | |
341 // If you got here, you have succeeded (even if c was EOF) | |
342 // The return value should therefore be non-EOF | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
343 if (traits_type::eq_int_type (c, traits_type::eof ())) |
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
344 return traits_type::not_eof (c); |
5269 | 345 else |
346 return c; | |
347 } | |
348 | |
349 // Assign new buffer | |
350 std::streambuf* | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
351 gzfilebuf::setbuf (char_type* p, std::streamsize n) |
5269 | 352 { |
353 // First make sure stuff is sync'ed, for safety | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
354 if (this->sync () == -1) |
7520 | 355 return 0; |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
356 // If buffering is turned off on purpose via setbuf(0,0), still allocate one. |
5269 | 357 // "Unbuffered" only really refers to put [27.8.1.4.10], while get needs at |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
358 // least a buffer of size 1 (very inefficient though, therefore make it |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
359 // bigger?). This follows from [27.5.2.4.3]/12 (gptr needs to point at |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
360 // something, it seems). |
5269 | 361 if (!p || !n) |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
362 { |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
363 // Replace existing buffer (if any) with small internal buffer |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
364 this->disable_buffer (); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
365 buffer = 0; |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
366 buffer_size = 0; |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
367 own_buffer = true; |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
368 this->enable_buffer (); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
369 } |
5269 | 370 else |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
371 { |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
372 // Replace existing buffer (if any) with external buffer |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
373 this->disable_buffer (); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
374 buffer = p; |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
375 buffer_size = n; |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
376 own_buffer = false; |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
377 this->enable_buffer (); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
378 } |
5269 | 379 return this; |
380 } | |
381 | |
382 // Write put area to gzipped file (i.e. ensures that put area is empty) | |
383 int | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
384 gzfilebuf::sync () |
5269 | 385 { |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
386 return traits_type::eq_int_type (this->overflow (), |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
387 traits_type::eof ()) ? -1 : 0; |
5269 | 388 } |
389 | |
390 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |
391 | |
392 // Allocate internal buffer | |
393 void | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
394 gzfilebuf::enable_buffer () |
5269 | 395 { |
396 // If internal buffer required, allocate one | |
397 if (own_buffer && !buffer) | |
398 { | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
399 // Check for buffered vs. "unbuffered" |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
400 if (buffer_size > 0) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
401 { |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
402 // Allocate internal buffer |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
403 buffer = new char_type [buffer_size]; |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
404 // Get area starts empty and will be expanded by underflow as needed |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
405 this->setg (buffer, buffer, buffer); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
406 // Setup entire internal buffer as put area. |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
407 // The one-past-end pointer actually points to the last element of |
19790
446c46af4b42
strip trailing whitespace from most source files
John W. Eaton <jwe@octave.org>
parents:
17787
diff
changeset
|
408 // the buffer, so that overflow(c) can safely add the extra character |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
409 // c to the sequence. These pointers remain in place for the |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
410 // duration of the buffer |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
411 this->setp (buffer, buffer + buffer_size - 1); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
412 } |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
413 else |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
414 { |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
415 // Even in "unbuffered" case, (small?) get buffer is still required |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
416 buffer_size = SMALLBUFSIZE; |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
417 buffer = new char_type [buffer_size]; |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
418 this->setg (buffer, buffer, buffer); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
419 // "Unbuffered" means no put buffer |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
420 this->setp (0, 0); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
421 } |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
422 } |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
423 else |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
424 { |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
425 // If buffer already allocated, reset buffer pointers just to make sure no |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
426 // stale chars are lying around |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
427 this->setg (buffer, buffer, buffer); |
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
428 this->setp (buffer, buffer + buffer_size - 1); |
5269 | 429 } |
430 } | |
431 | |
432 // Destroy internal buffer | |
433 void | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
434 gzfilebuf::disable_buffer () |
5269 | 435 { |
436 // If internal buffer exists, deallocate it | |
437 if (own_buffer && buffer) | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
438 { |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
439 // Preserve unbuffered status by zeroing size |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
440 if (! this->pbase ()) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
441 buffer_size = 0; |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
442 delete[] buffer; |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
443 buffer = 0; |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
444 this->setg (0, 0, 0); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
445 this->setp (0, 0); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
446 } |
5269 | 447 else |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
448 { |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
449 // Reset buffer pointers to initial state if external buffer exists |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
450 this->setg (buffer, buffer, buffer); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
451 if (buffer) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
452 this->setp (buffer, buffer + buffer_size - 1); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
453 else |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
454 this->setp (0, 0); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
455 } |
5269 | 456 } |
457 | |
458 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |
459 | |
460 // Seek functions | |
461 gzfilebuf::pos_type | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
462 gzfilebuf::seekoff (off_type off, std::ios_base::seekdir way, |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
463 std::ios_base::openmode) |
5269 | 464 { |
465 pos_type ret = pos_type (off_type (-1)); | |
466 | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
467 if (this->is_open ()) |
5269 | 468 { |
469 off_type computed_off = off; | |
470 | |
471 if ((io_mode & std::ios_base::in) && way == std::ios_base::cur) | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
472 computed_off += this->gptr () - this->egptr (); |
5269 | 473 |
15510
c1c5b3cc2996
Avoid inefficient seeks in gzfilebuf (bug #37509)
Mike Miller <mtmiller@ieee.org>
parents:
14138
diff
changeset
|
474 // Handle tellg/tellp as a special case up front, no need to seek |
c1c5b3cc2996
Avoid inefficient seeks in gzfilebuf (bug #37509)
Mike Miller <mtmiller@ieee.org>
parents:
14138
diff
changeset
|
475 // or invalidate get/put buffers |
c1c5b3cc2996
Avoid inefficient seeks in gzfilebuf (bug #37509)
Mike Miller <mtmiller@ieee.org>
parents:
14138
diff
changeset
|
476 if (off == 0 && way == std::ios_base::cur) |
c1c5b3cc2996
Avoid inefficient seeks in gzfilebuf (bug #37509)
Mike Miller <mtmiller@ieee.org>
parents:
14138
diff
changeset
|
477 return pos_type (gztell (file) + computed_off); |
c1c5b3cc2996
Avoid inefficient seeks in gzfilebuf (bug #37509)
Mike Miller <mtmiller@ieee.org>
parents:
14138
diff
changeset
|
478 |
5269 | 479 if (way == std::ios_base::beg) |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
480 ret = pos_type (gzseek (file, computed_off, SEEK_SET)); |
5269 | 481 else if (way == std::ios_base::cur) |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
482 ret = pos_type (gzseek (file, computed_off, SEEK_CUR)); |
5269 | 483 else |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
484 // Can't seek from end of a gzipped file, so this will give -1 |
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
485 ret = pos_type (gzseek (file, computed_off, SEEK_END)); |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
486 |
5269 | 487 if (io_mode & std::ios_base::in) |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
488 // Invalidates contents of the buffer |
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
489 enable_buffer (); |
5269 | 490 else |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
491 // flush contents of buffer to file |
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
492 overflow (); |
5269 | 493 } |
494 | |
495 return ret; | |
496 } | |
497 | |
498 gzfilebuf::pos_type | |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
499 gzfilebuf::seekpos (pos_type sp, std::ios_base::openmode) |
5269 | 500 { |
501 pos_type ret = pos_type (off_type (-1)); | |
502 | |
503 if (this->is_open ()) | |
504 { | |
505 ret = pos_type (gzseek (file, sp, SEEK_SET)); | |
506 | |
507 if (io_mode & std::ios_base::in) | |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
508 // Invalidates contents of the buffer |
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
509 enable_buffer (); |
5269 | 510 else |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
511 // flush contents of buffer to file |
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
512 overflow (); |
5269 | 513 } |
514 | |
515 return ret; | |
516 } | |
517 | |
518 /*****************************************************************************/ | |
519 | |
520 // Default constructor initializes stream buffer | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
521 gzifstream::gzifstream () |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
522 : std::istream (0), sb () |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
523 { this->init (&sb); } |
5269 | 524 |
525 // Initialize stream buffer and open file | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
526 gzifstream::gzifstream (const char* name, std::ios_base::openmode mode) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
527 : std::istream (0), sb () |
5269 | 528 { |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
529 this->init (&sb); |
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
530 this->open (name, mode); |
5269 | 531 } |
532 | |
533 // Initialize stream buffer and attach to file | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
534 gzifstream::gzifstream (int fd, std::ios_base::openmode mode) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
535 : std::istream (0), sb () |
5269 | 536 { |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
537 this->init (&sb); |
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
538 this->attach (fd, mode); |
5269 | 539 } |
540 | |
541 // Open file and go into fail() state if unsuccessful | |
542 void | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
543 gzifstream::open (const char* name, std::ios_base::openmode mode) |
5269 | 544 { |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
545 if (! sb.open (name, mode | std::ios_base::in)) |
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
546 this->setstate (std::ios_base::failbit); |
5269 | 547 else |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
548 this->clear (); |
5269 | 549 } |
550 | |
551 // Attach to file and go into fail() state if unsuccessful | |
552 void | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
553 gzifstream::attach (int fd, std::ios_base::openmode mode) |
5269 | 554 { |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
555 if (! sb.attach (fd, mode | std::ios_base::in)) |
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
556 this->setstate (std::ios_base::failbit); |
5269 | 557 else |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
558 this->clear (); |
5269 | 559 } |
560 | |
561 // Close file | |
562 void | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
563 gzifstream::close () |
5269 | 564 { |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
565 if (! sb.close ()) |
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
566 this->setstate (std::ios_base::failbit); |
5269 | 567 } |
568 | |
569 /*****************************************************************************/ | |
570 | |
571 // Default constructor initializes stream buffer | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
572 gzofstream::gzofstream () |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
573 : std::ostream (0), sb () |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
574 { this->init (&sb); } |
5269 | 575 |
576 // Initialize stream buffer and open file | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
577 gzofstream::gzofstream (const char* name, std::ios_base::openmode mode) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
578 : std::ostream (0), sb () |
5269 | 579 { |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
580 this->init (&sb); |
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
581 this->open (name, mode); |
5269 | 582 } |
583 | |
584 // Initialize stream buffer and attach to file | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
585 gzofstream::gzofstream (int fd, std::ios_base::openmode mode) |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
586 : std::ostream (0), sb () |
5269 | 587 { |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
588 this->init (&sb); |
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
589 this->attach (fd, mode); |
5269 | 590 } |
591 | |
592 // Open file and go into fail() state if unsuccessful | |
593 void | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
594 gzofstream::open (const char* name, std::ios_base::openmode mode) |
5269 | 595 { |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
596 if (! sb.open (name, mode | std::ios_base::out)) |
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
597 this->setstate (std::ios_base::failbit); |
5269 | 598 else |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
599 this->clear (); |
5269 | 600 } |
601 | |
602 // Attach to file and go into fail() state if unsuccessful | |
603 void | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
604 gzofstream::attach (int fd, std::ios_base::openmode mode) |
5269 | 605 { |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
606 if (! sb.attach (fd, mode | std::ios_base::out)) |
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
607 this->setstate (std::ios_base::failbit); |
5269 | 608 else |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
609 this->clear (); |
5269 | 610 } |
611 | |
612 // Close file | |
613 void | |
14846
460a3c6d8bf1
maint: Use Octave coding convention for cuddled parenthis in function calls with empty argument lists.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
614 gzofstream::close () |
5269 | 615 { |
14861
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
616 if (! sb.close ()) |
f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
Rik <octave@nomad.inbox5.com>
parents:
14846
diff
changeset
|
617 this->setstate (std::ios_base::failbit); |
5269 | 618 } |
619 | |
620 #endif // HAVE_ZLIB |