fstream.hpp 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. // boost/filesystem/fstream.hpp ------------------------------------------------------//
  2. // Copyright Beman Dawes 2002
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // See http://www.boost.org/LICENSE_1_0.txt
  5. // Library home page: http://www.boost.org/libs/filesystem
  6. //--------------------------------------------------------------------------------------//
  7. #ifndef BOOST_FILESYSTEM3_FSTREAM_HPP
  8. #define BOOST_FILESYSTEM3_FSTREAM_HPP
  9. #include <boost/config.hpp>
  10. # if defined( BOOST_NO_STD_WSTRING )
  11. # error Configuration not supported: Boost.Filesystem V3 and later requires std::wstring support
  12. # endif
  13. #include <boost/filesystem/path.hpp>
  14. #include <iosfwd>
  15. #include <fstream>
  16. #include <boost/config/abi_prefix.hpp> // must be the last #include
  17. // on Windows, except for standard libaries known to have wchar_t overloads for
  18. // file stream I/O, use path::string() to get a narrow character c_str()
  19. #if defined(BOOST_WINDOWS_API) \
  20. && (!defined(_CPPLIB_VER) || _CPPLIB_VER < 405 || defined(_STLPORT_VERSION))
  21. // !Dinkumware || early Dinkumware || STLPort masquerading as Dinkumware
  22. # define BOOST_FILESYSTEM_C_STR string().c_str() // use narrow, since wide not available
  23. #else // use the native c_str, which will be narrow on POSIX, wide on Windows
  24. # define BOOST_FILESYSTEM_C_STR c_str()
  25. #endif
  26. namespace boost
  27. {
  28. namespace filesystem
  29. {
  30. //--------------------------------------------------------------------------------------//
  31. // basic_filebuf //
  32. //--------------------------------------------------------------------------------------//
  33. template < class charT, class traits = std::char_traits<charT> >
  34. class basic_filebuf : public std::basic_filebuf<charT,traits>
  35. {
  36. private: // disallow copying
  37. basic_filebuf(const basic_filebuf&);
  38. const basic_filebuf& operator=(const basic_filebuf&);
  39. public:
  40. basic_filebuf() {}
  41. virtual ~basic_filebuf() {}
  42. basic_filebuf<charT,traits>*
  43. open(const path& p, std::ios_base::openmode mode)
  44. {
  45. return std::basic_filebuf<charT,traits>::open(p.BOOST_FILESYSTEM_C_STR, mode)
  46. ? this : 0;
  47. }
  48. };
  49. //--------------------------------------------------------------------------------------//
  50. // basic_ifstream //
  51. //--------------------------------------------------------------------------------------//
  52. template < class charT, class traits = std::char_traits<charT> >
  53. class basic_ifstream : public std::basic_ifstream<charT,traits>
  54. {
  55. private: // disallow copying
  56. basic_ifstream(const basic_ifstream&);
  57. const basic_ifstream& operator=(const basic_ifstream&);
  58. public:
  59. basic_ifstream() {}
  60. // use two signatures, rather than one signature with default second
  61. // argument, to workaround VC++ 7.1 bug (ID VSWhidbey 38416)
  62. explicit basic_ifstream(const path& p)
  63. : std::basic_ifstream<charT,traits>(p.BOOST_FILESYSTEM_C_STR, std::ios_base::in) {}
  64. basic_ifstream(const path& p, std::ios_base::openmode mode)
  65. : std::basic_ifstream<charT,traits>(p.BOOST_FILESYSTEM_C_STR, mode) {}
  66. void open(const path& p)
  67. { std::basic_ifstream<charT,traits>::open(p.BOOST_FILESYSTEM_C_STR, std::ios_base::in); }
  68. void open(const path& p, std::ios_base::openmode mode)
  69. { std::basic_ifstream<charT,traits>::open(p.BOOST_FILESYSTEM_C_STR, mode); }
  70. virtual ~basic_ifstream() {}
  71. };
  72. //--------------------------------------------------------------------------------------//
  73. // basic_ofstream //
  74. //--------------------------------------------------------------------------------------//
  75. template < class charT, class traits = std::char_traits<charT> >
  76. class basic_ofstream : public std::basic_ofstream<charT,traits>
  77. {
  78. private: // disallow copying
  79. basic_ofstream(const basic_ofstream&);
  80. const basic_ofstream& operator=(const basic_ofstream&);
  81. public:
  82. basic_ofstream() {}
  83. // use two signatures, rather than one signature with default second
  84. // argument, to workaround VC++ 7.1 bug (ID VSWhidbey 38416)
  85. explicit basic_ofstream(const path& p)
  86. : std::basic_ofstream<charT,traits>(p.BOOST_FILESYSTEM_C_STR, std::ios_base::out) {}
  87. basic_ofstream(const path& p, std::ios_base::openmode mode)
  88. : std::basic_ofstream<charT,traits>(p.BOOST_FILESYSTEM_C_STR, mode) {}
  89. void open(const path& p)
  90. { std::basic_ofstream<charT,traits>::open(p.BOOST_FILESYSTEM_C_STR, std::ios_base::out); }
  91. void open(const path& p, std::ios_base::openmode mode)
  92. { std::basic_ofstream<charT,traits>::open(p.BOOST_FILESYSTEM_C_STR, mode); }
  93. virtual ~basic_ofstream() {}
  94. };
  95. //--------------------------------------------------------------------------------------//
  96. // basic_fstream //
  97. //--------------------------------------------------------------------------------------//
  98. template < class charT, class traits = std::char_traits<charT> >
  99. class basic_fstream : public std::basic_fstream<charT,traits>
  100. {
  101. private: // disallow copying
  102. basic_fstream(const basic_fstream&);
  103. const basic_fstream & operator=(const basic_fstream&);
  104. public:
  105. basic_fstream() {}
  106. // use two signatures, rather than one signature with default second
  107. // argument, to workaround VC++ 7.1 bug (ID VSWhidbey 38416)
  108. explicit basic_fstream(const path& p)
  109. : std::basic_fstream<charT,traits>(p.BOOST_FILESYSTEM_C_STR,
  110. std::ios_base::in | std::ios_base::out) {}
  111. basic_fstream(const path& p, std::ios_base::openmode mode)
  112. : std::basic_fstream<charT,traits>(p.BOOST_FILESYSTEM_C_STR, mode) {}
  113. void open(const path& p)
  114. { std::basic_fstream<charT,traits>::open(p.BOOST_FILESYSTEM_C_STR,
  115. std::ios_base::in | std::ios_base::out); }
  116. void open(const path& p, std::ios_base::openmode mode)
  117. { std::basic_fstream<charT,traits>::open(p.BOOST_FILESYSTEM_C_STR, mode); }
  118. virtual ~basic_fstream() {}
  119. };
  120. //--------------------------------------------------------------------------------------//
  121. // typedefs //
  122. //--------------------------------------------------------------------------------------//
  123. typedef basic_filebuf<char> filebuf;
  124. typedef basic_ifstream<char> ifstream;
  125. typedef basic_ofstream<char> ofstream;
  126. typedef basic_fstream<char> fstream;
  127. typedef basic_filebuf<wchar_t> wfilebuf;
  128. typedef basic_ifstream<wchar_t> wifstream;
  129. typedef basic_ofstream<wchar_t> wofstream;
  130. typedef basic_fstream<wchar_t> wfstream;
  131. } // namespace filesystem
  132. } // namespace boost
  133. #include <boost/config/abi_suffix.hpp> // pops abi_prefix.hpp pragmas
  134. #endif // BOOST_FILESYSTEM3_FSTREAM_HPP