~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/hash.h

  • Committer: Monty Taylor
  • Date: 2008-08-01 23:59:59 UTC
  • mto: (236.1.42 codestyle)
  • mto: This revision was merged to the branch mainline in revision 261.
  • Revision ID: monty@inaugust.com-20080801235959-n8ypy9r5aohown77
Gettext error compiles and passes test!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation; version 2 of the License.
9
 
 *
10
 
 *  This program is distributed in the hope that it will be useful,
11
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 *  GNU General Public License for more details.
14
 
 *
15
 
 *  You should have received a copy of the GNU General Public License
16
 
 *  along with this program; if not, write to the Free Software
17
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 
 */
 
1
/* Copyright (C) 2000 MySQL AB
 
2
 
 
3
   This program is free software; you can redistribute it and/or modify
 
4
   it under the terms of the GNU General Public License as published by
 
5
   the Free Software Foundation; version 2 of the License.
 
6
 
 
7
   This program is distributed in the hope that it will be useful,
 
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
   GNU General Public License for more details.
 
11
 
 
12
   You should have received a copy of the GNU General Public License
 
13
   along with this program; if not, write to the Free Software
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
19
15
 
20
16
/* Dynamic hashing of record with different key-length */
21
17
 
22
 
#ifndef DRIZZLED_MY_HASH_H
23
 
#define DRIZZLED_MY_HASH_H
24
 
 
25
 
#include "drizzled/dynamic_array.h"
26
 
 
27
 
namespace drizzled
28
 
{
29
 
 
30
 
typedef struct charset_info_st CHARSET_INFO;
 
18
#ifndef _hash_h
 
19
#define _hash_h
 
20
#ifdef  __cplusplus
 
21
extern "C" {
 
22
#endif
31
23
 
32
24
/*
33
25
  Overhead to store an element in hash
38
30
/* flags for hash_init */
39
31
#define HASH_UNIQUE     1       /* hash_insert fails on duplicate key */
40
32
 
41
 
typedef unsigned char *(*hash_get_key)(const unsigned char *,size_t*,bool);
 
33
typedef uchar *(*hash_get_key)(const uchar *,size_t*,bool);
42
34
typedef void (*hash_free_key)(void *);
43
35
 
44
36
typedef struct st_hash {
45
 
  /* Length of key if const length */
46
 
  size_t key_offset,key_length;
47
 
  uint32_t blength;
48
 
  uint32_t records;
49
 
  uint32_t flags;
50
 
  /* Place for hash_keys */
51
 
  DYNAMIC_ARRAY array;
 
37
  size_t key_offset,key_length;         /* Length of key if const length */
 
38
  size_t blength;
 
39
  ulong records;
 
40
  uint flags;
 
41
  DYNAMIC_ARRAY array;                          /* Place for hash_keys */
52
42
  hash_get_key get_key;
53
 
  hash_free_key free;
54
 
  const CHARSET_INFO *charset;
 
43
  void (*free)(void *);
 
44
  CHARSET_INFO *charset;
55
45
} HASH;
56
46
 
57
47
/* A search iterator state */
58
 
typedef uint32_t HASH_SEARCH_STATE;
 
48
typedef uint HASH_SEARCH_STATE;
59
49
 
60
 
bool
61
 
_hash_init(HASH *hash,uint32_t growth_size, const CHARSET_INFO * const charset,
62
 
           uint32_t size, size_t key_offset, size_t key_length,
63
 
           hash_get_key get_key,
64
 
           hash_free_key free_element, uint32_t flags);
65
 
#define hash_init(A,B,C,D,E,F,G,H) _hash_init(A,0,B,C,D,E,F,G,H)
 
50
#define hash_init(A,B,C,D,E,F,G,H) _hash_init(A,0,B,C,D,E,F,G,H CALLER_INFO)
 
51
#define hash_init2(A,B,C,D,E,F,G,H,I) _hash_init(A,B,C,D,E,F,G,H,I CALLER_INFO)
 
52
bool _hash_init(HASH *hash, uint growth_size,CHARSET_INFO *charset,
 
53
                   ulong default_array_elements, size_t key_offset,
 
54
                   size_t key_length, hash_get_key get_key,
 
55
                   void (*free_element)(void*), uint flags CALLER_INFO_PROTO);
66
56
void hash_free(HASH *tree);
67
 
unsigned char *hash_element(HASH *hash,uint32_t idx);
68
 
unsigned char *hash_search(const HASH *info, const unsigned char *key,
69
 
                           size_t length);
70
 
unsigned char *hash_first(const HASH *info, const unsigned char *key,
71
 
                          size_t length, HASH_SEARCH_STATE *state);
72
 
unsigned char *hash_next(const HASH *info, const unsigned char *key,
73
 
                         size_t length, HASH_SEARCH_STATE *state);
74
 
bool my_hash_insert(HASH *info,const unsigned char *data);
75
 
bool hash_delete(HASH *hash,unsigned char *record);
 
57
void my_hash_reset(HASH *hash);
 
58
uchar *hash_element(HASH *hash,ulong idx);
 
59
uchar *hash_search(const HASH *info, const uchar *key, size_t length);
 
60
uchar *hash_first(const HASH *info, const uchar *key, size_t length,
 
61
                HASH_SEARCH_STATE *state);
 
62
uchar *hash_next(const HASH *info, const uchar *key, size_t length,
 
63
                 HASH_SEARCH_STATE *state);
 
64
bool my_hash_insert(HASH *info,const uchar *data);
 
65
bool hash_delete(HASH *hash,uchar *record);
 
66
bool hash_update(HASH *hash,uchar *record,uchar *old_key,size_t old_key_length);
 
67
void hash_replace(HASH *hash, HASH_SEARCH_STATE *state, uchar *new_row);
76
68
 
 
69
#define hash_clear(H) memset((char*) (H), 0, sizeof(*(H)))
77
70
#define hash_inited(H) ((H)->array.buffer != 0)
78
 
 
79
 
} /* namespace drizzled */
80
 
 
81
 
#endif /* DRIZZLED_MY_HASH_H */
 
71
#define hash_init_opt(A,B,C,D,E,F,G,H) \
 
72
          (!hash_inited(A) && _hash_init(A,0,B,C,D,E,F,G, H CALLER_INFO))
 
73
 
 
74
#ifdef  __cplusplus
 
75
}
 
76
#endif
 
77
#endif