~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2003 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 */
15
16
/* Key cache variable structures */
17
18
#ifndef _keycache_h
19
#define _keycache_h
53.2.37 by Monty Taylor
Moved keycache code to MyISAM.
20
212.5.39 by Monty Taylor
Phew. Moved my_base and my_global.
21
#include <drizzled/global.h>
53.2.37 by Monty Taylor
Moved keycache code to MyISAM.
22
398.1.9 by Monty Taylor
Cleaned up stuff out of global.h.
23
#ifdef __cplusplus
24
extern "C" {
25
#endif
1 by brian
clean slate
26
53.2.37 by Monty Taylor
Moved keycache code to MyISAM.
27
enum flush_type
28
{
29
  FLUSH_KEEP,           /* flush block and keep it in the cache */
30
  FLUSH_RELEASE,        /* flush block and remove it from the cache */
31
  FLUSH_IGNORE_CHANGED, /* remove block from the cache */
32
  /*
33
 *     As my_disable_flush_pagecache_blocks is always 0, the following option
34
 *         is strictly equivalent to FLUSH_KEEP
35
 *           */
36
  FLUSH_FORCE_WRITE
37
};
38
1 by brian
clean slate
39
/* declare structures that is used by st_key_cache */
40
41
struct st_block_link;
42
typedef struct st_block_link BLOCK_LINK;
43
struct st_keycache_page;
44
typedef struct st_keycache_page KEYCACHE_PAGE;
45
struct st_hash_link;
46
typedef struct st_hash_link HASH_LINK;
47
48
/* info about requests in a waiting queue */
49
typedef struct st_keycache_wqueue
50
{
51
  struct st_my_thread_var *last_thread;  /* circular list of waiting threads */
52
} KEYCACHE_WQUEUE;
53
54
#define CHANGED_BLOCKS_HASH 128             /* must be power of 2 */
55
56
/*
57
  The key cache structure
58
  It also contains read-only statistics parameters.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
59
*/
1 by brian
clean slate
60
61
typedef struct st_key_cache
62
{
281 by Brian Aker
Converted myisam away from my_bool
63
  bool key_cache_inited;
64
  bool in_resize;             /* true during resize operation             */
65
  bool resize_in_flush;       /* true during flush of resize operation    */
66
  bool can_be_used;           /* usage of cache for read/write is allowed */
1030.1.1 by Brian Aker
Straighten out structures (remove some some dead bits).
67
  uint32_t hash_entries;             /* max number of entries in the hash table  */
1 by brian
clean slate
68
  size_t key_cache_mem_size;      /* specified size of the cache memory       */
482 by Brian Aker
Remove uint.
69
  uint32_t key_cache_block_size;     /* size of the page buffer of a cache block */
1030.1.2 by Brian Aker
More alignment for structures
70
  int disk_blocks;               /* max number of blocks in the cache        */
1 by brian
clean slate
71
  ulong min_warm_blocks;         /* min number of warm blocks;               */
72
  ulong age_threshold;           /* age threshold for hot blocks             */
151 by Brian Aker
Ulonglong to uint64_t
73
  uint64_t keycache_time;       /* total number of block link operations    */
1 by brian
clean slate
74
  int hash_links;                /* max number of hash links                 */
75
  int hash_links_used;           /* number of hash links currently used      */
76
  ulong blocks_used; /* maximum number of concurrently used blocks */
77
  ulong blocks_unused; /* number of currently unused blocks */
78
  ulong blocks_changed;          /* number of currently dirty blocks         */
79
  ulong warm_blocks;             /* number of blocks in warm sub-chain       */
80
  ulong cnt_for_resize_op;       /* counter to block resize operation        */
81
  long blocks_available;      /* number of blocks available in the LRU chain */
82
  HASH_LINK **hash_root;         /* arr. of entries into hash table buckets  */
83
  HASH_LINK *hash_link_root;     /* memory for hash table links              */
84
  HASH_LINK *free_hash_list;     /* list of free hash links                  */
85
  BLOCK_LINK *free_block_list;   /* list of free blocks */
86
  BLOCK_LINK *block_root;        /* memory for block links                   */
481 by Brian Aker
Remove all of uchar.
87
  unsigned char *block_mem;     /* memory for block buffers                 */
1 by brian
clean slate
88
  BLOCK_LINK *used_last;         /* ptr to the last block of the LRU chain   */
89
  BLOCK_LINK *used_ins;          /* ptr to the insertion block in LRU chain  */
90
  pthread_mutex_t cache_lock;    /* to lock access to the cache structure    */
91
  KEYCACHE_WQUEUE resize_queue;  /* threads waiting during resize operation  */
92
  /*
93
    Waiting for a zero resize count. Using a queue for symmetry though
94
    only one thread can wait here.
95
  */
96
  KEYCACHE_WQUEUE waiting_for_resize_cnt;
97
  KEYCACHE_WQUEUE waiting_for_hash_link; /* waiting for a free hash link     */
98
  KEYCACHE_WQUEUE waiting_for_block;    /* requests waiting for a free block */
99
  BLOCK_LINK *changed_blocks[CHANGED_BLOCKS_HASH]; /* hash for dirty file bl.*/
100
  BLOCK_LINK *file_blocks[CHANGED_BLOCKS_HASH];    /* hash for other file bl.*/
101
102
  /*
103
    The following variables are and variables used to hold parameters for
104
    initializing the key cache.
105
  */
106
151 by Brian Aker
Ulonglong to uint64_t
107
  uint64_t param_buff_size;    /* size the memory allocated for the cache  */
896.4.16 by Stewart Smith
for getopt, replace GET_ULONG with GET_UINT32.
108
  uint32_t param_block_size;   /* size of the blocks in the key cache      */
109
  uint32_t param_division_limit; /* min. percentage of warm blocks           */
110
  uint32_t param_age_threshold;    /* determines when hot block is downgraded  */
1 by brian
clean slate
111
1030.1.2 by Brian Aker
More alignment for structures
112
  int blocks;                   /* max number of blocks in the cache        */
1 by brian
clean slate
113
  /* Statistics variables. These are reset in reset_key_cache_counters(). */
114
  ulong global_blocks_changed;	/* number of currently dirty blocks         */
151 by Brian Aker
Ulonglong to uint64_t
115
  uint64_t global_cache_w_requests;/* number of write requests (write hits) */
116
  uint64_t global_cache_write;     /* number of writes from cache to files  */
117
  uint64_t global_cache_r_requests;/* number of read requests (read hits)   */
118
  uint64_t global_cache_read;      /* number of reads from files to cache   */
1 by brian
clean slate
119
281 by Brian Aker
Converted myisam away from my_bool
120
  bool in_init;		/* Set to 1 in MySQL during init/resize     */
1 by brian
clean slate
121
} KEY_CACHE;
122
123
/* The default key cache */
124
extern KEY_CACHE dflt_key_cache_var, *dflt_key_cache;
125
482 by Brian Aker
Remove uint.
126
extern int init_key_cache(KEY_CACHE *keycache, uint32_t key_cache_block_size,
127
			  size_t use_mem, uint32_t division_limit,
128
			  uint32_t age_threshold);
129
extern int resize_key_cache(KEY_CACHE *keycache, uint32_t key_cache_block_size,
130
			    size_t use_mem, uint32_t division_limit,
131
			    uint32_t age_threshold);
132
extern void change_key_cache_param(KEY_CACHE *keycache, uint32_t division_limit,
133
				   uint32_t age_threshold);
481 by Brian Aker
Remove all of uchar.
134
extern unsigned char *key_cache_read(KEY_CACHE *keycache,
1 by brian
clean slate
135
                            File file, my_off_t filepos, int level,
482 by Brian Aker
Remove uint.
136
                            unsigned char *buff, uint32_t length,
137
			    uint32_t block_length,int return_buffer);
1 by brian
clean slate
138
extern int key_cache_insert(KEY_CACHE *keycache,
139
                            File file, my_off_t filepos, int level,
482 by Brian Aker
Remove uint.
140
                            unsigned char *buff, uint32_t length);
1 by brian
clean slate
141
extern int key_cache_write(KEY_CACHE *keycache,
142
                           File file, my_off_t filepos, int level,
482 by Brian Aker
Remove uint.
143
                           unsigned char *buff, uint32_t length,
144
			   uint32_t block_length,int force_write);
1 by brian
clean slate
145
extern int flush_key_blocks(KEY_CACHE *keycache,
146
                            int file, enum flush_type type);
281 by Brian Aker
Converted myisam away from my_bool
147
extern void end_key_cache(KEY_CACHE *keycache, bool cleanup);
1 by brian
clean slate
148
149
/* Functions to handle multiple key caches */
281 by Brian Aker
Converted myisam away from my_bool
150
extern bool multi_keycache_init(void);
1 by brian
clean slate
151
extern void multi_keycache_free(void);
482 by Brian Aker
Remove uint.
152
extern KEY_CACHE *multi_key_cache_search(unsigned char *key, uint32_t length);
153
extern bool multi_key_cache_set(const unsigned char *key, uint32_t length,
1 by brian
clean slate
154
				   KEY_CACHE *key_cache);
155
extern void multi_key_cache_change(KEY_CACHE *old_data,
156
				   KEY_CACHE *new_data);
157
extern int reset_key_cache_counters(const char *name,
158
                                    KEY_CACHE *key_cache);
398.1.9 by Monty Taylor
Cleaned up stuff out of global.h.
159
160
#ifdef __cplusplus
161
}
162
#endif
163
1 by brian
clean slate
164
#endif /* _keycache_h */