xref: /dflybsd-src/lib/libc/stdio/fputwc.c (revision 0d5acd7467c4e95f792ef49fceb3ab8e917ce86b)
162f08720SJoerg Sonnenberger /*-
2*0d5acd74SJohn Marino  * Copyright (c) 2002-2004 Tim J. Robbins.
362f08720SJoerg Sonnenberger  * All rights reserved.
462f08720SJoerg Sonnenberger  *
5*0d5acd74SJohn Marino  * Copyright (c) 2011 The FreeBSD Foundation
6*0d5acd74SJohn Marino  * All rights reserved.
7*0d5acd74SJohn Marino  * Portions of this software were developed by David Chisnall
8*0d5acd74SJohn Marino  * under sponsorship from the FreeBSD Foundation.
9*0d5acd74SJohn Marino  *
1062f08720SJoerg Sonnenberger  * Redistribution and use in source and binary forms, with or without
1162f08720SJoerg Sonnenberger  * modification, are permitted provided that the following conditions
1262f08720SJoerg Sonnenberger  * are met:
1362f08720SJoerg Sonnenberger  * 1. Redistributions of source code must retain the above copyright
1462f08720SJoerg Sonnenberger  *    notice, this list of conditions and the following disclaimer.
1562f08720SJoerg Sonnenberger  * 2. Redistributions in binary form must reproduce the above copyright
1662f08720SJoerg Sonnenberger  *    notice, this list of conditions and the following disclaimer in the
1762f08720SJoerg Sonnenberger  *    documentation and/or other materials provided with the distribution.
1862f08720SJoerg Sonnenberger  *
1962f08720SJoerg Sonnenberger  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2062f08720SJoerg Sonnenberger  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2162f08720SJoerg Sonnenberger  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2262f08720SJoerg Sonnenberger  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2362f08720SJoerg Sonnenberger  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2462f08720SJoerg Sonnenberger  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2562f08720SJoerg Sonnenberger  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2662f08720SJoerg Sonnenberger  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2762f08720SJoerg Sonnenberger  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2862f08720SJoerg Sonnenberger  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2962f08720SJoerg Sonnenberger  * SUCH DAMAGE.
3062f08720SJoerg Sonnenberger  *
31*0d5acd74SJohn Marino  * $FreeBSD: head/lib/libc/stdio/fputwc.c 227753 2011-11-20 14:45:42Z theraven $
3262f08720SJoerg Sonnenberger  */
3362f08720SJoerg Sonnenberger 
34*0d5acd74SJohn Marino 
3562f08720SJoerg Sonnenberger #include "namespace.h"
3662f08720SJoerg Sonnenberger #include <errno.h>
3762f08720SJoerg Sonnenberger #include <limits.h>
3862f08720SJoerg Sonnenberger #include <stdio.h>
39*0d5acd74SJohn Marino #include <stdlib.h>
4062f08720SJoerg Sonnenberger #include <wchar.h>
4162f08720SJoerg Sonnenberger #include "un-namespace.h"
4262f08720SJoerg Sonnenberger #include "libc_private.h"
4362f08720SJoerg Sonnenberger #include "local.h"
44*0d5acd74SJohn Marino #include "mblocal.h"
4562f08720SJoerg Sonnenberger 
46*0d5acd74SJohn Marino /*
47*0d5acd74SJohn Marino  * Non-MT-safe version.
48*0d5acd74SJohn Marino  */
4962f08720SJoerg Sonnenberger wint_t
__fputwc(wchar_t wc,FILE * fp,locale_t locale)50*0d5acd74SJohn Marino __fputwc(wchar_t wc, FILE *fp, locale_t locale)
5162f08720SJoerg Sonnenberger {
5262f08720SJoerg Sonnenberger 	struct wchar_io_data *wcio;
5362f08720SJoerg Sonnenberger 	mbstate_t *st;
5462f08720SJoerg Sonnenberger 	char buf[MB_LEN_MAX];
55*0d5acd74SJohn Marino 	size_t i, len;
56*0d5acd74SJohn Marino 	struct xlocale_ctype *l = XLOCALE_CTYPE(locale);
5762f08720SJoerg Sonnenberger 
58*0d5acd74SJohn Marino 	ORIENT(fp, 1);
5962f08720SJoerg Sonnenberger 	wcio = WCIO_GET(fp);
60678e8cc6SSascha Wildner 	if (wcio == NULL) {
6162f08720SJoerg Sonnenberger 		errno = ENOMEM;
6262f08720SJoerg Sonnenberger 		return WEOF;
6362f08720SJoerg Sonnenberger 	}
6462f08720SJoerg Sonnenberger 
6562f08720SJoerg Sonnenberger 	wcio->wcio_ungetwc_inbuf = 0;
6662f08720SJoerg Sonnenberger 	st = &wcio->wcio_mbstate_out;
6762f08720SJoerg Sonnenberger 
68*0d5acd74SJohn Marino 	if (MB_CUR_MAX == 1 && wc > 0 && wc <= UCHAR_MAX) {
69*0d5acd74SJohn Marino 		/*
70*0d5acd74SJohn Marino 		 * Assume single-byte locale with no special encoding.
71*0d5acd74SJohn Marino 		 * A more careful test would be to check
72*0d5acd74SJohn Marino 		 * _CurrentRuneLocale->encoding.
73*0d5acd74SJohn Marino 		 */
74*0d5acd74SJohn Marino 		*buf = (unsigned char)wc;
75*0d5acd74SJohn Marino 		len = 1;
76*0d5acd74SJohn Marino 	} else {
77*0d5acd74SJohn Marino 		if ((len = l->__wcrtomb(buf, wc, st)) == (size_t)-1) {
78*0d5acd74SJohn Marino 			fp->pub._flags |= __SERR;
79*0d5acd74SJohn Marino 			return (WEOF);
80*0d5acd74SJohn Marino 		}
8162f08720SJoerg Sonnenberger 	}
8262f08720SJoerg Sonnenberger 
83*0d5acd74SJohn Marino 	for (i = 0; i < len; i++)
84*0d5acd74SJohn Marino 		if (__sputc((unsigned char)buf[i], fp) == EOF)
85*0d5acd74SJohn Marino 			return (WEOF);
8662f08720SJoerg Sonnenberger 
87*0d5acd74SJohn Marino 	return ((wint_t)wc);
8862f08720SJoerg Sonnenberger }
8962f08720SJoerg Sonnenberger 
90*0d5acd74SJohn Marino /*
91*0d5acd74SJohn Marino  * MT-safe version.
92*0d5acd74SJohn Marino  */
9362f08720SJoerg Sonnenberger wint_t
fputwc_l(wchar_t wc,FILE * fp,locale_t locale)94*0d5acd74SJohn Marino fputwc_l(wchar_t wc, FILE *fp, locale_t locale)
9562f08720SJoerg Sonnenberger {
9662f08720SJoerg Sonnenberger 	wint_t r;
97*0d5acd74SJohn Marino 	FIX_LOCALE(locale);
9862f08720SJoerg Sonnenberger 
9962f08720SJoerg Sonnenberger 	FLOCKFILE(fp);
100*0d5acd74SJohn Marino 	r = __fputwc(wc, fp, locale);
10162f08720SJoerg Sonnenberger 	FUNLOCKFILE(fp);
10262f08720SJoerg Sonnenberger 
10362f08720SJoerg Sonnenberger 	return (r);
10462f08720SJoerg Sonnenberger }
105*0d5acd74SJohn Marino wint_t
fputwc(wchar_t wc,FILE * fp)106*0d5acd74SJohn Marino fputwc(wchar_t wc, FILE *fp)
107*0d5acd74SJohn Marino {
108*0d5acd74SJohn Marino 	return fputwc_l(wc, fp, __get_locale());
109*0d5acd74SJohn Marino }
110