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 |
#ifndef BOOST_IOSTREAMS_CHAR_TRAITS_HPP_INCLUDED
|
sl@0
|
8 |
#define BOOST_IOSTREAMS_CHAR_TRAITS_HPP_INCLUDED
|
sl@0
|
9 |
|
sl@0
|
10 |
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
sl@0
|
11 |
# pragma once
|
sl@0
|
12 |
#endif
|
sl@0
|
13 |
|
sl@0
|
14 |
#include <boost/config.hpp>
|
sl@0
|
15 |
#include <cstddef>
|
sl@0
|
16 |
#include <cstdio> // EOF.
|
sl@0
|
17 |
#include <string> // std::char_traits.
|
sl@0
|
18 |
#include <boost/iostreams/detail/char_traits.hpp>
|
sl@0
|
19 |
#include <boost/iostreams/detail/config/wide_streams.hpp>
|
sl@0
|
20 |
#ifndef BOOST_IOSTREAMS_NO_WIDE_STREAMS
|
sl@0
|
21 |
# include <cwchar>
|
sl@0
|
22 |
#endif
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifdef BOOST_NO_STDC_NAMESPACE
|
sl@0
|
25 |
namespace std { using ::wint_t; }
|
sl@0
|
26 |
#endif
|
sl@0
|
27 |
|
sl@0
|
28 |
namespace boost { namespace iostreams {
|
sl@0
|
29 |
|
sl@0
|
30 |
// Dinkumware that comes with QNX Momentics 6.3.0, 4.0.2, incorrectly defines the
|
sl@0
|
31 |
// EOF and WEOF macros to not std:: qualify the wint_t type (and so does
|
sl@0
|
32 |
// Sun C++ 5.8 + STLport 4). Fix by placing the def in this scope.
|
sl@0
|
33 |
// NOTE: Use BOOST_WORKAROUND?
|
sl@0
|
34 |
#if (defined(__QNX__) && defined(BOOST_DINKUMWARE_STDLIB)) \
|
sl@0
|
35 |
|| defined(__SUNPRO_CC)
|
sl@0
|
36 |
using ::std::wint_t;
|
sl@0
|
37 |
#endif
|
sl@0
|
38 |
|
sl@0
|
39 |
const int WOULD_BLOCK = (int) (EOF - 1);
|
sl@0
|
40 |
|
sl@0
|
41 |
#ifndef BOOST_IOSTREAMS_NO_WIDE_STREAMS
|
sl@0
|
42 |
const std::wint_t WWOULD_BLOCK = (std::wint_t) (WEOF - 1);
|
sl@0
|
43 |
#endif
|
sl@0
|
44 |
|
sl@0
|
45 |
template<typename Ch>
|
sl@0
|
46 |
struct char_traits;
|
sl@0
|
47 |
|
sl@0
|
48 |
template<>
|
sl@0
|
49 |
struct char_traits<char> : BOOST_IOSTREAMS_CHAR_TRAITS(char) {
|
sl@0
|
50 |
static char newline() { return '\n'; }
|
sl@0
|
51 |
static int good() { return '\n'; }
|
sl@0
|
52 |
static int would_block() { return WOULD_BLOCK; }
|
sl@0
|
53 |
static bool is_good(int c) { return c != EOF && c != WOULD_BLOCK; }
|
sl@0
|
54 |
static bool is_eof(int c) { return c == EOF; }
|
sl@0
|
55 |
static bool would_block(int c) { return c == WOULD_BLOCK; }
|
sl@0
|
56 |
};
|
sl@0
|
57 |
|
sl@0
|
58 |
#ifndef BOOST_IOSTREAMS_NO_WIDE_STREAMS
|
sl@0
|
59 |
template<>
|
sl@0
|
60 |
struct char_traits<wchar_t> : std::char_traits<wchar_t> {
|
sl@0
|
61 |
static wchar_t newline() { return L'\n'; }
|
sl@0
|
62 |
static std::wint_t good() { return L'\n'; }
|
sl@0
|
63 |
static std::wint_t would_block() { return WWOULD_BLOCK; }
|
sl@0
|
64 |
static bool is_good(std::wint_t c) { return c != WEOF && c != WWOULD_BLOCK; }
|
sl@0
|
65 |
static bool is_eof(std::wint_t c) { return c == WEOF; }
|
sl@0
|
66 |
static bool would_block(std::wint_t c) { return c == WWOULD_BLOCK; }
|
sl@0
|
67 |
};
|
sl@0
|
68 |
#endif
|
sl@0
|
69 |
|
sl@0
|
70 |
} } // End namespaces iostreams, boost.
|
sl@0
|
71 |
|
sl@0
|
72 |
#endif // #ifndef BOOST_IOSTREAMS_CHAR_TRAITS_HPP_INCLUDED
|