/*
 * Copyright (c) 1999-2006 Apple Inc.  All Rights Reserved.
 * 
 * @APPLE_LICENSE_HEADER_START@
 * 
 * This file contains Original Code and/or Modifications of Original Code
 * as defined in and that are subject to the Apple Public Source License
 * Version 2.0 (the 'License'). You may not use this file except in
 * compliance with the License. Please obtain a copy of the License at
 * http://www.opensource.apple.com/apsl/ and read it before using this
 * file.
 * 
 * The Original Code and all software distributed under the License are
 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
 * Please see the License for the specific language governing rights and
 * limitations under the License.
 * 
 * @APPLE_LICENSE_HEADER_END@
 */
/*
    hashtable2.h
    Scalable hash table.
    Copyright 1989-1996 NeXT Software, Inc.
*/

#ifndef _OBJC_LITTLE_HASHTABLE_H_
#define _OBJC_LITTLE_HASHTABLE_H_

#ifndef _OBJC_PRIVATE_H_
#   define OBJC_HASH_AVAILABILITY \
    OBJC_OSX_DEPRECATED_OTHERS_UNAVAILABLE(10.0, 10.1, "NXHashTable is deprecated")
#else
#   define OBJC_HASH_AVAILABILITY
#endif

#include <objc/objc.h>
#include <stdint.h>
#include <TargetConditionals.h>

__BEGIN_DECLS

/*************************************************************************
 *	Hash tables of arbitrary data
 *************************************************************************/

/* This module allows hashing of arbitrary data.  Such data must be pointers or integers, and client is responsible for allocating/deallocating this data.  A deallocation call-back is provided.
The objective C class HashTable is preferred when dealing with (key, values) associations because it is easier to use in that situation.
As well-behaved scalable data structures, hash tables double in size when they start becoming full, thus guaranteeing both average constant time access and linear size. */

typedef struct {
    uintptr_t	(* _Nonnull hash)(const void * _Nullable info,
                                  const void * _Nullable data);
    int		(* _Nonnull isEqual)(const void * _Nullable info,
                                     const void * _Nullable data1,
                                     const void * _Nullable data2);
    void	(* _Nonnull free)(const void * _Nullable info,
                                  void * _Nullable data);
    int		style; /* reserved for future expansion; currently 0 */
    } NXHashTablePrototype;
    
/* the info argument allows a certain generality, such as freeing according to some owner information */
/* invariants assumed by the implementation: 
	1 - data1 = data2 => hash(data1) = hash(data2)
	    when data varies over time, hash(data) must remain invariant
		    e.g. if data hashes over a string key, the string must not be changed
	2- isEqual (data1, data2) => data1= data2
 */

typedef struct {
    const NXHashTablePrototype	* _Nonnull prototype OBJC_HASH_AVAILABILITY;
    unsigned			count OBJC_HASH_AVAILABILITY;
    unsigned			nbBuckets OBJC_HASH_AVAILABILITY;
    void			* _Nullable buckets OBJC_HASH_AVAILABILITY;
    const void			* _Nullable info OBJC_HASH_AVAILABILITY;
   } NXHashTable OBJC_HASH_AVAILABILITY;
    /* private data structure; may change */
    
OBJC_EXPORT NXHashTable * _Nonnull
NXCreateHashTableFromZone (NXHashTablePrototype prototype, unsigned capacity,
                           const void * _Nullable info, void * _Nullable z)
    OBJC_HASH_AVAILABILITY;

OBJC_EXPORT NXHashTable * _Nonnull
NXCreateHashTable (NXHashTablePrototype prototype, unsigned capacity,
                   const void * _Nullable info)
    OBJC_HASH_AVAILABILITY;
    /* if hash is 0, pointer hash is assumed */
    /* if isEqual is 0, pointer equality is assumed */
    /* if free is 0, elements are not freed */
    /* capacity is only a hint; 0 creates a small table */
    /* info allows call backs to be very general */

OBJC_EXPORT void
NXFreeHashTable (NXHashTable * _Nonnull table)
    OBJC_HASH_AVAILABILITY;
    /* calls free for each data, and recovers table */
	
OBJC_EXPORT void
NXEmptyHashTable (NXHashTable * _Nonnull table)
    OBJC_HASH_AVAILABILITY;
    /* does not deallocate table nor data; keeps current capacity */

OBJC_EXPORT void
NXResetHashTable (NXHashTable * _Nonnull table)
    OBJC_HASH_AVAILABILITY;
    /* frees each entry; keeps current capacity */

OBJC_EXPORT BOOL
NXCompareHashTables (NXHashTable * _Nonnull table1,
                     NXHashTable * _Nonnull table2)
    OBJC_HASH_AVAILABILITY;
    /* Returns YES if the two sets are equal (each member of table1 in table2, and table have same size) */

OBJC_EXPORT NXHashTable * _Nonnull 
NXCopyHashTable (NXHashTable * _Nonnull table)
    OBJC_HASH_AVAILABILITY;
    /* makes a fresh table, copying data pointers, not data itself.  */
	
OBJC_EXPORT unsigned
NXCountHashTable (NXHashTable * _Nonnull table)
    OBJC_HASH_AVAILABILITY;
    /* current number of data in table */
	
OBJC_EXPORT int
NXHashMember (NXHashTable * _Nonnull table, const void * _Nullable data)
    OBJC_HASH_AVAILABILITY;
    /* returns non-0 iff data is present in table.
    Example of use when the hashed data is a struct containing the key,
    and when the callee only has a key:
	MyStruct	pseudo;
	pseudo.key = myKey;
	return NXHashMember (myTable, &pseudo)
    */
	
OBJC_EXPORT void * _Nullable
NXHashGet (NXHashTable * _Nonnull table, const void * _Nullable data)
    OBJC_HASH_AVAILABILITY;
    /* return original table data or NULL.
    Example of use when the hashed data is a struct containing the key,
    and when the callee only has a key:
	MyStruct	pseudo;
	MyStruct	*original;
	pseudo.key = myKey;
	original = NXHashGet (myTable, &pseudo)
    */
	
OBJC_EXPORT void * _Nullable 
NXHashInsert (NXHashTable * _Nonnull table, const void * _Nullable data)
    OBJC_HASH_AVAILABILITY;
    /* previous data or NULL is returned. */
	
OBJC_EXPORT void * _Nullable
NXHashInsertIfAbsent (NXHashTable * _Nonnull table, const void * _Nullable data)
    OBJC_HASH_AVAILABILITY;
    /* If data already in table, returns the one in table
    else adds argument to table and returns argument. */

OBJC_EXPORT void * _Nullable
NXHashRemove (NXHashTable * _Nonnull table, const void * _Nullable data)
    OBJC_HASH_AVAILABILITY;
    /* previous data or NULL is returned */
	
/* Iteration over all elements of a table consists in setting up an iteration state and then to progress until all entries have been visited.  An example of use for counting elements in a table is:
    unsigned	count = 0;
    MyData	*data;
    NXHashState	state = NXInitHashState(table);
    while (NXNextHashState(table, &state, &data)) {
	count++;
    }
*/

typedef struct {int i; int j;} NXHashState OBJC_HASH_AVAILABILITY;
    /* callers should not rely on actual contents of the struct */

OBJC_EXPORT NXHashState
NXInitHashState(NXHashTable * _Nonnull table)
    OBJC_HASH_AVAILABILITY;

OBJC_EXPORT int
NXNextHashState(NXHashTable * _Nonnull table, NXHashState * _Nonnull state,
                void * _Nullable * _Nonnull data) OBJC_HASH_AVAILABILITY;
    /* returns 0 when all elements have been visited */

/*************************************************************************
 *	Conveniences for writing hash, isEqual and free functions
 *	and common prototypes
 *************************************************************************/

OBJC_EXPORT uintptr_t
NXPtrHash(const void * _Nullable info, const void * _Nullable data)
    OBJC_HASH_AVAILABILITY;
    /* scrambles the address bits; info unused */

OBJC_EXPORT uintptr_t
NXStrHash(const void * _Nullable info, const void * _Nullable data)
    OBJC_HASH_AVAILABILITY;
    /* string hashing; info unused */

OBJC_EXPORT int
NXPtrIsEqual(const void * _Nullable info, const void * _Nullable data1,
             const void * _Nullable data2)
    OBJC_HASH_AVAILABILITY;
    /* pointer comparison; info unused */

OBJC_EXPORT int
NXStrIsEqual(const void * _Nullable info, const void * _Nullable data1,
             const void * _Nullable data2)
    OBJC_HASH_AVAILABILITY;
    /* string comparison; NULL ok; info unused */

OBJC_EXPORT void
NXNoEffectFree(const void * _Nullable info, void * _Nullable data)
    OBJC_HASH_AVAILABILITY;
    /* no effect; info unused */

OBJC_EXPORT void
NXReallyFree(const void * _Nullable info, void * _Nullable data)
    OBJC_HASH_AVAILABILITY;
    /* frees it; info unused */

/* The two following prototypes are useful for manipulating set of pointers or set of strings; For them free is defined as NXNoEffectFree */
OBJC_EXPORT const NXHashTablePrototype NXPtrPrototype
    OBJC_HASH_AVAILABILITY;
    /* prototype when data is a pointer (void *) */

OBJC_EXPORT const NXHashTablePrototype NXStrPrototype
    OBJC_HASH_AVAILABILITY;
    /* prototype when data is a string (char *) */

/* following prototypes help describe mappings where the key is the first element of a struct and is either a pointer or a string.
For example NXStrStructKeyPrototype can be used to hash pointers to Example, where Example is:
	typedef struct {
	    char	*key;
	    int		data1;
	    ...
	    } Example
    
For the following prototypes, free is defined as NXReallyFree.
 */
OBJC_EXPORT const NXHashTablePrototype NXPtrStructKeyPrototype
    OBJC_HASH_AVAILABILITY;
OBJC_EXPORT const NXHashTablePrototype NXStrStructKeyPrototype
    OBJC_HASH_AVAILABILITY;

__END_DECLS

#endif /* _OBJC_LITTLE_HASHTABLE_H_ */
