Mercurial > hg > octave-lyh
annotate libinterp/corefcn/oct-stdstrm.h @ 17535:c12c688a35ed default tip lyh
Fix warnings
author | LYH <lyh.kernel@gmail.com> |
---|---|
date | Fri, 27 Sep 2013 17:43:27 +0800 |
parents | 68fc671a9339 |
children |
rev | line source |
---|---|
2081 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
3 Copyright (C) 1996-2012 John W. Eaton |
2081 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
2081 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
2081 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_octave_stdiostream_h) | |
24 #define octave_octave_stdiostream_h 1 | |
25 | |
26 #include "oct-stream.h" | |
3630 | 27 #include "c-file-ptr-stream.h" |
2081 | 28 |
5325 | 29 template <typename BUF_T, typename STREAM_T, typename FILE_T> |
2081 | 30 class |
5325 | 31 octave_tstdiostream : public octave_base_stream |
2081 | 32 { |
33 public: | |
34 | |
11004
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
35 octave_tstdiostream (const std::string& n, FILE_T f = 0, int fid = 0, |
10313 | 36 std::ios::openmode m = std::ios::in|std::ios::out, |
37 oct_mach_info::float_format ff | |
38 = oct_mach_info::native_float_format (), | |
39 typename BUF_T::close_fcn cf = BUF_T::file_close) | |
5325 | 40 : octave_base_stream (m, ff), nm (n), md (m), |
11004
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
41 s (f ? new STREAM_T (f, cf) : 0), fnum (fid) |
5325 | 42 { } |
4327 | 43 |
2081 | 44 // Position a stream at OFFSET relative to ORIGIN. |
45 | |
16011
8122286c69a9
initial large file support for 32-bit systems
John W. Eaton <jwe@octave.org>
parents:
15195
diff
changeset
|
46 int seek (off_t offset, int origin) |
5325 | 47 { return s ? s->seek (offset, origin) : -1; } |
2081 | 48 |
49 // Return current stream position. | |
50 | |
16011
8122286c69a9
initial large file support for 32-bit systems
John W. Eaton <jwe@octave.org>
parents:
15195
diff
changeset
|
51 off_t tell (void) { return s ? s->tell () : -1; } |
2081 | 52 |
4327 | 53 // Return non-zero if EOF has been reached on this stream. |
54 | |
55 bool eof (void) const { return s ? s->eof () : true; } | |
56 | |
2081 | 57 // The name of the file. |
58 | |
3523 | 59 std::string name (void) const { return nm; } |
2081 | 60 |
4327 | 61 std::istream *input_stream (void) { return (md & std::ios::in) ? s : 0; } |
2081 | 62 |
4361 | 63 std::ostream *output_stream (void) { return (md & std::ios::out) ? s : 0; } |
4326 | 64 |
5775 | 65 // FIXME -- should not have to cast away const here. |
5325 | 66 BUF_T *rdbuf (void) const |
67 { return s ? (const_cast<STREAM_T *> (s))->rdbuf () : 0; } | |
4326 | 68 |
11004
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
69 int file_number (void) const { return fnum; } |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
70 |
4326 | 71 bool bad (void) const { return s ? s->bad () : true; } |
72 | |
4327 | 73 void clear (void) { if (s) s->clear (); } |
4326 | 74 |
10288
5e972e2deffe
avoid some possible gnulib #defines
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
75 void do_close (void) { if (s) s->stream_close (); } |
4326 | 76 |
77 protected: | |
78 | |
4327 | 79 std::string nm; |
80 | |
81 std::ios::openmode md; | |
82 | |
5325 | 83 STREAM_T *s; |
4326 | 84 |
11004
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
85 // The file number associated with this file. |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
86 int fnum; |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
87 |
5325 | 88 ~octave_tstdiostream (void) { delete s; } |
4326 | 89 |
90 private: | |
91 | |
92 // No copying! | |
93 | |
5325 | 94 octave_tstdiostream (const octave_tstdiostream&); |
95 | |
96 octave_tstdiostream& operator = (const octave_tstdiostream&); | |
97 }; | |
4326 | 98 |
11004
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
99 class |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
100 octave_stdiostream |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
101 : public octave_tstdiostream<c_file_ptr_buf, io_c_file_ptr_stream, FILE *> |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
102 { |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
103 public: |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
104 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
105 octave_stdiostream (const std::string& n, FILE *f = 0, |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
106 std::ios::openmode m = std::ios::in|std::ios::out, |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
107 oct_mach_info::float_format ff |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
108 = oct_mach_info::native_float_format (), |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
109 c_file_ptr_buf::close_fcn cf = c_file_ptr_buf::file_close) |
11079
dc4f8dfe5325
oct-stdstrm.h: avoid problems if fileno is a macro
John W. Eaton <jwe@octave.org>
parents:
11004
diff
changeset
|
110 : octave_tstdiostream<c_file_ptr_buf, io_c_file_ptr_stream, FILE *> (n, f, f ? fileno (f) : -1, m, ff, cf) { } |
11004
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
111 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
112 static octave_stream |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
113 create (const std::string& n, FILE *f = 0, |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
114 std::ios::openmode m = std::ios::in|std::ios::out, |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
115 oct_mach_info::float_format ff |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
116 = oct_mach_info::native_float_format (), |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
117 c_file_ptr_buf::close_fcn cf = c_file_ptr_buf::file_close) |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
118 { |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
119 return octave_stream (new octave_stdiostream (n, f, m, ff, cf)); |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
120 } |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
121 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
122 protected: |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
123 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
124 ~octave_stdiostream (void) { } |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
125 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
126 private: |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
127 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
128 // No copying! |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
129 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
130 octave_stdiostream (const octave_stdiostream&); |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
131 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
132 octave_stdiostream& operator = (const octave_stdiostream&); |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
133 }; |
5325 | 134 |
135 #ifdef HAVE_ZLIB | |
136 | |
11004
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
137 class |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
138 octave_zstdiostream |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
139 : public octave_tstdiostream<c_zfile_ptr_buf, io_c_zfile_ptr_stream, gzFile> |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
140 { |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
141 public: |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
142 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
143 octave_zstdiostream (const std::string& n, gzFile f = 0, int fid = 0, |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
144 std::ios::openmode m = std::ios::in|std::ios::out, |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
145 oct_mach_info::float_format ff |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
146 = oct_mach_info::native_float_format (), |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
147 c_zfile_ptr_buf::close_fcn cf = c_zfile_ptr_buf::file_close) |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
148 : octave_tstdiostream<c_zfile_ptr_buf, io_c_zfile_ptr_stream, gzFile> (n, f, fid, m, ff, cf) { } |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
149 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
150 static octave_stream |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
151 create (const std::string& n, gzFile f = 0, int fid = 0, |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
152 std::ios::openmode m = std::ios::in|std::ios::out, |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
153 oct_mach_info::float_format ff |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
154 = oct_mach_info::native_float_format (), |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
155 c_zfile_ptr_buf::close_fcn cf = c_zfile_ptr_buf::file_close) |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
156 { |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
157 return octave_stream (new octave_zstdiostream (n, f, fid, m, ff, cf)); |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
158 } |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
159 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
160 protected: |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
161 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
162 ~octave_zstdiostream (void) { } |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
163 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
164 private: |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
165 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
166 // No copying! |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
167 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
168 octave_zstdiostream (const octave_zstdiostream&); |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
169 |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
170 octave_zstdiostream& operator = (const octave_zstdiostream&); |
594adb99a25e
cache file id in octave_tstdiostream class
John W. Eaton <jwe@octave.org>
parents:
10313
diff
changeset
|
171 }; |
5325 | 172 |
173 #endif | |
4326 | 174 |
2081 | 175 #endif |