os/ossrv/ossrv_pub/boost_apis/boost/filesystem/fstream.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//  boost/filesystem/fstream.hpp  --------------------------------------------//
sl@0
     2
sl@0
     3
//  Copyright Beman Dawes 2002.
sl@0
     4
//  Use, modification, and distribution is subject to the Boost Software
sl@0
     5
//  License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
sl@0
     6
//  http://www.boost.org/LICENSE_1_0.txt)
sl@0
     7
sl@0
     8
//  See library home page at http://www.boost.org/libs/filesystem
sl@0
     9
sl@0
    10
//----------------------------------------------------------------------------// 
sl@0
    11
sl@0
    12
#ifndef BOOST_FILESYSTEM_FSTREAM_HPP
sl@0
    13
#define BOOST_FILESYSTEM_FSTREAM_HPP
sl@0
    14
sl@0
    15
#include <boost/filesystem/operations.hpp> // for 8.3 hack (see below)
sl@0
    16
#include <boost/utility/enable_if.hpp>
sl@0
    17
#include <boost/detail/workaround.hpp>
sl@0
    18
sl@0
    19
#include <iosfwd>
sl@0
    20
#include <fstream>
sl@0
    21
sl@0
    22
#include <boost/config/abi_prefix.hpp> // must be the last #include
sl@0
    23
sl@0
    24
// NOTE: fstream.hpp for Boost 1.32.0 and earlier supplied workarounds for
sl@0
    25
// various compiler problems. They have been removed to ease development of the
sl@0
    26
// basic i18n functionality. Once the new interface is stable, the workarounds
sl@0
    27
// will be reinstated for any compilers that otherwise can support the rest of
sl@0
    28
// the library after internationalization.
sl@0
    29
sl@0
    30
namespace boost
sl@0
    31
{
sl@0
    32
  namespace filesystem
sl@0
    33
  {
sl@0
    34
    namespace detail
sl@0
    35
    {
sl@0
    36
#   if defined(BOOST_WINDOWS_API) && !defined(BOOST_FILESYSTEM_NARROW_ONLY)
sl@0
    37
#     if !defined(BOOST_DINKUMWARE_STDLIB) || BOOST_DINKUMWARE_STDLIB < 405
sl@0
    38
      // The 8.3 hack:
sl@0
    39
      // C++98 does not supply a wchar_t open, so try to get an equivalent
sl@0
    40
      // narrow char name based on the short, so-called 8.3, name.
sl@0
    41
      // Not needed for Dinkumware 405 and later as they do supply wchar_t open.
sl@0
    42
      BOOST_FILESYSTEM_DECL bool create_file_api( const std::wstring & ph,
sl@0
    43
        std::ios_base::openmode mode ); // true if succeeds
sl@0
    44
      BOOST_FILESYSTEM_DECL std::string narrow_path_api(
sl@0
    45
        const std::wstring & ph ); // return is empty if fails
sl@0
    46
sl@0
    47
      inline std::string path_proxy( const std::wstring & file_ph,
sl@0
    48
        std::ios_base::openmode mode )
sl@0
    49
      // Return a non-existant path if cannot supply narrow short path.
sl@0
    50
      // An empty path doesn't work because some Dinkumware versions
sl@0
    51
      // assert the path is non-empty.  
sl@0
    52
      {
sl@0
    53
        std::string narrow_ph;
sl@0
    54
        bool created_file( false );
sl@0
    55
        if ( !exists( file_ph )
sl@0
    56
          && (mode & std::ios_base::out) != 0
sl@0
    57
          && create_file_api( file_ph, mode ) )
sl@0
    58
        {
sl@0
    59
          created_file = true;
sl@0
    60
        }
sl@0
    61
        narrow_ph = narrow_path_api( file_ph );
sl@0
    62
        if ( narrow_ph.empty() )
sl@0
    63
        {
sl@0
    64
          if ( created_file ) remove_api( file_ph );
sl@0
    65
          narrow_ph = "\x01";
sl@0
    66
        }
sl@0
    67
        return narrow_ph;
sl@0
    68
      }
sl@0
    69
#     else
sl@0
    70
      // Dinkumware 405 and later does supply wchar_t functions
sl@0
    71
      inline const std::wstring & path_proxy( const std::wstring & file_ph,
sl@0
    72
        std::ios_base::openmode )
sl@0
    73
        { return file_ph; }
sl@0
    74
#     endif
sl@0
    75
#   endif 
sl@0
    76
sl@0
    77
      inline const std::string & path_proxy( const std::string & file_ph,
sl@0
    78
        std::ios_base::openmode )
sl@0
    79
        { return file_ph; }
sl@0
    80
sl@0
    81
    } // namespace detail
sl@0
    82
sl@0
    83
    template < class charT, class traits = std::char_traits<charT> >
sl@0
    84
    class basic_filebuf : public std::basic_filebuf<charT,traits>
sl@0
    85
    {
sl@0
    86
    private: // disallow copying
sl@0
    87
      basic_filebuf( const basic_filebuf & );
sl@0
    88
      const basic_filebuf & operator=( const basic_filebuf & ); 
sl@0
    89
    public:
sl@0
    90
      basic_filebuf() {}
sl@0
    91
      virtual ~basic_filebuf() {}
sl@0
    92
sl@0
    93
#   ifndef BOOST_FILESYSTEM_NARROW_ONLY
sl@0
    94
      template<class Path>
sl@0
    95
      typename boost::enable_if<is_basic_path<Path>,
sl@0
    96
        basic_filebuf<charT,traits> *>::type
sl@0
    97
      open( const Path & file_ph, std::ios_base::openmode mode );
sl@0
    98
sl@0
    99
      basic_filebuf<charT,traits> *
sl@0
   100
      open( const wpath & file_ph, std::ios_base::openmode mode );
sl@0
   101
#   endif
sl@0
   102
sl@0
   103
#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
sl@0
   104
      basic_filebuf<charT,traits> *
sl@0
   105
      open( const path & file_ph, std::ios_base::openmode mode );
sl@0
   106
#   endif
sl@0
   107
    };
sl@0
   108
sl@0
   109
    template < class charT, class traits = std::char_traits<charT> >
sl@0
   110
    class basic_ifstream : public std::basic_ifstream<charT,traits>
sl@0
   111
    {
sl@0
   112
    private: // disallow copying
sl@0
   113
      basic_ifstream( const basic_ifstream & );
sl@0
   114
      const basic_ifstream & operator=( const basic_ifstream & ); 
sl@0
   115
    public:
sl@0
   116
      basic_ifstream() {}
sl@0
   117
sl@0
   118
      // use two signatures, rather than one signature with default second
sl@0
   119
      // argument, to workaround VC++ 7.1 bug (ID VSWhidbey 38416)
sl@0
   120
sl@0
   121
#   ifndef BOOST_FILESYSTEM_NARROW_ONLY
sl@0
   122
      template<class Path>
sl@0
   123
      explicit basic_ifstream( const Path & file_ph,
sl@0
   124
        typename boost::enable_if<is_basic_path<Path> >::type* dummy = 0 );
sl@0
   125
sl@0
   126
      template<class Path>
sl@0
   127
      basic_ifstream( const Path & file_ph, std::ios_base::openmode mode,
sl@0
   128
        typename boost::enable_if<is_basic_path<Path> >::type* dummy = 0 );
sl@0
   129
sl@0
   130
      template<class Path>
sl@0
   131
      typename boost::enable_if<is_basic_path<Path>, void>::type
sl@0
   132
      open( const Path & file_ph );
sl@0
   133
sl@0
   134
      template<class Path>
sl@0
   135
      typename boost::enable_if<is_basic_path<Path>, void>::type
sl@0
   136
      open( const Path & file_ph, std::ios_base::openmode mode );
sl@0
   137
sl@0
   138
      explicit basic_ifstream( const wpath & file_ph );
sl@0
   139
      basic_ifstream( const wpath & file_ph, std::ios_base::openmode mode );
sl@0
   140
      void open( const wpath & file_ph );
sl@0
   141
      void open( const wpath & file_ph, std::ios_base::openmode mode );
sl@0
   142
#   endif
sl@0
   143
sl@0
   144
      explicit basic_ifstream( const path & file_ph );
sl@0
   145
      basic_ifstream( const path & file_ph, std::ios_base::openmode mode );
sl@0
   146
#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
sl@0
   147
      void open( const path & file_ph );
sl@0
   148
      void open( const path & file_ph, std::ios_base::openmode mode );
sl@0
   149
#   endif
sl@0
   150
      virtual ~basic_ifstream() {}
sl@0
   151
    };
sl@0
   152
sl@0
   153
    template < class charT, class traits = std::char_traits<charT> >
sl@0
   154
    class basic_ofstream : public std::basic_ofstream<charT,traits>
sl@0
   155
    {
sl@0
   156
    private: // disallow copying
sl@0
   157
      basic_ofstream( const basic_ofstream & );
sl@0
   158
      const basic_ofstream & operator=( const basic_ofstream & ); 
sl@0
   159
    public:
sl@0
   160
      basic_ofstream() {}
sl@0
   161
sl@0
   162
      // use two signatures, rather than one signature with default second
sl@0
   163
      // argument, to workaround VC++ 7.1 bug (ID VSWhidbey 38416)
sl@0
   164
sl@0
   165
#   ifndef BOOST_FILESYSTEM_NARROW_ONLY
sl@0
   166
sl@0
   167
      template<class Path>
sl@0
   168
      explicit basic_ofstream( const Path & file_ph,
sl@0
   169
        typename boost::enable_if<is_basic_path<Path> >::type* dummy = 0 );
sl@0
   170
      explicit basic_ofstream( const wpath & file_ph );
sl@0
   171
sl@0
   172
      template<class Path>
sl@0
   173
      basic_ofstream( const Path & file_ph, std::ios_base::openmode mode,
sl@0
   174
        typename boost::enable_if<is_basic_path<Path> >::type* dummy = 0 );
sl@0
   175
      basic_ofstream( const wpath & file_ph, std::ios_base::openmode mode );
sl@0
   176
sl@0
   177
      template<class Path>
sl@0
   178
      typename boost::enable_if<is_basic_path<Path>, void>::type
sl@0
   179
      open( const Path & file_ph );
sl@0
   180
      void open( const wpath & file_ph );
sl@0
   181
sl@0
   182
      template<class Path>
sl@0
   183
      typename boost::enable_if<is_basic_path<Path>, void>::type
sl@0
   184
      open( const Path & file_ph, std::ios_base::openmode mode );
sl@0
   185
      void open( const wpath & file_ph, std::ios_base::openmode mode );
sl@0
   186
sl@0
   187
#   endif
sl@0
   188
sl@0
   189
      explicit basic_ofstream( const path & file_ph );
sl@0
   190
      basic_ofstream( const path & file_ph, std::ios_base::openmode mode );
sl@0
   191
#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
sl@0
   192
      void open( const path & file_ph );
sl@0
   193
      void open( const path & file_ph, std::ios_base::openmode mode );
sl@0
   194
#   endif
sl@0
   195
      virtual ~basic_ofstream() {}
sl@0
   196
    };
sl@0
   197
sl@0
   198
    template < class charT, class traits = std::char_traits<charT> >
sl@0
   199
    class basic_fstream : public std::basic_fstream<charT,traits>
sl@0
   200
    {
sl@0
   201
    private: // disallow copying
sl@0
   202
      basic_fstream( const basic_fstream & );
sl@0
   203
      const basic_fstream & operator=( const basic_fstream & ); 
sl@0
   204
    public:
sl@0
   205
      basic_fstream() {}
sl@0
   206
sl@0
   207
      // use two signatures, rather than one signature with default second
sl@0
   208
      // argument, to workaround VC++ 7.1 bug (ID VSWhidbey 38416)
sl@0
   209
sl@0
   210
#   ifndef BOOST_FILESYSTEM_NARROW_ONLY
sl@0
   211
sl@0
   212
      template<class Path>
sl@0
   213
      explicit basic_fstream( const Path & file_ph,
sl@0
   214
        typename boost::enable_if<is_basic_path<Path> >::type* dummy = 0 );
sl@0
   215
      explicit basic_fstream( const wpath & file_ph );
sl@0
   216
sl@0
   217
      template<class Path>
sl@0
   218
      basic_fstream( const Path & file_ph, std::ios_base::openmode mode,
sl@0
   219
        typename boost::enable_if<is_basic_path<Path> >::type* dummy = 0 );
sl@0
   220
      basic_fstream( const wpath & file_ph, std::ios_base::openmode mode );
sl@0
   221
sl@0
   222
      template<class Path>
sl@0
   223
      typename boost::enable_if<is_basic_path<Path>, void>::type
sl@0
   224
      open( const Path & file_ph );
sl@0
   225
      void open( const wpath & file_ph );
sl@0
   226
sl@0
   227
      template<class Path>
sl@0
   228
      typename boost::enable_if<is_basic_path<Path>, void>::type
sl@0
   229
      open( const Path & file_ph, std::ios_base::openmode mode );
sl@0
   230
      void open( const wpath & file_ph, std::ios_base::openmode mode );
sl@0
   231
sl@0
   232
#   endif
sl@0
   233
sl@0
   234
      explicit basic_fstream( const path & file_ph );
sl@0
   235
      basic_fstream( const path & file_ph, std::ios_base::openmode mode );
sl@0
   236
#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
sl@0
   237
      void open( const path & file_ph );
sl@0
   238
      void open( const path & file_ph, std::ios_base::openmode mode );
sl@0
   239
#   endif
sl@0
   240
      virtual ~basic_fstream() {}
sl@0
   241
sl@0
   242
    };
sl@0
   243
 
sl@0
   244
    typedef basic_filebuf<char> filebuf;
sl@0
   245
    typedef basic_ifstream<char> ifstream;
sl@0
   246
    typedef basic_ofstream<char> ofstream;
sl@0
   247
    typedef basic_fstream<char> fstream;
sl@0
   248
sl@0
   249
# ifndef BOOST_FILESYSTEM_NARROW_ONLY
sl@0
   250
    typedef basic_filebuf<wchar_t> wfilebuf;
sl@0
   251
    typedef basic_ifstream<wchar_t> wifstream;
sl@0
   252
    typedef basic_fstream<wchar_t> wfstream;
sl@0
   253
    typedef basic_ofstream<wchar_t> wofstream;
sl@0
   254
# endif
sl@0
   255
    
sl@0
   256
# ifndef BOOST_FILESYSTEM_NARROW_ONLY
sl@0
   257
sl@0
   258
//  basic_filebuf definitions  -----------------------------------------------//
sl@0
   259
sl@0
   260
    template <class charT, class traits>
sl@0
   261
    template<class Path>
sl@0
   262
    typename boost::enable_if<is_basic_path<Path>,
sl@0
   263
      basic_filebuf<charT,traits> *>::type
sl@0
   264
    basic_filebuf<charT,traits>::open( const Path & file_ph,
sl@0
   265
      std::ios_base::openmode mode )
sl@0
   266
    {
sl@0
   267
      return (std::basic_filebuf<charT,traits>::open( detail::path_proxy(
sl@0
   268
        file_ph.external_file_string(), mode ).c_str(), mode )
sl@0
   269
          == 0) ? 0 : this;
sl@0
   270
    }
sl@0
   271
sl@0
   272
    template <class charT, class traits>
sl@0
   273
    basic_filebuf<charT,traits> *
sl@0
   274
    basic_filebuf<charT, traits>::open( const wpath & file_ph,
sl@0
   275
      std::ios_base::openmode mode )
sl@0
   276
    {
sl@0
   277
      return this->BOOST_NESTED_TEMPLATE open<wpath>( file_ph, mode );
sl@0
   278
    }
sl@0
   279
sl@0
   280
//  basic_ifstream definitions  ----------------------------------------------//
sl@0
   281
sl@0
   282
    template <class charT, class traits> template<class Path>
sl@0
   283
    basic_ifstream<charT,traits>::basic_ifstream(const Path & file_ph,
sl@0
   284
      typename boost::enable_if<is_basic_path<Path> >::type* )
sl@0
   285
      : std::basic_ifstream<charT,traits>(
sl@0
   286
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   287
          std::ios_base::in ).c_str(), std::ios_base::in ) {}
sl@0
   288
sl@0
   289
    template <class charT, class traits>
sl@0
   290
    basic_ifstream<charT,traits>::basic_ifstream( const wpath & file_ph )
sl@0
   291
      : std::basic_ifstream<charT,traits>(
sl@0
   292
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   293
          std::ios_base::in ).c_str(), std::ios_base::in ) {}
sl@0
   294
    
sl@0
   295
    template <class charT, class traits> template<class Path>
sl@0
   296
    basic_ifstream<charT,traits>::basic_ifstream( const Path & file_ph,
sl@0
   297
      std::ios_base::openmode mode,
sl@0
   298
      typename boost::enable_if<is_basic_path<Path> >::type* )
sl@0
   299
      : std::basic_ifstream<charT,traits>(
sl@0
   300
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   301
          mode ).c_str(), mode | std::ios_base::in ) {}
sl@0
   302
sl@0
   303
    template <class charT, class traits>
sl@0
   304
    basic_ifstream<charT,traits>::basic_ifstream( const wpath & file_ph,
sl@0
   305
      std::ios_base::openmode mode )
sl@0
   306
      : std::basic_ifstream<charT,traits>(
sl@0
   307
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   308
          mode ).c_str(), mode | std::ios_base::in ) {}
sl@0
   309
sl@0
   310
    template <class charT, class traits> template<class Path>
sl@0
   311
    typename boost::enable_if<is_basic_path<Path>, void>::type
sl@0
   312
    basic_ifstream<charT,traits>::open( const Path & file_ph )
sl@0
   313
    {
sl@0
   314
      std::basic_ifstream<charT,traits>::open(
sl@0
   315
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   316
          std::ios_base::in ).c_str(), std::ios_base::in );
sl@0
   317
    }
sl@0
   318
sl@0
   319
    template <class charT, class traits>
sl@0
   320
    void basic_ifstream<charT,traits>::open( const wpath & file_ph )
sl@0
   321
    {
sl@0
   322
      std::basic_ifstream<charT,traits>::open(
sl@0
   323
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   324
          std::ios_base::in ).c_str(), std::ios_base::in );
sl@0
   325
    }
sl@0
   326
    
sl@0
   327
    template <class charT, class traits> template<class Path>
sl@0
   328
    typename boost::enable_if<is_basic_path<Path>, void>::type
sl@0
   329
    basic_ifstream<charT,traits>::open( const Path & file_ph,
sl@0
   330
      std::ios_base::openmode mode )
sl@0
   331
    {
sl@0
   332
      std::basic_ifstream<charT,traits>::open(
sl@0
   333
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   334
          mode ).c_str(), mode | std::ios_base::in );
sl@0
   335
    }
sl@0
   336
    
sl@0
   337
    template <class charT, class traits>
sl@0
   338
    void basic_ifstream<charT,traits>::open( const wpath & file_ph,
sl@0
   339
      std::ios_base::openmode mode )
sl@0
   340
    {
sl@0
   341
      std::basic_ifstream<charT,traits>::open(
sl@0
   342
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   343
          mode ).c_str(), mode | std::ios_base::in );
sl@0
   344
    }
sl@0
   345
sl@0
   346
//  basic_ofstream definitions  ----------------------------------------------//
sl@0
   347
sl@0
   348
    template <class charT, class traits> template<class Path>
sl@0
   349
    basic_ofstream<charT,traits>::basic_ofstream(const Path & file_ph,
sl@0
   350
      typename boost::enable_if<is_basic_path<Path> >::type* )
sl@0
   351
      : std::basic_ofstream<charT,traits>(
sl@0
   352
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   353
          std::ios_base::out ).c_str(), std::ios_base::out ) {}
sl@0
   354
sl@0
   355
    template <class charT, class traits>
sl@0
   356
    basic_ofstream<charT,traits>::basic_ofstream( const wpath & file_ph )
sl@0
   357
      : std::basic_ofstream<charT,traits>(
sl@0
   358
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   359
          std::ios_base::out ).c_str(), std::ios_base::out ) {}
sl@0
   360
sl@0
   361
    template <class charT, class traits> template<class Path>
sl@0
   362
    basic_ofstream<charT,traits>::basic_ofstream( const Path & file_ph,
sl@0
   363
      std::ios_base::openmode mode,
sl@0
   364
      typename boost::enable_if<is_basic_path<Path> >::type* )
sl@0
   365
      : std::basic_ofstream<charT,traits>(
sl@0
   366
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   367
          mode ).c_str(), mode | std::ios_base::out ) {}
sl@0
   368
sl@0
   369
    template <class charT, class traits>
sl@0
   370
    basic_ofstream<charT,traits>::basic_ofstream( const wpath & file_ph,
sl@0
   371
      std::ios_base::openmode mode )
sl@0
   372
      : std::basic_ofstream<charT,traits>(
sl@0
   373
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   374
          mode ).c_str(), mode | std::ios_base::out ) {}
sl@0
   375
    
sl@0
   376
    template <class charT, class traits> template<class Path>
sl@0
   377
    typename boost::enable_if<is_basic_path<Path>, void>::type
sl@0
   378
    basic_ofstream<charT,traits>::open( const Path & file_ph )
sl@0
   379
    {
sl@0
   380
      std::basic_ofstream<charT,traits>::open(
sl@0
   381
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   382
          std::ios_base::out ).c_str(), std::ios_base::out );
sl@0
   383
    }
sl@0
   384
    
sl@0
   385
    template <class charT, class traits>
sl@0
   386
    void basic_ofstream<charT,traits>::open( const wpath & file_ph )
sl@0
   387
    {
sl@0
   388
      std::basic_ofstream<charT,traits>::open(
sl@0
   389
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   390
          std::ios_base::out ).c_str(), std::ios_base::out );
sl@0
   391
    }
sl@0
   392
    
sl@0
   393
    template <class charT, class traits> template<class Path>
sl@0
   394
    typename boost::enable_if<is_basic_path<Path>, void>::type
sl@0
   395
    basic_ofstream<charT,traits>::open( const Path & file_ph,
sl@0
   396
      std::ios_base::openmode mode )
sl@0
   397
    {
sl@0
   398
      std::basic_ofstream<charT,traits>::open(
sl@0
   399
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   400
          mode ).c_str(), mode | std::ios_base::out );
sl@0
   401
    }
sl@0
   402
sl@0
   403
    template <class charT, class traits>
sl@0
   404
    void basic_ofstream<charT,traits>::open( const wpath & file_ph,
sl@0
   405
      std::ios_base::openmode mode )
sl@0
   406
    {
sl@0
   407
      std::basic_ofstream<charT,traits>::open(
sl@0
   408
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   409
          mode ).c_str(), mode | std::ios_base::out );
sl@0
   410
    }
sl@0
   411
sl@0
   412
//  basic_fstream definitions  -----------------------------------------------//
sl@0
   413
sl@0
   414
    template <class charT, class traits> template<class Path>
sl@0
   415
    basic_fstream<charT,traits>::basic_fstream(const Path & file_ph,
sl@0
   416
      typename boost::enable_if<is_basic_path<Path> >::type* )
sl@0
   417
      : std::basic_fstream<charT,traits>(
sl@0
   418
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   419
          std::ios_base::in|std::ios_base::out ).c_str(),
sl@0
   420
          std::ios_base::in|std::ios_base::out ) {}
sl@0
   421
sl@0
   422
    template <class charT, class traits>
sl@0
   423
    basic_fstream<charT,traits>::basic_fstream( const wpath & file_ph )
sl@0
   424
      : std::basic_fstream<charT,traits>(
sl@0
   425
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   426
          std::ios_base::in|std::ios_base::out ).c_str(),
sl@0
   427
          std::ios_base::in|std::ios_base::out ) {}
sl@0
   428
sl@0
   429
    template <class charT, class traits> template<class Path>
sl@0
   430
    basic_fstream<charT,traits>::basic_fstream( const Path & file_ph,
sl@0
   431
      std::ios_base::openmode mode,
sl@0
   432
      typename boost::enable_if<is_basic_path<Path> >::type* )
sl@0
   433
      : std::basic_fstream<charT,traits>(
sl@0
   434
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   435
          mode ).c_str(), mode | std::ios_base::in | std::ios_base::out ) {}
sl@0
   436
    
sl@0
   437
    template <class charT, class traits>
sl@0
   438
    basic_fstream<charT,traits>::basic_fstream( const wpath & file_ph,
sl@0
   439
      std::ios_base::openmode mode )
sl@0
   440
      : std::basic_fstream<charT,traits>(
sl@0
   441
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   442
          mode ).c_str(), mode | std::ios_base::in | std::ios_base::out ) {}
sl@0
   443
      
sl@0
   444
    template <class charT, class traits> template<class Path>
sl@0
   445
    typename boost::enable_if<is_basic_path<Path>, void>::type
sl@0
   446
    basic_fstream<charT,traits>::open( const Path & file_ph )
sl@0
   447
    {
sl@0
   448
      std::basic_fstream<charT,traits>::open(
sl@0
   449
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   450
          std::ios_base::in|std::ios_base::out ).c_str(),
sl@0
   451
          std::ios_base::in|std::ios_base::out );
sl@0
   452
    }
sl@0
   453
sl@0
   454
    template <class charT, class traits>
sl@0
   455
    void basic_fstream<charT,traits>::open( const wpath & file_ph )
sl@0
   456
    {
sl@0
   457
      std::basic_fstream<charT,traits>::open(
sl@0
   458
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   459
          std::ios_base::in|std::ios_base::out ).c_str(),
sl@0
   460
          std::ios_base::in|std::ios_base::out );
sl@0
   461
    }
sl@0
   462
    
sl@0
   463
    template <class charT, class traits> template<class Path>
sl@0
   464
    typename boost::enable_if<is_basic_path<Path>, void>::type
sl@0
   465
    basic_fstream<charT,traits>::open( const Path & file_ph,
sl@0
   466
      std::ios_base::openmode mode )
sl@0
   467
    {
sl@0
   468
      std::basic_fstream<charT,traits>::open(
sl@0
   469
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   470
          mode ).c_str(), mode | std::ios_base::in | std::ios_base::out );
sl@0
   471
    }
sl@0
   472
sl@0
   473
    template <class charT, class traits>
sl@0
   474
    void basic_fstream<charT,traits>::open( const wpath & file_ph,
sl@0
   475
      std::ios_base::openmode mode )
sl@0
   476
    {
sl@0
   477
      std::basic_fstream<charT,traits>::open(
sl@0
   478
        detail::path_proxy( file_ph.external_file_string(),
sl@0
   479
          mode ).c_str(), mode | std::ios_base::in | std::ios_base::out );
sl@0
   480
    }
sl@0
   481
sl@0
   482
# endif
sl@0
   483
sl@0
   484
#  if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
sl@0
   485
    template <class charT, class traits>
sl@0
   486
    basic_filebuf<charT,traits> *
sl@0
   487
    basic_filebuf<charT, traits>::open( const path & file_ph,
sl@0
   488
      std::ios_base::openmode mode )
sl@0
   489
    {
sl@0
   490
      return std::basic_filebuf<charT,traits>::open(
sl@0
   491
        file_ph.file_string().c_str(), mode ) == 0 ? 0 : this;
sl@0
   492
    }
sl@0
   493
#  endif
sl@0
   494
sl@0
   495
    template <class charT, class traits>
sl@0
   496
    basic_ifstream<charT,traits>::basic_ifstream( const path & file_ph )
sl@0
   497
      : std::basic_ifstream<charT,traits>(
sl@0
   498
          file_ph.file_string().c_str(), std::ios_base::in ) {}
sl@0
   499
sl@0
   500
    template <class charT, class traits>
sl@0
   501
    basic_ifstream<charT,traits>::basic_ifstream( const path & file_ph,
sl@0
   502
      std::ios_base::openmode mode )
sl@0
   503
      : std::basic_ifstream<charT,traits>(
sl@0
   504
          file_ph.file_string().c_str(), mode ) {}
sl@0
   505
    
sl@0
   506
#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
sl@0
   507
    template <class charT, class traits>
sl@0
   508
    void basic_ifstream<charT,traits>::open( const path & file_ph )
sl@0
   509
    {
sl@0
   510
      std::basic_ifstream<charT,traits>::open(
sl@0
   511
        file_ph.file_string().c_str(), std::ios_base::in );
sl@0
   512
    }
sl@0
   513
    
sl@0
   514
    template <class charT, class traits>
sl@0
   515
    void basic_ifstream<charT,traits>::open( const path & file_ph,
sl@0
   516
      std::ios_base::openmode mode )
sl@0
   517
    {
sl@0
   518
      std::basic_ifstream<charT,traits>::open(
sl@0
   519
        file_ph.file_string().c_str(), mode );
sl@0
   520
    }
sl@0
   521
#   endif
sl@0
   522
sl@0
   523
    template <class charT, class traits>
sl@0
   524
    basic_ofstream<charT,traits>::basic_ofstream( const path & file_ph )
sl@0
   525
      : std::basic_ofstream<charT,traits>(
sl@0
   526
          file_ph.file_string().c_str(), std::ios_base::out ) {}
sl@0
   527
sl@0
   528
    template <class charT, class traits>
sl@0
   529
    basic_ofstream<charT,traits>::basic_ofstream( const path & file_ph,
sl@0
   530
      std::ios_base::openmode mode )
sl@0
   531
      : std::basic_ofstream<charT,traits>(
sl@0
   532
          file_ph.file_string().c_str(), mode ) {}
sl@0
   533
    
sl@0
   534
#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
sl@0
   535
    template <class charT, class traits>
sl@0
   536
    void basic_ofstream<charT,traits>::open( const path & file_ph )
sl@0
   537
    {
sl@0
   538
      std::basic_ofstream<charT,traits>::open(
sl@0
   539
        file_ph.file_string().c_str(), std::ios_base::out );
sl@0
   540
    }
sl@0
   541
    
sl@0
   542
    template <class charT, class traits>
sl@0
   543
    void basic_ofstream<charT,traits>::open( const path & file_ph,
sl@0
   544
      std::ios_base::openmode mode )
sl@0
   545
    {
sl@0
   546
      std::basic_ofstream<charT,traits>::open(
sl@0
   547
        file_ph.file_string().c_str(), mode );
sl@0
   548
    }
sl@0
   549
#   endif
sl@0
   550
sl@0
   551
    template <class charT, class traits>
sl@0
   552
    basic_fstream<charT,traits>::basic_fstream( const path & file_ph )
sl@0
   553
      : std::basic_fstream<charT,traits>(
sl@0
   554
          file_ph.file_string().c_str(),
sl@0
   555
          std::ios_base::in|std::ios_base::out ) {}
sl@0
   556
sl@0
   557
sl@0
   558
    template <class charT, class traits>
sl@0
   559
    basic_fstream<charT,traits>::basic_fstream( const path & file_ph,
sl@0
   560
      std::ios_base::openmode mode )
sl@0
   561
      : std::basic_fstream<charT,traits>(
sl@0
   562
          file_ph.file_string().c_str(), mode ) {}
sl@0
   563
sl@0
   564
#   if !BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) // VC++ 6.0 can't handle this
sl@0
   565
    template <class charT, class traits>
sl@0
   566
    void basic_fstream<charT,traits>::open( const path & file_ph )
sl@0
   567
    {
sl@0
   568
      std::basic_fstream<charT,traits>::open(
sl@0
   569
        file_ph.file_string().c_str(), std::ios_base::in|std::ios_base::out );
sl@0
   570
    }
sl@0
   571
sl@0
   572
    template <class charT, class traits>
sl@0
   573
    void basic_fstream<charT,traits>::open( const path & file_ph,
sl@0
   574
      std::ios_base::openmode mode )
sl@0
   575
    {
sl@0
   576
      std::basic_fstream<charT,traits>::open(
sl@0
   577
        file_ph.file_string().c_str(), mode );
sl@0
   578
    }
sl@0
   579
#   endif
sl@0
   580
  } // namespace filesystem
sl@0
   581
} // namespace boost
sl@0
   582
sl@0
   583
#include <boost/config/abi_suffix.hpp> // pops abi_prefix.hpp pragmas
sl@0
   584
#endif  // BOOST_FILESYSTEM_FSTREAM_HPP