Files

117 lines
3.4 KiB
C
Raw Permalink Normal View History

1997-12-01 17:16:22 +00:00
/* Generic conversion to and from 8bit charsets,
converting from UCS using gaps.
Copyright (C) 1997-2026 Free Software Foundation, Inc.
1997-11-26 04:23:08 +00:00
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
2001-07-06 04:58:11 +00:00
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
1997-11-26 04:23:08 +00:00
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2001-07-06 04:58:11 +00:00
Lesser General Public License for more details.
1997-11-26 04:23:08 +00:00
2001-07-06 04:58:11 +00:00
You should have received a copy of the GNU Lesser General Public
2012-02-09 23:18:22 +00:00
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
1997-11-26 04:23:08 +00:00
2000-06-12 19:47:50 +00:00
#include <dlfcn.h>
1998-04-13 17:54:00 +00:00
#include <stdint.h>
1997-12-01 17:16:22 +00:00
struct gap
{
uint16_t start;
uint16_t end;
1998-04-24 07:07:59 +00:00
int32_t idx;
1997-12-01 17:16:22 +00:00
};
/* Now we can include the tables. */
#include TABLES
2002-12-02 22:39:58 +00:00
#ifndef NONNUL
# define NONNUL(c) ((c) != '\0')
#endif
1998-04-20 18:41:05 +00:00
#define FROM_LOOP from_gap
#define TO_LOOP to_gap
#define DEFINE_INIT 1
#define DEFINE_FINI 1
#define MIN_NEEDED_FROM 1
#define MIN_NEEDED_TO 4
2014-05-01 10:22:35 -07:00
#define ONE_DIRECTION 0
1997-11-26 04:23:08 +00:00
1998-04-20 18:41:05 +00:00
/* First define the conversion function from the 8bit charset to UCS4. */
#define MIN_NEEDED_INPUT MIN_NEEDED_FROM
#define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
#define LOOPFCT FROM_LOOP
#define BODY \
{ \
uint32_t ch = to_ucs4[*inptr]; \
\
2002-12-02 22:39:58 +00:00
if (HAS_HOLES && __builtin_expect (ch == L'\0', 0) && NONNUL (*inptr)) \
1998-04-20 18:41:05 +00:00
{ \
/* This is an illegal character. */ \
2002-06-28 21:23:06 +00:00
STANDARD_FROM_LOOP_ERR_HANDLER (1); \
2000-06-06 03:16:30 +00:00
} \
else \
{ \
put32 (outptr, ch); \
outptr += 4; \
1998-04-20 18:41:05 +00:00
} \
\
++inptr; \
}
2000-06-12 19:47:50 +00:00
#define LOOP_NEED_FLAGS
2002-12-02 22:39:58 +00:00
#define ONEBYTE_BODY \
{ \
uint32_t ch = to_ucs4[c]; \
\
if (HAS_HOLES && __builtin_expect (ch == L'\0', 0) && NONNUL (c)) \
return WEOF; \
else \
return ch; \
}
1998-04-20 18:41:05 +00:00
#include <iconv/loop.c>
1997-11-26 04:23:08 +00:00
1998-04-20 18:41:05 +00:00
/* Next, define the other direction. */
#define MIN_NEEDED_INPUT MIN_NEEDED_TO
#define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
#define LOOPFCT TO_LOOP
#define BODY \
{ \
const struct gap *rp = from_idx; \
2000-03-28 17:33:37 +00:00
uint32_t ch = get32 (inptr); \
1998-04-20 18:41:05 +00:00
unsigned char res; \
\
2014-02-10 14:45:42 +01:00
if (__glibc_unlikely (ch >= 0xffff)) \
2001-06-06 12:55:46 +00:00
{ \
UNICODE_TAG_HANDLER (ch, 4); \
rp = NULL; \
} \
2000-06-19 21:12:06 +00:00
else \
while (ch > rp->end) \
++rp; \
if (__builtin_expect (rp == NULL, 0) \
|| __builtin_expect (ch < rp->start, 0) \
|| (res = from_ucs4[ch + rp->idx], \
__builtin_expect (res, '\1') == '\0' && ch != 0)) \
1998-05-13 12:10:50 +00:00
{ \
/* This is an illegal character. */ \
2002-06-28 21:23:06 +00:00
STANDARD_TO_LOOP_ERR_HANDLER (4); \
1998-04-20 18:41:05 +00:00
} \
\
*outptr++ = res; \
inptr += 4; \
}
2000-06-12 19:47:50 +00:00
#define LOOP_NEED_FLAGS
1998-04-20 18:41:05 +00:00
#include <iconv/loop.c>
1997-11-26 04:23:08 +00:00
1998-04-20 18:41:05 +00:00
/* Now define the toplevel functions. */
#include <iconv/skeleton.c>