xref: /freebsd/lib/libc/stdio/fgetws.c (revision 3c87aa1d3dc1d8dad3efad322852a8e1e76dee55)
1e74101e4STim J. Robbins /*-
27d7287dcSTim J. Robbins  * Copyright (c) 2002-2004 Tim J. Robbins.
3e74101e4STim J. Robbins  * All rights reserved.
4e74101e4STim J. Robbins  *
5*3c87aa1dSDavid Chisnall  * Copyright (c) 2011 The FreeBSD Foundation
6*3c87aa1dSDavid Chisnall  * All rights reserved.
7*3c87aa1dSDavid Chisnall  * Portions of this software were developed by David Chisnall
8*3c87aa1dSDavid Chisnall  * under sponsorship from the FreeBSD Foundation.
9*3c87aa1dSDavid Chisnall  *
10e74101e4STim J. Robbins  * Redistribution and use in source and binary forms, with or without
11e74101e4STim J. Robbins  * modification, are permitted provided that the following conditions
12e74101e4STim J. Robbins  * are met:
13e74101e4STim J. Robbins  * 1. Redistributions of source code must retain the above copyright
14e74101e4STim J. Robbins  *    notice, this list of conditions and the following disclaimer.
15e74101e4STim J. Robbins  * 2. Redistributions in binary form must reproduce the above copyright
16e74101e4STim J. Robbins  *    notice, this list of conditions and the following disclaimer in the
17e74101e4STim J. Robbins  *    documentation and/or other materials provided with the distribution.
18e74101e4STim J. Robbins  *
19e74101e4STim J. Robbins  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20e74101e4STim J. Robbins  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21e74101e4STim J. Robbins  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22e74101e4STim J. Robbins  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23e74101e4STim J. Robbins  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24e74101e4STim J. Robbins  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25e74101e4STim J. Robbins  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26e74101e4STim J. Robbins  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27e74101e4STim J. Robbins  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28e74101e4STim J. Robbins  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29e74101e4STim J. Robbins  * SUCH DAMAGE.
30e74101e4STim J. Robbins  */
31e74101e4STim J. Robbins 
32e74101e4STim J. Robbins #include <sys/cdefs.h>
33e74101e4STim J. Robbins __FBSDID("$FreeBSD$");
34e74101e4STim J. Robbins 
35e74101e4STim J. Robbins #include "namespace.h"
36e74101e4STim J. Robbins #include <errno.h>
37e74101e4STim J. Robbins #include <stdio.h>
387d7287dcSTim J. Robbins #include <string.h>
39e74101e4STim J. Robbins #include <wchar.h>
40e74101e4STim J. Robbins #include "un-namespace.h"
41e74101e4STim J. Robbins #include "libc_private.h"
42e74101e4STim J. Robbins #include "local.h"
437d7287dcSTim J. Robbins #include "mblocal.h"
44e74101e4STim J. Robbins 
45e74101e4STim J. Robbins wchar_t *
46*3c87aa1dSDavid Chisnall fgetws_l(wchar_t * __restrict ws, int n, FILE * __restrict fp, locale_t locale)
47e74101e4STim J. Robbins {
48e74101e4STim J. Robbins 	wchar_t *wsp;
497d7287dcSTim J. Robbins 	size_t nconv;
507d7287dcSTim J. Robbins 	const char *src;
517d7287dcSTim J. Robbins 	unsigned char *nl;
52*3c87aa1dSDavid Chisnall 	FIX_LOCALE(locale);
53*3c87aa1dSDavid Chisnall 	struct xlocale_ctype *l = XLOCALE_CTYPE(locale);
54e74101e4STim J. Robbins 
557591ae56STim J. Robbins 	FLOCKFILE(fp);
567591ae56STim J. Robbins 	ORIENT(fp, 1);
57e74101e4STim J. Robbins 
587591ae56STim J. Robbins 	if (n <= 0) {
597591ae56STim J. Robbins 		errno = EINVAL;
607591ae56STim J. Robbins 		goto error;
617591ae56STim J. Robbins 	}
62e74101e4STim J. Robbins 
637d7287dcSTim J. Robbins 	if (fp->_r <= 0 && __srefill(fp))
647d7287dcSTim J. Robbins 		/* EOF */
657d7287dcSTim J. Robbins 		goto error;
66e74101e4STim J. Robbins 	wsp = ws;
677d7287dcSTim J. Robbins 	do {
687d7287dcSTim J. Robbins 		src = fp->_p;
697d7287dcSTim J. Robbins 		nl = memchr(fp->_p, '\n', fp->_r);
70*3c87aa1dSDavid Chisnall 		nconv = l->__mbsnrtowcs(wsp, &src,
717d7287dcSTim J. Robbins 		    nl != NULL ? (nl - fp->_p + 1) : fp->_r,
721e98f887SJohn Baldwin 		    n - 1, &fp->_mbstate);
737d7287dcSTim J. Robbins 		if (nconv == (size_t)-1)
747d7287dcSTim J. Robbins 			/* Conversion error */
757591ae56STim J. Robbins 			goto error;
767d7287dcSTim J. Robbins 		if (src == NULL) {
777d7287dcSTim J. Robbins 			/*
787d7287dcSTim J. Robbins 			 * We hit a null byte. Increment the character count,
797d7287dcSTim J. Robbins 			 * since mbsnrtowcs()'s return value doesn't include
807d7287dcSTim J. Robbins 			 * the terminating null, then resume conversion
817d7287dcSTim J. Robbins 			 * after the null.
827d7287dcSTim J. Robbins 			 */
837d7287dcSTim J. Robbins 			nconv++;
844c86f66fSStefan Farfeleder 			src = memchr(fp->_p, '\0', fp->_r);
854c86f66fSStefan Farfeleder 			src++;
867d7287dcSTim J. Robbins 		}
877d7287dcSTim J. Robbins 		fp->_r -= (unsigned char *)src - fp->_p;
887d7287dcSTim J. Robbins 		fp->_p = (unsigned char *)src;
897d7287dcSTim J. Robbins 		n -= nconv;
907d7287dcSTim J. Robbins 		wsp += nconv;
917d7287dcSTim J. Robbins 	} while (wsp[-1] != L'\n' && n > 1 && (fp->_r > 0 ||
927d7287dcSTim J. Robbins 	    __srefill(fp) == 0));
93e74101e4STim J. Robbins 	if (wsp == ws)
947d7287dcSTim J. Robbins 		/* EOF */
957591ae56STim J. Robbins 		goto error;
96*3c87aa1dSDavid Chisnall 	if (!l->__mbsinit(&fp->_mbstate))
977d7287dcSTim J. Robbins 		/* Incomplete character */
987d7287dcSTim J. Robbins 		goto error;
990c0349bfSGarrett Wollman 	*wsp = L'\0';
1007591ae56STim J. Robbins 	FUNLOCKFILE(fp);
101e74101e4STim J. Robbins 
102e74101e4STim J. Robbins 	return (ws);
1037591ae56STim J. Robbins 
1047591ae56STim J. Robbins error:
1057591ae56STim J. Robbins 	FUNLOCKFILE(fp);
1067591ae56STim J. Robbins 	return (NULL);
107e74101e4STim J. Robbins }
108*3c87aa1dSDavid Chisnall wchar_t *
109*3c87aa1dSDavid Chisnall fgetws(wchar_t * __restrict ws, int n, FILE * __restrict fp)
110*3c87aa1dSDavid Chisnall {
111*3c87aa1dSDavid Chisnall 	return fgetws_l(ws, n, fp, __get_locale());
112*3c87aa1dSDavid Chisnall }
113