2015-10-14 13:25:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
Copyright (c) 2014-2015 Chung, Hyung-Hwan. All rights reserved.
|
|
|
|
|
|
|
|
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 "stix-utl.h"
|
|
|
|
|
2015-10-29 15:24:46 +00:00
|
|
|
stix_size_t stix_hashbytes (const stix_oob_t* ptr, stix_size_t len)
|
2015-10-28 14:58:58 +00:00
|
|
|
{
|
|
|
|
stix_size_t h = 0;
|
|
|
|
const stix_uint8_t* bp, * be;
|
|
|
|
|
|
|
|
bp = ptr; be = bp + len;
|
|
|
|
while (bp < be) h = h * 31 + *bp++;
|
|
|
|
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
stix_size_t stix_hashuchars (const stix_uch_t* ptr, stix_size_t len)
|
|
|
|
{
|
2015-10-29 15:24:46 +00:00
|
|
|
return stix_hashbytes ((const stix_oob_t *)ptr, len * STIX_SIZEOF(*ptr));
|
2015-10-28 14:58:58 +00:00
|
|
|
}
|
|
|
|
|
2015-10-14 13:25:36 +00:00
|
|
|
int stix_equalchars (const stix_uch_t* str1, const stix_uch_t* str2, stix_size_t len)
|
|
|
|
{
|
|
|
|
stix_size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
{
|
|
|
|
if (str1[i] != str2[i]) return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int stix_compucstr (const stix_uch_t* str1, const stix_uch_t* str2)
|
|
|
|
{
|
|
|
|
while (*str1 == *str2)
|
|
|
|
{
|
|
|
|
if (*str1 == '\0') return 0;
|
|
|
|
str1++, str2++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (*str1 > *str2)? 1: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int stix_compbcstr (const stix_bch_t* str1, const stix_bch_t* str2)
|
|
|
|
{
|
|
|
|
while (*str1 == *str2)
|
|
|
|
{
|
|
|
|
if (*str1 == '\0') return 0;
|
|
|
|
str1++, str2++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (*str1 > *str2)? 1: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int stix_compucbcstr (const stix_uch_t* str1, const stix_bch_t* str2)
|
|
|
|
{
|
|
|
|
while (*str1 == *str2)
|
|
|
|
{
|
|
|
|
if (*str1 == '\0') return 0;
|
|
|
|
str1++, str2++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (*str1 > *str2)? 1: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int stix_compucxbcstr (const stix_uch_t* str1, stix_size_t len, const stix_bch_t* str2)
|
|
|
|
{
|
|
|
|
const stix_uch_t* end = str1 + len;
|
|
|
|
while (str1 < end && *str2 != '\0' && *str1 == *str2) str1++, str2++;
|
|
|
|
if (str1 == end && *str2 == '\0') return 0;
|
|
|
|
if (*str1 == *str2) return (str1 < end)? 1: -1;
|
|
|
|
return (*str1 > *str2)? 1: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void stix_copyuchars (stix_uch_t* dst, const stix_uch_t* src, stix_size_t len)
|
|
|
|
{
|
|
|
|
stix_size_t i;
|
|
|
|
for (i = 0; i < len; i++) dst[i] = src[i];
|
|
|
|
}
|
|
|
|
|
2015-10-28 14:58:58 +00:00
|
|
|
void stix_copybchars (stix_bch_t* dst, const stix_bch_t* src, stix_size_t len)
|
|
|
|
{
|
|
|
|
stix_size_t i;
|
|
|
|
for (i = 0; i < len; i++) dst[i] = src[i];
|
|
|
|
}
|
|
|
|
|
2015-10-14 13:25:36 +00:00
|
|
|
void stix_copybchtouchars (stix_uch_t* dst, const stix_bch_t* src, stix_size_t len)
|
|
|
|
{
|
|
|
|
stix_size_t i;
|
|
|
|
for (i = 0; i < len; i++) dst[i] = src[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
stix_size_t stix_copyucstr (stix_uch_t* dst, stix_size_t len, const stix_uch_t* src)
|
|
|
|
{
|
|
|
|
stix_uch_t* p, * p2;
|
|
|
|
|
|
|
|
p = dst; p2 = dst + len - 1;
|
|
|
|
|
|
|
|
while (p < p2)
|
|
|
|
{
|
|
|
|
if (*src == '\0') break;
|
|
|
|
*p++ = *src++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len > 0) *p = '\0';
|
|
|
|
return p - dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
stix_size_t stix_copybcstr (stix_bch_t* dst, stix_size_t len, const stix_bch_t* src)
|
|
|
|
{
|
|
|
|
stix_bch_t* p, * p2;
|
|
|
|
|
|
|
|
p = dst; p2 = dst + len - 1;
|
|
|
|
|
|
|
|
while (p < p2)
|
|
|
|
{
|
|
|
|
if (*src == '\0') break;
|
|
|
|
*p++ = *src++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len > 0) *p = '\0';
|
|
|
|
return p - dst;
|
|
|
|
}
|
|
|
|
|
2015-11-03 14:08:43 +00:00
|
|
|
stix_size_t stix_countucstr (const stix_uch_t* str)
|
|
|
|
{
|
|
|
|
const stix_uch_t* ptr = str;
|
|
|
|
while (*ptr != '\0') ptr++;
|
|
|
|
return ptr - str;
|
|
|
|
}
|
|
|
|
|
|
|
|
stix_size_t stix_countbcstr (const stix_bch_t* str)
|
|
|
|
{
|
|
|
|
const stix_bch_t* ptr = str;
|
|
|
|
while (*ptr != '\0') ptr++;
|
|
|
|
return ptr - str;
|
|
|
|
}
|
|
|
|
|
2015-10-28 14:58:58 +00:00
|
|
|
stix_uch_t* stix_finduchar (const stix_uch_t* ptr, stix_size_t len, stix_uch_t c)
|
2015-10-14 13:25:36 +00:00
|
|
|
{
|
|
|
|
const stix_uch_t* end;
|
|
|
|
|
|
|
|
end = ptr + len;
|
|
|
|
while (ptr < end)
|
|
|
|
{
|
|
|
|
if (*ptr == c) return (stix_uch_t*)ptr;
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return STIX_NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-03 14:08:43 +00:00
|
|
|
stix_bch_t* stix_findbchar (const stix_bch_t* ptr, stix_size_t len, stix_bch_t c)
|
2015-10-28 14:58:58 +00:00
|
|
|
{
|
|
|
|
const stix_bch_t* end;
|
|
|
|
|
|
|
|
end = ptr + len;
|
|
|
|
while (ptr < end)
|
|
|
|
{
|
|
|
|
if (*ptr == c) return (stix_bch_t*)ptr;
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return STIX_NULL;
|
|
|
|
}
|
|
|
|
|