os/ossrv/ossrv_pub/boost_apis/boost/filesystem/fstream.hpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/filesystem/fstream.hpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,584 @@
     1.4 +//  boost/filesystem/fstream.hpp  --------------------------------------------//
     1.5 +
     1.6 +//  Copyright Beman Dawes 2002.
     1.7 +//  Use, modification, and distribution is subject to the Boost Software
     1.8 +//  License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
     1.9 +//  http://www.boost.org/LICENSE_1_0.txt)
    1.10 +
    1.11 +//  See library home page at http://www.boost.org/libs/filesystem
    1.12 +
    1.13 +//----------------------------------------------------------------------------// 
    1.14 +
    1.15 +#ifndef BOOST_FILESYSTEM_FSTREAM_HPP
    1.16 +#define BOOST_FILESYSTEM_FSTREAM_HPP
    1.17 +
    1.18 +#include <boost/filesystem/operations.hpp> // for 8.3 hack (see below)
    1.19 +#include <boost/utility/enable_if.hpp>
    1.20 +#include <boost/detail/workaround.hpp>
    1.21 +
    1.22 +#include <iosfwd>
    1.23 +#include <fstream>
    1.24 +
    1.25 +#include <boost/config/abi_prefix.hpp> // must be the last #include
    1.26 +
    1.27 +// NOTE: fstream.hpp for Boost 1.32.0 and earlier supplied workarounds for
    1.28 +// various compiler problems. They have been removed to ease development of the
    1.29 +// basic i18n functionality. Once the new interface is stable, the workarounds
    1.30 +// will be reinstated for any compilers that otherwise can support the rest of
    1.31 +// the library after internationalization.
    1.32 +
    1.33 +namespace boost
    1.34 +{
    1.35 +  namespace filesystem
    1.36 +  {
    1.37 +    namespace detail
    1.38 +    {
    1.39 +#   if defined(BOOST_WINDOWS_API) && !defined(BOOST_FILESYSTEM_NARROW_ONLY)
    1.40 +#     if !defined(BOOST_DINKUMWARE_STDLIB) || BOOST_DINKUMWARE_STDLIB < 405
    1.41 +      // The 8.3 hack:
    1.42 +      // C++98 does not supply a wchar_t open, so try to get an equivalent
    1.43 +      // narrow char name based on the short, so-called 8.3, name.
    1.44 +      // Not needed for Dinkumware 405 and later as they do supply wchar_t open.
    1.45 +      BOOST_FILESYSTEM_DECL bool create_file_api( const std::wstring & ph,
    1.46 +        std::ios_base::openmode mode ); // true if succeeds
    1.47 +      BOOST_FILESYSTEM_DECL std::string narrow_path_api(
    1.48 +        const std::wstring & ph ); // return is empty if fails
    1.49 +
    1.50 +      inline std::string path_proxy( const std::wstring & file_ph,
    1.51 +        std::ios_base::openmode mode )
    1.52 +      // Return a non-existant path if cannot supply narrow short path.
    1.53 +      // An empty path doesn't work because some Dinkumware versions
    1.54 +      // assert the path is non-empty.  
    1.55 +      {
    1.56 +        std::string narrow_ph;
    1.57 +        bool created_file( false );
    1.58 +        if ( !exists( file_ph )
    1.59 +          && (mode & std::ios_base::out) != 0
    1.60 +          && create_file_api( file_ph, mode ) )
    1.61 +        {
    1.62 +          created_file = true;
    1.63 +        }
    1.64 +        narrow_ph = narrow_path_api( file_ph );
    1.65 +        if ( narrow_ph.empty() )
    1.66 +        {
    1.67 +          if ( created_file ) remove_api( file_ph );
    1.68 +          narrow_ph = "\x01";
    1.69 +        }
    1.70 +        return narrow_ph;
    1.71 +      }
    1.72 +#     else
    1.73 +      // Dinkumware 405 and later does supply wchar_t functions
    1.74 +      inline const std::wstring & path_proxy( const std::wstring & file_ph,
    1.75 +        std::ios_base::openmode )
    1.76 +        { return file_ph; }
    1.77 +#     endif
    1.78 +#   endif 
    1.79 +
    1.80 +      inline const std::string & path_proxy( const std::string & file_ph,
    1.81 +        std::ios_base::openmode )
    1.82 +        { return file_ph; }
    1.83 +
    1.84 +    } // namespace detail
    1.85 +
    1.86 +    template < class charT, class traits = std::char_traits<charT> >
    1.87 +    class basic_filebuf : public std::basic_filebuf<charT,traits>
    1.88 +    {
    1.89 +    private: // disallow copying
    1.90 +      basic_filebuf( const basic_filebuf & );
    1.91 +      const basic_filebuf & operator=( const basic_filebuf & ); 
    1.92 +    public:
    1.93 +      basic_filebuf() {}
    1.94 +      virtual ~basic_filebuf() {}
    1.95 +
    1.96 +#   ifndef BOOST_FILESYSTEM_NARROW_ONLY
    1.97 +      template<class Path>
    1.98 +      typename boost::enable_if<is_basic_path<Path>,
    1.99 +        basic_filebuf<charT,traits> *>::type
   1.100 +      open( const Path & file_ph, std::ios_base::openmode mode );
   1.101 +
   1.102 +      basic_filebuf<charT,traits> *
   1.103 +      open( const wpath & file_ph, std::ios_base::openmode mode );
   1.104 +#   endif
   1.105 +
   1.106 +#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
   1.107 +      basic_filebuf<charT,traits> *
   1.108 +      open( const path & file_ph, std::ios_base::openmode mode );
   1.109 +#   endif
   1.110 +    };
   1.111 +
   1.112 +    template < class charT, class traits = std::char_traits<charT> >
   1.113 +    class basic_ifstream : public std::basic_ifstream<charT,traits>
   1.114 +    {
   1.115 +    private: // disallow copying
   1.116 +      basic_ifstream( const basic_ifstream & );
   1.117 +      const basic_ifstream & operator=( const basic_ifstream & ); 
   1.118 +    public:
   1.119 +      basic_ifstream() {}
   1.120 +
   1.121 +      // use two signatures, rather than one signature with default second
   1.122 +      // argument, to workaround VC++ 7.1 bug (ID VSWhidbey 38416)
   1.123 +
   1.124 +#   ifndef BOOST_FILESYSTEM_NARROW_ONLY
   1.125 +      template<class Path>
   1.126 +      explicit basic_ifstream( const Path & file_ph,
   1.127 +        typename boost::enable_if<is_basic_path<Path> >::type* dummy = 0 );
   1.128 +
   1.129 +      template<class Path>
   1.130 +      basic_ifstream( const Path & file_ph, std::ios_base::openmode mode,
   1.131 +        typename boost::enable_if<is_basic_path<Path> >::type* dummy = 0 );
   1.132 +
   1.133 +      template<class Path>
   1.134 +      typename boost::enable_if<is_basic_path<Path>, void>::type
   1.135 +      open( const Path & file_ph );
   1.136 +
   1.137 +      template<class Path>
   1.138 +      typename boost::enable_if<is_basic_path<Path>, void>::type
   1.139 +      open( const Path & file_ph, std::ios_base::openmode mode );
   1.140 +
   1.141 +      explicit basic_ifstream( const wpath & file_ph );
   1.142 +      basic_ifstream( const wpath & file_ph, std::ios_base::openmode mode );
   1.143 +      void open( const wpath & file_ph );
   1.144 +      void open( const wpath & file_ph, std::ios_base::openmode mode );
   1.145 +#   endif
   1.146 +
   1.147 +      explicit basic_ifstream( const path & file_ph );
   1.148 +      basic_ifstream( const path & file_ph, std::ios_base::openmode mode );
   1.149 +#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
   1.150 +      void open( const path & file_ph );
   1.151 +      void open( const path & file_ph, std::ios_base::openmode mode );
   1.152 +#   endif
   1.153 +      virtual ~basic_ifstream() {}
   1.154 +    };
   1.155 +
   1.156 +    template < class charT, class traits = std::char_traits<charT> >
   1.157 +    class basic_ofstream : public std::basic_ofstream<charT,traits>
   1.158 +    {
   1.159 +    private: // disallow copying
   1.160 +      basic_ofstream( const basic_ofstream & );
   1.161 +      const basic_ofstream & operator=( const basic_ofstream & ); 
   1.162 +    public:
   1.163 +      basic_ofstream() {}
   1.164 +
   1.165 +      // use two signatures, rather than one signature with default second
   1.166 +      // argument, to workaround VC++ 7.1 bug (ID VSWhidbey 38416)
   1.167 +
   1.168 +#   ifndef BOOST_FILESYSTEM_NARROW_ONLY
   1.169 +
   1.170 +      template<class Path>
   1.171 +      explicit basic_ofstream( const Path & file_ph,
   1.172 +        typename boost::enable_if<is_basic_path<Path> >::type* dummy = 0 );
   1.173 +      explicit basic_ofstream( const wpath & file_ph );
   1.174 +
   1.175 +      template<class Path>
   1.176 +      basic_ofstream( const Path & file_ph, std::ios_base::openmode mode,
   1.177 +        typename boost::enable_if<is_basic_path<Path> >::type* dummy = 0 );
   1.178 +      basic_ofstream( const wpath & file_ph, std::ios_base::openmode mode );
   1.179 +
   1.180 +      template<class Path>
   1.181 +      typename boost::enable_if<is_basic_path<Path>, void>::type
   1.182 +      open( const Path & file_ph );
   1.183 +      void open( const wpath & file_ph );
   1.184 +
   1.185 +      template<class Path>
   1.186 +      typename boost::enable_if<is_basic_path<Path>, void>::type
   1.187 +      open( const Path & file_ph, std::ios_base::openmode mode );
   1.188 +      void open( const wpath & file_ph, std::ios_base::openmode mode );
   1.189 +
   1.190 +#   endif
   1.191 +
   1.192 +      explicit basic_ofstream( const path & file_ph );
   1.193 +      basic_ofstream( const path & file_ph, std::ios_base::openmode mode );
   1.194 +#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
   1.195 +      void open( const path & file_ph );
   1.196 +      void open( const path & file_ph, std::ios_base::openmode mode );
   1.197 +#   endif
   1.198 +      virtual ~basic_ofstream() {}
   1.199 +    };
   1.200 +
   1.201 +    template < class charT, class traits = std::char_traits<charT> >
   1.202 +    class basic_fstream : public std::basic_fstream<charT,traits>
   1.203 +    {
   1.204 +    private: // disallow copying
   1.205 +      basic_fstream( const basic_fstream & );
   1.206 +      const basic_fstream & operator=( const basic_fstream & ); 
   1.207 +    public:
   1.208 +      basic_fstream() {}
   1.209 +
   1.210 +      // use two signatures, rather than one signature with default second
   1.211 +      // argument, to workaround VC++ 7.1 bug (ID VSWhidbey 38416)
   1.212 +
   1.213 +#   ifndef BOOST_FILESYSTEM_NARROW_ONLY
   1.214 +
   1.215 +      template<class Path>
   1.216 +      explicit basic_fstream( const Path & file_ph,
   1.217 +        typename boost::enable_if<is_basic_path<Path> >::type* dummy = 0 );
   1.218 +      explicit basic_fstream( const wpath & file_ph );
   1.219 +
   1.220 +      template<class Path>
   1.221 +      basic_fstream( const Path & file_ph, std::ios_base::openmode mode,
   1.222 +        typename boost::enable_if<is_basic_path<Path> >::type* dummy = 0 );
   1.223 +      basic_fstream( const wpath & file_ph, std::ios_base::openmode mode );
   1.224 +
   1.225 +      template<class Path>
   1.226 +      typename boost::enable_if<is_basic_path<Path>, void>::type
   1.227 +      open( const Path & file_ph );
   1.228 +      void open( const wpath & file_ph );
   1.229 +
   1.230 +      template<class Path>
   1.231 +      typename boost::enable_if<is_basic_path<Path>, void>::type
   1.232 +      open( const Path & file_ph, std::ios_base::openmode mode );
   1.233 +      void open( const wpath & file_ph, std::ios_base::openmode mode );
   1.234 +
   1.235 +#   endif
   1.236 +
   1.237 +      explicit basic_fstream( const path & file_ph );
   1.238 +      basic_fstream( const path & file_ph, std::ios_base::openmode mode );
   1.239 +#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
   1.240 +      void open( const path & file_ph );
   1.241 +      void open( const path & file_ph, std::ios_base::openmode mode );
   1.242 +#   endif
   1.243 +      virtual ~basic_fstream() {}
   1.244 +
   1.245 +    };
   1.246 + 
   1.247 +    typedef basic_filebuf<char> filebuf;
   1.248 +    typedef basic_ifstream<char> ifstream;
   1.249 +    typedef basic_ofstream<char> ofstream;
   1.250 +    typedef basic_fstream<char> fstream;
   1.251 +
   1.252 +# ifndef BOOST_FILESYSTEM_NARROW_ONLY
   1.253 +    typedef basic_filebuf<wchar_t> wfilebuf;
   1.254 +    typedef basic_ifstream<wchar_t> wifstream;
   1.255 +    typedef basic_fstream<wchar_t> wfstream;
   1.256 +    typedef basic_ofstream<wchar_t> wofstream;
   1.257 +# endif
   1.258 +    
   1.259 +# ifndef BOOST_FILESYSTEM_NARROW_ONLY
   1.260 +
   1.261 +//  basic_filebuf definitions  -----------------------------------------------//
   1.262 +
   1.263 +    template <class charT, class traits>
   1.264 +    template<class Path>
   1.265 +    typename boost::enable_if<is_basic_path<Path>,
   1.266 +      basic_filebuf<charT,traits> *>::type
   1.267 +    basic_filebuf<charT,traits>::open( const Path & file_ph,
   1.268 +      std::ios_base::openmode mode )
   1.269 +    {
   1.270 +      return (std::basic_filebuf<charT,traits>::open( detail::path_proxy(
   1.271 +        file_ph.external_file_string(), mode ).c_str(), mode )
   1.272 +          == 0) ? 0 : this;
   1.273 +    }
   1.274 +
   1.275 +    template <class charT, class traits>
   1.276 +    basic_filebuf<charT,traits> *
   1.277 +    basic_filebuf<charT, traits>::open( const wpath & file_ph,
   1.278 +      std::ios_base::openmode mode )
   1.279 +    {
   1.280 +      return this->BOOST_NESTED_TEMPLATE open<wpath>( file_ph, mode );
   1.281 +    }
   1.282 +
   1.283 +//  basic_ifstream definitions  ----------------------------------------------//
   1.284 +
   1.285 +    template <class charT, class traits> template<class Path>
   1.286 +    basic_ifstream<charT,traits>::basic_ifstream(const Path & file_ph,
   1.287 +      typename boost::enable_if<is_basic_path<Path> >::type* )
   1.288 +      : std::basic_ifstream<charT,traits>(
   1.289 +        detail::path_proxy( file_ph.external_file_string(),
   1.290 +          std::ios_base::in ).c_str(), std::ios_base::in ) {}
   1.291 +
   1.292 +    template <class charT, class traits>
   1.293 +    basic_ifstream<charT,traits>::basic_ifstream( const wpath & file_ph )
   1.294 +      : std::basic_ifstream<charT,traits>(
   1.295 +        detail::path_proxy( file_ph.external_file_string(),
   1.296 +          std::ios_base::in ).c_str(), std::ios_base::in ) {}
   1.297 +    
   1.298 +    template <class charT, class traits> template<class Path>
   1.299 +    basic_ifstream<charT,traits>::basic_ifstream( const Path & file_ph,
   1.300 +      std::ios_base::openmode mode,
   1.301 +      typename boost::enable_if<is_basic_path<Path> >::type* )
   1.302 +      : std::basic_ifstream<charT,traits>(
   1.303 +        detail::path_proxy( file_ph.external_file_string(),
   1.304 +          mode ).c_str(), mode | std::ios_base::in ) {}
   1.305 +
   1.306 +    template <class charT, class traits>
   1.307 +    basic_ifstream<charT,traits>::basic_ifstream( const wpath & file_ph,
   1.308 +      std::ios_base::openmode mode )
   1.309 +      : std::basic_ifstream<charT,traits>(
   1.310 +        detail::path_proxy( file_ph.external_file_string(),
   1.311 +          mode ).c_str(), mode | std::ios_base::in ) {}
   1.312 +
   1.313 +    template <class charT, class traits> template<class Path>
   1.314 +    typename boost::enable_if<is_basic_path<Path>, void>::type
   1.315 +    basic_ifstream<charT,traits>::open( const Path & file_ph )
   1.316 +    {
   1.317 +      std::basic_ifstream<charT,traits>::open(
   1.318 +        detail::path_proxy( file_ph.external_file_string(),
   1.319 +          std::ios_base::in ).c_str(), std::ios_base::in );
   1.320 +    }
   1.321 +
   1.322 +    template <class charT, class traits>
   1.323 +    void basic_ifstream<charT,traits>::open( const wpath & file_ph )
   1.324 +    {
   1.325 +      std::basic_ifstream<charT,traits>::open(
   1.326 +        detail::path_proxy( file_ph.external_file_string(),
   1.327 +          std::ios_base::in ).c_str(), std::ios_base::in );
   1.328 +    }
   1.329 +    
   1.330 +    template <class charT, class traits> template<class Path>
   1.331 +    typename boost::enable_if<is_basic_path<Path>, void>::type
   1.332 +    basic_ifstream<charT,traits>::open( const Path & file_ph,
   1.333 +      std::ios_base::openmode mode )
   1.334 +    {
   1.335 +      std::basic_ifstream<charT,traits>::open(
   1.336 +        detail::path_proxy( file_ph.external_file_string(),
   1.337 +          mode ).c_str(), mode | std::ios_base::in );
   1.338 +    }
   1.339 +    
   1.340 +    template <class charT, class traits>
   1.341 +    void basic_ifstream<charT,traits>::open( const wpath & file_ph,
   1.342 +      std::ios_base::openmode mode )
   1.343 +    {
   1.344 +      std::basic_ifstream<charT,traits>::open(
   1.345 +        detail::path_proxy( file_ph.external_file_string(),
   1.346 +          mode ).c_str(), mode | std::ios_base::in );
   1.347 +    }
   1.348 +
   1.349 +//  basic_ofstream definitions  ----------------------------------------------//
   1.350 +
   1.351 +    template <class charT, class traits> template<class Path>
   1.352 +    basic_ofstream<charT,traits>::basic_ofstream(const Path & file_ph,
   1.353 +      typename boost::enable_if<is_basic_path<Path> >::type* )
   1.354 +      : std::basic_ofstream<charT,traits>(
   1.355 +        detail::path_proxy( file_ph.external_file_string(),
   1.356 +          std::ios_base::out ).c_str(), std::ios_base::out ) {}
   1.357 +
   1.358 +    template <class charT, class traits>
   1.359 +    basic_ofstream<charT,traits>::basic_ofstream( const wpath & file_ph )
   1.360 +      : std::basic_ofstream<charT,traits>(
   1.361 +        detail::path_proxy( file_ph.external_file_string(),
   1.362 +          std::ios_base::out ).c_str(), std::ios_base::out ) {}
   1.363 +
   1.364 +    template <class charT, class traits> template<class Path>
   1.365 +    basic_ofstream<charT,traits>::basic_ofstream( const Path & file_ph,
   1.366 +      std::ios_base::openmode mode,
   1.367 +      typename boost::enable_if<is_basic_path<Path> >::type* )
   1.368 +      : std::basic_ofstream<charT,traits>(
   1.369 +        detail::path_proxy( file_ph.external_file_string(),
   1.370 +          mode ).c_str(), mode | std::ios_base::out ) {}
   1.371 +
   1.372 +    template <class charT, class traits>
   1.373 +    basic_ofstream<charT,traits>::basic_ofstream( const wpath & file_ph,
   1.374 +      std::ios_base::openmode mode )
   1.375 +      : std::basic_ofstream<charT,traits>(
   1.376 +        detail::path_proxy( file_ph.external_file_string(),
   1.377 +          mode ).c_str(), mode | std::ios_base::out ) {}
   1.378 +    
   1.379 +    template <class charT, class traits> template<class Path>
   1.380 +    typename boost::enable_if<is_basic_path<Path>, void>::type
   1.381 +    basic_ofstream<charT,traits>::open( const Path & file_ph )
   1.382 +    {
   1.383 +      std::basic_ofstream<charT,traits>::open(
   1.384 +        detail::path_proxy( file_ph.external_file_string(),
   1.385 +          std::ios_base::out ).c_str(), std::ios_base::out );
   1.386 +    }
   1.387 +    
   1.388 +    template <class charT, class traits>
   1.389 +    void basic_ofstream<charT,traits>::open( const wpath & file_ph )
   1.390 +    {
   1.391 +      std::basic_ofstream<charT,traits>::open(
   1.392 +        detail::path_proxy( file_ph.external_file_string(),
   1.393 +          std::ios_base::out ).c_str(), std::ios_base::out );
   1.394 +    }
   1.395 +    
   1.396 +    template <class charT, class traits> template<class Path>
   1.397 +    typename boost::enable_if<is_basic_path<Path>, void>::type
   1.398 +    basic_ofstream<charT,traits>::open( const Path & file_ph,
   1.399 +      std::ios_base::openmode mode )
   1.400 +    {
   1.401 +      std::basic_ofstream<charT,traits>::open(
   1.402 +        detail::path_proxy( file_ph.external_file_string(),
   1.403 +          mode ).c_str(), mode | std::ios_base::out );
   1.404 +    }
   1.405 +
   1.406 +    template <class charT, class traits>
   1.407 +    void basic_ofstream<charT,traits>::open( const wpath & file_ph,
   1.408 +      std::ios_base::openmode mode )
   1.409 +    {
   1.410 +      std::basic_ofstream<charT,traits>::open(
   1.411 +        detail::path_proxy( file_ph.external_file_string(),
   1.412 +          mode ).c_str(), mode | std::ios_base::out );
   1.413 +    }
   1.414 +
   1.415 +//  basic_fstream definitions  -----------------------------------------------//
   1.416 +
   1.417 +    template <class charT, class traits> template<class Path>
   1.418 +    basic_fstream<charT,traits>::basic_fstream(const Path & file_ph,
   1.419 +      typename boost::enable_if<is_basic_path<Path> >::type* )
   1.420 +      : std::basic_fstream<charT,traits>(
   1.421 +        detail::path_proxy( file_ph.external_file_string(),
   1.422 +          std::ios_base::in|std::ios_base::out ).c_str(),
   1.423 +          std::ios_base::in|std::ios_base::out ) {}
   1.424 +
   1.425 +    template <class charT, class traits>
   1.426 +    basic_fstream<charT,traits>::basic_fstream( const wpath & file_ph )
   1.427 +      : std::basic_fstream<charT,traits>(
   1.428 +        detail::path_proxy( file_ph.external_file_string(),
   1.429 +          std::ios_base::in|std::ios_base::out ).c_str(),
   1.430 +          std::ios_base::in|std::ios_base::out ) {}
   1.431 +
   1.432 +    template <class charT, class traits> template<class Path>
   1.433 +    basic_fstream<charT,traits>::basic_fstream( const Path & file_ph,
   1.434 +      std::ios_base::openmode mode,
   1.435 +      typename boost::enable_if<is_basic_path<Path> >::type* )
   1.436 +      : std::basic_fstream<charT,traits>(
   1.437 +        detail::path_proxy( file_ph.external_file_string(),
   1.438 +          mode ).c_str(), mode | std::ios_base::in | std::ios_base::out ) {}
   1.439 +    
   1.440 +    template <class charT, class traits>
   1.441 +    basic_fstream<charT,traits>::basic_fstream( const wpath & file_ph,
   1.442 +      std::ios_base::openmode mode )
   1.443 +      : std::basic_fstream<charT,traits>(
   1.444 +        detail::path_proxy( file_ph.external_file_string(),
   1.445 +          mode ).c_str(), mode | std::ios_base::in | std::ios_base::out ) {}
   1.446 +      
   1.447 +    template <class charT, class traits> template<class Path>
   1.448 +    typename boost::enable_if<is_basic_path<Path>, void>::type
   1.449 +    basic_fstream<charT,traits>::open( const Path & file_ph )
   1.450 +    {
   1.451 +      std::basic_fstream<charT,traits>::open(
   1.452 +        detail::path_proxy( file_ph.external_file_string(),
   1.453 +          std::ios_base::in|std::ios_base::out ).c_str(),
   1.454 +          std::ios_base::in|std::ios_base::out );
   1.455 +    }
   1.456 +
   1.457 +    template <class charT, class traits>
   1.458 +    void basic_fstream<charT,traits>::open( const wpath & file_ph )
   1.459 +    {
   1.460 +      std::basic_fstream<charT,traits>::open(
   1.461 +        detail::path_proxy( file_ph.external_file_string(),
   1.462 +          std::ios_base::in|std::ios_base::out ).c_str(),
   1.463 +          std::ios_base::in|std::ios_base::out );
   1.464 +    }
   1.465 +    
   1.466 +    template <class charT, class traits> template<class Path>
   1.467 +    typename boost::enable_if<is_basic_path<Path>, void>::type
   1.468 +    basic_fstream<charT,traits>::open( const Path & file_ph,
   1.469 +      std::ios_base::openmode mode )
   1.470 +    {
   1.471 +      std::basic_fstream<charT,traits>::open(
   1.472 +        detail::path_proxy( file_ph.external_file_string(),
   1.473 +          mode ).c_str(), mode | std::ios_base::in | std::ios_base::out );
   1.474 +    }
   1.475 +
   1.476 +    template <class charT, class traits>
   1.477 +    void basic_fstream<charT,traits>::open( const wpath & file_ph,
   1.478 +      std::ios_base::openmode mode )
   1.479 +    {
   1.480 +      std::basic_fstream<charT,traits>::open(
   1.481 +        detail::path_proxy( file_ph.external_file_string(),
   1.482 +          mode ).c_str(), mode | std::ios_base::in | std::ios_base::out );
   1.483 +    }
   1.484 +
   1.485 +# endif
   1.486 +
   1.487 +#  if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
   1.488 +    template <class charT, class traits>
   1.489 +    basic_filebuf<charT,traits> *
   1.490 +    basic_filebuf<charT, traits>::open( const path & file_ph,
   1.491 +      std::ios_base::openmode mode )
   1.492 +    {
   1.493 +      return std::basic_filebuf<charT,traits>::open(
   1.494 +        file_ph.file_string().c_str(), mode ) == 0 ? 0 : this;
   1.495 +    }
   1.496 +#  endif
   1.497 +
   1.498 +    template <class charT, class traits>
   1.499 +    basic_ifstream<charT,traits>::basic_ifstream( const path & file_ph )
   1.500 +      : std::basic_ifstream<charT,traits>(
   1.501 +          file_ph.file_string().c_str(), std::ios_base::in ) {}
   1.502 +
   1.503 +    template <class charT, class traits>
   1.504 +    basic_ifstream<charT,traits>::basic_ifstream( const path & file_ph,
   1.505 +      std::ios_base::openmode mode )
   1.506 +      : std::basic_ifstream<charT,traits>(
   1.507 +          file_ph.file_string().c_str(), mode ) {}
   1.508 +    
   1.509 +#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
   1.510 +    template <class charT, class traits>
   1.511 +    void basic_ifstream<charT,traits>::open( const path & file_ph )
   1.512 +    {
   1.513 +      std::basic_ifstream<charT,traits>::open(
   1.514 +        file_ph.file_string().c_str(), std::ios_base::in );
   1.515 +    }
   1.516 +    
   1.517 +    template <class charT, class traits>
   1.518 +    void basic_ifstream<charT,traits>::open( const path & file_ph,
   1.519 +      std::ios_base::openmode mode )
   1.520 +    {
   1.521 +      std::basic_ifstream<charT,traits>::open(
   1.522 +        file_ph.file_string().c_str(), mode );
   1.523 +    }
   1.524 +#   endif
   1.525 +
   1.526 +    template <class charT, class traits>
   1.527 +    basic_ofstream<charT,traits>::basic_ofstream( const path & file_ph )
   1.528 +      : std::basic_ofstream<charT,traits>(
   1.529 +          file_ph.file_string().c_str(), std::ios_base::out ) {}
   1.530 +
   1.531 +    template <class charT, class traits>
   1.532 +    basic_ofstream<charT,traits>::basic_ofstream( const path & file_ph,
   1.533 +      std::ios_base::openmode mode )
   1.534 +      : std::basic_ofstream<charT,traits>(
   1.535 +          file_ph.file_string().c_str(), mode ) {}
   1.536 +    
   1.537 +#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
   1.538 +    template <class charT, class traits>
   1.539 +    void basic_ofstream<charT,traits>::open( const path & file_ph )
   1.540 +    {
   1.541 +      std::basic_ofstream<charT,traits>::open(
   1.542 +        file_ph.file_string().c_str(), std::ios_base::out );
   1.543 +    }
   1.544 +    
   1.545 +    template <class charT, class traits>
   1.546 +    void basic_ofstream<charT,traits>::open( const path & file_ph,
   1.547 +      std::ios_base::openmode mode )
   1.548 +    {
   1.549 +      std::basic_ofstream<charT,traits>::open(
   1.550 +        file_ph.file_string().c_str(), mode );
   1.551 +    }
   1.552 +#   endif
   1.553 +
   1.554 +    template <class charT, class traits>
   1.555 +    basic_fstream<charT,traits>::basic_fstream( const path & file_ph )
   1.556 +      : std::basic_fstream<charT,traits>(
   1.557 +          file_ph.file_string().c_str(),
   1.558 +          std::ios_base::in|std::ios_base::out ) {}
   1.559 +
   1.560 +
   1.561 +    template <class charT, class traits>
   1.562 +    basic_fstream<charT,traits>::basic_fstream( const path & file_ph,
   1.563 +      std::ios_base::openmode mode )
   1.564 +      : std::basic_fstream<charT,traits>(
   1.565 +          file_ph.file_string().c_str(), mode ) {}
   1.566 +
   1.567 +#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
   1.568 +    template <class charT, class traits>
   1.569 +    void basic_fstream<charT,traits>::open( const path & file_ph )
   1.570 +    {
   1.571 +      std::basic_fstream<charT,traits>::open(
   1.572 +        file_ph.file_string().c_str(), std::ios_base::in|std::ios_base::out );
   1.573 +    }
   1.574 +
   1.575 +    template <class charT, class traits>
   1.576 +    void basic_fstream<charT,traits>::open( const path & file_ph,
   1.577 +      std::ios_base::openmode mode )
   1.578 +    {
   1.579 +      std::basic_fstream<charT,traits>::open(
   1.580 +        file_ph.file_string().c_str(), mode );
   1.581 +    }
   1.582 +#   endif
   1.583 +  } // namespace filesystem
   1.584 +} // namespace boost
   1.585 +
   1.586 +#include <boost/config/abi_suffix.hpp> // pops abi_prefix.hpp pragmas
   1.587 +#endif  // BOOST_FILESYSTEM_FSTREAM_HPP