First public contribution.
1 // (C) Copyright Jonathan Turkanis 2003.
2 // Distributed under the Boost Software License, Version 1.0. (See accompanying
3 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
5 // See http://www.boost.org/libs/iostreams for documentation.
8 // Contains wrappers for standard file buffers, together
9 // with convenience typedefs:
10 // - basic_file_source
15 #ifndef BOOST_IOSTREAMS_FILE_HPP_INCLUDED
16 #define BOOST_IOSTREAMS_FILE_HPP_INCLUDED
18 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
22 #include <boost/iostreams/detail/config/wide_streams.hpp>
23 #ifndef BOOST_IOSTREAMS_NO_LOCALE
26 #include <string> // pathnames, char_traits.
27 #include <boost/iostreams/categories.hpp>
28 #include <boost/iostreams/detail/ios.hpp> // openmode, seekdir, int types.
29 #include <boost/iostreams/detail/fstream.hpp>
30 #include <boost/iostreams/operations.hpp> // seek.
31 #include <boost/shared_ptr.hpp>
34 #include <boost/iostreams/detail/config/disable_warnings.hpp> // MSVC.
36 namespace boost { namespace iostreams {
43 : public seekable_device_tag,
45 public localizable_tag
47 basic_file( const std::string& path,
48 BOOST_IOS::openmode mode =
49 BOOST_IOS::in | BOOST_IOS::out,
50 BOOST_IOS::openmode base_mode =
51 BOOST_IOS::in | BOOST_IOS::out );
52 std::streamsize read(char_type* s, std::streamsize n);
53 std::streamsize write(const char_type* s, std::streamsize n);
54 stream_offset seek( stream_offset off, BOOST_IOS::seekdir way,
55 BOOST_IOS::openmode which =
56 BOOST_IOS::in | BOOST_IOS::out );
57 void open( const std::string& path,
58 BOOST_IOS::openmode mode =
59 BOOST_IOS::in | BOOST_IOS::out,
60 BOOST_IOS::openmode base_mode =
61 BOOST_IOS::in | BOOST_IOS::out );
64 #ifndef BOOST_IOSTREAMS_NO_LOCALE
65 void imbue(const std::locale& loc) { pimpl_->file_.pubimbue(loc); }
69 impl(const std::string& path, BOOST_IOS::openmode mode)
70 { file_.open(path.c_str(), mode); }
71 ~impl() { if (file_.is_open()) file_.close(); }
72 BOOST_IOSTREAMS_BASIC_FILEBUF(Ch) file_;
74 shared_ptr<impl> pimpl_;
77 typedef basic_file<char> file;
78 typedef basic_file<wchar_t> wfile;
81 struct basic_file_source : private basic_file<Ch> {
88 using basic_file<Ch>::read;
89 using basic_file<Ch>::seek;
90 using basic_file<Ch>::is_open;
91 using basic_file<Ch>::close;
92 basic_file_source( const std::string& path,
93 BOOST_IOS::openmode mode =
95 : basic_file<Ch>(path, mode & ~BOOST_IOS::out, BOOST_IOS::in)
97 void open( const std::string& path,
98 BOOST_IOS::openmode mode = BOOST_IOS::in )
100 basic_file<Ch>::open(path, mode & ~BOOST_IOS::out, BOOST_IOS::in);
104 typedef basic_file_source<char> file_source;
105 typedef basic_file_source<wchar_t> wfile_source;
107 template<typename Ch>
108 struct basic_file_sink : private basic_file<Ch> {
109 typedef Ch char_type;
115 using basic_file<Ch>::write;
116 using basic_file<Ch>::seek;
117 using basic_file<Ch>::is_open;
118 using basic_file<Ch>::close;
119 basic_file_sink( const std::string& path,
120 BOOST_IOS::openmode mode = BOOST_IOS::out )
121 : basic_file<Ch>(path, mode & ~BOOST_IOS::in, BOOST_IOS::out)
123 void open( const std::string& path,
124 BOOST_IOS::openmode mode = BOOST_IOS::out )
126 basic_file<Ch>::open(path, mode & ~BOOST_IOS::in, BOOST_IOS::out);
130 typedef basic_file_sink<char> file_sink;
131 typedef basic_file_sink<wchar_t> wfile_sink;
133 //------------------Implementation of basic_file------------------------------//
135 template<typename Ch>
136 basic_file<Ch>::basic_file
137 ( const std::string& path, BOOST_IOS::openmode mode,
138 BOOST_IOS::openmode base_mode )
140 open(path, mode, base_mode);
143 template<typename Ch>
144 inline std::streamsize basic_file<Ch>::read
145 (char_type* s, std::streamsize n)
147 std::streamsize result = pimpl_->file_.sgetn(s, n);
148 return result != 0 ? result : -1;
151 template<typename Ch>
152 inline std::streamsize basic_file<Ch>::write
153 (const char_type* s, std::streamsize n)
154 { return pimpl_->file_.sputn(s, n); }
156 template<typename Ch>
157 stream_offset basic_file<Ch>::seek
158 ( stream_offset off, BOOST_IOS::seekdir way,
159 BOOST_IOS::openmode )
160 { return iostreams::seek(pimpl_->file_, off, way); }
162 template<typename Ch>
163 void basic_file<Ch>::open
164 ( const std::string& path, BOOST_IOS::openmode mode,
165 BOOST_IOS::openmode base_mode )
167 pimpl_.reset(new impl(path, mode | base_mode));
170 template<typename Ch>
171 bool basic_file<Ch>::is_open() const { return pimpl_->file_.is_open(); }
173 template<typename Ch>
174 void basic_file<Ch>::close() { pimpl_->file_.close(); }
176 //----------------------------------------------------------------------------//
178 } } // End namespaces iostreams, boost.
180 #include <boost/iostreams/detail/config/enable_warnings.hpp> // MSVC
182 #endif // #ifndef BOOST_IOSTREAMS_FILE_HPP_INCLUDED