libSystem

/* $Id$ */
/* Copyright (c) 2006-2021 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS System libSystem */
/* 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 COPYRIGHT HOLDERS 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 COPYRIGHT
* HOLDER 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. */
#ifndef LIBSYSTEM_SYSTEM_ARRAY_H
# define LIBSYSTEM_SYSTEM_ARRAY_H
# include <stddef.h>
# include <stdbool.h>
# include "userdata.h"
# ifdef __cplusplus
extern "C" {
# endif
/* Array */
/* macros */
/* XXX avoid using attributes */
# define ARRAY(type) \
typedef struct _Array type ## Array; \
static Array * type ## array_new(void) __attribute__ ((unused)); \
static Array * type ## array_new(void) \
{ return array_new(sizeof(type)); }
# define ARRAY2(type, name) \
typedef struct _Array name ## Array; \
static Array * name ## array_new(void) __attribute__ ((unused)); \
static Array * name ## array_new(void) \
{ return array_new(sizeof(type)); }
# define ARRAY3(type, name, prefix) \
typedef struct _Array prefix ## Array; \
static Array * name ## array_new(void) __attribute__ ((unused)); \
static Array * name ## array_new(void) \
{ return array_new(sizeof(type)); }
/* types */
typedef struct _Array Array;
typedef void ArrayData;
typedef int ArrayError;
typedef bool (*ArrayFilter)(ArrayData * value, UserData * data);
typedef bool (*ArrayFilterSwap)(UserData * data, ArrayData * value);
typedef void (*ArrayForeach)(ArrayData * value, UserData * data);
typedef void (*ArrayForeachSwap)(UserData * data, ArrayData * value);
/* functions */
Array * array_new(size_t size);
Array * array_new_copy(Array const * from);
Array * array_new_filter(Array const * from, ArrayFilter func, UserData * data);
Array * array_new_filter_swap(Array const * from, ArrayFilterSwap func,
UserData * data);
# define array_new_type(object) array_new(sizeof(type))
void array_delete(Array * array);
/* accessors */
size_t array_count(Array const * array);
void * array_get(Array const * array, size_t pos);
ArrayError array_get_copy(Array const * array, size_t pos, ArrayData * value);
size_t array_get_size(Array const * array);
ArrayError array_set(Array * array, size_t pos, ArrayData * value);
/* useful */
ArrayError array_append(Array * array, ArrayData * value);
ArrayError array_copy(Array * array, Array const * from);
ArrayError array_insert(Array * array, size_t pos, ArrayData * value);
ArrayError array_prepend(Array * array, ArrayData * value);
ArrayError array_remove_pos(Array * array, size_t pos);
void array_filter(Array * array, ArrayFilter func, UserData * data);
void array_filter_swap(Array * array, ArrayFilter func, UserData * data);
void array_foreach(Array const * array, ArrayForeachSwap func, UserData * data);
void array_foreach_swap(Array const * array, ArrayForeachSwap func,
UserData * data);
# ifdef __cplusplus
}
# endif
#endif /* !LIBSYSTEM_SYSTEM_ARRAY_H */