qse/ase/lib/cmn/str_dyn.c

287 lines
5.4 KiB
C
Raw Normal View History

2008-03-18 22:09:04 +00:00
/*
* $Id: str_dyn.c 379 2008-09-24 08:06:56Z baconevi $
2008-03-18 22:09:04 +00:00
*
* {License}
*/
#include <ase/cmn/str.h>
2008-08-19 05:21:48 +00:00
#include "mem.h"
2008-03-18 22:09:04 +00:00
ase_str_t* ase_str_open (ase_mmgr_t* mmgr, ase_size_t ext, ase_size_t capa)
2008-03-18 22:09:04 +00:00
{
ase_str_t* str;
2008-03-18 22:09:04 +00:00
if (mmgr == ASE_NULL)
{
mmgr = ASE_MMGR_GETDFL();
ASE_ASSERTX (mmgr != ASE_NULL,
"Set the memory manager with ASE_MMGR_SETDFL()");
if (mmgr == ASE_NULL) return ASE_NULL;
}
2008-09-01 05:17:01 +00:00
str = (ase_str_t*) ASE_MMGR_ALLOC (mmgr, ASE_SIZEOF(ase_str_t) + ext);
if (str == ASE_NULL) return ASE_NULL;
if (ase_str_init (str, mmgr, capa) == ASE_NULL)
2008-03-18 22:09:04 +00:00
{
ASE_MMGR_FREE (mmgr, str);
2008-03-18 22:09:04 +00:00
return ASE_NULL;
}
return str;
}
void ase_str_close (ase_str_t* str)
{
ase_str_fini (str);
ASE_MMGR_FREE (str->mmgr, str);
}
ase_str_t* ase_str_init (ase_str_t* str, ase_mmgr_t* mmgr, ase_size_t capa)
{
2008-09-01 05:17:01 +00:00
ASE_MEMSET (str, 0, ASE_SIZEOF(ase_str_t));
2008-09-05 04:58:08 +00:00
str->mmgr = mmgr;
2008-09-05 04:58:08 +00:00
str->sizer = ASE_NULL;
if (capa == 0) str->ptr = ASE_NULL;
else
{
str->ptr = (ase_char_t*) ASE_MMGR_ALLOC (
2008-09-01 05:17:01 +00:00
mmgr, ASE_SIZEOF(ase_char_t) * (capa + 1));
if (str->ptr == ASE_NULL) return ASE_NULL;
str->ptr[0] = ASE_T('\0');
}
str->len = 0;
str->capa = capa;
2008-03-18 22:09:04 +00:00
return str;
}
void ase_str_fini (ase_str_t* str)
2008-03-18 22:09:04 +00:00
{
if (str->ptr != ASE_NULL) ASE_MMGR_FREE (str->mmgr, str->ptr);
2008-03-18 22:09:04 +00:00
}
int ase_str_yield (ase_str_t* str, ase_xstr_t* buf, int new_capa)
2008-03-18 22:09:04 +00:00
{
ase_char_t* tmp;
if (new_capa == 0) tmp = ASE_NULL;
else
{
tmp = (ase_char_t*) ASE_MMGR_ALLOC (
2008-09-01 05:17:01 +00:00
str->mmgr, ASE_SIZEOF(ase_char_t) * (new_capa + 1));
if (tmp == ASE_NULL) return -1;
tmp[0] = ASE_T('\0');
}
if (buf != ASE_NULL)
{
buf->ptr = str->ptr;
buf->len = str->len;
}
str->ptr = tmp;
str->len = 0;
str->capa = new_capa;
return 0;
2008-03-18 22:09:04 +00:00
}
void* ase_str_getextension (ase_str_t* str)
{
return str + 1;
}
ase_mmgr_t* ase_str_getmmgr (ase_str_t* str)
{
return str->mmgr;
}
void ase_str_setmmgr (ase_str_t* str, ase_mmgr_t* mmgr)
{
str->mmgr = mmgr;
}
ase_str_sizer_t ase_str_getsizer (ase_str_t* str)
2008-09-05 04:58:08 +00:00
{
return str->sizer;
}
void ase_str_setsizer (ase_str_t* str, ase_str_sizer_t sizer)
2008-09-05 04:58:08 +00:00
{
str->sizer = sizer;
}
ase_size_t ase_str_getcapa (ase_str_t* str)
{
return str->capa;
}
ase_size_t ase_str_setcapa (ase_str_t* str, ase_size_t capa)
{
ase_char_t* tmp;
if (str->mmgr->realloc != ASE_NULL && str->ptr != ASE_NULL)
2008-09-05 04:58:08 +00:00
{
tmp = (ase_char_t*) ASE_MMGR_REALLOC (
str->mmgr, str->ptr,
2008-09-05 04:58:08 +00:00
ASE_SIZEOF(ase_char_t)*(capa+1));
if (tmp == ASE_NULL) return (ase_size_t)-1;
}
else
{
tmp = (ase_char_t*) ASE_MMGR_ALLOC (
str->mmgr, ASE_SIZEOF(ase_char_t)*(capa+1));
if (tmp == ASE_NULL) return (ase_size_t)-1;
if (str->ptr != ASE_NULL)
2008-09-05 04:58:08 +00:00
{
ase_size_t ncopy = (str->len <= capa)? str->len: capa;
ASE_MEMCPY (tmp, str->ptr,
2008-09-05 04:58:08 +00:00
ASE_SIZEOF(ase_char_t)*(ncopy+1));
ASE_MMGR_FREE (str->mmgr, str->ptr);
2008-09-05 04:58:08 +00:00
}
}
if (capa < str->len)
2008-09-05 04:58:08 +00:00
{
str->len = capa;
2008-09-05 04:58:08 +00:00
tmp[capa] = ASE_T('\0');
}
str->capa = capa;
str->ptr = tmp;
2008-09-05 04:58:08 +00:00
return str->capa;
}
void ase_str_clear (ase_str_t* str)
2008-03-18 22:09:04 +00:00
{
str->len = 0;
str->ptr[0] = ASE_T('\0');
2008-03-18 22:09:04 +00:00
}
void ase_str_swap (ase_str_t* str, ase_str_t* str1)
{
ase_str_t tmp;
tmp.ptr = str->ptr;
tmp.len = str->len;
2008-03-18 22:09:04 +00:00
tmp.capa = str->capa;
tmp.mmgr = str->mmgr;
str->ptr = str1->ptr;
str->len = str1->len;
2008-03-18 22:09:04 +00:00
str->capa = str1->capa;
str->mmgr = str1->mmgr;
str1->ptr = tmp.ptr;
str1->len = tmp.len;
2008-03-18 22:09:04 +00:00
str1->capa = tmp.capa;
str1->mmgr = tmp.mmgr;
}
ase_size_t ase_str_cpy (ase_str_t* str, const ase_char_t* s)
{
/* TODO: improve it */
return ase_str_ncpy (str, s, ase_strlen(s));
}
ase_size_t ase_str_ncpy (ase_str_t* str, const ase_char_t* s, ase_size_t len)
{
ase_char_t* buf;
if (len > str->capa || str->ptr == ASE_NULL)
2008-03-18 22:09:04 +00:00
{
buf = (ase_char_t*) ASE_MMGR_ALLOC (
2008-09-01 05:17:01 +00:00
str->mmgr, ASE_SIZEOF(ase_char_t) * (len + 1));
2008-03-18 22:09:04 +00:00
if (buf == ASE_NULL) return (ase_size_t)-1;
if (str->ptr != ASE_NULL) ASE_MMGR_FREE (str->mmgr, str->ptr);
2008-03-18 22:09:04 +00:00
str->capa = len;
str->ptr = buf;
2008-03-18 22:09:04 +00:00
}
str->len = ase_strncpy (str->ptr, s, len);
str->ptr[str->len] = ASE_T('\0');
return str->len;
2008-03-18 22:09:04 +00:00
}
ase_size_t ase_str_cat (ase_str_t* str, const ase_char_t* s)
{
/* TODO: improve it */
return ase_str_ncat (str, s, ase_strlen(s));
}
2008-09-05 04:58:08 +00:00
2008-03-18 22:09:04 +00:00
ase_size_t ase_str_ncat (ase_str_t* str, const ase_char_t* s, ase_size_t len)
{
if (len > str->capa - str->len)
2008-03-18 22:09:04 +00:00
{
2008-09-05 04:58:08 +00:00
ase_size_t ncapa;
2008-03-18 22:09:04 +00:00
2008-09-05 04:58:08 +00:00
if (str->sizer == ASE_NULL)
2008-03-18 22:09:04 +00:00
{
2008-09-05 04:58:08 +00:00
/* increase the capacity by the length to add */
ncapa = str->len + len;
2008-09-05 04:58:08 +00:00
/* if the new capacity is less than the double,
* just double it */
if (ncapa < str->capa * 2) ncapa = str->capa * 2;
2008-03-18 22:09:04 +00:00
}
else
{
/* let the user determine the new capacity.
* pass the minimum capacity required as a hint */
ncapa = str->sizer (str, str->len + len);
2008-09-24 05:27:24 +00:00
/* if no change in capacity, return current length */
if (ncapa == str->capa) return str->len;
2008-03-18 22:09:04 +00:00
}
2008-09-05 04:58:08 +00:00
if (ase_str_setcapa (str, ncapa) == (ase_size_t)-1)
{
return (ase_size_t)-1;
}
2008-03-18 22:09:04 +00:00
}
if (len > str->capa - str->len)
2008-09-05 04:58:08 +00:00
{
2008-09-24 05:27:24 +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->len;
2008-09-05 04:58:08 +00:00
}
if (len > 0)
{
ASE_MEMCPY (&str->ptr[str->len], s, len*ASE_SIZEOF(*s));
str->len += len;
str->ptr[str->len] = ASE_T('\0');
2008-09-05 04:58:08 +00:00
}
2008-09-24 05:27:24 +00:00
return str->len;
2008-03-18 22:09:04 +00:00
}
ase_size_t ase_str_ccat (ase_str_t* str, ase_char_t c)
{
return ase_str_ncat (str, &c, 1);
}
ase_size_t ase_str_nccat (ase_str_t* str, ase_char_t c, ase_size_t len)
{
while (len > 0)
{
if (ase_str_ncat (str, &c, 1) == (ase_size_t)-1)
{
return (ase_size_t)-1;
}
len--;
}
return str->len;
2008-03-18 22:09:04 +00:00
}