| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-04-16 03:42:30 +00:00
										 |  |  |     Copyright (c) 2006-2020 Chung, Hyung-Hwan. All rights reserved. | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | str_t* FN(open) (hawk_gem_t* gem, hawk_oow_t xtnsize, hawk_oow_t capa) | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	str_t* str; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 	str = (str_t*)hawk_gem_allocmem(gem, HAWK_SIZEOF(str_t) + xtnsize); | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 	if (str) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 		if (FN(init)(str, gem, capa) <= -1) | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 			hawk_gem_freemem (gem, str); | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 			str = HAWK_NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			HAWK_MEMSET (str + 1, 0, xtnsize); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return str; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FN(close) (str_t* str) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	FN(fini) (str); | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 	hawk_gem_freemem (str->gem, str); | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | int FN(init) (str_t* str, hawk_gem_t* gem, hawk_oow_t capa) | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	HAWK_MEMSET (str, 0, HAWK_SIZEOF(str_t)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 	str->gem = gem; | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 	str->sizer = HAWK_NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (capa == 0) str->val.ptr = HAWK_NULL; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 		str->val.ptr = (char_t*)hawk_gem_allocmem(gem, HAWK_SIZEOF(char_t) * (capa + 1)); | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 		if (!str->val.ptr) return -1; | 
					
						
							|  |  |  | 		str->val.ptr[0] = '\0'; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	str->val.len = 0; | 
					
						
							|  |  |  | 	str->capa = capa; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FN(fini) (str_t* str) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 	if (str->val.ptr) hawk_gem_freemem (str->gem, str->val.ptr); | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int FN(yield) (str_t* str, cstr_t* buf, hawk_oow_t newcapa) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char_t* tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (newcapa == 0) tmp = HAWK_NULL; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 		tmp = (char_t*)hawk_gem_allocmem(str->gem, HAWK_SIZEOF(char_t) * (newcapa + 1)); | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 		if (!tmp) return -1; | 
					
						
							|  |  |  | 		tmp[0] = '\0'; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (buf) *buf = str->val; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	str->val.ptr = tmp; | 
					
						
							|  |  |  | 	str->val.len = 0; | 
					
						
							|  |  |  | 	str->capa = newcapa; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char_t* FN(yieldptr) (str_t* str, hawk_oow_t newcapa) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	cstr_t mx; | 
					
						
							|  |  |  | 	if (FN(yield)(str, &mx, newcapa) <= -1) return HAWK_NULL; | 
					
						
							|  |  |  | 	return mx.ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(setcapa) (str_t* str, hawk_oow_t capa) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char_t* tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (capa == str->capa) return capa; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 	tmp = (char_t*)hawk_gem_reallocmem(str->gem, str->val.ptr, HAWK_SIZEOF(char_t) * (capa+1)); | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 	if (!tmp) return (hawk_oow_t)-1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (capa < str->val.len) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		str->val.len = capa; | 
					
						
							|  |  |  | 		tmp[capa] = '\0'; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	str->capa = capa; | 
					
						
							|  |  |  | 	str->val.ptr = tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return str->capa; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(setlen) (str_t* str, hawk_oow_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (len == str->val.len) return len; | 
					
						
							| 
									
										
										
										
											2024-05-02 22:47:30 +09:00
										 |  |  | 	if (len < str->val.len) | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		str->val.len = len; | 
					
						
							|  |  |  | 		str->val.ptr[len] = '\0'; | 
					
						
							|  |  |  | 		return len; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len > str->capa) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if (FN(setcapa)(str, len) == (hawk_oow_t)-1) return (hawk_oow_t)-1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (str->val.len < len) str->val.ptr[str->val.len++] = ' '; | 
					
						
							|  |  |  | 	str->val.ptr[str->val.len] = '\0'; | 
					
						
							|  |  |  | 	return str->val.len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FN(clear) (str_t* str) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	str->val.len = 0; | 
					
						
							|  |  |  | 	if (str->val.ptr) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2019-12-21 16:59:00 +00:00
										 |  |  | 		HAWK_ASSERT (str->capa >= 1); | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 		str->val.ptr[0] = '\0'; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FN(swap) (str_t* str, str_t* str1) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	str_t tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tmp.val.ptr = str->val.ptr; | 
					
						
							|  |  |  | 	tmp.val.len = str->val.len; | 
					
						
							|  |  |  | 	tmp.capa = str->capa; | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 	tmp.gem = str->gem; | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	str->val.ptr = str1->val.ptr; | 
					
						
							|  |  |  | 	str->val.len = str1->val.len; | 
					
						
							|  |  |  | 	str->capa = str1->capa; | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 	str->gem = str1->gem; | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	str1->val.ptr = tmp.val.ptr; | 
					
						
							|  |  |  | 	str1->val.len = tmp.val.len; | 
					
						
							|  |  |  | 	str1->capa = tmp.capa; | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 	str1->gem = tmp.gem; | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(cpy) (str_t* str, const char_t* s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* TODO: improve it */ | 
					
						
							|  |  |  | 	return FN(ncpy)(str, s, count_chars(s)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(ncpy) (str_t* str, const char_t* s, hawk_oow_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (len > str->capa || str->capa <= 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		hawk_oow_t tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* if the current capacity is 0 and the string len to copy is 0
 | 
					
						
							|  |  |  | 		 * we can't simply pass 'len' as the new capapcity. | 
					
						
							|  |  |  | 		 * ecs_setcapa() won't do anything the current capacity of 0 | 
					
						
							| 
									
										
										
										
											2024-05-02 22:47:30 +09:00
										 |  |  | 		 * is the same as new capacity required. note that when str->capa | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 		 * is 0, str->val.ptr is HAWK_NULL. However, this is copying operation. | 
					
						
							|  |  |  | 		 * Copying a zero-length string may indicate that str->val.ptr must | 
					
						
							|  |  |  | 		 * not be HAWK_NULL. so I simply pass 1 as the new capacity */ | 
					
						
							|  |  |  | 		tmp = FN(setcapa)(str, ((str->capa <= 0 && len <= 0)? 1: len)); | 
					
						
							|  |  |  | 		if (tmp == (hawk_oow_t)-1) return (hawk_oow_t)-1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HAWK_MEMCPY (&str->val.ptr[0], s, len * HAWK_SIZEOF(*s)); | 
					
						
							|  |  |  | 	str->val.ptr[len] = '\0'; | 
					
						
							|  |  |  | 	str->val.len = len; | 
					
						
							|  |  |  | 	return len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(cat) (str_t* str, const char_t* s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* TODO: improve it. no counting */ | 
					
						
							|  |  |  | 	return FN(ncat)(str, s, count_chars(s)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int FN(resize_for_ncat) (str_t* str, hawk_oow_t len) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-05-02 22:47:30 +09:00
										 |  |  | 	if (len > str->capa - str->val.len) | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		hawk_oow_t ncapa, mincapa; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-02 22:47:30 +09:00
										 |  |  | 		/* let the minimum capacity be as large as
 | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 		 * to fit in the new substring */ | 
					
						
							|  |  |  | 		mincapa = str->val.len + len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!str->sizer) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			/* increase the capacity by the length to add */ | 
					
						
							|  |  |  | 			ncapa = mincapa; | 
					
						
							|  |  |  | 			/* if the new capacity is less than the double,
 | 
					
						
							|  |  |  | 			 * just double it */ | 
					
						
							|  |  |  | 			if (ncapa < str->capa * 2) ncapa = str->capa * 2; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			/* let the user determine the new capacity.
 | 
					
						
							|  |  |  | 			 * pass the minimum capacity required as a hint */ | 
					
						
							|  |  |  | 			ncapa = str->sizer(str, mincapa); | 
					
						
							|  |  |  | 			/* if no change in capacity, return current length */ | 
					
						
							|  |  |  | 			if (ncapa == str->capa) return 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* change the capacity */ | 
					
						
							|  |  |  | 		do | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			if (FN(setcapa)(str, ncapa) != (hawk_oow_t)-1) break; | 
					
						
							|  |  |  | 			if (ncapa <= mincapa) return -1; | 
					
						
							|  |  |  | 			ncapa--; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		while (1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (str->capa <= 0 && len <= 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2019-12-21 16:59:00 +00:00
										 |  |  | 		HAWK_ASSERT (str->val.ptr == HAWK_NULL); | 
					
						
							|  |  |  | 		HAWK_ASSERT (str->val.len <= 0); | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 		if (FN(setcapa)(str, 1) == (hawk_oow_t)-1) return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(ncat) (str_t* str, const char_t* s, hawk_oow_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int n; | 
					
						
							|  |  |  | 	hawk_oow_t i, j; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	n = FN(resize_for_ncat)(str, len); | 
					
						
							|  |  |  | 	if (n <= -1) return (hawk_oow_t)-1; | 
					
						
							|  |  |  | 	if (n == 0) return str->val.len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-02 22:47:30 +09:00
										 |  |  | 	if (len > str->capa - str->val.len) | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		/* copy as many characters as the number of cells available.
 | 
					
						
							|  |  |  | 		 * if the capacity has been decreased, len is adjusted here */ | 
					
						
							|  |  |  | 		len = str->capa - str->val.len; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	HAWK_MEMCPY (&str->val.ptr[str->val.len], s, len*HAWK_SIZEOF(*s)); | 
					
						
							|  |  |  | 	str->val.len += len; | 
					
						
							|  |  |  | 	str->val.ptr[str->val.len] = T('\0'); | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	for (i = 0, j = str->val.len ; i < len; j++, i++) str->val.ptr[j] = s[i]; | 
					
						
							|  |  |  | 	str->val.ptr[j] = '\0'; | 
					
						
							|  |  |  | 	str->val.len = j; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return str->val.len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(nrcat) (str_t* str, const char_t* s, hawk_oow_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int n; | 
					
						
							|  |  |  | 	hawk_oow_t i, j; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	n = FN(resize_for_ncat)(str, len); | 
					
						
							|  |  |  | 	if (n <= -1) return (hawk_oow_t)-1; | 
					
						
							|  |  |  | 	if (n == 0) return str->val.len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len > str->capa - str->val.len) len = str->capa - str->val.len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = len, j = str->val.len ; i > 0; j++) str->val.ptr[j] = s[--i]; | 
					
						
							|  |  |  | 	str->val.ptr[j] = '\0'; | 
					
						
							|  |  |  | 	str->val.len = j; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return str->val.len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(ccat) (str_t* str, char_t c) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return FN(ncat)(str, &c, 1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(nccat) (str_t* str, char_t c, hawk_oow_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	while (len > 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if (FN(ncat)(str, &c, 1) == (hawk_oow_t)-1) return (hawk_oow_t)-1; | 
					
						
							|  |  |  | 		len--; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return str->val.len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(del) (str_t* str, hawk_oow_t index, hawk_oow_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (str->val.ptr && index < str->val.len && size > 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		hawk_oow_t nidx = index + size; | 
					
						
							|  |  |  | 		if (nidx >= str->val.len) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			str->val.ptr[index] = '\0'; | 
					
						
							|  |  |  | 			str->val.len = index; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			HAWK_MEMMOVE (&str->val.ptr[index], &str->val.ptr[nidx], HAWK_SIZEOF(*str->val.ptr) * (str->val.len - nidx + 1)); | 
					
						
							|  |  |  | 			str->val.len -= size; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return str->val.len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(amend) (str_t* str, hawk_oow_t pos, hawk_oow_t len, const char_t* repl) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hawk_oow_t max_len; | 
					
						
							|  |  |  | 	hawk_oow_t repl_len = count_chars(repl); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (pos >= str->val.len) pos = str->val.len; | 
					
						
							|  |  |  | 	max_len = str->val.len - pos; | 
					
						
							|  |  |  | 	if (len > max_len) len = max_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len > repl_len) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		FN(del) (str, pos, len - repl_len); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (len < repl_len) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		hawk_oow_t old_ecs_len = str->val.len; | 
					
						
							|  |  |  | 		if (FN(setlen)(str, str->val.len + repl_len - len) == (hawk_oow_t)-1) return (hawk_oow_t)-1; | 
					
						
							|  |  |  | 		HAWK_MEMMOVE (&str->val.ptr[pos + repl_len], &str->val.ptr[pos + len], HAWK_SIZEOF(*repl) * (old_ecs_len - (pos + len))); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-02 22:47:30 +09:00
										 |  |  | 	if (repl_len > 0) HAWK_MEMMOVE (&str->val.ptr[pos], repl, HAWK_SIZEOF(*repl) * repl_len); | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 	return str->val.len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int FN(put_bchars) (hawk_fmtout_t* fmtout, const hawk_bch_t* ptr, hawk_oow_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #if defined(BUILD_UECS)
 | 
					
						
							|  |  |  | 	hawk_uecs_t* uecs = (hawk_uecs_t*)fmtout->ctx; | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 	if (hawk_uecs_ncatbchars(uecs, ptr, len, uecs->gem->cmgr, 1) == (hawk_oow_t)-1) return -1; | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 	hawk_becs_t* becs = (hawk_becs_t*)fmtout->ctx; | 
					
						
							|  |  |  | 	if (hawk_becs_ncat(becs, ptr, len) == (hawk_oow_t)-1) return -1; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	return 1; /* success. carry on */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int FN(put_uchars) (hawk_fmtout_t* fmtout, const hawk_uch_t* ptr, hawk_oow_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #if defined(BUILD_UECS)
 | 
					
						
							|  |  |  | 	hawk_uecs_t* uecs = (hawk_uecs_t*)fmtout->ctx; | 
					
						
							|  |  |  | 	if (hawk_uecs_ncat(uecs, ptr, len) == (hawk_oow_t)-1) return -1; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	hawk_becs_t* becs = (hawk_becs_t*)fmtout->ctx; | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 	if (hawk_becs_ncatuchars(becs, ptr, len, becs->gem->cmgr) == (hawk_oow_t)-1) return -1; | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 	return 1; /* success. carry on */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(vfcat) (str_t* str, const char_t* fmt, va_list ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hawk_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HAWK_MEMSET (&fo, 0, HAWK_SIZEOF(fo)); | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 	fo.mmgr = str->gem->mmgr; | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 	fo.putbchars = FN(put_bchars); | 
					
						
							|  |  |  | 	fo.putuchars = FN(put_uchars); | 
					
						
							|  |  |  | 	fo.ctx = str; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(BUILD_UECS)
 | 
					
						
							|  |  |  | 	if (hawk_ufmt_outv(&fo, fmt, ap) <= -1) return -1; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	if (hawk_bfmt_outv(&fo, fmt, ap) <= -1) return -1; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	return str->val.len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(fcat) (str_t* str, const char_t* fmt, ...) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hawk_oow_t x; | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							|  |  |  | 	x = FN(vfcat)(str, fmt, ap); | 
					
						
							|  |  |  | 	va_end (ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return x; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(vfmt) (str_t* str, const char_t* fmt, va_list ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hawk_fmtout_t fo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HAWK_MEMSET (&fo, 0, HAWK_SIZEOF(fo)); | 
					
						
							| 
									
										
										
										
											2019-12-14 06:11:30 +00:00
										 |  |  | 	fo.mmgr = str->gem->mmgr; | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 	fo.putbchars = FN(put_bchars); | 
					
						
							|  |  |  | 	fo.putuchars = FN(put_uchars); | 
					
						
							|  |  |  | 	fo.ctx = str; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	FN(clear) (str); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(BUILD_UECS)
 | 
					
						
							|  |  |  | 	if (hawk_ufmt_outv(&fo, fmt, ap) <= -1) return -1; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	if (hawk_bfmt_outv(&fo, fmt, ap) <= -1) return -1; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	return str->val.len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(fmt) (str_t* str, const char_t* fmt, ...) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	hawk_oow_t x; | 
					
						
							|  |  |  | 	va_list ap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_start (ap, fmt); | 
					
						
							|  |  |  | 	x = FN(vfmt)(str, fmt, ap); | 
					
						
							|  |  |  | 	va_end (ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return x; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2025-06-03 21:53:33 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(compact) (str_t* str) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (str->val.ptr) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		str->val.len = compact_chars(str->val.ptr, str->val.len); | 
					
						
							|  |  |  | 		str->val.ptr[str->val.len] = '\0'; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return str->val.len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | hawk_oow_t FN(trim) (str_t* str, int flags) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (str->val.ptr) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		const char_t* ptr; | 
					
						
							|  |  |  | 		hawk_oow_t len = str->val.len; | 
					
						
							|  |  |  | 		ptr =  trim_chars(str->val.ptr, &len, flags); | 
					
						
							|  |  |  | 		copy_chars(str->val.ptr, ptr, len); | 
					
						
							|  |  |  | 		str->val.ptr[len] = '\0'; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return str->val.len; | 
					
						
							|  |  |  | } |