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 |
/*
|
|
17 |
Key cache assignments
|
|
18 |
*/
|
|
19 |
||
20 |
#include "myisamdef.h" |
|
21 |
||
916.1.33
by Padraig O'Sullivan
Forgot the "using namespace" statement in 1 file. |
22 |
using namespace std; |
23 |
||
1
by brian
clean slate |
24 |
/*
|
25 |
Assign pages of the index file for a table to a key cache
|
|
26 |
||
27 |
SYNOPSIS
|
|
28 |
mi_assign_to_key_cache()
|
|
29 |
info open table
|
|
30 |
key_cache_ptr pointer to the key cache handle
|
|
31 |
assign_lock Mutex to lock during assignment
|
|
32 |
||
33 |
PREREQUESTS
|
|
34 |
One must have a READ lock or a WRITE lock on the table when calling
|
|
35 |
the function to ensure that there is no other writers to it.
|
|
36 |
||
37 |
The caller must also ensure that one doesn't call this function from
|
|
38 |
two different threads with the same table.
|
|
39 |
||
40 |
NOTES
|
|
41 |
At present pages for all indexes must be assigned to the same key cache.
|
|
42 |
||
43 |
RETURN VALUE
|
|
44 |
0 If a success
|
|
45 |
# Error code
|
|
46 |
*/
|
|
47 |
||
993.1.23
by Padraig O'Sullivan
Removing an unused parameter in a function in the MyISAM storage engine. |
48 |
int mi_assign_to_key_cache(MI_INFO *info, KEY_CACHE *key_cache) |
1
by brian
clean slate |
49 |
{
|
50 |
int error= 0; |
|
51 |
MYISAM_SHARE* share= info->s; |
|
52 |
||
53 |
/*
|
|
54 |
Skip operation if we didn't change key cache. This can happen if we
|
|
55 |
call this for all open instances of the same table
|
|
56 |
*/
|
|
57 |
if (share->key_cache == key_cache) |
|
51.1.102
by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE |
58 |
return(0); |
1
by brian
clean slate |
59 |
|
60 |
/*
|
|
61 |
First flush all blocks for the table in the old key cache.
|
|
62 |
This is to ensure that the disk is consistent with the data pages
|
|
63 |
in memory (which may not be the case if the table uses delayed_key_write)
|
|
64 |
||
65 |
Note that some other read thread may still fill in the key cache with
|
|
66 |
new blocks during this call and after, but this doesn't matter as
|
|
67 |
all threads will start using the new key cache for their next call to
|
|
68 |
myisam library and we know that there will not be any changed blocks
|
|
69 |
in the old key cache.
|
|
70 |
*/
|
|
71 |
||
72 |
if (flush_key_blocks(share->key_cache, share->kfile, FLUSH_RELEASE)) |
|
73 |
{
|
|
74 |
error= my_errno; |
|
75 |
mi_print_error(info->s, HA_ERR_CRASHED); |
|
76 |
mi_mark_crashed(info); /* Mark that table must be checked */ |
|
77 |
}
|
|
78 |
||
79 |
/*
|
|
80 |
Flush the new key cache for this file. This is needed to ensure
|
|
81 |
that there is no old blocks (with outdated data) left in the new key
|
|
82 |
cache from an earlier assign_to_keycache operation
|
|
83 |
||
84 |
(This can never fail as there is never any not written data in the
|
|
85 |
new key cache)
|
|
86 |
*/
|
|
87 |
(void) flush_key_blocks(key_cache, share->kfile, FLUSH_RELEASE); |
|
88 |
||
89 |
/*
|
|
90 |
ensure that setting the key cache and changing the multi_key_cache
|
|
91 |
is done atomicly
|
|
92 |
*/
|
|
93 |
pthread_mutex_lock(&share->intern_lock); |
|
94 |
/*
|
|
95 |
Tell all threads to use the new key cache
|
|
96 |
This should be seen at the lastes for the next call to an myisam function.
|
|
97 |
*/
|
|
98 |
share->key_cache= key_cache; |
|
99 |
||
100 |
/* store the key cache in the global hash structure for future opens */
|
|
481
by Brian Aker
Remove all of uchar. |
101 |
if (multi_key_cache_set((unsigned char*) share->unique_file_name, |
1
by brian
clean slate |
102 |
share->unique_name_length, |
103 |
share->key_cache)) |
|
104 |
error= my_errno; |
|
105 |
pthread_mutex_unlock(&share->intern_lock); |
|
51.1.102
by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE |
106 |
return(error); |
1
by brian
clean slate |
107 |
}
|
108 |
||
109 |
||
110 |
/*
|
|
111 |
Change all MyISAM entries that uses one key cache to another key cache
|
|
112 |
||
113 |
SYNOPSIS
|
|
114 |
mi_change_key_cache()
|
|
115 |
old_key_cache Old key cache
|
|
116 |
new_key_cache New key cache
|
|
117 |
||
118 |
NOTES
|
|
119 |
This is used when we delete one key cache.
|
|
120 |
||
121 |
To handle the case where some other threads tries to open an MyISAM
|
|
122 |
table associated with the to-be-deleted key cache while this operation
|
|
123 |
is running, we have to call 'multi_key_cache_change()' from this
|
|
124 |
function while we have a lock on the MyISAM table list structure.
|
|
125 |
||
126 |
This is safe as long as it's only MyISAM that is using this specific
|
|
127 |
key cache.
|
|
128 |
*/
|
|
129 |
||
130 |
||
131 |
void mi_change_key_cache(KEY_CACHE *old_key_cache, |
|
132 |
KEY_CACHE *new_key_cache) |
|
133 |
{
|
|
134 |
/*
|
|
135 |
Lock list to ensure that no one can close the table while we manipulate it
|
|
136 |
*/
|
|
137 |
pthread_mutex_lock(&THR_LOCK_myisam); |
|
916.1.32
by Padraig O'Sullivan
Refactoring MyISAM storage engine again based on LIST replacement with |
138 |
list<MI_INFO *>::iterator it= myisam_open_list.begin(); |
139 |
while (it != myisam_open_list.end()) |
|
1
by brian
clean slate |
140 |
{
|
916.1.32
by Padraig O'Sullivan
Refactoring MyISAM storage engine again based on LIST replacement with |
141 |
MI_INFO *info= *it; |
1
by brian
clean slate |
142 |
MYISAM_SHARE *share= info->s; |
143 |
if (share->key_cache == old_key_cache) |
|
993.1.23
by Padraig O'Sullivan
Removing an unused parameter in a function in the MyISAM storage engine. |
144 |
mi_assign_to_key_cache(info, new_key_cache); |
916.1.32
by Padraig O'Sullivan
Refactoring MyISAM storage engine again based on LIST replacement with |
145 |
++it; |
1
by brian
clean slate |
146 |
}
|
147 |
||
148 |
/*
|
|
149 |
We have to do the following call while we have the lock on the
|
|
150 |
MyISAM list structure to ensure that another thread is not trying to
|
|
151 |
open a new table that will be associted with the old key cache
|
|
152 |
*/
|
|
153 |
multi_key_cache_change(old_key_cache, new_key_cache); |
|
154 |
pthread_mutex_unlock(&THR_LOCK_myisam); |
|
51.1.102
by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE |
155 |
return; |
1
by brian
clean slate |
156 |
}
|