st.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:11k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*LINTLIBRARY*/
  2. /*
  3.  * String Table (Hash) Package
  4.  *
  5.  * Peter Moore
  6.  * University of California, Berkeley
  7.  * 1985
  8.  *
  9.  * This is a general purpose hash table package.
  10.  */
  11. #include <stdio.h>
  12. #include "copyright.h"
  13. #include "st.h"
  14. #include "xgraph.h"
  15. #define max(a,b) ((a) > (b) ? (a) : (b))
  16. #define nil(type) ((type *) 0)
  17. #define alloc(type) (type *) Malloc(sizeof(type))
  18. #define ABS(x) ((x) < 0 ? -(x) : (x))
  19. #define ST_NUMCMP(x,y) ((int) (x) - (int) (y))
  20. #define ST_NUMHASH(x,size) (ABS((int)x)%(size))
  21. #define ST_PTRHASH(x,size) ((int)((unsigned)(x)>>2)%size)
  22. #define EQUAL(func, x, y) 
  23.     ((((func) == st_numcmp) || ((func) == st_ptrcmp)) ?
  24.       (ST_NUMCMP((x),(y)) == 0) : ((*func)((x), (y)) == 0))
  25. #define do_hash(key, table)
  26.     ((table->hash == st_ptrhash) ? ST_PTRHASH((key),(table)->num_bins) :
  27.      (table->hash == st_numhash) ? ST_NUMHASH((key), (table)->num_bins) :
  28.      (*table->hash)((key), (table)->num_bins))
  29. char    st_pkg_name[] = "st";
  30. /* Possible error conditions */
  31. char   *st_no_mem = "out of memory";
  32. char   *st_bad_ret = "bad return code from function passed to st_foreach";
  33. char   *st_bad_gen = "null or zero generator";
  34. /* Forward declarations */
  35. int     st_numhash(), st_ptrhash(), st_numcmp(), st_ptrcmp();
  36. static void rehash();
  37. static void errRaise();
  38. st_table *
  39. st_init_table_with_params(compare, hash, size, density, grow_factor,
  40.   reorder_flag)
  41. int     (*compare) ();
  42. int     (*hash) ();
  43. int     size;
  44. int     density;
  45. double  grow_factor;
  46. int     reorder_flag;
  47. /* Detailed table allocator */
  48. {
  49.     st_table *new;
  50.     new = alloc(st_table);
  51.     if (!new) {
  52. errRaise(st_pkg_name, ST_NO_MEM, st_no_mem);
  53. /* NOTREACHED */
  54.     }
  55.     new->compare = compare;
  56.     new->hash = hash;
  57.     new->num_entries = 0;
  58.     new->max_density = density;
  59.     new->grow_factor = grow_factor;
  60.     new->reorder_flag = reorder_flag;
  61.     if (size <= 0) {
  62. size = 1;
  63.     }
  64.     new->num_bins = size;
  65.     new->bins =
  66. (st_table_entry **) Calloc((unsigned) size, sizeof(st_table_entry *));
  67.     if (!new->bins) {
  68. Free((char *) new);
  69. errRaise(st_pkg_name, ST_NO_MEM, st_no_mem);
  70. /* NOTREACHED */
  71.     }
  72.     return new;
  73. }
  74. st_table *
  75. st_init_table(compare, hash)
  76. int     (*compare) ();
  77. int     (*hash) ();
  78. /* Default table allocator */
  79. {
  80.     return st_init_table_with_params(compare, hash, ST_DEFAULT_INIT_TABLE_SIZE,
  81.      ST_DEFAULT_MAX_DENSITY,
  82.      ST_DEFAULT_GROW_FACTOR,
  83.      ST_DEFAULT_REORDER_FLAG);
  84. }
  85. void
  86. st_Free_table(table)
  87. st_table *table;
  88. /* Destroy a table */
  89. {
  90.     register st_table_entry *ptr,
  91.            *next;
  92.     int     i;
  93.     for (i = 0; i < table->num_bins; i++) {
  94. ptr = table->bins[i];
  95. while (ptr != nil(st_table_entry)) {
  96.     next = ptr->next;
  97.     Free((char *) ptr);
  98.     ptr = next;
  99. }
  100.     }
  101.     Free((char *) table->bins);
  102.     Free((char *) table);
  103. }
  104. #define PTR_NOT_EQUAL(table, ptr, user_key)
  105. (ptr != nil(st_table_entry) && !EQUAL(table->compare, user_key, (ptr)->key))
  106. #define FIND_ENTRY(table, hash_val, key, ptr, last) 
  107.     (last) = &(table)->bins[hash_val];
  108.     (ptr) = *(last);
  109.     while (PTR_NOT_EQUAL((table), (ptr), (key))) {
  110. (last) = &(ptr)->next; (ptr) = *(last);
  111.     }
  112.     if ((ptr) != nil(st_table_entry) && (table)->reorder_flag) {
  113. *(last) = (ptr)->next;
  114. (ptr)->next = (table)->bins[hash_val];
  115. (table)->bins[hash_val] = (ptr);
  116.     }
  117. int 
  118. st_lookup(table, key, value)
  119. st_table *table;
  120. register char *key;
  121. char  **value;
  122. /* Look up item in table -- return zero if not found */
  123. {
  124.     int     hash_val;
  125.     register st_table_entry *ptr,
  126.           **last;
  127.     hash_val = do_hash(key, table);
  128.     FIND_ENTRY(table, hash_val, key, ptr, last);
  129.     if (ptr == nil(st_table_entry)) {
  130. return 0;
  131.     }
  132.     else {
  133. if (value != nil(char *))
  134.     *value = ptr->record;
  135. return 1;
  136.     }
  137. }
  138. #define ADD_DIRECT(table, key, value, hash_val, new)
  139. {
  140.     if (table->num_entries/table->num_bins >= table->max_density) {
  141. (void) rehash(table);
  142. hash_val = do_hash(key,table);
  143.     }
  144.     
  145.     new = alloc(st_table_entry);
  146.     
  147.     if (new) {
  148. new->key = key;
  149. new->record = value;
  150. new->next = table->bins[hash_val];
  151. table->bins[hash_val] = new;
  152. table->num_entries++;
  153.     } else {
  154. errRaise(st_pkg_name, ST_NO_MEM, st_no_mem);
  155. /* NOTREACHED */ 
  156.     } 
  157. }
  158. int 
  159. st_insert(table, key, value)
  160. register st_table *table;
  161. register char *key;
  162. char   *value;
  163. /* Insert an item into the table - replacing if it already exists */
  164. {
  165.     int     hash_val;
  166.     st_table_entry *new;
  167.     register st_table_entry *ptr,
  168.           **last;
  169.     hash_val = do_hash(key, table);
  170.     FIND_ENTRY(table, hash_val, key, ptr, last);
  171.     if (ptr == nil(st_table_entry)) {
  172. ADD_DIRECT(table, key, value, hash_val, new);
  173. return 0;
  174.     }
  175.     else {
  176. ptr->record = value;
  177. return 1;
  178.     }
  179. }
  180. void 
  181. st_add_direct(table, key, value)
  182. st_table *table;
  183. char   *key;
  184. char   *value;
  185. /* Add item to table without checking for existing item */
  186. {
  187.     int     hash_val;
  188.     st_table_entry *new;
  189.     hash_val = do_hash(key, table);
  190.     ADD_DIRECT(table, key, value, hash_val, new);
  191. }
  192. int 
  193. st_find_or_add(table, key, slot)
  194. st_table *table;
  195. char   *key;
  196. char ***slot;
  197. /* Return slot for key - make one if one doesn't exist */
  198. {
  199.     int     hash_val;
  200.     st_table_entry *new,
  201.            *ptr,
  202.           **last;
  203.     hash_val = do_hash(key, table);
  204.     FIND_ENTRY(table, hash_val, key, ptr, last);
  205.     if (ptr == nil(st_table_entry)) {
  206. ADD_DIRECT(table, key, (char *) 0, hash_val, new);
  207. if (slot != nil(char **))
  208.     *slot = &new->record;
  209. return 0;
  210.     }
  211.     else {
  212. if (slot != nil(char **))
  213.     *slot = &ptr->record;
  214. return 1;
  215.     }
  216. }
  217. int 
  218. st_find(table, key, slot)
  219. st_table *table;
  220. char   *key;
  221. char ***slot;
  222. /* Finds an entry in table */
  223. {
  224.     int     hash_val;
  225.     st_table_entry *ptr,
  226.           **last;
  227.     hash_val = do_hash(key, table);
  228.     FIND_ENTRY(table, hash_val, key, ptr, last);
  229.     if (ptr == nil(st_table_entry)) {
  230. return 0;
  231.     }
  232.     else {
  233. if (slot != nil(char **))
  234.     *slot = &ptr->record;
  235. return 1;
  236.     }
  237. }
  238. static void 
  239. rehash(table)
  240. register st_table *table;
  241. /* Grows table */
  242. {
  243.     register st_table_entry *ptr,
  244.            *next,
  245.           **old_bins = table->bins;
  246.     int     i,
  247.             old_num_bins = table->num_bins,
  248.             hash_val;
  249.     table->num_bins = table->grow_factor * old_num_bins;
  250.     if (table->num_bins % 2 == 0) {
  251. table->num_bins += 1;
  252.     }
  253.     table->bins =
  254. (st_table_entry **) Calloc((unsigned) table->num_bins,
  255.    sizeof(st_table_entry *));
  256.     if (!table->bins) {
  257. /* If out of memory: don't resize */
  258. table->bins = old_bins;
  259. table->num_bins = old_num_bins;
  260. return;
  261.     }
  262.     table->num_entries = 0;
  263.     for (i = 0; i < old_num_bins; i++) {
  264. ptr = old_bins[i];
  265. while (ptr != nil(st_table_entry)) {
  266.     next = ptr->next;
  267.     hash_val = do_hash(ptr->key, table);
  268.     ptr->next = table->bins[hash_val];
  269.     table->bins[hash_val] = ptr;
  270.     table->num_entries++;
  271.     ptr = next;
  272. }
  273.     }
  274.     Free((char *) old_bins);
  275. }
  276. st_table *
  277. st_copy(old_table)
  278. st_table *old_table;
  279. {
  280.     st_table *new_table;
  281.     st_table_entry *ptr,
  282.            *new;
  283.     int     i,
  284.             num_bins = old_table->num_bins;
  285.     new_table = alloc(st_table);
  286.     if (new_table == nil(st_table)) {
  287. errRaise(st_pkg_name, ST_NO_MEM, st_no_mem);
  288. /* NOTREACHED */
  289.     }
  290.     *new_table = *old_table;
  291.     new_table->bins =
  292. (st_table_entry **) Calloc((unsigned) num_bins, sizeof(st_table_entry *));
  293.     if (new_table->bins == nil(st_table_entry *)) {
  294. Free((char *) new_table);
  295. errRaise(st_pkg_name, ST_NO_MEM, st_no_mem);
  296. /* NOTREACHED */
  297.     }
  298.     for (i = 0; i < num_bins; i++) {
  299. new_table->bins[i] = nil(st_table_entry);
  300. ptr = old_table->bins[i];
  301. while (ptr != nil(st_table_entry)) {
  302.     new = alloc(st_table_entry);
  303.     if (new == nil(st_table_entry)) {
  304. Free((char *) new_table->bins);
  305. Free((char *) new_table);
  306. errRaise(st_pkg_name, ST_NO_MEM, st_no_mem);
  307. /* NOTREACHED */
  308.     }
  309.     *new = *ptr;
  310.     new->next = new_table->bins[i];
  311.     new_table->bins[i] = new;
  312.     ptr = ptr->next;
  313. }
  314.     }
  315.     return new_table;
  316. }
  317. int 
  318. st_delete(table, keyp, value)
  319. register st_table *table;
  320. register char **keyp;
  321. char  **value;
  322. {
  323.     int     hash_val;
  324.     char   *key = *keyp;
  325.     register st_table_entry *ptr,
  326.           **last;
  327.     hash_val = do_hash(key, table);
  328.     FIND_ENTRY(table, hash_val, key, ptr, last);
  329.     if (ptr == nil(st_table_entry)) {
  330. return 0;
  331.     }
  332.     *last = ptr->next;
  333.     if (value != nil(char *))
  334. *value = ptr->record;
  335.     *keyp = ptr->key;
  336.     Free((char *) ptr);
  337.     table->num_entries--;
  338.     return 1;
  339. }
  340. int 
  341. st_foreach(table, func, arg)
  342. st_table *table;
  343. enum st_retval (*func) ();
  344. char   *arg;
  345. {
  346.     st_table_entry *ptr,
  347.           **last;
  348.     enum st_retval retval;
  349.     int     i;
  350.     for (i = 0; i < table->num_bins; i++) {
  351. last = &table->bins[i];
  352. ptr = *last;
  353. while (ptr != nil(st_table_entry)) {
  354.     retval = (*func) (ptr->key, ptr->record, arg);
  355.     switch (retval) {
  356.     case ST_CONTINUE:
  357. last = &ptr->next;
  358. ptr = *last;
  359. break;
  360.     case ST_STOP:
  361. return 0;
  362.     case ST_DELETE:
  363. *last = ptr->next;
  364. Free((char *) ptr);
  365. ptr = *last;
  366. break;
  367.     default:
  368. errRaise(st_pkg_name, ST_BAD_RET, st_bad_ret);
  369. /* NOTREACHED */
  370.     }
  371. }
  372.     }
  373.     return 1;
  374. }
  375. int 
  376. st_strhash(string, modulus)
  377. register char *string;
  378. int     modulus;
  379. {
  380.     register int val = 0;
  381.     register int c;
  382.     while ((c = *string++) != '') {
  383. val = val * 997 + c;
  384.     }
  385.     return ((val < 0) ? -val : val) % modulus;
  386. }
  387. int 
  388. st_numhash(x, size)
  389. char   *x;
  390. int     size;
  391. {
  392.     return ST_NUMHASH(x, size);
  393. }
  394. int 
  395. st_ptrhash(x, size)
  396. char   *x;
  397. int     size;
  398. {
  399.     return ST_PTRHASH(x, size);
  400. }
  401. int 
  402. st_numcmp(x, y)
  403. char   *x;
  404. char   *y;
  405. {
  406.     return ST_NUMCMP(x, y);
  407. }
  408. int 
  409. st_ptrcmp(x, y)
  410. char   *x;
  411. char   *y;
  412. {
  413.     return ST_NUMCMP(x, y);
  414. }
  415. st_generator *
  416. st_init_gen(table)
  417. st_table *table;
  418. /* Initializes generation of items in table */
  419. {
  420.     st_generator *gen;
  421.     gen = alloc(st_generator);
  422.     if (!gen) {
  423. errRaise(st_pkg_name, ST_NO_MEM, st_no_mem);
  424. /* NOTREACHED */
  425.     }
  426.     gen->table = table;
  427.     gen->entry = nil(st_table_entry);
  428.     gen->idx = 0;
  429.     return gen;
  430. }
  431. int
  432. st_gen(gen, key_p, value_p)
  433. st_generator *gen;
  434. char  **key_p;
  435. char  **value_p;
  436. /* Generates next item in generation sequence */
  437. {
  438.     register int i;
  439.     if (!gen) {
  440. errRaise(st_pkg_name, ST_BAD_GEN, st_bad_gen);
  441. /* NOTREACHED */
  442.     }
  443.     if (gen->entry == nil(st_table_entry)) {
  444. /* try to find next entry */
  445. for (i = gen->idx; i < gen->table->num_bins; i++) {
  446.     if (gen->table->bins[i] != nil(st_table_entry)) {
  447. gen->idx = i + 1;
  448. gen->entry = gen->table->bins[i];
  449. break;
  450.     }
  451. }
  452. if (gen->entry == nil(st_table_entry)) {
  453.     return 0; /* that's all folks ! */
  454. }
  455.     }
  456.     *key_p = gen->entry->key;
  457.     if (value_p != 0)
  458. *value_p = gen->entry->record;
  459.     gen->entry = gen->entry->next;
  460.     return 1;
  461. }
  462. void
  463. st_Free_gen(gen)
  464. st_generator *gen;
  465. {
  466.     if (gen) {
  467. Free((char *) gen);
  468.     }
  469.     else {
  470. errRaise(st_pkg_name, ST_BAD_GEN, st_bad_gen);
  471. /* NOTREACHED */
  472.     }
  473. }
  474. static void 
  475. errRaise(pkg, num, msg)
  476. char   *pkg;
  477. int     num;
  478. char   *msg;
  479. /*
  480.  * In this standalone version of st, and error raise causes
  481.  * an abort after printing a message.
  482.  */
  483. {
  484.     (void) fprintf(stderr, "%s: %sn", pkg, msg);
  485.     abort();
  486. }