2001-02-17 13:19:19 +01:00
|
|
|
/******************************************************
|
|
|
|
The hash table with external chains
|
|
|
|
|
|
|
|
(c) 1994-1997 Innobase Oy
|
|
|
|
|
|
|
|
Created 8/18/1994 Heikki Tuuri
|
|
|
|
*******************************************************/
|
|
|
|
|
|
|
|
#ifndef ha0ha_h
|
|
|
|
#define ha0ha_h
|
|
|
|
|
|
|
|
#include "univ.i"
|
|
|
|
|
|
|
|
#include "hash0hash.h"
|
|
|
|
#include "page0types.h"
|
|
|
|
|
|
|
|
/*****************************************************************
|
|
|
|
Looks for an element in a hash table. */
|
|
|
|
UNIV_INLINE
|
|
|
|
void*
|
|
|
|
ha_search_and_get_data(
|
|
|
|
/*===================*/
|
|
|
|
/* out: pointer to the data of the first hash
|
|
|
|
table node in chain having the fold number,
|
|
|
|
NULL if not found */
|
|
|
|
hash_table_t* table, /* in: hash table */
|
|
|
|
ulint fold); /* in: folded value of the searched data */
|
|
|
|
/*************************************************************
|
|
|
|
Looks for an element when we know the pointer to the data and updates
|
|
|
|
the pointer to data if found. */
|
2003-10-13 10:20:19 +02:00
|
|
|
|
2001-02-17 13:19:19 +01:00
|
|
|
void
|
|
|
|
ha_search_and_update_if_found(
|
|
|
|
/*==========================*/
|
|
|
|
hash_table_t* table, /* in: hash table */
|
|
|
|
ulint fold, /* in: folded value of the searched data */
|
|
|
|
void* data, /* in: pointer to the data */
|
|
|
|
void* new_data);/* in: new pointer to the data */
|
|
|
|
/*****************************************************************
|
|
|
|
Creates a hash table with >= n array cells. The actual number of cells is
|
|
|
|
chosen to be a prime number slightly bigger than n. */
|
|
|
|
|
|
|
|
hash_table_t*
|
|
|
|
ha_create(
|
|
|
|
/*======*/
|
|
|
|
/* out, own: created table */
|
|
|
|
ibool in_btr_search, /* in: TRUE if the hash table is used in
|
|
|
|
the btr_search module */
|
|
|
|
ulint n, /* in: number of array cells */
|
|
|
|
ulint n_mutexes, /* in: number of mutexes to protect the
|
|
|
|
hash table: must be a power of 2 */
|
|
|
|
ulint mutex_level); /* in: level of the mutexes in the latching
|
|
|
|
order: this is used in the debug version */
|
|
|
|
/*****************************************************************
|
|
|
|
Inserts an entry into a hash table. If an entry with the same fold number
|
|
|
|
is found, its node is updated to point to the new data, and no new node
|
2004-12-08 13:34:58 +01:00
|
|
|
is inserted. */
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
ibool
|
|
|
|
ha_insert_for_fold(
|
|
|
|
/*===============*/
|
|
|
|
/* out: TRUE if succeed, FALSE if no more
|
|
|
|
memory could be allocated */
|
|
|
|
hash_table_t* table, /* in: hash table */
|
|
|
|
ulint fold, /* in: folded value of data; if a node with
|
|
|
|
the same fold value already exists, it is
|
|
|
|
updated to point to the same data, and no new
|
|
|
|
node is created! */
|
|
|
|
void* data); /* in: data, must not be NULL */
|
|
|
|
/*****************************************************************
|
|
|
|
Reserves the necessary hash table mutex and inserts an entry into the hash
|
|
|
|
table. */
|
|
|
|
UNIV_INLINE
|
|
|
|
ibool
|
|
|
|
ha_insert_for_fold_mutex(
|
|
|
|
/*=====================*/
|
|
|
|
/* out: TRUE if succeed, FALSE if no more
|
|
|
|
memory could be allocated */
|
|
|
|
hash_table_t* table, /* in: hash table */
|
|
|
|
ulint fold, /* in: folded value of data; if a node with
|
|
|
|
the same fold value already exists, it is
|
|
|
|
updated to point to the same data, and no new
|
|
|
|
node is created! */
|
|
|
|
void* data); /* in: data, must not be NULL */
|
|
|
|
/*****************************************************************
|
|
|
|
Deletes an entry from a hash table. */
|
|
|
|
|
|
|
|
void
|
|
|
|
ha_delete(
|
|
|
|
/*======*/
|
|
|
|
hash_table_t* table, /* in: hash table */
|
|
|
|
ulint fold, /* in: folded value of data */
|
|
|
|
void* data); /* in: data, must not be NULL and must exist
|
|
|
|
in the hash table */
|
|
|
|
/*************************************************************
|
|
|
|
Looks for an element when we know the pointer to the data and deletes
|
|
|
|
it from the hash table if found. */
|
|
|
|
UNIV_INLINE
|
|
|
|
ibool
|
|
|
|
ha_search_and_delete_if_found(
|
|
|
|
/*==========================*/
|
|
|
|
/* out: TRUE if found */
|
|
|
|
hash_table_t* table, /* in: hash table */
|
|
|
|
ulint fold, /* in: folded value of the searched data */
|
|
|
|
void* data); /* in: pointer to the data */
|
|
|
|
/*********************************************************************
|
|
|
|
Removes from the chain determined by fold all nodes whose data pointer
|
|
|
|
points to the page given. */
|
|
|
|
|
|
|
|
void
|
|
|
|
ha_remove_all_nodes_to_page(
|
|
|
|
/*========================*/
|
|
|
|
hash_table_t* table, /* in: hash table */
|
2004-12-08 13:34:58 +01:00
|
|
|
ulint fold, /* in: fold value */
|
2001-02-17 13:19:19 +01:00
|
|
|
page_t* page); /* in: buffer page */
|
|
|
|
/*****************************************************************
|
|
|
|
Validates a hash table. */
|
|
|
|
|
|
|
|
ibool
|
|
|
|
ha_validate(
|
|
|
|
/*========*/
|
|
|
|
/* out: TRUE if ok */
|
|
|
|
hash_table_t* table); /* in: hash table */
|
|
|
|
/*****************************************************************
|
|
|
|
Prints info of a hash table. */
|
|
|
|
|
|
|
|
void
|
|
|
|
ha_print_info(
|
|
|
|
/*==========*/
|
InnoDB: send diagnostic output to stderr or files
instead of stdout or fixed-size memory buffers
innobase/btr/btr0btr.c:
Output to stderr; quote table and index names
innobase/btr/btr0cur.c:
Output to stderr; quote table and index names
innobase/btr/btr0sea.c:
Output to stderr
innobase/buf/buf0buf.c:
Output to stderr; quote table and index names
innobase/buf/buf0flu.c:
Output to stderr
innobase/buf/buf0lru.c:
Output to stderr
innobase/buf/buf0rea.c:
Output to stderr
innobase/data/data0data.c:
Remove dtuple_validate() unless #ifdef UNIV_DEBUG
Remove unnecessary sprintf() calls
Output to stderr
innobase/data/data0type.c:
Output to stderr
innobase/dict/dict0boot.c:
Remove dummy call to printf()
innobase/dict/dict0crea.c:
Output diagnostic information to stream, not to memory
innobase/dict/dict0dict.c:
Output diagnostics to a file, not to a memory buffer
innobase/dict/dict0load.c:
Output to stderr; quote table and index names
innobase/eval/eval0eval.c:
Output to stderr
innobase/fil/fil0fil.c:
Output to stderr
innobase/fsp/fsp0fsp.c:
Output to stderr
Avoid sprintf()
innobase/fut/fut0lst.c:
Output to stderr
innobase/ha/ha0ha.c:
Output to stream, not to memory buffer
innobase/ibuf/ibuf0ibuf.c:
Output to stderr
Avoid sprintf()
innobase/include/buf0buf.h:
Output to stream, not to memory buffer
innobase/include/buf0buf.ic:
Use %p for displaying pointers
innobase/include/data0data.h:
Remove dtuple_sprintf()
innobase/include/dict0dict.h:
Output to stream, not to memory buffer
innobase/include/ha0ha.h:
Output to stream, not to memory buffer
innobase/include/ibuf0ibuf.h:
Output to stream, not to memory buffer
innobase/include/lock0lock.h:
Output to stream, not to memory buffer
innobase/include/log0log.h:
Output to stream, not to memory buffer
innobase/include/mtr0log.ic:
Output to stderr
Display pointers with %p
innobase/include/os0file.h:
Output to stream, not to memory buffer
innobase/include/rem0rec.h:
Remove rec_sprintf()
innobase/include/rem0rec.ic:
Output to stderr
innobase/include/row0sel.ic:
Output to stderr
innobase/include/row0upd.ic:
Quote table and index names
innobase/include/srv0srv.h:
Remove srv_sprintf_innodb_monitor()
innobase/include/sync0arr.h:
Output to stream, not to memory buffer
innobase/include/sync0sync.h:
Output to stream, not to memory buffer
innobase/include/trx0sys.h:
Output to stderr
innobase/include/trx0trx.h:
Output to stream, not to memory buffer
innobase/include/ut0ut.h:
Remove ut_sprintf_buf()
Add ut_print_name(), ut_print_namel() and ut_copy_file()
innobase/lock/lock0lock.c:
Output to stream, not to memory buffer
innobase/log/log0log.c:
Output to stderr
innobase/log/log0recv.c:
Output to stderr
innobase/mem/mem0dbg.c:
Output to stderr
innobase/mtr/mtr0log.c:
Display pointers with %p
innobase/mtr/mtr0mtr.c:
Output to stderr
innobase/os/os0file.c:
Output to stream, not to memory buffer
innobase/os/os0proc.c:
Output to stderr
innobase/os/os0thread.c:
Output to stderr
innobase/page/page0cur.c:
Output to stderr
innobase/page/page0page.c:
Avoid sprintf()
Output to stderr instead of stdout
innobase/pars/pars0opt.c:
Output to stderr instead of stdout
innobase/rem/rem0rec.c:
Remove rec_sprintf()
Output to stderr instead of stdout
innobase/row/row0ins.c:
Output diagnostics to stream instead of memory buffer
innobase/row/row0mysql.c:
Output to stderr instead of stdout
Quote table and index names
innobase/row/row0purge.c:
Output to stderr instead of stdout
innobase/row/row0row.c:
Quote table and index names
innobase/row/row0sel.c:
Output to stderr instead of stdout
Quote table and index names
innobase/row/row0umod.c:
Avoid sprintf()
Quote table and index names
innobase/row/row0undo.c:
Output to stderr instead of stdout
innobase/row/row0upd.c:
Avoid sprintf()
innobase/srv/srv0srv.c:
Output to stderr instead of stdout
innobase/srv/srv0start.c:
Handle srv_monitor_file
Make some global variables static
innobase/sync/sync0arr.c:
Output to stderr instead of stdout
Output to stream instead of memory buffer
innobase/sync/sync0rw.c:
Output to stderr instead of stdout
innobase/sync/sync0sync.c:
Output to stderr instead of stdout
Output to stream instead of memory buffer
innobase/trx/trx0purge.c:
Output to stderr instead of stdout
innobase/trx/trx0rec.c:
Quote index and table names
Avoid sprintf()
innobase/trx/trx0roll.c:
Quote identifier names
Output to stderr instead of stdout
innobase/trx/trx0sys.c:
Output to stderr instead of stdout
innobase/trx/trx0trx.c:
Output to stream instead of memory buffer
innobase/trx/trx0undo.c:
Output to stderr instead of stdout
innobase/ut/ut0ut.c:
Declare mysql_get_identifier_quote_char()
Remove ut_sprintf_buf()
Add ut_print_name() and ut_print_namel()
Add ut_copy_file()
sql/ha_innodb.cc:
innobase_mysql_print_thd(): output to stream, not to memory buffer
Add mysql_get_identifier_quote_char()
Remove unused function innobase_print_error()
Display pointers with %p
Buffer InnoDB output via files, not via statically allocated memory
2004-04-06 15:14:43 +02:00
|
|
|
FILE* file, /* in: file where to print */
|
2001-02-17 13:19:19 +01:00
|
|
|
hash_table_t* table); /* in: hash table */
|
|
|
|
|
2002-08-06 21:59:13 +02:00
|
|
|
/* The hash table external chain node */
|
|
|
|
|
|
|
|
typedef struct ha_node_struct ha_node_t;
|
|
|
|
struct ha_node_struct {
|
2004-12-08 13:34:58 +01:00
|
|
|
ha_node_t* next; /* next chain node or NULL if none */
|
|
|
|
void* data; /* pointer to the data */
|
|
|
|
ulint fold; /* fold value for the data */
|
2002-08-06 21:59:13 +02:00
|
|
|
};
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
#ifndef UNIV_NONINL
|
|
|
|
#include "ha0ha.ic"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|