This commit is contained in:
Vincent Wei
2020-02-26 21:28:28 +08:00
parent ecdfabe41d
commit 7355a55610
2 changed files with 0 additions and 358 deletions

View File

@@ -1,100 +0,0 @@
///////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT NOTICE
//
// The following open source license statement does not apply to any
// entity in the Exception List published by FMSoft.
//
// For more information, please visit:
//
// https://www.fmsoft.cn/exception-list
//
//////////////////////////////////////////////////////////////////////////////
/*
* This file is part of MiniGUI, a mature cross-platform windowing
* and Graphics User Interface (GUI) support system for embedded systems
* and smart IoT devices.
*
* Copyright (C) 2002~2018, Beijing FMSoft Technologies Co., Ltd.
* Copyright (C) 1998~2002, WEI Yongming
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Or,
*
* As this program is a library, any link to this program must follow
* GNU General Public License version 3 (GPLv3). If you cannot accept
* GPLv3, you need to be licensed from FMSoft.
*
* If you have got a commercial license of this program, please use it
* under the terms and conditions of the commercial license.
*
* For more information about the commercial license, please refer to
* <http://www.minigui.com/blog/minigui-licensing-policy/>.
*/
/*
** hash.h: header file of hash operations.
** NOTE THAT THIS FILE IS DEPRECATED.
*/
#ifndef _MG_HASH_H
#define _MG_HASH_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#define HASHTABLE_MIN_SIZE 32 /* default hash table size */
#define HASHTABLE_MAX_SIZE 40960
#define HASH_THREAD_SAFE 0x00000001 /* thread safe flag */
#define HASH_RESIZABLE 0x00000002 /* resizable flag */
typedef GHANDLE (*HASHFUNC) (GHANDLE key);
typedef BOOL (*EQUALFUNC) (GHANDLE keya, GHANDLE keyb);
typedef struct _HASHNODE {
GHANDLE key;
GHANDLE value;
struct _HASHNODE *next;
} HASHNODE;
typedef struct _HASHTABLE {
DWORD dwFlags;
HASHNODE **pNodes;
size_t size;
int nrNodes;
HASHFUNC pfnHash;
EQUALFUNC pfnEqual;
#ifdef _MGRM_THREADS
pthread_mutex_t lock;
#endif
} HASHTABLE;
HASHTABLE* HashTableCreate (void* memStart, size_t hash_size, BOOL bThreadSafe,
HASHFUNC hash_func, EQUALFUNC equal_func);
void HashTableDestroy (HASHTABLE *hash_table);
GHANDLE HashTableLookup (HASHTABLE *hash_table, GHANDLE key);
int HashTableInsert (HASHTABLE *hash_table, GHANDLE key, GHANDLE value);
BOOL HashTableRemove (HASHTABLE *hash_table, GHANDLE key);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* _MG_HASH_H */

View File

@@ -1,258 +0,0 @@
///////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT NOTICE
//
// The following open source license statement does not apply to any
// entity in the Exception List published by FMSoft.
//
// For more information, please visit:
//
// https://www.fmsoft.cn/exception-list
//
//////////////////////////////////////////////////////////////////////////////
/*
* This file is part of MiniGUI, a mature cross-platform windowing
* and Graphics User Interface (GUI) support system for embedded systems
* and smart IoT devices.
*
* Copyright (C) 2002~2020, Beijing FMSoft Technologies Co., Ltd.
* Copyright (C) 1998~2002, WEI Yongming
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Or,
*
* As this program is a library, any link to this program must follow
* GNU General Public License version 3 (GPLv3). If you cannot accept
* GPLv3, you need to be licensed from FMSoft.
*
* If you have got a commercial license of this program, please use it
* under the terms and conditions of the commercial license.
*
* For more information about the commercial license, please refer to
* <http://www.minigui.com/blog/minigui-licensing-policy/>.
*/
/*
** hash.c: the hash module for MiniGUI.
** Some ideas come from GLIB.
**
** NOTE THAT THIS FILE IS DEPRECATED.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "common.h"
#include "minigui.h"
#include "gdi.h"
#include "window.h"
#include "cliprect.h"
#include "gal.h"
#include "internals.h"
#include "hash.h"
#define MG_HASH_LOCK() \
if (hash_table->dwFlags & HASH_THREAD_SAFE) \
MG_MUTEX_LOCK (&hash_table->lock)
#define MG_HASH_UNLOCK() \
if (hash_table->dwFlags & HASH_THREAD_SAFE) \
MG_MUTEX_UNLOCK (&hash_table->lock)
static void hash_node_destroy (HASHNODE *node);
static HASHNODE* hash_node_new (GHANDLE key, GHANDLE value);
static void hash_node_destroy (HASHNODE *node);
GHANDLE FuncDirectHash (GHANDLE key)
{
return key;
}
HASHTABLE* HashTableCreate (void* memStart, size_t hash_size, BOOL bThreadSafe,
HASHFUNC hash_func, EQUALFUNC equal_func)
{
HASHTABLE *hash_table;
if( !(hash_table = calloc (1, sizeof(HASHTABLE))) ) return NULL;
if (hash_size <= 0) hash_size = HASHTABLE_MIN_SIZE;
if (memStart == NULL) { /* allocate space for nodes */
hash_table->pNodes = malloc (sizeof(HASHNODE*) * hash_size);
hash_table->dwFlags |= HASH_RESIZABLE;
hash_table->size = hash_size;
}
else { /* use static space for nodes */
hash_table->pNodes = memStart;
hash_table->size = hash_size;
}
memset (hash_table->pNodes, 0, sizeof(HASHNODE*) * hash_size);
hash_table->pfnHash = hash_func ? hash_func : FuncDirectHash;
hash_table->pfnEqual = equal_func;
if (bThreadSafe)
hash_table->dwFlags |= HASH_THREAD_SAFE;
if (hash_table->dwFlags & HASH_THREAD_SAFE)
MG_MUTEX_INIT (&hash_table->lock);
return hash_table;
}
void HashTableDestroy (HASHTABLE *hash_table)
{
int i;
MG_CHECK (hash_table != NULL);
MG_HASH_LOCK();
for (i = 0; i < hash_table->size; i++) {
hash_node_destroy (hash_table->pNodes[i]);
}
if (hash_table->dwFlags & HASH_RESIZABLE) {
free (hash_table->pNodes);
}
MG_HASH_UNLOCK();
//FIXME, not so safe
if (hash_table->dwFlags & HASH_THREAD_SAFE)
MG_MUTEX_DESTROY (&hash_table->lock);
free (hash_table);
}
static inline HASHNODE**
hash_table_lookup_node (HASHTABLE *hash_table, GHANDLE key)
{
HASHNODE **node;
node = &hash_table->pNodes
[(* hash_table->pfnHash) (key) % hash_table->size];
/* Hash table lookup needs to be fast.
* We therefore remove the extra conditional of testing
* whether to call the key_equal_func or not from
* the inner loop.
*/
if (hash_table->pfnEqual)
while (*node && !(*hash_table->pfnEqual) ((*node)->key, key))
node = &(*node)->next;
else
while (*node && (*node)->key != key)
node = &(*node)->next;
return node;
}
GHANDLE HashTableLookup (HASHTABLE *hash_table, GHANDLE key)
{
HASHNODE *node;
MG_CHECK_RET (hash_table != NULL, 0);
MG_HASH_LOCK();
node = *hash_table_lookup_node (hash_table, key);
MG_HASH_UNLOCK();
return node ? node->value : 0;
}
int HashTableInsert (HASHTABLE *hash_table, GHANDLE key, GHANDLE value)
{
HASHNODE **node;
MG_CHECK_RET (hash_table != NULL, -1);
MG_HASH_LOCK();
node = hash_table_lookup_node (hash_table, key);
if (*node) {
(*node)->value = value;
}
else {
*node = hash_node_new (key, value);
hash_table->nrNodes++;
//TODO, resize hash table
}
MG_HASH_UNLOCK();
return 0;
}
BOOL HashTableRemove (HASHTABLE *hash_table, GHANDLE key)
{
HASHNODE **node;
MG_CHECK_RET (hash_table != NULL, FALSE);
node = hash_table_lookup_node (hash_table, key);
if (*node)
{
HASHNODE *del = *node;
(*node) = del->next;
hash_node_destroy (del);
hash_table->nrNodes--;
//TODO resize
return TRUE;
}
return FALSE;
}
size_t HashTableSize (HASHTABLE *hash_table)
{
MG_CHECK_RET (hash_table != NULL, 0);
return hash_table->nrNodes;
}
#if 0
static void hash_table_resize (HASHTABLE *hash_table)
{
//TODO
}
#endif
static HASHNODE*
hash_node_new (GHANDLE key, GHANDLE value)
{
HASHNODE *node;
node = malloc (sizeof(HASHNODE));
node->key = key;
node->value = value;
node->next = NULL;
return node;
}
static void hash_node_destroy (HASHNODE *node)
{
free (node);
}