| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * $Id$ | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-02-07 14:13:13 +00:00
										 |  |  |     Copyright (c) 2016-2018 Chung, Hyung-Hwan. All rights reserved. | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +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 "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 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 "hcl-prv.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*#include <stdio.h>*/ /* for snrintf(). used for floating-point number formatting */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(_MSC_VER) || defined(__BORLANDC__) || (defined(__WATCOMC__) && (__WATCOMC__ < 1200))
 | 
					
						
							|  |  |  | #	define snprintf _snprintf 
 | 
					
						
							|  |  |  | #	if !defined(HAVE_SNPRINTF)
 | 
					
						
							|  |  |  | #		define HAVE_SNPRINTF
 | 
					
						
							|  |  |  | #	endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(HAVE_QUADMATH_H)
 | 
					
						
							|  |  |  | #	include <quadmath.h> /* for quadmath_snprintf() */
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Max number conversion buffer length: 
 | 
					
						
							|  |  |  |  * hcl_intmax_t in base 2, plus NUL byte. */ | 
					
						
							|  |  |  | #define MAXNBUF (HCL_SIZEOF(hcl_intmax_t) * 8 + 1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* integer */ | 
					
						
							|  |  |  | 	LF_C = (1 << 0), | 
					
						
							|  |  |  | 	LF_H = (1 << 1), | 
					
						
							|  |  |  | 	LF_J = (1 << 2), | 
					
						
							|  |  |  | 	LF_L = (1 << 3), | 
					
						
							|  |  |  | 	LF_Q = (1 << 4), | 
					
						
							|  |  |  | 	LF_T = (1 << 5), | 
					
						
							|  |  |  | 	LF_Z = (1 << 6), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* long double */ | 
					
						
							|  |  |  | 	LF_LD = (1 << 7), | 
					
						
							|  |  |  | 	/* __float128 */ | 
					
						
							|  |  |  | 	LF_QD = (1 << 8) | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_uint8_t flag; /* for single occurrence */ | 
					
						
							|  |  |  | 	hcl_uint8_t dflag; /* for double occurrence */ | 
					
						
							|  |  |  | } lm_tab[26] =  | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	{ 0,    0 }, /* a */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* b */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* c */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* d */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* e */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* f */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* g */ | 
					
						
							|  |  |  | 	{ LF_H, LF_C }, /* h */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* i */ | 
					
						
							|  |  |  | 	{ LF_J, 0 }, /* j */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* k */ | 
					
						
							|  |  |  | 	{ LF_L, LF_Q }, /* l */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* m */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* n */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* o */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* p */ | 
					
						
							|  |  |  | 	{ LF_Q, 0 }, /* q */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* r */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* s */ | 
					
						
							|  |  |  | 	{ LF_T, 0 }, /* t */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* u */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* v */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* w */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* z */ | 
					
						
							|  |  |  | 	{ 0,    0 }, /* y */ | 
					
						
							|  |  |  | 	{ LF_Z, 0 }, /* z */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-02 07:44:13 +00:00
										 |  |  | enum | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	FLAGC_DOT       = (1 << 0), | 
					
						
							|  |  |  | 	FLAGC_SPACE     = (1 << 1), | 
					
						
							|  |  |  | 	FLAGC_SHARP     = (1 << 2), | 
					
						
							|  |  |  | 	FLAGC_SIGN      = (1 << 3), | 
					
						
							|  |  |  | 	FLAGC_LEFTADJ   = (1 << 4), | 
					
						
							|  |  |  | 	FLAGC_ZEROPAD   = (1 << 5), | 
					
						
							|  |  |  | 	FLAGC_WIDTH     = (1 << 6), | 
					
						
							|  |  |  | 	FLAGC_PRECISION = (1 << 7), | 
					
						
							|  |  |  | 	FLAGC_STAR1     = (1 << 8), | 
					
						
							|  |  |  | 	FLAGC_STAR2     = (1 << 9), | 
					
						
							|  |  |  | 	FLAGC_LENMOD    = (1 << 10) /* length modifier */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const hcl_bch_t hex2ascii_lower[] =  | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	'0','1','2','3','4','5','6','7','8','9', | 
					
						
							|  |  |  | 	'a','b','c','d','e','f','g','h','i','j','k','l','m', | 
					
						
							|  |  |  | 	'n','o','p','q','r','s','t','u','v','w','x','y','z' | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const hcl_bch_t hex2ascii_upper[] =  | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	'0','1','2','3','4','5','6','7','8','9', | 
					
						
							|  |  |  | 	'A','B','C','D','E','F','G','H','I','J','K','L','M', | 
					
						
							|  |  |  | 	'N','O','P','Q','R','S','T','U','V','W','X','H','Z' | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | static hcl_uch_t uch_nullstr[] = { '(','n','u','l','l', ')','\0' }; | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | static hcl_bch_t bch_nullstr[] = { '(','n','u','l','l', ')','\0' }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef int (*hcl_fmtout_putch_t) ( | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | 	hcl_t*            hcl, | 
					
						
							|  |  |  | 	hcl_bitmask_t   mask, | 
					
						
							|  |  |  | 	hcl_ooch_t        c, | 
					
						
							|  |  |  | 	hcl_oow_t         len | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef int (*hcl_fmtout_putcs_t) ( | 
					
						
							|  |  |  | 	hcl_t*            hcl, | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | 	hcl_bitmask_t   mask, | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	const hcl_ooch_t* ptr, | 
					
						
							|  |  |  | 	hcl_oow_t         len | 
					
						
							|  |  |  | ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct hcl_fmtout_t hcl_fmtout_t; | 
					
						
							|  |  |  | struct hcl_fmtout_t | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_oow_t            count; /* out */ | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | 	hcl_bitmask_t      mask;  /* in */ | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	hcl_fmtout_putch_t   putch; /* in */ | 
					
						
							|  |  |  | 	hcl_fmtout_putcs_t   putcs; /* in */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Put a NUL-terminated ASCII number (base <= 36) in a buffer in reverse | 
					
						
							|  |  |  |  * order; return an optional length and a pointer to the last character | 
					
						
							|  |  |  |  * written in the buffer (i.e., the first character of the string). | 
					
						
							|  |  |  |  * The buffer pointed to by `nbuf' must have length >= MAXNBUF. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | static hcl_bch_t* sprintn_lower (hcl_bch_t* nbuf, hcl_uintmax_t num, int base, hcl_ooi_t* lenp) | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_bch_t* p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	p = nbuf; | 
					
						
							|  |  |  | 	*p = '\0'; | 
					
						
							|  |  |  | 	do { *++p = hex2ascii_lower[num % base]; } while (num /= base); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (lenp) *lenp = p - nbuf; | 
					
						
							|  |  |  | 	return p; /* returns the end */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | static hcl_bch_t* sprintn_upper (hcl_bch_t* nbuf, hcl_uintmax_t num, int base, hcl_ooi_t* lenp) | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_bch_t* p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	p = nbuf; | 
					
						
							|  |  |  | 	*p = '\0'; | 
					
						
							|  |  |  | 	do { *++p = hex2ascii_upper[num % base]; } while (num /= base); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (lenp) *lenp = p - nbuf; | 
					
						
							|  |  |  | 	return p; /* returns the end */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static int put_logch (hcl_t* hcl, hcl_bitmask_t mask, hcl_ooch_t ch, hcl_oow_t len) | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 	/* this is not equivalent to put_logcs(hcl,mask,&ch,1);
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	 * this function is to emit a single character multiple times */ | 
					
						
							|  |  |  | 	hcl_oow_t rem; | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	if (len <= 0) return 1; | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	if (hcl->log.len > 0 && hcl->log.last_mask != mask) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		/* the mask has changed. commit the buffered text */ | 
					
						
							| 
									
										
										
										
											2016-10-13 07:41:10 +00:00
										 |  |  | /* TODO: HANDLE LINE ENDING CONVENTION BETTER... */ | 
					
						
							|  |  |  | 		if (hcl->log.ptr[hcl->log.len - 1] != '\n') | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			/* no line ending - append a line terminator */ | 
					
						
							|  |  |  | 			hcl->log.ptr[hcl->log.len++] = '\n'; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-22 04:35:55 +00:00
										 |  |  | 		vmprim_log_write (hcl, hcl->log.last_mask, hcl->log.ptr, hcl->log.len); | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 		hcl->log.len = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | redo: | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	rem = 0; | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	if (len > hcl->log.capa - hcl->log.len) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 		hcl_oow_t newcapa, max; | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 		hcl_ooch_t* tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 		max = HCL_TYPE_MAX(hcl_oow_t) - hcl->log.len; | 
					
						
							|  |  |  | 		if (len > max) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			/* data too big. */ | 
					
						
							|  |  |  | 			rem += len - max; | 
					
						
							|  |  |  | 			len = max; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		newcapa = HCL_ALIGN_POW2(hcl->log.len + len, HCL_LOG_CAPA_ALIGN); /* TODO: adjust this capacity */ | 
					
						
							|  |  |  | 		if (newcapa > hcl->option.log_maxcapa)  | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 			/* [NOTE]
 | 
					
						
							|  |  |  | 			 * it doesn't adjust newcapa to hcl->option.log_maxcapa. | 
					
						
							|  |  |  | 			 * nor does it cut the input to fit it into the adjusted capacity. | 
					
						
							|  |  |  | 			 * if maxcapa set is not aligned to HCL_LOG_CAPA_ALIGN, | 
					
						
							|  |  |  | 			 * the largest buffer capacity may be suboptimal */ | 
					
						
							|  |  |  | 			goto make_do; | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-09 15:50:41 +00:00
										 |  |  | 		/* +1 to handle line ending injection more easily */ | 
					
						
							| 
									
										
										
										
											2018-02-26 15:24:45 +00:00
										 |  |  | 		tmp = (hcl_ooch_t*)hcl_reallocmem (hcl, hcl->log.ptr, (newcapa + 1) * HCL_SIZEOF(*tmp));  | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 		if (!tmp)  | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 		make_do: | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 			if (hcl->log.len > 0) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				/* can't expand the buffer. just flush the existing contents */ | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 				/* TODO: HANDLE LINE ENDING CONVENTION BETTER... */ | 
					
						
							|  |  |  | 				if (hcl->log.ptr[hcl->log.len - 1] != '\n') | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					/* no line ending - append a line terminator */ | 
					
						
							|  |  |  | 					hcl->log.ptr[hcl->log.len++] = '\n'; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-02-22 04:35:55 +00:00
										 |  |  | 				vmprim_log_write (hcl, hcl->log.last_mask, hcl->log.ptr, hcl->log.len); | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 				hcl->log.len = 0; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 			if (len > hcl->log.capa) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				rem += len - hcl->log.capa; | 
					
						
							|  |  |  | 				len = hcl->log.capa; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			hcl->log.ptr = tmp; | 
					
						
							|  |  |  | 			hcl->log.capa = newcapa;  | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (len > 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		hcl->log.ptr[hcl->log.len++] = ch; | 
					
						
							|  |  |  | 		len--; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	hcl->log.last_mask = mask; | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (rem > 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		len = rem; | 
					
						
							|  |  |  | 		goto redo; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	return 1; /* success */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static int put_logcs (hcl_t* hcl, hcl_bitmask_t mask, const hcl_ooch_t* ptr, hcl_oow_t len) | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	hcl_oow_t rem; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	if (len <= 0) return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hcl->log.len > 0 && hcl->log.last_mask != mask) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		/* the mask has changed. commit the buffered text */ | 
					
						
							| 
									
										
										
										
											2016-10-13 07:41:10 +00:00
										 |  |  | /* TODO: HANDLE LINE ENDING CONVENTION BETTER... */ | 
					
						
							|  |  |  | 		if (hcl->log.ptr[hcl->log.len - 1] != '\n') | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			/* no line ending - append a line terminator */ | 
					
						
							|  |  |  | 			hcl->log.ptr[hcl->log.len++] = '\n'; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-22 04:35:55 +00:00
										 |  |  | 		vmprim_log_write (hcl, hcl->log.last_mask, hcl->log.ptr, hcl->log.len); | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 		hcl->log.len = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | redo: | 
					
						
							|  |  |  | 	rem = 0; | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	if (len > hcl->log.capa - hcl->log.len) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 		hcl_oow_t newcapa, max; | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 		hcl_ooch_t* tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 		max = HCL_TYPE_MAX(hcl_oow_t) - hcl->log.len; | 
					
						
							|  |  |  | 		if (len > max)  | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			/* data too big. */ | 
					
						
							|  |  |  | 			rem += len - max; | 
					
						
							|  |  |  | 			len = max; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		newcapa = HCL_ALIGN_POW2(hcl->log.len + len, 512); /* TODO: adjust this capacity */ | 
					
						
							|  |  |  | 		if (newcapa > hcl->option.log_maxcapa) | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 			/* [NOTE]
 | 
					
						
							|  |  |  | 			 * it doesn't adjust newcapa to hcl->option.log_maxcapa. | 
					
						
							|  |  |  | 			 * nor does it cut the input to fit it into the adjusted capacity. | 
					
						
							|  |  |  | 			 * if maxcapa set is not aligned to HCL_LOG_CAPA_ALIGN, | 
					
						
							|  |  |  | 			 * the largest buffer capacity may be suboptimal */ | 
					
						
							|  |  |  | 			goto make_do; | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-21 12:39:38 +00:00
										 |  |  | 		/* +1 to handle line ending injection more easily */ | 
					
						
							| 
									
										
										
										
											2018-02-26 15:24:45 +00:00
										 |  |  | 		tmp = (hcl_ooch_t*)hcl_reallocmem (hcl, hcl->log.ptr, (newcapa + 1) * HCL_SIZEOF(*tmp)); | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 		if (!tmp)  | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		make_do: | 
					
						
							|  |  |  | 			if (hcl->log.len > 0) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				/* can't expand the buffer. just flush the existing contents */ | 
					
						
							|  |  |  | 				/* TODO: HANDLE LINE ENDING CONVENTION BETTER... */ | 
					
						
							|  |  |  | 				if (hcl->log.ptr[hcl->log.len - 1] != '\n') | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					/* no line ending - append a line terminator */ | 
					
						
							|  |  |  | 					hcl->log.ptr[hcl->log.len++] = '\n'; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-02-22 04:35:55 +00:00
										 |  |  | 				vmprim_log_write (hcl, hcl->log.last_mask, hcl->log.ptr, hcl->log.len); | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 				hcl->log.len = 0; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 			if (len > hcl->log.capa) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				rem += len - hcl->log.capa; | 
					
						
							|  |  |  | 				len = hcl->log.capa; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			hcl->log.ptr = tmp; | 
					
						
							|  |  |  | 			hcl->log.capa = newcapa; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_MEMCPY (&hcl->log.ptr[hcl->log.len], ptr, len * HCL_SIZEOF(*ptr)); | 
					
						
							|  |  |  | 	hcl->log.len += len; | 
					
						
							|  |  |  | 	hcl->log.last_mask = mask; | 
					
						
							| 
									
										
										
										
											2016-10-06 17:49:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	if (rem > 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		ptr += len; | 
					
						
							|  |  |  | 		len = rem; | 
					
						
							|  |  |  | 		goto redo; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	return 1; /* success */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | #undef FMTCHAR_IS_BCH
 | 
					
						
							|  |  |  | #undef FMTCHAR_IS_UCH
 | 
					
						
							|  |  |  | #undef FMTCHAR_IS_OOCH
 | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | #undef fmtchar_t
 | 
					
						
							|  |  |  | #undef logfmtv
 | 
					
						
							|  |  |  | #define fmtchar_t hcl_bch_t
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | #define logfmtv __logbfmtv
 | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | #define FMTCHAR_IS_BCH
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | #if defined(HCL_OOCH_IS_BCH)
 | 
					
						
							|  |  |  | #	define FMTCHAR_IS_OOCH
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | #include "logfmtv.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | #undef FMTCHAR_IS_BCH
 | 
					
						
							|  |  |  | #undef FMTCHAR_IS_UCH
 | 
					
						
							|  |  |  | #undef FMTCHAR_IS_OOCH
 | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | #undef fmtchar_t
 | 
					
						
							|  |  |  | #undef logfmtv
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | #define fmtchar_t hcl_uch_t
 | 
					
						
							|  |  |  | #define logfmtv __logufmtv
 | 
					
						
							|  |  |  | #define FMTCHAR_IS_UCH
 | 
					
						
							|  |  |  | #if defined(HCL_OOCH_IS_UCH)
 | 
					
						
							|  |  |  | #	define FMTCHAR_IS_OOCH
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #include "logfmtv.h" 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int _logbfmtv (hcl_t* hcl, const hcl_bch_t* fmt, hcl_fmtout_t* data, va_list ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return __logbfmtv (hcl, fmt, data, ap, hcl_logbfmt); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int _logufmtv (hcl_t* hcl, const hcl_uch_t* fmt, hcl_fmtout_t* data, va_list ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return __logufmtv (hcl, fmt, data, ap, hcl_logbfmt); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | hcl_ooi_t hcl_logbfmtv (hcl_t* hcl, hcl_bitmask_t mask, const hcl_bch_t* fmt, va_list ap) | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int x; | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	if (hcl->log.default_type_mask & HCL_LOG_ALL_TYPES)  | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		/* if a type is given, it's not untyped any more.
 | 
					
						
							|  |  |  | 		 * mask off the UNTYPED bit */ | 
					
						
							|  |  |  | 		mask &= ~HCL_LOG_UNTYPED;  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* if the default_type_mask has the UNTYPED bit on,
 | 
					
						
							|  |  |  | 		 * it'll get turned back on */ | 
					
						
							|  |  |  | 		mask |= (hcl->log.default_type_mask & HCL_LOG_ALL_TYPES); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	fo.mask = mask; | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 	fo.putch = put_logch; | 
					
						
							|  |  |  | 	fo.putcs = put_logcs; | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-14 14:40:05 +00:00
										 |  |  | 	x = _logbfmtv(hcl, fmt, &fo, ap); | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (hcl->log.len > 0 && hcl->log.ptr[hcl->log.len - 1] == '\n') | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2018-02-22 04:35:55 +00:00
										 |  |  | 		vmprim_log_write (hcl, hcl->log.last_mask, hcl->log.ptr, hcl->log.len); | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 		hcl->log.len = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return (x <= -1)? -1: fo.count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | hcl_ooi_t hcl_logbfmt (hcl_t* hcl, hcl_bitmask_t mask, const hcl_bch_t* fmt, ...) | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							| 
									
										
										
										
											2018-03-14 10:14:38 +00:00
										 |  |  | 	hcl_ooi_t x; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							|  |  |  | 	x = hcl_logbfmtv (hcl, mask, fmt, ap); | 
					
						
							|  |  |  | 	va_end (ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return x; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | hcl_ooi_t hcl_logufmtv (hcl_t* hcl, hcl_bitmask_t mask, const hcl_uch_t* fmt, va_list ap) | 
					
						
							| 
									
										
										
										
											2018-03-14 10:14:38 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int x; | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	if (hcl->log.default_type_mask & HCL_LOG_ALL_TYPES)  | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		mask &= ~HCL_LOG_UNTYPED; | 
					
						
							|  |  |  | 		mask |= (hcl->log.default_type_mask & HCL_LOG_ALL_TYPES); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 	fo.mask = mask; | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 	fo.putch = put_logch; | 
					
						
							|  |  |  | 	fo.putcs = put_logcs; | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-14 14:40:05 +00:00
										 |  |  | 	x = _logufmtv(hcl, fmt, &fo, ap); | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (hcl->log.len > 0 && hcl->log.ptr[hcl->log.len - 1] == '\n') | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2018-02-22 04:35:55 +00:00
										 |  |  | 		vmprim_log_write (hcl, hcl->log.last_mask, hcl->log.ptr, hcl->log.len); | 
					
						
							| 
									
										
										
										
											2016-09-28 14:40:37 +00:00
										 |  |  | 		hcl->log.len = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (x <= -1)? -1: fo.count; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | hcl_ooi_t hcl_logufmt (hcl_t* hcl, hcl_bitmask_t mask, const hcl_uch_t* fmt, ...) | 
					
						
							| 
									
										
										
										
											2018-03-14 10:14:38 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							|  |  |  | 	hcl_ooi_t x; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							|  |  |  | 	x = hcl_logufmtv (hcl, mask, fmt, ap); | 
					
						
							|  |  |  | 	va_end (ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return x; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | /* -------------------------------------------------------------------------- 
 | 
					
						
							|  |  |  |  * HELPER FOR PRINTING | 
					
						
							|  |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static int put_prcs (hcl_t* hcl, hcl_bitmask_t mask, const hcl_ooch_t* ptr, hcl_oow_t len) | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 	hcl_ooch_t* optr; | 
					
						
							| 
									
										
										
										
											2018-02-06 10:16:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 	optr = (hcl_ooch_t*)ptr; | 
					
						
							| 
									
										
										
										
											2018-02-24 04:01:19 +00:00
										 |  |  | 	while (len > 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 		hcl->c->outarg.ptr = optr; | 
					
						
							|  |  |  | 		hcl->c->outarg.len = len; | 
					
						
							| 
									
										
										
										
											2018-02-24 04:01:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 		if (hcl->c->printer(hcl, HCL_IO_WRITE, &hcl->c->outarg) <= -1) return -1; | 
					
						
							|  |  |  | 		if (hcl->c->outarg.xlen <= 0) return 0; /* end of stream. but not failure */ | 
					
						
							| 
									
										
										
										
											2018-02-24 04:01:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 		HCL_ASSERT (hcl, hcl->c->outarg.xlen <= len); | 
					
						
							|  |  |  | 		optr += hcl->c->outarg.xlen; | 
					
						
							|  |  |  | 		len -= hcl->c->outarg.xlen; | 
					
						
							| 
									
										
										
										
											2018-02-24 04:01:19 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-02-06 10:16:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | 	return 1; /* success */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static int put_prch (hcl_t* hcl, hcl_bitmask_t mask, hcl_ooch_t ch, hcl_oow_t len) | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 	hcl_ooch_t str[256]; | 
					
						
							|  |  |  | 	hcl_oow_t seglen, i; | 
					
						
							|  |  |  | 	int n; | 
					
						
							| 
									
										
										
										
											2018-02-06 10:16:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 	while (len > 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 		seglen = (len > HCL_COUNTOF(str))? HCL_COUNTOF(str): len; | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 		for (i = 0; i < seglen; i++) str[i] = ch; | 
					
						
							| 
									
										
										
										
											2018-02-06 10:16:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 		n = put_prcs (hcl, mask, str, seglen); | 
					
						
							|  |  |  | 		if (n <= 0) return n; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		len -= seglen; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-02-06 10:16:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | 	return 1; /* success */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static hcl_ooi_t __prbfmtv (hcl_t* hcl, hcl_bitmask_t mask, const hcl_bch_t* fmt, ...); | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int _prbfmtv (hcl_t* hcl, const hcl_bch_t* fmt, hcl_fmtout_t* data, va_list ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return __logbfmtv (hcl, fmt, data, ap, __prbfmtv); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | static int _prufmtv (hcl_t* hcl, const hcl_uch_t* fmt, hcl_fmtout_t* data, va_list ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return __logufmtv (hcl, fmt, data, ap, __prbfmtv); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static hcl_ooi_t __prbfmtv (hcl_t* hcl, hcl_bitmask_t mask, const hcl_bch_t* fmt, ...) | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 	fo.mask = mask; | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | 	fo.putch = put_prch; | 
					
						
							|  |  |  | 	fo.putcs = put_prcs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							|  |  |  | 	_prbfmtv (hcl, fmt, &fo, ap); | 
					
						
							|  |  |  | 	va_end (ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return fo.count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | hcl_ooi_t hcl_proutbfmt (hcl_t* hcl, hcl_bitmask_t mask, const hcl_bch_t* fmt, ...) | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int x; | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 	fo.mask = mask; | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | 	fo.putch = put_prch; | 
					
						
							|  |  |  | 	fo.putcs = put_prcs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | 	x = _prbfmtv(hcl, fmt, &fo, ap); | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | 	va_end (ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (x <= -1)? -1: fo.count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | hcl_ooi_t hcl_proutufmt (hcl_t* hcl, hcl_bitmask_t mask, const hcl_uch_t* fmt, ...) | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int x; | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 	fo.mask = mask; | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | 	fo.putch = put_prch; | 
					
						
							|  |  |  | 	fo.putcs = put_prcs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							|  |  |  | 	x = _prufmtv (hcl, fmt, &fo, ap); | 
					
						
							|  |  |  | 	va_end (ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (x <= -1)? -1: fo.count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  |   | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | /* -------------------------------------------------------------------------- 
 | 
					
						
							|  |  |  |  * ERROR MESSAGE FORMATTING | 
					
						
							|  |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static int put_errcs (hcl_t* hcl, hcl_bitmask_t mask, const hcl_ooch_t* ptr, hcl_oow_t len) | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oow_t max; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	max = HCL_COUNTOF(hcl->errmsg.buf) - hcl->errmsg.len - 1; | 
					
						
							|  |  |  | 	if (len > max) len = max; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len <= 0) return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 	HCL_MEMCPY (&hcl->errmsg.buf[hcl->errmsg.len], ptr, len * HCL_SIZEOF(*ptr)); | 
					
						
							|  |  |  | 	hcl->errmsg.len += len; | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	hcl->errmsg.buf[hcl->errmsg.len] = '\0'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 1; /* success */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static int put_errch (hcl_t* hcl, hcl_bitmask_t mask, hcl_ooch_t ch, hcl_oow_t len) | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_oow_t max; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	max = HCL_COUNTOF(hcl->errmsg.buf) - hcl->errmsg.len - 1; | 
					
						
							|  |  |  | 	if (len > max) len = max; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len <= 0) return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 	while (len > 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		hcl->errmsg.buf[hcl->errmsg.len++] = ch; | 
					
						
							|  |  |  | 		len--; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	hcl->errmsg.buf[hcl->errmsg.len] = '\0'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 1; /* success */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static hcl_ooi_t __errbfmtv (hcl_t* hcl, hcl_bitmask_t mask, const hcl_bch_t* fmt, ...); | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int _errbfmtv (hcl_t* hcl, const hcl_bch_t* fmt, hcl_fmtout_t* data, va_list ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return __logbfmtv (hcl, fmt, data, ap, __errbfmtv); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int _errufmtv (hcl_t* hcl, const hcl_uch_t* fmt, hcl_fmtout_t* data, va_list ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return __logufmtv (hcl, fmt, data, ap, __errbfmtv); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static hcl_ooi_t __errbfmtv (hcl_t* hcl, hcl_bitmask_t mask, const hcl_bch_t* fmt, ...) | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 	fo.mask = mask; | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	fo.putch = put_errch; | 
					
						
							|  |  |  | 	fo.putcs = put_errcs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							|  |  |  | 	_errbfmtv (hcl, fmt, &fo, ap); | 
					
						
							|  |  |  | 	va_end (ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return fo.count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void hcl_seterrbfmt (hcl_t* hcl, hcl_errnum_t errnum, const hcl_bch_t* fmt, ...) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-22 04:44:21 +00:00
										 |  |  | 	if (hcl->shuterr) return; | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	hcl->errmsg.len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fo.mask = 0; /* not used */ | 
					
						
							|  |  |  | 	fo.putch = put_errch; | 
					
						
							|  |  |  | 	fo.putcs = put_errcs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							|  |  |  | 	_errbfmtv (hcl, fmt, &fo, ap); | 
					
						
							|  |  |  | 	va_end (ap); | 
					
						
							| 
									
										
										
										
											2018-04-06 14:37:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hcl->errnum = errnum; | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void hcl_seterrufmt (hcl_t* hcl, hcl_errnum_t errnum, const hcl_uch_t* fmt, ...) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-22 04:44:21 +00:00
										 |  |  | 	if (hcl->shuterr) return; | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	hcl->errmsg.len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fo.mask = 0; /* not used */ | 
					
						
							|  |  |  | 	fo.putch = put_errch; | 
					
						
							|  |  |  | 	fo.putcs = put_errcs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							|  |  |  | 	_errufmtv (hcl, fmt, &fo, ap); | 
					
						
							|  |  |  | 	va_end (ap); | 
					
						
							| 
									
										
										
										
											2018-04-06 14:37:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hcl->errnum = errnum; | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void hcl_seterrbfmtv (hcl_t* hcl, hcl_errnum_t errnum, const hcl_bch_t* fmt, va_list ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-22 04:44:21 +00:00
										 |  |  | 	if (hcl->shuterr) return; | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	hcl->errmsg.len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fo.mask = 0; /* not used */ | 
					
						
							|  |  |  | 	fo.putch = put_errch; | 
					
						
							|  |  |  | 	fo.putcs = put_errcs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_errbfmtv (hcl, fmt, &fo, ap); | 
					
						
							| 
									
										
										
										
											2018-04-06 14:37:40 +00:00
										 |  |  | 	hcl->errnum = errnum; | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void hcl_seterrufmtv (hcl_t* hcl, hcl_errnum_t errnum, const hcl_uch_t* fmt, va_list ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-22 04:44:21 +00:00
										 |  |  | 	if (hcl->shuterr) return; | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | 	hcl->errmsg.len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fo.mask = 0; /* not used */ | 
					
						
							|  |  |  | 	fo.putch = put_errch; | 
					
						
							|  |  |  | 	fo.putcs = put_errcs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_errufmtv (hcl, fmt, &fo, ap); | 
					
						
							| 
									
										
										
										
											2018-04-06 14:37:40 +00:00
										 |  |  | 	hcl->errnum = errnum; | 
					
						
							| 
									
										
										
										
											2018-02-05 10:43:25 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-05 15:59:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | /* -------------------------------------------------------------------------- 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  |  * SUPPORT FOR FORMATTED OUTPUT TO BE USED BY BUILTIN PRIMITIVE FUNCTIONS | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PRINT_OOCH(c,n) do { \
 | 
					
						
							|  |  |  | 	if (n > 0) { \ | 
					
						
							|  |  |  | 		int xx; \ | 
					
						
							| 
									
										
										
										
											2018-03-01 09:46:02 +00:00
										 |  |  | 		if ((xx = data->putch(hcl, data->mask, c, n)) <= -1) goto oops; \ | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 		if (xx == 0) goto done; \ | 
					
						
							|  |  |  | 		data->count += n; \ | 
					
						
							|  |  |  | 	} \ | 
					
						
							|  |  |  | } while (0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PRINT_OOCS(ptr,len) do { \
 | 
					
						
							|  |  |  | 	if (len > 0) { \ | 
					
						
							|  |  |  | 		int xx; \ | 
					
						
							| 
									
										
										
										
											2018-03-01 09:46:02 +00:00
										 |  |  | 		if ((xx = data->putcs(hcl, data->mask, ptr, len)) <= -1) goto oops; \ | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 		if (xx == 0) goto done; \ | 
					
						
							|  |  |  | 		data->count += len; \ | 
					
						
							|  |  |  | 	} \ | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | } while(0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define GET_NEXT_ARG_TO(hcl,nargs,arg_state,arg) do { \
 | 
					
						
							|  |  |  | 	if ((arg_state)->idx >= nargs) { (arg_state)->stop = 1;  goto invalid_format; } \ | 
					
						
							|  |  |  | 	arg = HCL_STACK_GETARG(hcl, nargs, (arg_state)->idx); \ | 
					
						
							|  |  |  | 	(arg_state)->idx++; \ | 
					
						
							|  |  |  | } while(0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define GET_NEXT_CHAR_TO(hcl,fmt,fmtend,ch) do { \
 | 
					
						
							|  |  |  | 	if (fmt >= fmtend) ch = HCL_OOCI_EOF; \ | 
					
						
							|  |  |  | 	else { ch = *(fmt); (fmt)++; }\ | 
					
						
							|  |  |  | } while(0) | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 09:46:02 +00:00
										 |  |  | static HCL_INLINE int print_formatted (hcl_t* hcl, hcl_ooi_t nargs, hcl_fmtout_t* data, hcl_outbfmt_t outbfmt) | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 	const hcl_ooch_t* fmt, * fmtend; | 
					
						
							| 
									
										
										
										
											2018-02-28 15:57:19 +00:00
										 |  |  | 	const hcl_ooch_t* checkpoint, * percent; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int n, base, neg, sign; | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 	hcl_ooi_t extra, width, precision; | 
					
						
							|  |  |  | 	hcl_ooch_t padc, ooch; | 
					
						
							|  |  |  | 	hcl_ooci_t ch; | 
					
						
							|  |  |  | 	int flagc; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 	struct  | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		hcl_ooi_t idx; | 
					
						
							|  |  |  | 		int stop; | 
					
						
							|  |  |  | 	} arg_state; | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 	hcl_oop_t arg; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 	arg = HCL_STACK_GETARG(hcl, nargs, 0); | 
					
						
							|  |  |  | 	if (!HCL_OOP_IS_POINTER(arg) || HCL_OBJ_GET_FLAGS_TYPE(arg) != HCL_OBJ_TYPE_CHAR) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		hcl_ooi_t i; | 
					
						
							|  |  |  | 		/* if the first argument is not a valid formatting string, 
 | 
					
						
							|  |  |  | 		 * print all arguments as objects */ | 
					
						
							| 
									
										
										
										
											2018-03-01 14:47:12 +00:00
										 |  |  | 		if (hcl_outfmtobj(hcl, data->mask, arg, outbfmt) <= -1) goto oops; | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 		for (i = 1; i < nargs; i++) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			arg = HCL_STACK_GETARG(hcl, nargs, i); | 
					
						
							| 
									
										
										
										
											2018-03-01 14:47:12 +00:00
										 |  |  | 			if (hcl_outfmtobj(hcl, data->mask, arg, outbfmt) <= -1) goto oops; | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fmt = HCL_OBJ_GET_CHAR_SLOT(arg); | 
					
						
							|  |  |  | 	fmtend = fmt + HCL_OBJ_GET_SIZE(arg); | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 	arg_state.idx = 1; | 
					
						
							|  |  |  | 	arg_state.stop = 0; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	data->count = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (1) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		checkpoint = fmt; | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		while (1) | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			GET_NEXT_CHAR_TO (hcl, fmt, fmtend, ch); | 
					
						
							|  |  |  | 			if (ch == '%' && !arg_state.stop) break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (ch == HCL_OOCI_EOF)  | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2018-03-01 08:56:56 +00:00
										 |  |  | 				/* fmt is not advanced when it is length-bounded.
 | 
					
						
							|  |  |  | 				 * so not fmt - checkpoint - 1 */ | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 				PRINT_OOCS (checkpoint, fmt - checkpoint);  | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 				goto done; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		PRINT_OOCS (checkpoint, fmt - checkpoint - 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		percent = fmt - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		padc = ' ';  | 
					
						
							|  |  |  | 		width = 0; precision = 0; | 
					
						
							|  |  |  | 		neg = 0; sign = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 		flagc = 0;  | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 08:56:56 +00:00
										 |  |  | 	reswitch: | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 		GET_NEXT_CHAR_TO (hcl, fmt, fmtend, ch); | 
					
						
							|  |  |  | 		switch (ch)  | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 		case '%': /* %% */ | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 			ooch = ch; | 
					
						
							|  |  |  | 			goto print_char; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* flag characters */ | 
					
						
							|  |  |  | 		case '.': | 
					
						
							|  |  |  | 			if (flagc & FLAGC_DOT) goto invalid_format; | 
					
						
							|  |  |  | 			flagc |= FLAGC_DOT; | 
					
						
							|  |  |  | 			goto reswitch; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case '#':  | 
					
						
							|  |  |  | 			if (flagc & (FLAGC_WIDTH | FLAGC_DOT | FLAGC_LENMOD)) goto invalid_format; | 
					
						
							|  |  |  | 			flagc |= FLAGC_SHARP; | 
					
						
							|  |  |  | 			goto reswitch; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case ' ': | 
					
						
							|  |  |  | 			if (flagc & (FLAGC_WIDTH | FLAGC_DOT | FLAGC_LENMOD)) goto invalid_format; | 
					
						
							|  |  |  | 			flagc |= FLAGC_SPACE; | 
					
						
							|  |  |  | 			goto reswitch; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case '+': /* place sign for signed conversion */ | 
					
						
							|  |  |  | 			if (flagc & (FLAGC_WIDTH | FLAGC_DOT | FLAGC_LENMOD)) goto invalid_format; | 
					
						
							|  |  |  | 			flagc |= FLAGC_SIGN; | 
					
						
							|  |  |  | 			goto reswitch; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case '-': /* left adjusted */ | 
					
						
							|  |  |  | 			if (flagc & (FLAGC_WIDTH | FLAGC_DOT | FLAGC_LENMOD)) goto invalid_format; | 
					
						
							|  |  |  | 			if (flagc & FLAGC_DOT) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				goto invalid_format; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				flagc |= FLAGC_LEFTADJ; | 
					
						
							|  |  |  | 				if (flagc & FLAGC_ZEROPAD) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					padc = ' '; | 
					
						
							|  |  |  | 					flagc &= ~FLAGC_ZEROPAD; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			goto reswitch; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case '*': /* take the length from the parameter */ | 
					
						
							|  |  |  | 			if (flagc & FLAGC_DOT)  | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				if (flagc & (FLAGC_STAR2 | FLAGC_PRECISION)) goto invalid_format; | 
					
						
							|  |  |  | 				flagc |= FLAGC_STAR2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 				GET_NEXT_ARG_TO (hcl, nargs, &arg_state, arg); | 
					
						
							|  |  |  | 				if (hcl_inttoooi(hcl, arg, &precision) <= -1) goto invalid_format; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 				if (precision < 0)  | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					/* if precision is less than 0, 
 | 
					
						
							|  |  |  | 					 * treat it as if no .precision is specified */ | 
					
						
							|  |  |  | 					flagc &= ~FLAGC_DOT; | 
					
						
							|  |  |  | 					precision = 0; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}  | 
					
						
							|  |  |  | 			else  | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				if (flagc & (FLAGC_STAR1 | FLAGC_WIDTH)) goto invalid_format; | 
					
						
							|  |  |  | 				flagc |= FLAGC_STAR1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 				GET_NEXT_ARG_TO (hcl, nargs, &arg_state, arg); | 
					
						
							|  |  |  | 				if (hcl_inttoooi(hcl, arg, &width) <= -1) goto invalid_format; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 				if (width < 0)  | 
					
						
							|  |  |  | 				{ | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 					flagc |= FLAGC_LEFTADJ; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 					width = -width; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			goto reswitch; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case '0': /* zero pad */ | 
					
						
							|  |  |  | 			if (flagc & FLAGC_LENMOD) goto invalid_format; | 
					
						
							|  |  |  | 			if (!(flagc & (FLAGC_DOT | FLAGC_LEFTADJ))) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				padc = '0'; | 
					
						
							|  |  |  | 				flagc |= FLAGC_ZEROPAD; | 
					
						
							|  |  |  | 				goto reswitch; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		/* end of flags characters */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case '1': case '2': case '3': case '4': | 
					
						
							|  |  |  | 		case '5': case '6': case '7': case '8': case '9': | 
					
						
							|  |  |  | 			if (flagc & FLAGC_LENMOD) goto invalid_format; | 
					
						
							|  |  |  | 			for (n = 0;; ++fmt)  | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				n = n * 10 + ch - '0'; | 
					
						
							|  |  |  | 				ch = *fmt; | 
					
						
							|  |  |  | 				if (ch < '0' || ch > '9') break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (flagc & FLAGC_DOT)  | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				if (flagc & FLAGC_STAR2) goto invalid_format; | 
					
						
							|  |  |  | 				precision = n; | 
					
						
							|  |  |  | 				flagc |= FLAGC_PRECISION; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else  | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				if (flagc & FLAGC_STAR1) goto invalid_format; | 
					
						
							|  |  |  | 				width = n; | 
					
						
							|  |  |  | 				flagc |= FLAGC_WIDTH; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			goto reswitch; | 
					
						
							|  |  |  |   | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 		/* integer conversions */ | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 		case 'd': | 
					
						
							|  |  |  | 		case 'i': /* signed conversion */ | 
					
						
							|  |  |  | 			base = 10; | 
					
						
							|  |  |  | 			sign = 1; | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 			goto print_integer; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 		case 'o':  | 
					
						
							|  |  |  | 			base = 8; | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 			goto print_integer; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 		case 'u': | 
					
						
							|  |  |  | 			base = 10; | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 			goto print_integer; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 		case 'X': | 
					
						
							|  |  |  | 			base = 16; | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 			goto print_integer; | 
					
						
							| 
									
										
										
										
											2018-02-28 15:57:19 +00:00
										 |  |  | 		case 'x': | 
					
						
							|  |  |  | 			base = -16; | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 			goto print_integer; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 		case 'b': | 
					
						
							|  |  |  | 			base = 2; | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 			goto print_integer; | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 		/* end of integer conversions */ | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 		case 'f': | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			const hcl_ooch_t* nsptr; | 
					
						
							|  |  |  | 			hcl_oow_t nslen; | 
					
						
							|  |  |  | 			hcl_oow_t scale = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			GET_NEXT_ARG_TO (hcl, nargs, &arg_state, arg); | 
					
						
							|  |  |  | 			if (HCL_OOP_IS_CHAR(arg))  | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				arg = HCL_SMOOI_TO_OOP(HCL_OOP_TO_CHAR(arg)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else if (HCL_IS_FPDEC(hcl, arg)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				hcl_oop_fpdec_t fa = (hcl_oop_fpdec_t)arg; | 
					
						
							|  |  |  | 				scale = HCL_OOP_TO_SMOOI(fa->scale); | 
					
						
							|  |  |  | 				arg = fa->value; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!hcl_inttostr(hcl, arg, 10, -1))  | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2018-04-02 08:47:50 +00:00
										 |  |  | 				HCL_LOG1 (hcl, HCL_LOG_WARN | HCL_LOG_UNTYPED, "unable to convert %O to string \n", arg); | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 				goto invalid_format; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			nsptr = hcl->inttostr.xbuf.ptr; | 
					
						
							|  |  |  | 			nslen = hcl->inttostr.xbuf.len; | 
					
						
							| 
									
										
										
										
											2018-04-02 08:47:50 +00:00
										 |  |  | 			HCL_ASSERT (hcl, nslen > 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (nsptr[0] == '-') | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				HCL_ASSERT (hcl, (HCL_OOP_IS_SMOOI(arg) && HCL_OOP_TO_SMOOI(arg) < 0) || HCL_IS_NBIGINT(hcl,arg)); | 
					
						
							|  |  |  | 				nsptr++; | 
					
						
							|  |  |  | 				nslen--; | 
					
						
							|  |  |  | 				neg = 1; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!(flagc & FLAGC_DOT))  | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				precision = scale; | 
					
						
							|  |  |  | 				if (precision <= 0) precision = 1; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if ((flagc & FLAGC_DOT) && precision < scale)   | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				hcl_oow_t diff  = scale - precision; | 
					
						
							|  |  |  | 				scale = precision; | 
					
						
							|  |  |  | 				nslen = (nslen < diff)? 0: (nslen - diff); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 08:47:50 +00:00
										 |  |  | 			if (nslen < scale + 1) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				extra = 1; | 
					
						
							|  |  |  | 				if (precision > 0) extra += 1 + scale; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				extra = 0; | 
					
						
							|  |  |  | 				if (nslen > 0) extra += nslen - scale; | 
					
						
							|  |  |  | 				if (precision > 0) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					extra += 1; | 
					
						
							|  |  |  | 					if (nslen > 0) extra += scale; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (neg) extra++; | 
					
						
							|  |  |  | 			else if (flagc & FLAGC_SIGN) extra++; | 
					
						
							|  |  |  | 			else if (flagc & FLAGC_SPACE) extra++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if ((flagc & FLAGC_DOT) && precision > scale)  | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				/* trailing zeros in the fractional part */ | 
					
						
							|  |  |  | 				extra += precision - scale; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!(flagc & FLAGC_LEFTADJ) && !(flagc & FLAGC_ZEROPAD) && width > extra) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				width -= extra; | 
					
						
							|  |  |  | 				PRINT_OOCH (padc, width); | 
					
						
							|  |  |  | 				width = 0; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (neg) PRINT_OOCH ('-', 1); | 
					
						
							|  |  |  | 			else if (flagc & FLAGC_SIGN) PRINT_OOCH ('+', 1); | 
					
						
							|  |  |  | 			else if (flagc & FLAGC_SPACE) PRINT_OOCH (' ', 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!(flagc & FLAGC_LEFTADJ) && width > extra) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				width -= extra; | 
					
						
							|  |  |  | 				PRINT_OOCH (padc, width); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (nslen < scale + 1) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				PRINT_OOCH ('0', 1); | 
					
						
							|  |  |  | 				if (precision > 0) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					PRINT_OOCH ('.', 1); | 
					
						
							|  |  |  | 					PRINT_OOCH ('0', scale - nslen); | 
					
						
							|  |  |  | 					PRINT_OOCS (nsptr, nslen); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				if (nslen > 0) PRINT_OOCS (nsptr, nslen - scale); | 
					
						
							|  |  |  | 				if (precision > 0)  | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					PRINT_OOCH ('.', 1); | 
					
						
							|  |  |  | 					if (nslen > 0) PRINT_OOCS (&nsptr[nslen - scale], scale); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (precision > scale)  | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				/* trailing zeros in the fractional part */ | 
					
						
							|  |  |  | 				PRINT_OOCH ('0', precision - scale); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if ((flagc & FLAGC_LEFTADJ) && width > extra) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				width -= extra; | 
					
						
							|  |  |  | 				PRINT_OOCH (padc, width); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 		case 'c': | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 		case 'C': | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			GET_NEXT_ARG_TO (hcl, nargs, &arg_state, arg); | 
					
						
							|  |  |  | 			if (HCL_OOP_IS_SMOOI(arg)) arg = HCL_CHAR_TO_OOP(HCL_OOP_TO_SMOOI(arg)); | 
					
						
							|  |  |  | 			if (!HCL_OOP_IS_CHAR(arg)) goto invalid_format; | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 			ooch = HCL_OOP_TO_CHAR(arg); | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 08:56:56 +00:00
										 |  |  | 		print_char: | 
					
						
							|  |  |  | 			/* zeropad must not take effect for 'c' */ | 
					
						
							|  |  |  | 			if (flagc & FLAGC_ZEROPAD) padc = ' ';  | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			/* precision 0 doesn't kill the letter */ | 
					
						
							|  |  |  | 			width--; | 
					
						
							|  |  |  | 			if (!(flagc & FLAGC_LEFTADJ) && width > 0) PRINT_OOCH (padc, width); | 
					
						
							|  |  |  | 			PRINT_OOCH (ooch, 1); | 
					
						
							|  |  |  | 			if ((flagc & FLAGC_LEFTADJ) && width > 0) PRINT_OOCH (padc, width); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case 's': | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 		case 'S': | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 			const hcl_ooch_t* oosp; | 
					
						
							|  |  |  | 			hcl_oow_t oosl; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			/* zeropad must not take effect for 'S' */ | 
					
						
							|  |  |  | 			if (flagc & FLAGC_ZEROPAD) padc = ' '; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			GET_NEXT_ARG_TO (hcl, nargs, &arg_state, arg); | 
					
						
							|  |  |  | 			if (!HCL_OOP_IS_POINTER(arg) || HCL_OBJ_GET_FLAGS_TYPE(arg) != HCL_OBJ_TYPE_CHAR) goto invalid_format; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 			oosp = HCL_OBJ_GET_CHAR_SLOT(arg); | 
					
						
							|  |  |  | 			oosl = HCL_OBJ_GET_SIZE(arg); | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (flagc & FLAGC_DOT) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 				if (oosl > precision) oosl = precision; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 			width -= oosl; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (!(flagc & FLAGC_LEFTADJ) && width > 0) PRINT_OOCH (padc, width); | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 			PRINT_OOCS (oosp, oosl); | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			if ((flagc & FLAGC_LEFTADJ) && width > 0) PRINT_OOCH (padc, width); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case 'O': /* object - ignore precision, width, adjustment */ | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			GET_NEXT_ARG_TO (hcl, nargs, &arg_state, arg); | 
					
						
							| 
									
										
										
										
											2018-03-15 08:35:38 +00:00
										 |  |  | 			if (hcl_outfmtobj(hcl, (data->mask & ~HCL_LOG_PREFER_JSON), arg, outbfmt) <= -1) goto oops; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-02 07:44:13 +00:00
										 |  |  | 		case 'J': | 
					
						
							|  |  |  | 			GET_NEXT_ARG_TO (hcl, nargs, &arg_state, arg); | 
					
						
							| 
									
										
										
										
											2018-03-15 08:35:38 +00:00
										 |  |  | 			if (hcl_outfmtobj(hcl, (data->mask | HCL_LOG_PREFER_JSON), arg, outbfmt) <= -1) goto oops; | 
					
						
							| 
									
										
										
										
											2018-03-02 07:44:13 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 		print_integer: | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			const hcl_ooch_t* nsptr; | 
					
						
							|  |  |  | 			hcl_oow_t nslen; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			GET_NEXT_ARG_TO (hcl, nargs, &arg_state, arg); | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 			if (HCL_OOP_IS_CHAR(arg))  | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				arg = HCL_SMOOI_TO_OOP(HCL_OOP_TO_CHAR(arg)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else if (HCL_IS_FPDEC(hcl, arg)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				hcl_oop_t nv; | 
					
						
							|  |  |  | 				hcl_oop_fpdec_t fa = (hcl_oop_fpdec_t)arg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				/* the given number for integer output is a fixed-point decimal.
 | 
					
						
							|  |  |  | 				 * i will drop all digits after the fixed point */ | 
					
						
							|  |  |  | 				hcl_pushtmp (hcl, &arg); | 
					
						
							|  |  |  | 				nv = hcl_truncfpdecval(hcl, fa->value, HCL_OOP_TO_SMOOI(fa->scale), 0); | 
					
						
							|  |  |  | 				hcl_poptmp (hcl); | 
					
						
							|  |  |  | 				if (!nv) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					HCL_LOG1 (hcl, HCL_LOG_WARN | HCL_LOG_UNTYPED, "unable to truncate a fixed-point number %O to an integer for output\n", arg); | 
					
						
							|  |  |  | 					goto invalid_format; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				arg = nv; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-02-28 15:57:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 			if (!hcl_inttostr(hcl, arg, base, -1))  | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 				/*hcl_seterrbfmt (hcl, HCL_EINVAL, "not a valid number - %O", arg);
 | 
					
						
							|  |  |  | 				goto oops;*/ | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 				HCL_LOG1 (hcl, HCL_LOG_WARN | HCL_LOG_UNTYPED, "unable to convert integer %O to string \n", arg); | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 				goto invalid_format; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 			nsptr = hcl->inttostr.xbuf.ptr; | 
					
						
							|  |  |  | 			nslen = hcl->inttostr.xbuf.len; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 08:47:50 +00:00
										 |  |  | 			HCL_ASSERT (hcl, nslen > 0); | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 			if (nsptr[0] == '-')  | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				/* a negative number was given. i must skip the minus sign 
 | 
					
						
							|  |  |  | 				 * added by hcl_inttostr() for a negative number. */ | 
					
						
							|  |  |  | 				HCL_ASSERT (hcl, (HCL_OOP_IS_SMOOI(arg) && HCL_OOP_TO_SMOOI(arg) < 0) || HCL_IS_NBIGINT(hcl,arg)); | 
					
						
							|  |  |  | 				nsptr++; | 
					
						
							|  |  |  | 				nslen--;  | 
					
						
							|  |  |  | 			}  | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			extra = nslen; | 
					
						
							|  |  |  | 			if (sign && ((HCL_OOP_IS_SMOOI(arg) && HCL_OOP_TO_SMOOI(arg) < 0) || HCL_IS_NBIGINT(hcl,arg))) neg = 1; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			if ((flagc & FLAGC_SHARP) && arg != HCL_SMOOI_TO_OOP(0))  | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2018-03-01 08:56:56 +00:00
										 |  |  | 				if (base == 2 || base == 8 || base == 16 || base == -16) extra += 2; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			if (neg) extra++; | 
					
						
							|  |  |  | 			else if (flagc & FLAGC_SIGN) extra++; | 
					
						
							|  |  |  | 			else if (flagc & FLAGC_SPACE) extra++; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 			if ((flagc & FLAGC_DOT) && precision > nslen)  | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				/* extra zeros for precision specified */ | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 				extra += (precision - nslen); | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			if (!(flagc & FLAGC_LEFTADJ) && !(flagc & FLAGC_ZEROPAD) && width > 0 && (width -= extra) > 0) | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				PRINT_OOCH (padc, width); | 
					
						
							|  |  |  | 				width = 0; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (neg) PRINT_OOCH ('-', 1); | 
					
						
							|  |  |  | 			else if (flagc & FLAGC_SIGN) PRINT_OOCH ('+', 1); | 
					
						
							|  |  |  | 			else if (flagc & FLAGC_SPACE) PRINT_OOCH (' ', 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			if ((flagc & FLAGC_SHARP) && arg != HCL_SMOOI_TO_OOP(0))  | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				if (base == 2)  | 
					
						
							|  |  |  | 				{ | 
					
						
							| 
									
										
										
										
											2018-03-01 08:56:56 +00:00
										 |  |  | 					PRINT_OOCH ('#', 1); | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 					PRINT_OOCH ('b', 1); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				if (base == 8)  | 
					
						
							|  |  |  | 				{ | 
					
						
							| 
									
										
										
										
											2018-03-01 08:56:56 +00:00
										 |  |  | 					PRINT_OOCH ('#', 1); | 
					
						
							|  |  |  | 					PRINT_OOCH ('o', 1); | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 				}  | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 				else if (base == 16 || base == -16)  | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 				{ | 
					
						
							| 
									
										
										
										
											2018-03-01 08:56:56 +00:00
										 |  |  | 					PRINT_OOCH ('#', 1); | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 					PRINT_OOCH ('x', 1); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 			if ((flagc & FLAGC_DOT) && precision > nslen) | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				/* extra zeros for precision specified */ | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 				PRINT_OOCH ('0', precision - nslen); | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			if (!(flagc & FLAGC_LEFTADJ) && width > 0 && (width -= extra) > 0) | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				PRINT_OOCH (padc, width); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 			PRINT_OOCS (nsptr, nslen); | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			if ((flagc & FLAGC_LEFTADJ) && width > 0 && (width -= extra) > 0) | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				PRINT_OOCH (padc, width); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 		invalid_format: | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			PRINT_OOCS (percent, fmt - percent); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			PRINT_OOCS (percent, fmt - percent); | 
					
						
							|  |  |  | 			/*
 | 
					
						
							|  |  |  | 			 * Since we ignore an formatting argument it is no | 
					
						
							|  |  |  | 			 * longer safe to obey the remaining formatting | 
					
						
							|  |  |  | 			 * arguments as the arguments will no longer match | 
					
						
							|  |  |  | 			 * the format specs. | 
					
						
							|  |  |  | 			 */ | 
					
						
							| 
									
										
										
										
											2018-03-01 05:25:09 +00:00
										 |  |  | 			arg_state.stop = 1; | 
					
						
							| 
									
										
										
										
											2018-02-26 15:52:15 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | done: | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | oops: | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | /* -------------------------------------------------------------------------- 
 | 
					
						
							|  |  |  |  * SUPPORT FOR THE BUILTIN PRINTF PRIMITIVE FUNCTION | 
					
						
							|  |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 09:46:02 +00:00
										 |  |  | int hcl_printfmtst (hcl_t* hcl, hcl_ooi_t nargs) | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 	HCL_MEMSET (&fo, 0, HCL_SIZEOF(fo)); | 
					
						
							| 
									
										
										
										
											2018-03-01 09:46:02 +00:00
										 |  |  | 	fo.putch = put_prch; | 
					
						
							|  |  |  | 	fo.putcs = put_prcs; | 
					
						
							|  |  |  | 	return print_formatted(hcl, nargs, &fo, hcl_proutbfmt); | 
					
						
							| 
									
										
										
										
											2018-02-28 10:17:05 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-28 15:57:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | /* -------------------------------------------------------------------------- 
 | 
					
						
							|  |  |  |  * SUPPORT FOR THE BUILTIN LOGF PRIMITIVE FUNCTION | 
					
						
							|  |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 09:46:02 +00:00
										 |  |  | int hcl_logfmtst (hcl_t* hcl, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HCL_MEMSET (&fo, 0, HCL_SIZEOF(fo)); | 
					
						
							|  |  |  | 	fo.mask = HCL_LOG_FATAL | HCL_LOG_APP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hcl->log.default_type_mask & HCL_LOG_ALL_TYPES)  | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		/* if a type is given, it's not untyped any more.
 | 
					
						
							|  |  |  | 		 * mask off the UNTYPED bit */ | 
					
						
							|  |  |  | 		fo.mask &= ~HCL_LOG_UNTYPED;  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* if the default_type_mask has the UNTYPED bit on,
 | 
					
						
							|  |  |  | 		 * it'll get turned back on */ | 
					
						
							|  |  |  | 		fo.mask |= (hcl->log.default_type_mask & HCL_LOG_ALL_TYPES); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 	fo.putch = put_logch; | 
					
						
							|  |  |  | 	fo.putcs = put_logcs; | 
					
						
							| 
									
										
										
										
											2018-03-01 09:46:02 +00:00
										 |  |  | 	return print_formatted(hcl, nargs, &fo, hcl_logbfmt); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* -------------------------------------------------------------------------- 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  |  * SUPPORT FOR THE BUILTIN SPRINTF PRIMITIVE FUNCTION | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static int put_sprcs (hcl_t* hcl, hcl_bitmask_t mask, const hcl_ooch_t* ptr, hcl_oow_t len) | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 	if (len > hcl->sprintf.xbuf.capa - hcl->sprintf.xbuf.len) | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		hcl_ooch_t* tmp; | 
					
						
							|  |  |  | 		hcl_oow_t newcapa; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		newcapa = hcl->sprintf.xbuf.len + len + 1; | 
					
						
							|  |  |  | 		newcapa = HCL_ALIGN_POW2(newcapa, 256); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		tmp = (hcl_ooch_t*)hcl_reallocmem(hcl, hcl->sprintf.xbuf.ptr, newcapa * HCL_SIZEOF(*tmp)); | 
					
						
							|  |  |  | 		if (!tmp) return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hcl->sprintf.xbuf.ptr = tmp; | 
					
						
							|  |  |  | 		hcl->sprintf.xbuf.capa = newcapa; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 	HCL_MEMCPY (&hcl->sprintf.xbuf.ptr[hcl->sprintf.xbuf.len], ptr, len * HCL_SIZEOF(*ptr)); | 
					
						
							|  |  |  | 	hcl->sprintf.xbuf.len += len; | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 	return 1; /* success */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static int put_sprch (hcl_t* hcl, hcl_bitmask_t mask, hcl_ooch_t ch, hcl_oow_t len) | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 	if (len > hcl->sprintf.xbuf.capa - hcl->sprintf.xbuf.len) | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		hcl_ooch_t* tmp; | 
					
						
							|  |  |  | 		hcl_oow_t newcapa; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		newcapa = hcl->sprintf.xbuf.len + len + 1; | 
					
						
							|  |  |  | 		newcapa = HCL_ALIGN_POW2(newcapa, 256); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		tmp = (hcl_ooch_t*)hcl_reallocmem(hcl, hcl->sprintf.xbuf.ptr, newcapa * HCL_SIZEOF(*tmp)); | 
					
						
							|  |  |  | 		if (!tmp) return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hcl->sprintf.xbuf.ptr = tmp; | 
					
						
							|  |  |  | 		hcl->sprintf.xbuf.capa = newcapa; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 05:05:09 +00:00
										 |  |  | 	while (len > 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		--len; | 
					
						
							|  |  |  | 		hcl->sprintf.xbuf.ptr[hcl->sprintf.xbuf.len++] = ch; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 	return 1; /* success */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static hcl_ooi_t __sprbfmtv (hcl_t* hcl, hcl_bitmask_t mask, const hcl_bch_t* fmt, ...); | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int _sprbfmtv (hcl_t* hcl, const hcl_bch_t* fmt, hcl_fmtout_t* data, va_list ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return __logbfmtv (hcl, fmt, data, ap, __sprbfmtv); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  | static int _sprufmtv (hcl_t* hcl, const hcl_uch_t* fmt, hcl_fmtout_t* data, va_list ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return __logufmtv (hcl, fmt, data, ap, __sprbfmtv); | 
					
						
							|  |  |  | }*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | static hcl_ooi_t __sprbfmtv (hcl_t* hcl, hcl_bitmask_t mask, const hcl_bch_t* fmt, ...) | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fo.mask = mask; /* not used */ | 
					
						
							|  |  |  | 	fo.putch = put_sprch; | 
					
						
							|  |  |  | 	fo.putcs = put_sprcs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							|  |  |  | 	_sprbfmtv (hcl, fmt, &fo, ap); | 
					
						
							|  |  |  | 	va_end (ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return fo.count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | hcl_ooi_t hcl_sproutbfmt (hcl_t* hcl, hcl_bitmask_t mask, const hcl_bch_t* fmt, ...) | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int x; | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fo.mask = mask; | 
					
						
							|  |  |  | 	fo.putch = put_sprch; | 
					
						
							|  |  |  | 	fo.putcs = put_sprcs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | 	x = _sprbfmtv(hcl, fmt, &fo, ap); | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 	va_end (ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (x <= -1)? -1: fo.count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2018-04-26 04:39:20 +00:00
										 |  |  | hcl_ooi_t hcl_sproutufmt (hcl_t* hcl, hcl_bitmask_t mask, const hcl_uch_t* fmt, ...) | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int x; | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fo.mask = mask; | 
					
						
							|  |  |  | 	fo.putch = put_sprch; | 
					
						
							|  |  |  | 	fo.putcs = put_sprcs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							|  |  |  | 	x = _sprufmtv (hcl, fmt, &fo, ap); | 
					
						
							|  |  |  | 	va_end (ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (x <= -1)? -1: fo.count; | 
					
						
							|  |  |  | }*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int hcl_sprintfmtst (hcl_t* hcl, hcl_ooi_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hcl_fmtout_t fo; | 
					
						
							| 
									
										
										
										
											2018-04-01 17:09:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-05 03:35:44 +00:00
										 |  |  | 	HCL_MEMSET (&fo, 0, HCL_SIZEOF(fo)); | 
					
						
							|  |  |  | 	fo.putch = put_sprch; | 
					
						
							|  |  |  | 	fo.putcs = put_sprcs; | 
					
						
							|  |  |  | 	hcl->sprintf.xbuf.len = 0; | 
					
						
							|  |  |  | 	return print_formatted(hcl, nargs, &fo, hcl_sproutbfmt); | 
					
						
							|  |  |  | } |