sl@0
|
1 |
// (C) Copyright Jonathan Turkanis 2003.
|
sl@0
|
2 |
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
sl@0
|
3 |
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
|
sl@0
|
4 |
|
sl@0
|
5 |
// See http://www.boost.org/libs/iostreams for documentation.
|
sl@0
|
6 |
|
sl@0
|
7 |
// Thanks to Gareth Sylvester-Bradley for the Dinkumware versions of the
|
sl@0
|
8 |
// positioning functions.
|
sl@0
|
9 |
|
sl@0
|
10 |
#ifndef BOOST_IOSTREAMS_POSITIONING_HPP_INCLUDED
|
sl@0
|
11 |
#define BOOST_IOSTREAMS_POSITIONING_HPP_INCLUDED
|
sl@0
|
12 |
|
sl@0
|
13 |
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
sl@0
|
14 |
# pragma once
|
sl@0
|
15 |
#endif
|
sl@0
|
16 |
|
sl@0
|
17 |
#include <boost/config.hpp>
|
sl@0
|
18 |
#include <boost/cstdint.hpp>
|
sl@0
|
19 |
#include <boost/integer_traits.hpp>
|
sl@0
|
20 |
#include <boost/iostreams/detail/config/codecvt.hpp> // mbstate_t.
|
sl@0
|
21 |
#include <boost/iostreams/detail/ios.hpp> // streamoff, streampos.
|
sl@0
|
22 |
|
sl@0
|
23 |
// Must come last.
|
sl@0
|
24 |
#include <boost/iostreams/detail/config/disable_warnings.hpp>
|
sl@0
|
25 |
|
sl@0
|
26 |
#ifdef BOOST_NO_STDC_NAMESPACE
|
sl@0
|
27 |
namespace std { using ::fpos_t; }
|
sl@0
|
28 |
#endif
|
sl@0
|
29 |
|
sl@0
|
30 |
namespace boost { namespace iostreams {
|
sl@0
|
31 |
|
sl@0
|
32 |
typedef boost::intmax_t stream_offset;
|
sl@0
|
33 |
|
sl@0
|
34 |
inline std::streamoff stream_offset_to_streamoff(stream_offset off)
|
sl@0
|
35 |
{ return static_cast<stream_offset>(off); }
|
sl@0
|
36 |
|
sl@0
|
37 |
template<typename PosType> // Hande custom pos_type's.
|
sl@0
|
38 |
inline stream_offset position_to_offset(PosType pos)
|
sl@0
|
39 |
{ return std::streamoff(pos); }
|
sl@0
|
40 |
|
sl@0
|
41 |
#if ((defined(_YVALS) && !defined(__IBMCPP__)) || defined(_CPPLIB_VER)) && \
|
sl@0
|
42 |
!defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) \
|
sl@0
|
43 |
&& !defined(__QNX__) \
|
sl@0
|
44 |
/**/
|
sl@0
|
45 |
|
sl@0
|
46 |
/* Dinkumware */
|
sl@0
|
47 |
|
sl@0
|
48 |
inline std::streampos offset_to_position(stream_offset off)
|
sl@0
|
49 |
{
|
sl@0
|
50 |
// Use implementation-specific constructor.
|
sl@0
|
51 |
return std::streampos(std::mbstate_t(), off);
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
inline stream_offset fpos_t_to_offset(std::fpos_t pos)
|
sl@0
|
55 |
{ // Helper function.
|
sl@0
|
56 |
#if defined(_POSIX_) || (_INTEGRAL_MAX_BITS >= 64)
|
sl@0
|
57 |
return pos;
|
sl@0
|
58 |
#else
|
sl@0
|
59 |
return _FPOSOFF(pos);
|
sl@0
|
60 |
#endif
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
# if defined(_CPPLIB_VER) //--------------------------------------------------//
|
sl@0
|
64 |
|
sl@0
|
65 |
/* Recent Dinkumware */
|
sl@0
|
66 |
|
sl@0
|
67 |
inline stream_offset position_to_offset(std::streampos pos)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
// Use implementation-specific member function seekpos().
|
sl@0
|
70 |
return fpos_t_to_offset(pos.seekpos()) +
|
sl@0
|
71 |
stream_offset(std::streamoff(pos)) -
|
sl@0
|
72 |
stream_offset(std::streamoff(pos.seekpos()));
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
# else // # if defined(_CPPLIB_VER) //----------------------------------------//
|
sl@0
|
76 |
|
sl@0
|
77 |
/* Old Dinkumware */
|
sl@0
|
78 |
|
sl@0
|
79 |
inline stream_offset position_to_offset(std::streampos pos)
|
sl@0
|
80 |
{
|
sl@0
|
81 |
// use implementation-specific member function get_fpos_t().
|
sl@0
|
82 |
return fpos_t_to_offset(pos.get_fpos_t()) +
|
sl@0
|
83 |
stream_offset(std::streamoff(pos)) -
|
sl@0
|
84 |
stream_offset(std::streamoff(pos.get_fpos_t()));
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
# endif // # if defined(_CPPLIB_VER) //---------------------------------------//
|
sl@0
|
88 |
#else // Dinkumware //--------------------------------------------------------//
|
sl@0
|
89 |
|
sl@0
|
90 |
/* Non-Dinkumware */
|
sl@0
|
91 |
|
sl@0
|
92 |
inline std::streampos offset_to_position(stream_offset off) { return off; }
|
sl@0
|
93 |
|
sl@0
|
94 |
inline stream_offset position_to_offset(std::streampos pos) { return pos; }
|
sl@0
|
95 |
|
sl@0
|
96 |
#endif // Dinkumware //-------------------------------------------------------//
|
sl@0
|
97 |
|
sl@0
|
98 |
} } // End namespaces iostreams, boost.
|
sl@0
|
99 |
|
sl@0
|
100 |
#include <boost/iostreams/detail/config/enable_warnings.hpp>
|
sl@0
|
101 |
|
sl@0
|
102 |
#endif // #ifndef BOOST_IOSTREAMS_POSITIONING_HPP_INCLUDED
|