1
/* Copyright (C) 2000-2006 MySQL AB
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.
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.
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 */
17
locking of isam-tables.
18
reads info from a isam-table. Must be first request before doing any furter
19
calls to any isamfunktion. Is used to allow many process use the same
23
#include "myisam_priv.h"
24
#include "drizzled/charset_info.h"
25
#include <drizzled/util/test.h>
28
using namespace drizzled;
30
/* lock table by F_UNLCK, F_RDLCK or F_WRLCK */
32
int mi_lock_database(MI_INFO *info, int lock_type)
36
MYISAM_SHARE *share=info->s;
39
pthread_mutex_lock(&share->intern_lock);
41
info->s->in_use= new list<Session *>;
43
if (lock_type == F_EXTRA_LCK) /* Used by TMP tables */
45
pthread_mutex_unlock(&share->intern_lock);
48
info->lock_type= lock_type;
49
info->s->in_use->push_front(info->in_use);
54
if (share->kfile >= 0) /* May only be false on windows */
58
if (info->lock_type == F_RDLCK)
59
count= --share->r_locks;
61
count= --share->w_locks;
63
if (info->lock_type == F_WRLCK && !share->w_locks &&
64
!share->delay_key_write && flush_key_blocks(share->key_cache,
65
share->kfile,FLUSH_KEEP))
68
mi_print_error(info->s, HA_ERR_CRASHED);
69
mi_mark_crashed(info); /* Mark that table must be checked */
71
if (info->opt_flag & (READ_CACHE_USED | WRITE_CACHE_USED))
73
if (end_io_cache(&info->rec_cache))
76
mi_print_error(info->s, HA_ERR_CRASHED);
77
mi_mark_crashed(info);
82
if (share->changed && !share->w_locks)
84
if ((info->s->mmaped_length != info->s->state.state.data_file_length) &&
85
(info->s->nonmmaped_inserts > MAX_NONMAPPED_INSERTS))
87
if (info->s->concurrent_insert)
88
pthread_rwlock_wrlock(&info->s->mmap_lock);
89
mi_remap_file(info, info->s->state.state.data_file_length);
90
info->s->nonmmaped_inserts= 0;
91
if (info->s->concurrent_insert)
92
pthread_rwlock_unlock(&info->s->mmap_lock);
94
share->state.process= share->last_process=share->this_process;
95
share->state.unique= info->last_unique= info->this_unique;
96
share->state.update_count= info->last_loop= ++info->this_loop;
97
if (mi_state_info_write(share->kfile, &share->state, 1))
100
share->not_flushed=1;
103
mi_print_error(info->s, HA_ERR_CRASHED);
104
mi_mark_crashed(info);
107
if (info->lock_type != F_EXTRA_LCK)
110
{ /* Only read locks left */
113
else if (!share->w_locks)
114
{ /* No more locks */
119
info->opt_flag&= ~(READ_CACHE_USED | WRITE_CACHE_USED);
120
info->lock_type= F_UNLCK;
121
info->s->in_use->remove(info->in_use);
124
if (info->lock_type == F_WRLCK)
127
Change RW to READONLY
129
mysqld does not turn write locks to read locks,
130
so we're never here in mysqld.
132
if (share->w_locks == 1)
138
info->lock_type=lock_type;
141
if (!share->r_locks && !share->w_locks)
144
if (mi_state_info_read_dsk(share->kfile, &share->state, 1))
149
if (mi_state_info_read_dsk(share->kfile, &share->state, 1))
156
_mi_test_if_changed(info);
159
info->lock_type=lock_type;
160
info->s->in_use->push_front(info->in_use);
163
if (info->lock_type == F_RDLCK)
164
{ /* Change READONLY to RW */
165
if (share->r_locks == 1)
170
info->lock_type=lock_type;
174
if (!(share->options & HA_OPTION_READ_ONLY_DATA))
181
if (mi_state_info_read_dsk(share->kfile, &share->state, 1))
190
_mi_test_if_changed(info);
192
info->lock_type=lock_type;
195
info->s->in_use->push_front(info->in_use);
198
break; /* Impossible */
205
Check for bad file descriptors if this table is part
206
of a merge union. Failing to capture this may cause
207
a crash on windows if the table is renamed and
208
later on referenced by the merge table.
210
if( info->owned_by_merge && (info->s)->kfile < 0 )
212
error = HA_ERR_NO_SUCH_TABLE;
216
pthread_mutex_unlock(&share->intern_lock);
217
#if defined(FULL_LOG) || defined(_lint)
218
lock_type|=(int) (flag << 8); /* Set bit to set if real lock */
219
myisam_log_command(MI_LOG_LOCK,info,(unsigned char*) &lock_type,sizeof(lock_type),
223
} /* mi_lock_database */
226
/****************************************************************************
227
The following functions are called by thr_lock() in threaded applications
228
****************************************************************************/
231
Create a copy of the current status for the table
235
param Pointer to Myisam handler
236
concurrent_insert Set to 1 if we are going to do concurrent inserts
237
(THR_WRITE_CONCURRENT_INSERT was used)
240
void mi_get_status(void* param, int concurrent_insert)
242
MI_INFO *info=(MI_INFO*) param;
244
info->save_state=info->s->state.state;
245
info->state= &info->save_state;
246
info->append_insert_at_end= concurrent_insert;
251
void mi_update_status(void* param)
253
MI_INFO *info=(MI_INFO*) param;
255
Because someone may have closed the table we point at, we only
256
update the state if its our own state. This isn't a problem as
257
we are always pointing at our own lock or at a read lock.
258
(This is enforced by thr_multi_lock.c)
260
if (info->state == &info->save_state)
262
info->s->state.state= *info->state;
263
info->state= &info->s->state.state;
265
info->append_insert_at_end= 0;
268
We have to flush the write cache here as other threads may start
269
reading the table before mi_lock_database() is called
271
if (info->opt_flag & WRITE_CACHE_USED)
273
if (end_io_cache(&info->rec_cache))
275
mi_print_error(info->s, HA_ERR_CRASHED);
276
mi_mark_crashed(info);
278
info->opt_flag&= ~WRITE_CACHE_USED;
283
void mi_restore_status(void *param)
285
MI_INFO *info= (MI_INFO*) param;
286
info->state= &info->s->state.state;
287
info->append_insert_at_end= 0;
291
void mi_copy_status(void* to,void *from)
293
((MI_INFO*) to)->state= &((MI_INFO*) from)->save_state;
298
Check if should allow concurrent inserts
301
Allow concurrent inserts if we don't have a hole in the table or
302
if there is no active write lock and there is active read locks and
303
myisam_concurrent_insert == 2. In this last case the new
304
row('s) are inserted at end of file instead of filling up the hole.
306
The last case is to allow one to inserts into a heavily read-used table
307
even if there is holes.
310
If there is a an rtree indexes in the table, concurrent inserts are
311
disabled in mi_open()
314
0 ok to use concurrent inserts
318
bool mi_check_status(void *param)
320
MI_INFO *info=(MI_INFO*) param;
322
The test for w_locks == 1 is here because this thread has already done an
323
external lock (in other words: w_locks == 1 means no other threads has
326
return (bool) !(info->s->state.dellink == HA_OFFSET_ERROR ||
327
(myisam_concurrent_insert == 2 && info->s->r_locks &&
328
info->s->w_locks == 1));
332
/****************************************************************************
333
** functions to read / write the state
334
****************************************************************************/
336
int _mi_readinfo(register MI_INFO *info, int lock_type, int check_keybuffer)
338
if (info->lock_type == F_UNLCK)
340
MYISAM_SHARE *share=info->s;
341
if (!share->tot_locks)
343
if (mi_state_info_read_dsk(share->kfile, &share->state, 1))
345
int error=errno ? errno : -1;
351
_mi_test_if_changed(info);
353
else if (lock_type == F_WRLCK && info->lock_type == F_RDLCK)
355
errno=EACCES; /* Not allowed to change */
356
return(-1); /* when have read_lock() */
363
Every isam-function that uppdates the isam-database MUST end with this
367
int _mi_writeinfo(register MI_INFO *info, uint32_t operation)
370
MYISAM_SHARE *share=info->s;
373
if (share->tot_locks == 0)
375
olderror=errno; /* Remember last error */
377
{ /* Two threads can't be here */
378
share->state.process= share->last_process= share->this_process;
379
share->state.unique= info->last_unique= info->this_unique;
380
share->state.update_count= info->last_loop= ++info->this_loop;
381
if ((error=mi_state_info_write(share->kfile, &share->state, 1)))
387
share->changed= 1; /* Mark keyfile changed */
389
} /* _mi_writeinfo */
392
/* Test if someone has changed the database */
393
/* (Should be called after readinfo) */
395
int _mi_test_if_changed(register MI_INFO *info)
397
MYISAM_SHARE *share=info->s;
398
if (share->state.process != share->last_process ||
399
share->state.unique != info->last_unique ||
400
share->state.update_count != info->last_loop)
401
{ /* Keyfile has changed */
402
if (share->state.process != share->this_process)
403
flush_key_blocks(share->key_cache, share->kfile, FLUSH_RELEASE);
404
share->last_process=share->state.process;
405
info->last_unique= share->state.unique;
406
info->last_loop= share->state.update_count;
407
info->update|= HA_STATE_WRITTEN; /* Must use file on next */
408
info->data_changed= 1; /* For mi_is_changed */
411
return (!(info->update & HA_STATE_AKTIV) ||
412
(info->update & (HA_STATE_WRITTEN | HA_STATE_DELETED |
413
HA_STATE_KEY_CHANGED)));
414
} /* _mi_test_if_changed */
418
Put a mark in the .MYI file that someone is updating the table
423
state.open_count in the .MYI file is used the following way:
424
- For the first change of the .MYI file in this process open_count is
425
incremented by mi_mark_file_change(). (We have a write lock on the file
427
- In mi_close() it's decremented by _mi_decrement_open_count() if it
428
was incremented in the same process.
430
This mean that if we are the only process using the file, the open_count
431
tells us if the MYISAM file wasn't properly closed.*/
434
int _mi_mark_file_changed(MI_INFO *info)
436
unsigned char buff[3];
437
register MYISAM_SHARE *share=info->s;
439
if (!(share->state.changed & STATE_CHANGED) || ! share->global_changed)
441
share->state.changed|=(STATE_CHANGED | STATE_NOT_ANALYZED |
442
STATE_NOT_OPTIMIZED_KEYS);
443
if (!share->global_changed)
445
share->global_changed=1;
446
share->state.open_count++;
448
if (!share->temporary)
450
mi_int2store(buff,share->state.open_count);
451
buff[2]=1; /* Mark that it's changed */
452
return(my_pwrite(share->kfile,buff,sizeof(buff),
453
sizeof(share->state.header),
462
This is only called by close or by extra(HA_FLUSH) if the OS has the pwrite()
463
call. In these context the following code should be safe!
466
int _mi_decrement_open_count(MI_INFO *info)
468
unsigned char buff[2];
469
register MYISAM_SHARE *share=info->s;
470
int lock_error=0,write_error=0;
471
if (share->global_changed)
473
uint32_t old_lock=info->lock_type;
474
share->global_changed=0;
475
lock_error=mi_lock_database(info,F_WRLCK);
476
/* Its not fatal even if we couldn't get the lock ! */
477
if (share->state.open_count > 0)
479
share->state.open_count--;
480
mi_int2store(buff,share->state.open_count);
481
write_error=my_pwrite(share->kfile,buff,sizeof(buff),
482
sizeof(share->state.header),
486
lock_error=mi_lock_database(info,old_lock);
488
return test(lock_error || write_error);