File:  [ELWIX - Embedded LightWeight unIX -] / libaitio / src / Attic / sarray.c
Revision 1.7: download - view: text, annotated - select for diffs - revision graph
Tue Jul 3 08:51:05 2012 UTC (11 years, 11 months ago) by misho
Branches: MAIN
CVS tags: io5_0, io4_1, io4_0, io3_9, io3_8, io3_7, io3_6, io3_5, io3_4, io3_3, io3_2, IO4_1, IO4_0, IO3_9, IO3_8, IO3_7, IO3_6, IO3_5, IO3_4, IO3_3, IO3_2, IO3_1, HEAD
version 3.1

/*************************************************************************
* (C) 2011 AITNET ltd - Sofia/Bulgaria - <misho@aitnet.org>
*  by Michael Pounov <misho@elwix.org>
*
* $Author: misho $
* $Id: sarray.c,v 1.7 2012/07/03 08:51:05 misho Exp $
*
**************************************************************************
The ELWIX and AITNET software is distributed under the following
terms:

All of the documentation and software included in the ELWIX and AITNET
Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>

Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
	by Michael Pounov <misho@elwix.org>.  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.
3. All advertising materials mentioning features or use of this software
   must display the following acknowledgement:
This product includes software developed by Michael Pounov <misho@elwix.org>
ELWIX - Embedded LightWeight unIX and its contributors.
4. Neither the name of AITNET nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY AITNET AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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 "global.h"


/*
 * io_sarrInit() - Create and initialize dynamic split-order array
 *
 * @numItems = Number of Items
 * @segLen = Length of segment
 * return: NULL error, != NULL allocated memory for array
 */
inline sarr_t *
io_sarrInit(int numItems, int segLen)
{
	sarr_t *arr = NULL;

	if (segLen < 1)
		return NULL;

	arr = io_malloc(sizeof(sarr_t));
	if (!arr) {
		LOGERR;
		return NULL;
	}

	arr->sarr_num = numItems;
	arr->sarr_seg = segLen;
	arr->sarr_siz = numItems / segLen + 1;
	arr->sarr_data = io_calloc(arr->sarr_siz, sizeof(sarr_seg_t));
	if (!arr->sarr_data) {
		LOGERR;
		io_free(arr);
		return NULL;
	} else
		memset(arr->sarr_data, 0, arr->sarr_siz * sizeof(sarr_seg_t));

	return arr;
}

/*
 * io_sarrDestroy() - Free all data in dynamic split-order array and Destroy array
 *
 * @parr = Array
 * return: none
 */
inline void
io_sarrDestroy(sarr_t ** __restrict parr)
{
	register int i;

	if (!parr || !*parr)
		return;

	for (i = 0; i < (*parr)->sarr_siz; i++)
		if ((*parr)->sarr_data[i]) {
			io_free((*parr)->sarr_data[i]);
			(*parr)->sarr_data[i] = NULL;
		}

	if ((*parr)->sarr_data)
		io_free((*parr)->sarr_data);
	io_free(*parr);
	*parr = NULL;
}

/*
 * io_sarrCopy() Copy source split array to destination split array
 *
 * @dest = Destination split array, after use free with io_sarrDestroy()
 * @src = Source split array
 * return: -1 error; >0 count of destination split array
 */
int
io_sarrCopy(sarr_t ** __restrict dest, sarr_t * __restrict src)
{
	assert(dest);
	assert(src);
	if (!dest || !src)
		return -1;

	*dest = io_sarrInit(io_sarrSize(src), io_sarrSeg(src));
	if (!*dest)
		return -1;

	memcpy((*dest)->sarr_data, src->sarr_data, (*dest)->sarr_siz * sizeof(sarr_seg_t));
	return io_sarrSize(*dest);
}

/*
 * io_sarrVacuum() - Vacuum dynamic split-order array, empty segments will be freed
 *
 * @arr = Array
 * return: -1 error, >-1 freed segments
 */
int
io_sarrVacuum(sarr_t * __restrict arr)
{
	register int i, j;
	int cx = 0;
	sarr_seg_t seg;

	if (!arr)
		return -1;

	for (i = 0; i < arr->sarr_siz; i++)
		if (arr->sarr_data[i]) {
			for (j = 0, seg = arr->sarr_data[i]; j < arr->sarr_seg; j++)
				if (seg[j])
					break;
			if (j == arr->sarr_seg) {
				io_free(arr->sarr_data[i]);
				arr->sarr_data[i] = NULL;
				cx++;
			}
		}

	return cx;
}

/*
 * io_sarrGrow() - Grow/Shrink dynamic split-order array, Use with care when it shrink!!!
 *
 * @arr = Array
 * @newNumItems = Number of Items
 * return: -1 error, 0 ok
 */
int
io_sarrGrow(sarr_t * __restrict arr, int newNumItems)
{
	sarr_seg_t *data;
	int seg, n = 0;
	register int i;

	if (!arr)
		return -1;

	arr->sarr_num = newNumItems;
	seg = newNumItems / arr->sarr_seg + 1;
	if (arr->sarr_siz == seg)
		return n;
	if (arr->sarr_siz < seg)
		n = seg - arr->sarr_siz;
	else
		for (i = seg; i < arr->sarr_siz; i++)
			if (arr->sarr_data[i])
				io_free(arr->sarr_data[i]);

	arr->sarr_siz = seg;
	data = io_realloc(arr->sarr_data, arr->sarr_siz * sizeof(sarr_seg_t));
	if (!data) {
		LOGERR;
		return -1;
	} else
		arr->sarr_data = data;
	memset(arr->sarr_data + (arr->sarr_siz - n), 0, n * sizeof(sarr_seg_t));

	return 0;
}

/*
 * io_sarrGet() - Get element from dynamic split-order array
 *
 * @arr = Array
 * @idx = Index (warning 1st element is at position 1)
 * return: NULL not found, !=NULL element
 */
inline void *
io_sarrGet(sarr_t * __restrict arr, u_int idx)
{
	void *ret = NULL;
	sarr_seg_t seg;

	if (!arr || idx < 1 || arr->sarr_num < idx)
		return ret;

	seg = arr->sarr_data[idx / arr->sarr_seg];
	if (seg)
		ret = seg[idx % arr->sarr_seg];

	return ret;
}

/*
 * io_sarrGet2() - Always get element from dynamic split-order array
 *	Function automatic grow array. Good use for Hash tables! 
 *
 * @arr = Array
 * @idx = Index (warning 1st element is at position 1)
 * return: NULL not found, !=NULL element
 */
void *
io_sarrGet2(sarr_t * __restrict arr, u_int idx)
{
	if (!arr || idx < 1)
		return NULL;
	if (arr->sarr_num < idx)
		if (io_sarrGrow(arr, idx))
			return NULL;
	return io_sarrGet(arr, idx);
}

/*
 * io_sarrSet() - Set element to dynamic split-order array
 *
 * @arr = Array
 * @idx = Index (warning 1st element is at position 1)
 * @data = Value
 * return: NULL error or empty, !=NULL old value in element
 */
inline void *
io_sarrSet(sarr_t * __restrict arr, u_int idx, void *data)
{
	void *ret = NULL;
	sarr_seg_t seg;
	register int pos;

	if (!arr || idx < 1 || arr->sarr_num < idx)
		return ret;

	seg = arr->sarr_data[idx / arr->sarr_seg];
	if (!seg) {
		seg = io_calloc(arr->sarr_seg, sizeof(void*));
		if (!seg) {
			LOGERR;
			return ret;
		} else
			memset(seg, 0, arr->sarr_seg * sizeof(void*));
		arr->sarr_data[idx / arr->sarr_seg] = seg;
	}

	pos = idx % arr->sarr_seg;
	ret = seg[pos];
	seg[pos] = data;

	return ret;
}

/*
 * io_sarr2array() - Convert from split-order array to dynamic array
 *
 * @sa = split array
 * @sarrFree = after convert split array !=0 will be destroyed sarray
 * return: NULL error or != NULL new array
 */
array_t *
io_sarr2array(sarr_t ** __restrict sa, int sarrFree)
{
	array_t *arr = NULL;
	int el;
	register int i;

	assert(sa && *sa);
	if (!sa || !*sa)
		return NULL;

	el = io_sarrSize(*sa);
	arr = io_arrayInit(el);
	if (!arr)
		return NULL;

	for (i = 0; i < el; i++)
		io_arraySet(arr, i, io_sarrGet(*sa, i + 1));

	if (sarrFree) {
		io_free(*sa);
		*sa = NULL;
	}
	return arr;
}

/*
 * io_array2sarr() - Convert from dynamic array to split-order array
 *
 * @a = array
 * @segLen = Length of segment
 * @arrFree = after convert array !=0 will be destroyed
 * return: NULL error or != NULL new sarr
 */
sarr_t *
io_array2sarr(array_t ** __restrict a, int segLen, int arrFree)
{
	sarr_t *sa = NULL;
	int el;
	register int i;

	assert(a && *a);
	if (!a || !*a)
		return NULL;

	el = io_arraySize(*a);
	sa = io_sarrInit(el, segLen);
	if (!sa)
		return NULL;

	for (i = 0; i < el; i++)
		io_sarrSet(sa, i + 1, io_arrayGet(*a, i));

	if (arrFree) {
		io_free(*a);
		*a = NULL;
	}
	return sa;
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>