2002-08-13 09:30:41 +00:00
|
|
|
/*-
|
2004-05-22 15:19:41 +00:00
|
|
|
* Copyright (c) 2002-2004 Tim J. Robbins.
|
2002-08-13 09:30:41 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2011-11-20 14:45:42 +00:00
|
|
|
* Copyright (c) 2011 The FreeBSD Foundation
|
|
|
|
* All rights reserved.
|
|
|
|
* Portions of this software were developed by David Chisnall
|
|
|
|
* under sponsorship from the FreeBSD Foundation.
|
|
|
|
*
|
2002-08-13 09:30:41 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
|
|
#include "namespace.h"
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
2002-09-18 05:58:11 +00:00
|
|
|
#include <stdlib.h>
|
2002-08-13 09:30:41 +00:00
|
|
|
#include <wchar.h>
|
|
|
|
#include "un-namespace.h"
|
|
|
|
#include "libc_private.h"
|
|
|
|
#include "local.h"
|
2004-07-20 08:27:27 +00:00
|
|
|
#include "mblocal.h"
|
2011-11-20 14:45:42 +00:00
|
|
|
#include "xlocale_private.h"
|
2002-08-13 09:30:41 +00:00
|
|
|
|
2002-09-20 13:20:41 +00:00
|
|
|
/*
|
|
|
|
* MT-safe version.
|
|
|
|
*/
|
|
|
|
wint_t
|
2011-11-20 14:45:42 +00:00
|
|
|
fgetwc_l(FILE *fp, locale_t locale)
|
2002-09-20 13:20:41 +00:00
|
|
|
{
|
|
|
|
wint_t r;
|
2011-11-20 14:45:42 +00:00
|
|
|
FIX_LOCALE(locale);
|
2002-09-20 13:20:41 +00:00
|
|
|
|
|
|
|
FLOCKFILE(fp);
|
|
|
|
ORIENT(fp, 1);
|
2011-11-20 14:45:42 +00:00
|
|
|
r = __fgetwc(fp, locale);
|
2002-09-20 13:20:41 +00:00
|
|
|
FUNLOCKFILE(fp);
|
|
|
|
|
|
|
|
return (r);
|
|
|
|
}
|
2012-04-29 16:28:39 +00:00
|
|
|
|
2011-11-20 14:45:42 +00:00
|
|
|
wint_t
|
|
|
|
fgetwc(FILE *fp)
|
|
|
|
{
|
|
|
|
return fgetwc_l(fp, __get_locale());
|
|
|
|
}
|
2002-09-20 13:20:41 +00:00
|
|
|
|
2004-07-09 15:12:10 +00:00
|
|
|
/*
|
2012-04-29 16:28:39 +00:00
|
|
|
* Internal (non-MPSAFE) version of fgetwc(). This version takes an
|
|
|
|
* mbstate_t argument specifying the initial conversion state. For
|
|
|
|
* wide streams, this should always be fp->_mbstate. On return, *nread
|
|
|
|
* is set to the number of bytes read.
|
2004-07-09 15:12:10 +00:00
|
|
|
*/
|
2012-04-29 16:28:39 +00:00
|
|
|
wint_t
|
|
|
|
__fgetwc_mbs(FILE *fp, mbstate_t *mbs, int *nread, locale_t locale)
|
2002-08-13 09:30:41 +00:00
|
|
|
{
|
2002-09-18 05:58:11 +00:00
|
|
|
wchar_t wc;
|
2004-05-22 15:41:03 +00:00
|
|
|
size_t nconv;
|
2011-11-20 14:45:42 +00:00
|
|
|
struct xlocale_ctype *l = XLOCALE_CTYPE(locale);
|
2002-08-13 09:30:41 +00:00
|
|
|
|
2012-04-29 16:28:39 +00:00
|
|
|
if (fp->_r <= 0 && __srefill(fp)) {
|
|
|
|
*nread = 0;
|
2004-05-22 15:41:03 +00:00
|
|
|
return (WEOF);
|
2012-04-29 16:28:39 +00:00
|
|
|
}
|
2004-07-09 15:12:10 +00:00
|
|
|
if (MB_CUR_MAX == 1) {
|
|
|
|
/* Fast path for single-byte encodings. */
|
|
|
|
wc = *fp->_p++;
|
|
|
|
fp->_r--;
|
2012-04-29 16:28:39 +00:00
|
|
|
*nread = 1;
|
2004-07-09 15:12:10 +00:00
|
|
|
return (wc);
|
|
|
|
}
|
2012-04-29 16:28:39 +00:00
|
|
|
*nread = 0;
|
2004-05-22 15:41:03 +00:00
|
|
|
do {
|
2012-04-29 16:28:39 +00:00
|
|
|
nconv = l->__mbrtowc(&wc, fp->_p, fp->_r, mbs);
|
2004-05-22 15:41:03 +00:00
|
|
|
if (nconv == (size_t)-1)
|
2002-09-18 05:58:11 +00:00
|
|
|
break;
|
2004-05-22 15:41:03 +00:00
|
|
|
else if (nconv == (size_t)-2)
|
2004-05-22 15:19:41 +00:00
|
|
|
continue;
|
2004-05-22 15:41:03 +00:00
|
|
|
else if (nconv == 0) {
|
|
|
|
fp->_p++;
|
|
|
|
fp->_r--;
|
2012-04-29 16:28:39 +00:00
|
|
|
(*nread)++;
|
2004-05-22 15:19:41 +00:00
|
|
|
return (L'\0');
|
2004-05-22 15:41:03 +00:00
|
|
|
} else {
|
|
|
|
fp->_p += nconv;
|
|
|
|
fp->_r -= nconv;
|
2012-04-29 16:28:39 +00:00
|
|
|
*nread += nconv;
|
2004-05-22 15:19:41 +00:00
|
|
|
return (wc);
|
2004-05-22 15:41:03 +00:00
|
|
|
}
|
|
|
|
} while (__srefill(fp) == 0);
|
2002-10-16 12:09:43 +00:00
|
|
|
fp->_flags |= __SERR;
|
2004-05-22 15:19:41 +00:00
|
|
|
errno = EILSEQ;
|
2002-09-18 05:58:11 +00:00
|
|
|
return (WEOF);
|
2002-08-13 09:30:41 +00:00
|
|
|
}
|