9 #ifndef BOOST_NOWIDE_FILEBUF_HPP_INCLUDED 10 #define BOOST_NOWIDE_FILEBUF_HPP_INCLUDED 13 #if BOOST_NOWIDE_USE_FILEBUF_REPLACEMENT 14 #include <boost/nowide/cstdio.hpp> 15 #include <boost/nowide/stackstring.hpp> 31 BOOST_NOWIDE_DECL std::streampos ftell(FILE* file);
33 BOOST_NOWIDE_DECL
int fseek(FILE* file, std::streamoff offset,
int origin);
36 #if !BOOST_NOWIDE_USE_FILEBUF_REPLACEMENT && !defined(BOOST_NOWIDE_DOXYGEN) 37 using std::basic_filebuf;
40 template<
typename CharType,
typename Traits = std::
char_traits<CharType>>
58 using Traits = std::char_traits<char>;
63 #pragma warning(disable : 4351) // new behavior : elements of array will be default initialized 69 buffer_size_(BUFSIZ), buffer_(0), file_(0), owns_buffer_(
false), last_char_(),
70 mode_(std::ios_base::openmode(0))
91 std::basic_streambuf<char>::swap(rhs);
93 swap(buffer_size_, rhs.buffer_size_);
94 swap(buffer_, rhs.buffer_);
95 swap(file_, rhs.file_);
96 swap(owns_buffer_, rhs.owns_buffer_);
97 swap(last_char_[0], rhs.last_char_[0]);
98 swap(mode_, rhs.mode_);
101 if(pbase() == rhs.last_char_)
102 setp(last_char_, (pptr() == epptr()) ? last_char_ : last_char_ + 1);
103 if(eback() == rhs.last_char_)
104 setg(last_char_, (gptr() == rhs.last_char_) ? last_char_ : last_char_ + 1, last_char_ + 1);
106 if(rhs.pbase() == last_char_)
107 rhs.setp(rhs.last_char_, (rhs.pptr() == rhs.epptr()) ? rhs.last_char_ : rhs.last_char_ + 1);
108 if(rhs.eback() == last_char_)
110 rhs.setg(rhs.last_char_,
111 (rhs.gptr() == last_char_) ? rhs.last_char_ : rhs.last_char_ + 1,
126 return open(s.c_str(), mode);
134 return open(name.
get(), mode);
141 validate_cvt(this->getloc());
142 const bool ate = (mode & std::ios_base::ate) != 0;
144 mode &= ~std::ios_base::ate;
145 const wchar_t* smode = get_mode(mode);
148 file_ = detail::wfopen(s, smode);
151 if(ate && detail::fseek(file_, 0, SEEK_END) != 0)
166 bool res = sync() == 0;
167 if(std::fclose(file_) != 0)
170 mode_ = std::ios_base::openmode(0);
175 owns_buffer_ =
false;
179 return res ? this : NULL;
186 return file_ != NULL;
196 buffer_ =
new char[buffer_size_];
200 void validate_cvt(
const std::locale& loc)
202 if(!std::use_facet<std::codecvt<char, char, std::mbstate_t>>(loc).always_noconv())
203 throw std::runtime_error(
"Converting codecvts are not supported");
207 std::streambuf* setbuf(
char* s, std::streamsize n)
override 212 setg(NULL, NULL, NULL);
217 buffer_size_ = (n >= 0) ? static_cast<size_t>(n) : 0;
221 int overflow(
int c = EOF)
override 223 if(!(mode_ & std::ios_base::out))
229 size_t n = pptr() - pbase();
232 if(std::fwrite(pbase(), 1, n, file_) != n)
234 setp(buffer_, buffer_ + buffer_size_);
237 *buffer_ = Traits::to_char_type(c);
245 setp(buffer_, buffer_ + buffer_size_);
246 *buffer_ = Traits::to_char_type(c);
248 }
else if(std::fputc(c, file_) == EOF)
254 setp(last_char_, last_char_);
257 return Traits::not_eof(c);
267 result = overflow() != EOF;
269 if(std::fflush(file_) != 0)
270 return result =
false;
272 result = stop_reading();
273 return result ? 0 : -1;
276 int underflow()
override 278 if(!(mode_ & std::ios_base::in))
286 if(buffer_size_ == 0 || !(mode_ & std::ios_base::binary))
288 const int c = std::fgetc(file_);
291 last_char_[0] = Traits::to_char_type(c);
292 setg(last_char_, last_char_, last_char_ + 1);
296 const size_t n = std::fread(buffer_, 1, buffer_size_, file_);
297 setg(buffer_, buffer_, buffer_ + n);
301 return Traits::to_int_type(*gptr());
304 int pbackfail(
int c = EOF)
override 306 if(!(mode_ & std::ios_base::in))
312 else if(seekoff(-1, std::ios_base::cur) != std::streampos(std::streamoff(-1)))
314 if(underflow() == EOF)
321 return Traits::not_eof(c);
325 *gptr() = Traits::to_char_type(c);
326 return Traits::not_eof(c);
329 std::streampos seekoff(std::streamoff off,
330 std::ios_base::seekdir seekdir,
331 std::ios_base::openmode = std::ios_base::in | std::ios_base::out)
override 344 case std::ios_base::beg: whence = SEEK_SET;
break;
345 case std::ios_base::cur: whence = SEEK_CUR;
break;
346 case std::ios_base::end: whence = SEEK_END;
break;
347 default: assert(
false);
return EOF;
349 if(detail::fseek(file_, off, whence) != 0)
351 return detail::ftell(file_);
353 std::streampos seekpos(std::streampos pos,
354 std::ios_base::openmode m = std::ios_base::in | std::ios_base::out)
override 357 return seekoff(pos, std::ios_base::beg, m);
359 void imbue(
const std::locale& loc)
override 371 const auto off = gptr() - egptr();
375 #if defined(__clang__) 376 #pragma clang diagnostic push 377 #pragma clang diagnostic ignored "-Wtautological-constant-out-of-range-compare" 380 if(off > std::numeric_limits<std::streamoff>::max())
382 #if defined(__clang__) 383 #pragma clang diagnostic pop 385 return detail::fseek(file_, static_cast<std::streamoff>(off), SEEK_CUR) == 0;
394 const char*
const base = pbase();
395 const size_t n = pptr() - base;
397 if(n && std::fwrite(base, 1, n, file_) != n)
403 void reset(FILE* f = 0)
414 static const wchar_t* get_mode(std::ios_base::openmode mode)
422 if(mode == (std::ios_base::out))
424 if(mode == (std::ios_base::out | std::ios_base::app))
426 if(mode == (std::ios_base::app))
428 if(mode == (std::ios_base::out | std::ios_base::trunc))
430 if(mode == (std::ios_base::in))
432 if(mode == (std::ios_base::in | std::ios_base::out))
434 if(mode == (std::ios_base::in | std::ios_base::out | std::ios_base::trunc))
436 if(mode == (std::ios_base::in | std::ios_base::out | std::ios_base::app))
438 if(mode == (std::ios_base::in | std::ios_base::app))
440 if(mode == (std::ios_base::binary | std::ios_base::out))
442 if(mode == (std::ios_base::binary | std::ios_base::out | std::ios_base::app))
444 if(mode == (std::ios_base::binary | std::ios_base::app))
446 if(mode == (std::ios_base::binary | std::ios_base::out | std::ios_base::trunc))
448 if(mode == (std::ios_base::binary | std::ios_base::in))
450 if(mode == (std::ios_base::binary | std::ios_base::in | std::ios_base::out))
452 if(mode == (std::ios_base::binary | std::ios_base::in | std::ios_base::out | std::ios_base::trunc))
454 if(mode == (std::ios_base::binary | std::ios_base::in | std::ios_base::out | std::ios_base::app))
456 if(mode == (std::ios_base::binary | std::ios_base::in | std::ios_base::app))
466 std::ios::openmode mode_;
basic_filebuf * close()
Definition: filebuf.hpp:162
bool is_open() const
Definition: filebuf.hpp:184
This forward declaration defines the basic_filebuf type.
Definition: filebuf.hpp:47
basic_filebuf * open(const wchar_t *s, std::ios_base::openmode mode)
Opens the file with the given name, see std::filebuf::open.
Definition: filebuf.hpp:137
basic_filebuf * open(const char *s, std::ios_base::openmode mode)
Definition: filebuf.hpp:131
This is the implementation of std::filebuf.
Definition: filebuf.hpp:56
A class that allows to create a temporary wide or narrow UTF strings from wide or narrow UTF source.
Definition: stackstring.hpp:32
basic_filebuf * open(const std::string &s, std::ios_base::openmode mode)
Definition: filebuf.hpp:124
output_char * get()
Return the converted, NULL-terminated string or NULL if no string was converted.
Definition: stackstring.hpp:127