123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406 |
- //
- // Copyright (c) 2012 Artyom Beilis (Tonkikh)
- //
- // Distributed under the Boost Software License, Version 1.0. (See
- // accompanying file LICENSE_1_0.txt or copy at
- // http://www.boost.org/LICENSE_1_0.txt)
- //
- #ifndef BOOST_NOWIDE_FSTREAM_HPP_INCLUDED
- #define BOOST_NOWIDE_FSTREAM_HPP_INCLUDED
- #include <boost/nowide/config.hpp>
- #include <boost/nowide/filebuf.hpp>
- #include <istream>
- #include <ostream>
- namespace boost {
- namespace nowide {
- /// \cond INTERNAL
- namespace detail {
- // clang-format off
- struct StreamTypeIn
- {
- static std::ios_base::openmode mode() { return std::ios_base::in; }
- static std::ios_base::openmode mode_modifier() { return mode(); }
- template<typename CharType, typename Traits>
- struct stream_base{
- typedef std::basic_istream<CharType, Traits> type;
- };
- };
- struct StreamTypeOut
- {
- static std::ios_base::openmode mode() { return std::ios_base::out; }
- static std::ios_base::openmode mode_modifier() { return mode(); }
- template<typename CharType, typename Traits>
- struct stream_base{
- typedef std::basic_ostream<CharType, Traits> type;
- };
- };
- struct StreamTypeInOut
- {
- static std::ios_base::openmode mode() { return std::ios_base::in | std::ios_base::out; }
- static std::ios_base::openmode mode_modifier() { return std::ios_base::openmode(); }
- template<typename CharType, typename Traits>
- struct stream_base{
- typedef std::basic_iostream<CharType, Traits> type;
- };
- };
- // clang-format on
- /// Base class for all basic_*fstream classes
- /// Contains basic_filebuf instance so its pointer can be used to construct basic_*stream
- /// Provides common functions to reduce boilerplate code including inheriting from
- /// the correct std::basic_[io]stream class and initializing it
- /// \tparam T_StreamType One of StreamType* above.
- /// Class used instead of value, because openmode::operator| may not be constexpr
- template<typename CharType, typename Traits, typename T_StreamType>
- class fstream_impl;
- template<typename Path, typename Result>
- struct enable_if_path;
- } // namespace detail
- /// \endcond
- ///
- /// \brief Same as std::basic_ifstream<char> but accepts UTF-8 strings under Windows
- ///
- template<typename CharType, typename Traits = std::char_traits<CharType> >
- class basic_ifstream : public detail::fstream_impl<CharType, Traits, detail::StreamTypeIn>
- {
- typedef detail::fstream_impl<CharType, Traits, detail::StreamTypeIn> fstream_impl;
- public:
- basic_ifstream()
- {}
- explicit basic_ifstream(const char* file_name, std::ios_base::openmode mode = std::ios_base::in)
- {
- open(file_name, mode);
- }
- #if BOOST_NOWIDE_USE_WCHAR_OVERLOADS
- explicit basic_ifstream(const wchar_t* file_name, std::ios_base::openmode mode = std::ios_base::in)
- {
- open(file_name, mode);
- }
- #endif
- explicit basic_ifstream(const std::string& file_name, std::ios_base::openmode mode = std::ios_base::in)
- {
- open(file_name, mode);
- }
- template<typename Path>
- explicit basic_ifstream(
- const Path& file_name,
- typename detail::enable_if_path<Path, std::ios_base::openmode>::type mode = std::ios_base::in)
- {
- open(file_name, mode);
- }
- using fstream_impl::open;
- using fstream_impl::is_open;
- using fstream_impl::close;
- using fstream_impl::rdbuf;
- #if BOOST_NOWIDE_CXX11
- using fstream_impl::swap;
- basic_ifstream(const basic_ifstream& other) = delete;
- basic_ifstream& operator=(const basic_ifstream& rhs) = delete;
- basic_ifstream(basic_ifstream&& other) noexcept : fstream_impl(std::move(other))
- {}
- basic_ifstream& operator=(basic_ifstream&& rhs) noexcept
- {
- fstream_impl::operator=(std::move(rhs));
- return *this;
- }
- #endif
- };
- ///
- /// \brief Same as std::basic_ofstream<char> but accepts UTF-8 strings under Windows
- ///
- template<typename CharType, typename Traits = std::char_traits<CharType> >
- class basic_ofstream : public detail::fstream_impl<CharType, Traits, detail::StreamTypeOut>
- {
- typedef detail::fstream_impl<CharType, Traits, detail::StreamTypeOut> fstream_impl;
- public:
- basic_ofstream()
- {}
- explicit basic_ofstream(const char* file_name, std::ios_base::openmode mode = std::ios_base::out)
- {
- open(file_name, mode);
- }
- #if BOOST_NOWIDE_USE_WCHAR_OVERLOADS
- explicit basic_ofstream(const wchar_t* file_name, std::ios_base::openmode mode = std::ios_base::out)
- {
- open(file_name, mode);
- }
- #endif
- explicit basic_ofstream(const std::string& file_name, std::ios_base::openmode mode = std::ios_base::out)
- {
- open(file_name, mode);
- }
- template<typename Path>
- explicit basic_ofstream(
- const Path& file_name,
- typename detail::enable_if_path<Path, std::ios_base::openmode>::type mode = std::ios_base::out)
- {
- open(file_name, mode);
- }
- using fstream_impl::open;
- using fstream_impl::is_open;
- using fstream_impl::close;
- using fstream_impl::rdbuf;
- #if BOOST_NOWIDE_CXX11
- using fstream_impl::swap;
- basic_ofstream(const basic_ofstream& other) = delete;
- basic_ofstream& operator=(const basic_ofstream& rhs) = delete;
- basic_ofstream(basic_ofstream&& other) noexcept : fstream_impl(std::move(other))
- {}
- basic_ofstream& operator=(basic_ofstream&& rhs)
- {
- fstream_impl::operator=(std::move(rhs));
- return *this;
- }
- #endif
- };
- #ifdef BOOST_MSVC
- #pragma warning(push)
- #pragma warning(disable : 4250) // <class> : inherits <method> via dominance
- #endif
- ///
- /// \brief Same as std::basic_fstream<char> but accepts UTF-8 strings under Windows
- ///
- template<typename CharType, typename Traits = std::char_traits<CharType> >
- class basic_fstream : public detail::fstream_impl<CharType, Traits, detail::StreamTypeInOut>
- {
- typedef detail::fstream_impl<CharType, Traits, detail::StreamTypeInOut> fstream_impl;
- public:
- basic_fstream()
- {}
- explicit basic_fstream(const char* file_name,
- std::ios_base::openmode mode = std::ios_base::in | std::ios_base::out)
- {
- open(file_name, mode);
- }
- #if BOOST_NOWIDE_USE_WCHAR_OVERLOADS
- explicit basic_fstream(const wchar_t* file_name,
- std::ios_base::openmode mode = std::ios_base::in | std::ios_base::out)
- {
- open(file_name, mode);
- }
- #endif
- explicit basic_fstream(const std::string& file_name,
- std::ios_base::openmode mode = std::ios_base::in | std::ios_base::out)
- {
- open(file_name, mode);
- }
- template<typename Path>
- explicit basic_fstream(const Path& file_name,
- typename detail::enable_if_path<Path, std::ios_base::openmode>::type mode =
- std::ios_base::in | std::ios_base::out)
- {
- open(file_name, mode);
- }
- using fstream_impl::open;
- using fstream_impl::is_open;
- using fstream_impl::close;
- using fstream_impl::rdbuf;
- #if BOOST_NOWIDE_CXX11
- using fstream_impl::swap;
- basic_fstream(const basic_fstream& other) = delete;
- basic_fstream& operator=(const basic_fstream& rhs) = delete;
- basic_fstream(basic_fstream&& other) noexcept : fstream_impl(std::move(other))
- {}
- basic_fstream& operator=(basic_fstream&& rhs)
- {
- fstream_impl::operator=(std::move(rhs));
- return *this;
- }
- #endif
- };
- #if BOOST_NOWIDE_CXX11
- template<typename CharType, typename Traits>
- void swap(basic_filebuf<CharType, Traits>& lhs, basic_filebuf<CharType, Traits>& rhs)
- {
- lhs.swap(rhs);
- }
- template<typename CharType, typename Traits>
- void swap(basic_ifstream<CharType, Traits>& lhs, basic_ifstream<CharType, Traits>& rhs)
- {
- lhs.swap(rhs);
- }
- template<typename CharType, typename Traits>
- void swap(basic_ofstream<CharType, Traits>& lhs, basic_ofstream<CharType, Traits>& rhs)
- {
- lhs.swap(rhs);
- }
- template<typename CharType, typename Traits>
- void swap(basic_fstream<CharType, Traits>& lhs, basic_fstream<CharType, Traits>& rhs)
- {
- lhs.swap(rhs);
- }
- #endif
- ///
- /// Same as std::filebuf but accepts UTF-8 strings under Windows
- ///
- typedef basic_filebuf<char> filebuf;
- ///
- /// Same as std::ifstream but accepts UTF-8 strings under Windows
- /// and *\::filesystem::path on all systems
- ///
- typedef basic_ifstream<char> ifstream;
- ///
- /// Same as std::ofstream but accepts UTF-8 strings under Windows
- /// and *\::filesystem::path on all systems
- ///
- typedef basic_ofstream<char> ofstream;
- ///
- /// Same as std::fstream but accepts UTF-8 strings under Windows
- /// and *\::filesystem::path on all systems
- ///
- typedef basic_fstream<char> fstream;
- // Implementation
- namespace detail {
- /// Holds an instance of T
- /// Required to make sure this is constructed first before passing it to sibling classes
- template<typename T>
- struct buf_holder
- {
- T buf_;
- };
- template<typename CharType, typename Traits, typename T_StreamType>
- class fstream_impl : private buf_holder<basic_filebuf<CharType, Traits> >, // must be first due to init order
- public T_StreamType::template stream_base<CharType, Traits>::type
- {
- typedef basic_filebuf<CharType, Traits> internal_buffer_type;
- typedef buf_holder<internal_buffer_type> base_buf_holder;
- typedef typename T_StreamType::template stream_base<CharType, Traits>::type stream_base;
- public:
- using stream_base::setstate;
- using stream_base::clear;
- protected:
- using base_buf_holder::buf_;
- fstream_impl() : stream_base(&buf_)
- {}
- #if BOOST_NOWIDE_CXX11
- fstream_impl(const fstream_impl& other) = delete;
- fstream_impl& operator=(const fstream_impl& other) = delete;
- // coverity[exn_spec_violation]
- fstream_impl(fstream_impl&& other) noexcept : base_buf_holder(std::move(other)),
- stream_base(std::move(other))
- {
- this->set_rdbuf(rdbuf());
- }
- fstream_impl& operator=(fstream_impl&& rhs) noexcept
- {
- base_buf_holder::operator=(std::move(rhs));
- stream_base::operator=(std::move(rhs));
- return *this;
- }
- void swap(fstream_impl& other)
- {
- stream_base::swap(other);
- rdbuf()->swap(*other.rdbuf());
- }
- #endif
- void open(const std::string& file_name, std::ios_base::openmode mode = T_StreamType::mode())
- {
- open(file_name.c_str(), mode);
- }
- template<typename Path>
- typename detail::enable_if_path<Path, void>::type open(const Path& file_name,
- std::ios_base::openmode mode = T_StreamType::mode())
- {
- open(file_name.c_str(), mode);
- }
- void open(const char* file_name, std::ios_base::openmode mode = T_StreamType::mode())
- {
- if(!rdbuf()->open(file_name, mode | T_StreamType::mode_modifier()))
- setstate(std::ios_base::failbit);
- else
- clear();
- }
- #if BOOST_NOWIDE_USE_WCHAR_OVERLOADS
- void open(const wchar_t* file_name, std::ios_base::openmode mode = T_StreamType::mode())
- {
- if(!rdbuf()->open(file_name, mode | T_StreamType::mode_modifier()))
- setstate(std::ios_base::failbit);
- else
- clear();
- }
- #endif
- bool is_open()
- {
- return rdbuf()->is_open();
- }
- bool is_open() const
- {
- return rdbuf()->is_open();
- }
- void close()
- {
- if(!rdbuf()->close())
- setstate(std::ios_base::failbit);
- }
- internal_buffer_type* rdbuf() const
- {
- return const_cast<internal_buffer_type*>(&buf_);
- }
- };
- #ifdef BOOST_MSVC
- #pragma warning(pop)
- #endif
- /// Trait to heuristically check for a *\::filesystem::path
- /// Done by checking for make_preferred and filename member functions with correct signature
- template<typename T>
- struct is_path
- {
- typedef char one;
- struct two
- {
- char dummy[2];
- };
- template<typename U, U& (U::*)(), U (U::*)() const>
- struct Check;
- template<typename U>
- static one test(Check<U, &U::make_preferred, &U::filename>*);
- template<typename U>
- static two test(...);
- enum
- {
- value = sizeof(test<T>(0)) == sizeof(one)
- };
- };
- template<bool B, typename T>
- struct enable_if
- {};
- template<typename T>
- struct enable_if<true, T>
- {
- typedef T type;
- };
- /// SFINAE trait which has a member "type = Result" if the Path is a *\::filesystem::path
- template<typename Path, typename Result>
- struct enable_if_path : enable_if<is_path<Path>::value, Result>
- {};
- } // namespace detail
- } // namespace nowide
- } // namespace boost
- #endif
|