db_dict.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:6k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: db_dict.cpp,v 1.7.32.3 2004/07/09 01:48:15 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include "hxtypes.h"
  50. // #include "hlxclib/stdio.h"
  51. #include "hlxclib/string.h"
  52. #include <ctype.h>
  53. #include "hxassert.h"
  54. #include "debug.h"
  55. #include "db_misc.h"
  56. #ifdef _SYMBIAN
  57. //XXXgfw Wow, symbian's unistd.h #defines remove to be unlink.
  58. //Very uncool.
  59. #undef remove
  60. #endif
  61. #include "watchlst.h"
  62. #include "property.h"
  63. #include "db_dict_abs.h"
  64. #include "db_dict.h"
  65. #include "hxstrutl.h"
  66. #include "hxheap.h"
  67. #ifdef _DEBUG
  68. #undef HX_THIS_FILE
  69. static const char HX_THIS_FILE[] = __FILE__;
  70. #endif
  71. // Chris Torek's hash function
  72. UINT32
  73. hash_torek(const char *key)
  74. {
  75.     UINT32 h = 0x31fe;
  76.     while (*key)
  77. h = h*33 + *key++;
  78.     return h;
  79. }
  80. HX_RESULT
  81. DB_dict::init()
  82. {
  83.     _table = new DB_node*[_size];
  84.     if(!_table)
  85.     {
  86.         return HXR_OUTOFMEMORY;
  87.     }
  88.     memset(_table, 0, HX_SAFESIZE_T(sizeof(void *) * _size));
  89.     return HXR_OK;
  90. }
  91. void
  92. DB_dict::strtolower(char* str)
  93. {
  94.     for (; *str != 0; str++)
  95. if (isupper(*str))
  96.     *str = tolower(*str);
  97. }
  98. // Need func ptr, in case strcasecmp is a macro
  99. static int FuncStrcasecmp(const char* a, const char* b)
  100. {
  101.     return strcasecmp(a,b);
  102. }
  103. DB_dict::DB_dict()
  104.           : DB_implem(0, 16, hash_torek, FuncStrcasecmp)
  105. {
  106.     init();
  107. }
  108. DB_dict::DB_dict(DB_node* parent, Keytype nbuckets,
  109.                Keytype (*hash)(const char*), 
  110.                        int (*compare)(const char*, const char*))
  111.    : DB_implem(parent, nbuckets, hash, compare)
  112. {
  113.     init();
  114.     DPRINTF(D_REGISTRY, ("DB_dict(this(%p)) -- DB_node(parent(%p))n",
  115.     this, parent));
  116. }
  117. DB_dict::~DB_dict()
  118. {
  119.     for (Keytype i = 0; i < _size; i++)
  120.     {
  121. DB_node* nexte;
  122. for (DB_node* e = _table[i]; e != 0; e = nexte)
  123. {
  124.     nexte = e->next;
  125.     delete e->obj;
  126.     delete e;
  127. }
  128.     }
  129.     delete[] _table;
  130. }
  131. Keytype
  132. DB_dict::del(const char * key)
  133. {
  134.     DB_node* e, **ep;
  135.     char* k = (char *)key;
  136.     strtolower(k);
  137.     Keytype h = _hash(k);
  138.     for (ep = &_table[h%_size]; (e = *ep) != 0; ep = &e->next)
  139.     {
  140. if (h != e->hash)
  141.     continue;
  142. *ep = e->next;
  143. delete e->obj;
  144. delete e;
  145. --_count;
  146. return h;
  147.     }
  148.     return 0;       
  149. }
  150. Keytype
  151. DB_dict::del(DB_node* node)
  152. {
  153.     DB_node* e, **ep;
  154.     Keytype h = node->hash;
  155.     for (ep = &_table[h%_size]; (e = *ep) != 0; ep = &e->next)
  156.     {
  157. if (node != e)
  158.     continue;
  159. *ep = e->next;
  160. delete e->obj;
  161. delete e;
  162. --_count;
  163. return h;
  164.     }
  165.     return 0;       
  166. }
  167. DB_node *
  168. DB_dict::next(DB_node * e)
  169. {
  170.     if (e->next)
  171. return e->next;
  172.     Keytype h = e->hash % _size;
  173.     for (Keytype i = h+1; i < _size; i++)
  174. if (_table[i] != 0)
  175.     return _table[i];
  176.     return 0;
  177. }
  178. DB_node *    
  179. DB_dict::add(char * key_str, Property * new_p)
  180. {
  181.     strtolower(key_str);
  182.     Keytype h = _hash(key_str);
  183.     DB_node* e, *nexte;
  184.     _count++;
  185.     // Grow the table if 66% full
  186.     Keytype nb = _count*3;
  187.     if (nb > _size*2)
  188.     {
  189. DB_node** tab = new DB_node*[nb];
  190.         if( !tab )
  191.         {
  192.             _count--;
  193.             return NULL;
  194.         }
  195. Keytype i;
  196. memset(tab, 0, HX_SAFESIZE_T(sizeof(void *) * nb));
  197. for (i = 0; i < _size; i++)
  198. {
  199.     for (e = _table[i]; e != 0; e = nexte)
  200.     {
  201. nexte = e->next;
  202. e->next = tab[e->hash%nb];
  203. tab[e->hash%nb] = e;
  204.     }
  205. }
  206. delete[] _table;
  207. _table = tab;
  208. _size = nb;
  209.     }
  210.     e =  new DB_node;
  211.     if (e)
  212.     {
  213. e->next = _table[h%_size];
  214. e->hash = h;
  215. e->obj = new_p;
  216. e->owner_db = this;
  217. _table[h%_size] = e;
  218. return e;
  219.     }
  220.     else
  221. return 0;
  222. }
  223. DB_node *  
  224. DB_dict::find(char * key_str)
  225. {
  226.     char* k = key_str;
  227.     strtolower(k);
  228.     Keytype h = _hash(k);
  229.     for (DB_node* e = _table[h%_size]; e != 0; e = e->next)
  230. if (strcasecmp(k, e->get_data()->get_key_str()) == 0)
  231.     return e;
  232.     return 0;
  233. }