OSDN Git Service

*** empty log message ***
[pf3gnuchains/sourceware.git] / gdb / gdb_wchar.h
1 /* Wide characters for gdb
2    Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
3
4    This file is part of GDB.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 #ifndef GDB_WCHAR_H
20 #define GDB_WCHAR_H
21
22 /* We handle three different modes here.
23    
24    Capable systems have the full suite: wchar_t support and iconv
25    (perhaps via GNU libiconv).  On these machines, full functionality
26    is available.  Note that full functionality is dependent on us
27    being able to convert from an arbitrary encoding to wchar_t.  In
28    practice this means we look for __STDC_ISO_10646__ (where we know
29    the name of the wchar_t encoding) or GNU libiconv, where we can use
30    "wchar_t".
31    
32    DJGPP is known to have libiconv but not wchar_t support.  On
33    systems like this, we use the narrow character functions.  The full
34    functionality is available to the user, but many characters (those
35    outside the narrow range) will be displayed as escapes.
36    
37    Finally, some systems do not have iconv, or are really broken
38    (e.g., Solaris, which almost has all of this working, but where
39    just enough is broken to make it too hard to use).  Here we provide
40    a phony iconv which only handles a single character set, and we
41    provide wrappers for the wchar_t functionality we use.  */
42
43
44 #if defined (HAVE_ICONV)
45 #include <iconv.h>
46 #else
47 /* This define is used elsewhere so we don't need to duplicate the
48    same checking logic in multiple places.  */
49 #define PHONY_ICONV
50 #endif
51
52 /* We use "btowc" as a sentinel to detect functioning wchar_t support.
53    We check for either __STDC_ISO_10646__ or a new-enough libiconv in
54    order to ensure we can convert to and from wchar_t.  We choose
55    libiconv version 0x108 because it is the first version with
56    iconvlist.  */
57 #if defined (HAVE_ICONV) && defined (HAVE_WCHAR_H) && defined (HAVE_BTOWC) \
58   && (defined (__STDC_ISO_10646__) \
59       || (defined (_LIBICONV_VERSION) && _LIBICONV_VERSION >= 0x108))
60
61 #include <wchar.h>
62 #include <wctype.h>
63
64 typedef wchar_t gdb_wchar_t;
65 typedef wint_t gdb_wint_t;
66
67 #define gdb_wcslen wcslen
68 #define gdb_iswprint iswprint
69 #define gdb_iswdigit iswdigit
70 #define gdb_btowc btowc
71 #define gdb_WEOF WEOF
72
73 #define LCST(X) L ## X
74
75 /* If __STDC_ISO_10646__ is defined, then the host wchar_t is UCS-4.
76    We exploit this fact in the hope that there are hosts that define
77    this but which do not support "wchar_t" as an encoding argument to
78    iconv_open.  We put the endianness into the encoding name to avoid
79    hosts that emit a BOM when the unadorned name is used.  */
80 #if defined (__STDC_ISO_10646__)
81 #if WORDS_BIGENDIAN
82 #define INTERMEDIATE_ENCODING "UCS-4BE"
83 #else
84 #define INTERMEDIATE_ENCODING "UCS-4LE"
85 #endif
86 #elif defined (_LIBICONV_VERSION) && _LIBICONV_VERSION >= 0x108
87 #define INTERMEDIATE_ENCODING "wchar_t"
88 #else
89 /* This shouldn't happen, because the earlier #if should have filtered
90    out this case.  */
91 #error "Neither __STDC_ISO_10646__ nor _LIBICONV_VERSION defined"
92 #endif
93
94 #else
95
96 /* If we got here and have wchar_t support, we might be on a system
97    with some problem.  So, we just disable everything.  */
98 #if defined (HAVE_WCHAR_H) && defined (HAVE_BTOWC)
99 #define PHONY_ICONV
100 #endif
101
102 typedef char gdb_wchar_t;
103 typedef int gdb_wint_t;
104
105 #define gdb_wcslen strlen
106 #define gdb_iswprint isprint
107 #define gdb_iswdigit isdigit
108 #define gdb_btowc /* empty */
109 #define gdb_WEOF EOF
110
111 #define LCST(X) X
112
113 /* If we are using the narrow character set, we want to use the host
114    narrow encoding as our intermediate encoding.  However, if we are
115    also providing a phony iconv, we might as well just stick with
116    "wchar_t".  */
117 #ifdef PHONY_ICONV
118 #define INTERMEDIATE_ENCODING "wchar_t"
119 #else
120 #define INTERMEDIATE_ENCODING host_charset ()
121 #endif
122
123 #endif
124
125 #endif /* GDB_WCHAR_H */