68
63
extern bool volatile shutdown_in_progress;
65
TableOpenCache &get_open_cache()
67
static TableOpenCache open_cache; /* Used by mysql_test */
72
static void free_cache_entry(Table *entry);
74
void remove_table(Table *arg)
76
TableOpenCacheRange ppp;
77
ppp= get_open_cache().equal_range(arg->getShare()->getCacheKey());
79
for (TableOpenCache::const_iterator iter= ppp.first;
80
iter != ppp.second; ++iter)
82
Table *found_table= (*iter).second;
84
if (found_table == arg)
86
free_cache_entry(arg);
87
get_open_cache().erase(iter);
93
static bool add_table(Table *arg)
95
TableOpenCache &open_cache(get_open_cache());
97
TableOpenCache::iterator returnable= open_cache.insert(make_pair(arg->getShare()->getCacheKey(), arg));
99
return not (returnable == open_cache.end());
103
Table *tables; /* Used by mysql_test */
105
Table *getTable() const
110
Table *setTable(Table *arg)
119
/* Free cache if too big */
120
while (cached_open_tables() > table_cache_size && getTable())
121
remove_table(getTable());
126
while (getTable() && not getTable()->getShare()->getVersion())
127
remove_table(getTable());
130
void link(Table *table)
134
table->setNext(getTable()); /* Link in last */
135
table->setPrev(getTable()->getPrev());
136
getTable()->setPrev(table);
137
table->getPrev()->setNext(table);
141
table->setPrev(setTable(table));
142
table->setNext(table->getPrev());
143
assert(table->getNext() == table && table->getPrev() == table);
148
void unlink(Table *table)
152
/* Unlink the table from "unused_tables" list. */
153
if (table == getTable())
155
setTable(getTable()->getNext()); // Remove from link
156
if (table == getTable())
161
/* move table first in unused links */
163
void relink(Table *table)
165
if (table != getTable())
169
table->setNext(getTable()); /* Link in unused tables */
170
table->setPrev(getTable()->getPrev());
171
getTable()->getPrev()->setNext(table);
172
getTable()->setPrev(table);
181
remove_table(getTable());
193
static UnusedTables unused_tables;
194
static int open_unireg_entry(Session *session,
197
TableIdentifier &identifier);
199
unsigned char *table_cache_key(const unsigned char *record,
203
unsigned char *table_cache_key(const unsigned char *record,
207
Table *entry=(Table*) record;
208
*length= entry->getShare()->getCacheKey().size();
209
return (unsigned char*) &entry->getShare()->getCacheKey()[0];
70
212
bool table_cache_init(void)
113
256
This has to be done to ensure that the table share is removed from
114
257
the table defintion cache as soon as the last instance is removed
116
identifier::Table identifier(table->getShare()->getSchemaName(), table->getShare()->getTableName(), message::Table::INTERNAL);
117
const identifier::Table::Key &key(identifier.getKey());
118
TableShare *share= new TableShare(identifier.getType(),
120
const_cast<char *>(key.vector()), static_cast<uint32_t>(table->getShare()->getCacheKeySize()));
259
TableIdentifier identifier(table->getShare()->getSchemaName(), table->getShare()->getTableName(), message::Table::INTERNAL);
260
const TableIdentifier::Key &key(identifier.getKey());
261
share= new TableShare(identifier.getType(),
263
const_cast<char *>(&key[0]), static_cast<uint32_t>(old_share->getCacheKeySize()));
122
265
table->cursor->close();
123
266
table->db_stat= 0; // Mark cursor closed
124
table::instance::release(table->getMutableShare());
267
TableShare::release(table->getMutableShare());
125
268
table->setShare(share);
269
table->cursor->change_table_ptr(table, table->getMutableShare());
536
void Open_tables_state::doGetTableNames(CachedDirectory &,
537
const identifier::Schema &schema_identifier,
538
std::set<std::string> &set_of_names)
701
void Session::doGetTableNames(CachedDirectory &,
702
const SchemaIdentifier &schema_identifier,
703
std::set<std::string> &set_of_names)
540
705
doGetTableNames(schema_identifier, set_of_names);
543
void Open_tables_state::doGetTableIdentifiers(const identifier::Schema &schema_identifier,
544
identifier::Table::vector &set_of_identifiers)
708
void Session::doGetTableIdentifiers(const SchemaIdentifier &schema_identifier,
709
TableIdentifiers &set_of_identifiers)
546
for (Table *table= getTemporaryTables() ; table ; table= table->getNext())
711
for (Table *table= temporary_tables ; table ; table= table->getNext())
548
713
if (schema_identifier.compare(table->getShare()->getSchemaName()))
550
set_of_identifiers.push_back(identifier::Table(table->getShare()->getSchemaName(),
715
set_of_identifiers.push_back(TableIdentifier(table->getShare()->getSchemaName(),
551
716
table->getShare()->getTableName(),
552
717
table->getShare()->getPath()));
557
void Open_tables_state::doGetTableIdentifiers(CachedDirectory &,
558
const identifier::Schema &schema_identifier,
559
identifier::Table::vector &set_of_identifiers)
722
void Session::doGetTableIdentifiers(CachedDirectory &,
723
const SchemaIdentifier &schema_identifier,
724
TableIdentifiers &set_of_identifiers)
561
726
doGetTableIdentifiers(schema_identifier, set_of_identifiers);
564
bool Open_tables_state::doDoesTableExist(const identifier::Table &identifier)
729
bool Session::doDoesTableExist(const TableIdentifier &identifier)
566
for (Table *table= getTemporaryTables() ; table ; table= table->getNext())
731
for (Table *table= temporary_tables ; table ; table= table->getNext())
568
733
if (table->getShare()->getType() == message::Table::TEMPORARY)
599
Table *Open_tables_state::find_temporary_table(const identifier::Table &identifier)
764
Table *Session::find_temporary_table(const char *new_db, const char *table_name)
766
char key[MAX_DBKEY_LENGTH];
769
key_length= TableIdentifier::createKey(key, new_db, table_name);
771
for (Table *table= temporary_tables ; table ; table= table->getNext())
773
const TableIdentifier::Key &share_key(table->getShare()->getCacheKey());
774
if (share_key.size() == key_length &&
775
not memcmp(&share_key[0], key, key_length))
780
return NULL; // Not a temporary table
783
Table *Session::find_temporary_table(TableList *table_list)
785
return find_temporary_table(table_list->db, table_list->table_name);
788
Table *Session::find_temporary_table(TableIdentifier &identifier)
601
790
for (Table *table= temporary_tables ; table ; table= table->getNext())
661
850
@param session Thread context
662
851
@param find Table to remove
664
@note because we risk the chance of deleting the share, we can't assume that it will exist past, this should be modified once we can use a TableShare::shared_ptr here.
667
854
void Session::unlink_open_table(Table *find)
669
const identifier::Table::Key find_key(find->getShare()->getCacheKey());
671
safe_mutex_assert_owner(table::Cache::singleton().mutex().native_handle());
856
char key[MAX_DBKEY_LENGTH];
857
uint32_t key_length= find->getShare()->getCacheKeySize();
859
safe_mutex_assert_owner(LOCK_open.native_handle());
861
memcpy(key, &find->getMutableShare()->getCacheKey()[0], key_length);
674
Note that we need to hold table::Cache::singleton().mutex() while changing the
863
Note that we need to hold LOCK_open while changing the
675
864
open_tables list. Another thread may work on it.
676
(See: table::Cache::singleton().removeTable(), wait_completed_table())
865
(See: remove_table_from_cache(), mysql_wait_completed_table())
677
866
Closing a MERGE child before the parent would be fatal if the
678
867
other thread tries to abort the MERGE lock in between.
680
869
for (prev= &open_tables; *prev; )
684
if (list->getShare()->getCacheKey() == find_key)
873
if (list->getShare()->getCacheKeySize() == key_length &&
874
not memcmp(&list->getShare()->getCacheKey()[0], key, key_length))
686
876
/* Remove table from open_tables list. */
687
877
*prev= list->getNext();
689
879
/* Close table. */
690
table::remove_table(static_cast<table::Concurrent *>(list));
769
959
condition variables that are guranteed to not disapper (freed) even if this
770
960
mutex is unlocked
772
boost_unique_lock_t scopedLock(mutex, boost::adopt_lock_t());
962
boost::mutex::scoped_lock scopedLock(mutex, boost::adopt_lock_t());
775
965
cond.wait(scopedLock);
778
boost_unique_lock_t mysys_scopedLock(mysys_var->mutex);
968
boost::mutex::scoped_lock (mysys_var->mutex);
779
969
mysys_var->current_mutex= 0;
780
970
mysys_var->current_cond= 0;
781
971
set_proc_info(saved_proc_info);
976
Open table which is already name-locked by this thread.
979
reopen_name_locked_table()
980
session Thread handle
981
table_list TableList object for table to be open, TableList::table
982
member should point to Table object which was used for
984
link_in true - if Table object for table to be opened should be
985
linked into Session::open_tables list.
986
false - placeholder used for name-locking is already in
987
this list so we only need to preserve Table::next
991
This function assumes that its caller already acquired LOCK_open mutex.
998
bool Session::reopen_name_locked_table(TableList* table_list, bool link_in)
1000
Table *table= table_list->table;
1002
char *table_name= table_list->table_name;
1005
safe_mutex_assert_owner(LOCK_open.native_handle());
1007
if (killed || !table)
1012
TableIdentifier identifier(table_list->db, table_list->table_name);
1013
if (open_unireg_entry(this, table, table_name, identifier))
1015
table->intern_close_table();
1017
If there was an error during opening of table (for example if it
1018
does not exist) '*table' object can be wiped out. To be able
1019
properly release name-lock in this case we should restore this
1020
object to its original state.
1026
share= table->getMutableShare();
1028
We want to prevent other connections from opening this table until end
1029
of statement as it is likely that modifications of table's metadata are
1030
not yet finished (for example CREATE TRIGGER have to change .TRG cursor,
1031
or we might want to drop table if CREATE TABLE ... SELECT fails).
1032
This also allows us to assume that no other connection will sneak in
1033
before we will get table-level lock on this table.
1035
share->resetVersion();
1036
table->in_use = this;
1040
table->setNext(open_tables);
1046
Table object should be already in Session::open_tables list so we just
1047
need to set Table::next correctly.
1049
table->setNext(orig_table.getNext());
1052
table->tablenr= current_tablenr++;
1053
table->used_fields= 0;
1054
table->const_table= 0;
1055
table->null_row= false;
1056
table->maybe_null= false;
1057
table->force_index= false;
1058
table->status= STATUS_NO_RECORD;
786
1065
Create and insert into table cache placeholder for table
787
1066
which will prevent its opening (or creation) (a.k.a lock
795
1074
case of failure.
798
table::Placeholder *Session::table_cache_insert_placeholder(const drizzled::identifier::Table &arg)
1077
Table *Session::table_cache_insert_placeholder(const char *db_name, const char *table_name)
800
safe_mutex_assert_owner(table::Cache::singleton().mutex().native_handle());
1079
safe_mutex_assert_owner(LOCK_open.native_handle());
803
1082
Create a table entry with the right key and with an old refresh version
805
identifier::Table identifier(arg.getSchemaName(), arg.getTableName(), message::Table::INTERNAL);
806
table::Placeholder *table= new table::Placeholder(this, identifier);
1084
TableIdentifier identifier(db_name, table_name, message::Table::INTERNAL);
1085
TablePlaceholder *table= new TablePlaceholder(this, identifier);
808
if (not table::Cache::singleton().insert(table))
1087
if (not add_table(table))
837
1116
@retval true Error occured (OOM)
838
1117
@retval false Success. 'table' parameter set according to above rules.
840
bool Session::lock_table_name_if_not_cached(const identifier::Table &identifier, Table **table)
1119
bool Session::lock_table_name_if_not_cached(TableIdentifier &identifier, Table **table)
842
const identifier::Table::Key &key(identifier.getKey());
844
boost_unique_lock_t scope_lock(table::Cache::singleton().mutex()); /* Obtain a name lock even though table is not in cache (like for create table) */
846
table::CacheMap::iterator iter;
848
iter= table::getCache().find(key);
850
if (iter != table::getCache().end())
1121
const TableIdentifier::Key &key(identifier.getKey());
1123
boost::mutex::scoped_lock scope_lock(LOCK_open); /* Obtain a name lock even though table is not in cache (like for create table) */
1125
TableOpenCache::iterator iter;
1127
iter= get_open_cache().find(key);
1129
if (iter != get_open_cache().end())
856
if (not (*table= table_cache_insert_placeholder(identifier)))
1135
if (not (*table= table_cache_insert_placeholder(identifier.getSchemaName().c_str(), identifier.getTableName().c_str())))
1118
1394
/* Insert a new Table instance into the open cache */
1120
1396
/* Free cache if too big */
1121
table::getUnused().cull();
1397
unused_tables.cull();
1123
1399
if (table_list->isCreate())
1125
identifier::Table lock_table_identifier(table_list->getSchemaName(), table_list->getTableName(), message::Table::STANDARD);
1401
TableIdentifier lock_table_identifier(table_list->db, table_list->table_name, message::Table::STANDARD);
1127
1403
if (not plugin::StorageEngine::doesTableExist(*this, lock_table_identifier))
1130
1406
Table to be created, so we need to create placeholder in table-cache.
1132
if (!(table= table_cache_insert_placeholder(lock_table_identifier)))
1408
if (!(table= table_cache_insert_placeholder(table_list->db, table_list->table_name)))
1178
1456
assert(table->getShare()->getTableCount() > 0 || table->getShare()->getType() != message::Table::STANDARD);
1458
if (lex->need_correct_ident())
1459
table->alias_name_used= my_strcasecmp(table_alias_charset,
1460
table->getMutableShare()->getTableName(), alias);
1180
1461
/* Fix alias if table name changes */
1181
1462
if (strcmp(table->getAlias(), alias))
1183
table->setAlias(alias);
1464
uint32_t length=(uint32_t) strlen(alias)+1;
1465
table->alias= (char*) realloc((char*) table->alias, length);
1466
memcpy((void*) table->alias, alias, length);
1186
1469
/* These variables are also set in reopen_table() */
1269
1552
combination when one needs tables to be reopened (for
1270
1553
example see openTablesLock()).
1272
@note One should have lock on table::Cache::singleton().mutex() when calling this.
1555
@note One should have lock on LOCK_open when calling this.
1274
1557
@return false in case of success, true - otherwise.
1277
bool Session::reopen_tables()
1560
bool Session::reopen_tables(bool get_locks, bool)
1279
1562
Table *table,*next,**prev;
1280
Table **tables= 0; // For locks
1281
Table **tables_ptr= 0; // For locks
1563
Table **tables,**tables_ptr; // For locks
1564
bool error=0, not_used;
1283
1565
const uint32_t flags= DRIZZLE_LOCK_NOTIFY_IF_NEED_REOPEN |
1284
1566
DRIZZLE_LOCK_IGNORE_GLOBAL_READ_LOCK |
1285
1567
DRIZZLE_LOCK_IGNORE_FLUSH;
1310
1596
next= table->getNext();
1312
1598
my_error(ER_CANT_REOPEN_TABLE, MYF(0), table->getAlias());
1313
table::remove_table(static_cast<table::Concurrent *>(table));
1599
remove_table(table);
1318
1603
if (tables != tables_ptr) // Should we get back old locks
1320
1605
DrizzleLock *local_lock;
1322
1607
We should always get these locks. Anyway, we must not go into
1323
wait_for_tables() as it tries to acquire table::Cache::singleton().mutex(), which is
1608
wait_for_tables() as it tries to acquire LOCK_open, which is
1324
1609
already locked.
1326
1611
some_tables_deleted= false;
1328
if ((local_lock= lockTables(tables, (uint32_t) (tables_ptr - tables), flags)))
1613
if ((local_lock= mysql_lock_tables(this, tables, (uint32_t) (tables_ptr - tables),
1434
locking::broadcast_refresh();
1721
broadcast_refresh();
1726
Wait until all threads has closed the tables in the list
1727
We have also to wait if there is thread that has a lock on this table even
1728
if the table is closed
1731
bool table_is_used(Table *table, bool wait_for_name_lock)
1735
const TableIdentifier::Key &key(table->getShare()->getCacheKey());
1737
TableOpenCacheRange ppp;
1738
ppp= get_open_cache().equal_range(key);
1740
for (TableOpenCache::const_iterator iter= ppp.first;
1741
iter != ppp.second; ++iter)
1743
Table *search= (*iter).second;
1744
if (search->in_use == table->in_use)
1745
continue; // Name locked by this thread
1747
We can't use the table under any of the following conditions:
1748
- There is an name lock on it (Table is to be deleted or altered)
1749
- If we are in flush table and we didn't execute the flush
1750
- If the table engine is open and it's an old version
1751
(We must wait until all engines are shut down to use the table)
1753
if ( (search->locked_by_name && wait_for_name_lock) ||
1754
(search->is_name_opened() && search->needs_reopen_or_name_lock()))
1757
} while ((table=table->getNext()));
1762
/* Wait until all used tables are refreshed */
1764
bool wait_for_tables(Session *session)
1768
session->set_proc_info("Waiting for tables");
1770
boost::mutex::scoped_lock lock(LOCK_open);
1771
while (!session->killed)
1773
session->some_tables_deleted= false;
1774
session->close_old_data_files(false, dropping_tables != 0);
1775
if (!table_is_used(session->open_tables, 1))
1777
COND_refresh.wait(lock);
1779
if (session->killed)
1780
result= true; // aborted
1783
/* Now we can open all tables without any interference */
1784
session->set_proc_info("Reopen tables");
1785
session->version= refresh_version;
1786
result= session->reopen_tables(false, false);
1789
session->set_proc_info(0);
1462
Table *drop_locked_tables(Session *session, const drizzled::identifier::Table &identifier)
1819
Table *drop_locked_tables(Session *session, const drizzled::TableIdentifier &identifier)
1464
1821
Table *table,*next,**prev, *found= 0;
1465
1822
prev= &session->open_tables;
1468
Note that we need to hold table::Cache::singleton().mutex() while changing the
1825
Note that we need to hold LOCK_open while changing the
1469
1826
open_tables list. Another thread may work on it.
1470
(See: table::Cache::singleton().removeTable(), wait_completed_table())
1827
(See: remove_table_from_cache(), mysql_wait_completed_table())
1471
1828
Closing a MERGE child before the parent would be fatal if the
1472
1829
other thread tries to abort the MERGE lock in between.
1523
1879
if (table->getShare()->getCacheKey() == identifier.getKey())
1525
1881
/* If MERGE child, forward lock handling to parent. */
1526
session->abortLock(table);
1882
mysql_lock_abort(session, table);
1889
Load a table definition from cursor and open unireg table
1893
session Thread handle
1894
entry Store open table definition here
1895
table_list TableList with db, table_name
1897
cache_key Key for share_cache
1898
cache_key_length length of cache_key
1901
Extra argument for open is taken from session->open_options
1902
One must have a lock on LOCK_open when calling this function
1909
static int open_unireg_entry(Session *session,
1912
TableIdentifier &identifier)
1916
uint32_t discover_retry_count= 0;
1918
safe_mutex_assert_owner(LOCK_open.native_handle());
1920
if (not (share= TableShare::getShareCreate(session,
1925
while ((error= share->open_table_from_share(session,
1928
(uint32_t) (HA_OPEN_KEYFILE |
1932
session->open_options, *entry)))
1934
if (error == 7) // Table def changed
1936
share->resetVersion(); // Mark share as old
1937
if (discover_retry_count++) // Retry once
1942
Here we should wait until all threads has released the table.
1943
For now we do one retry. This may cause a deadlock if there
1944
is other threads waiting for other tables used by this thread.
1946
Proper fix would be to if the second retry failed:
1947
- Mark that table def changed
1948
- Return from open table
1949
- Close all tables used by this thread
1950
- Start waiting that the share is released
1951
- Retry by opening all tables again
1956
To avoid deadlock, only wait for release if no one else is
1959
if (share->getTableCount() != 1)
1961
/* Free share and wait until it's released by all threads */
1962
TableShare::release(share);
1964
if (!session->killed)
1966
drizzle_reset_errors(session, 1); // Clear warnings
1967
session->clear_error(); // Clear error message
1979
TableShare::release(share);
1535
1986
Open all tables in list
1802
Table *Open_tables_state::open_temporary_table(const identifier::Table &identifier,
2254
Table *Session::open_temporary_table(TableIdentifier &identifier,
1805
2259
assert(identifier.isTmp());
1808
table::Temporary *new_tmp_table= new table::Temporary(identifier.getType(),
1810
const_cast<char *>(const_cast<identifier::Table&>(identifier).getPath().c_str()),
1811
static_cast<uint32_t>(identifier.getPath().length()));
2260
share= new TableShare(identifier.getType(),
2262
const_cast<char *>(identifier.getPath().c_str()), static_cast<uint32_t>(identifier.getPath().length()));
2265
Table *new_tmp_table= new Table;
1812
2266
if (not new_tmp_table)
1816
2270
First open the share, and then open the table from the share we just opened.
1818
if (new_tmp_table->getMutableShare()->open_table_def(*static_cast<Session *>(this), identifier) ||
1819
new_tmp_table->getMutableShare()->open_table_from_share(static_cast<Session *>(this), identifier, identifier.getTableName().c_str(),
1820
(uint32_t) (HA_OPEN_KEYFILE | HA_OPEN_RNDFILE |
2272
if (share->open_table_def(*this, identifier) ||
2273
share->open_table_from_share(this, identifier, identifier.getTableName().c_str(),
2274
(uint32_t) (HA_OPEN_KEYFILE | HA_OPEN_RNDFILE |
1825
2279
/* No need to lock share->mutex as this is not needed for tmp tables */
1826
delete new_tmp_table->getMutableShare();
1827
2281
delete new_tmp_table;
2387
2842
strcat(buff, table_name);
2388
2843
table_name=buff;
2390
my_error(ER_UNKNOWN_TABLE, MYF(0), table_name, session->where());
2845
my_error(ER_UNKNOWN_TABLE, MYF(0), table_name, session->where);
2394
2849
if (report_error == REPORT_ALL_ERRORS ||
2395
2850
report_error == REPORT_EXCEPT_NON_UNIQUE)
2396
my_error(ER_BAD_FIELD_ERROR, MYF(0), item->full_name(), session->where());
2851
my_error(ER_BAD_FIELD_ERROR, MYF(0), item->full_name(), session->where);
2398
2853
found= not_found_field;
3888
4339
table= (*ptr)->getTable();
3889
4340
table->auto_increment_field_not_null= false;
3892
4342
while ((field = *ptr++) && ! session->is_error())
3895
4345
table= field->getTable();
3897
4346
if (field == table->next_number_field)
3898
4347
table->auto_increment_field_not_null= true;
3900
4348
if (value->save_in_field(field, 0) < 0)
3903
table->auto_increment_field_not_null= false;
3909
4352
return(session->is_error());
4356
table->auto_increment_field_not_null= false;
3913
4362
bool drizzle_rm_tmp_tables()
3916
4366
assert(drizzle_tmpdir.size());
3917
Session::shared_ptr session= Session::make_shared(plugin::Listen::getNullClient(), catalog::local());
4368
if (!(session= new Session(plugin::Listen::getNullClient())))
3921
session->thread_stack= (char*) session.get();
4370
session->thread_stack= (char*) &session;
3922
4371
session->storeGlobals();
3924
4373
plugin::StorageEngine::removeLostTemporaryTables(*session, drizzle_tmpdir.c_str());
4375
session->lockForDelete();
3932
4384
unireg support functions
3933
4385
*****************************************************************************/
4388
Invalidate any cache entries that are for some DB
4391
remove_db_from_cache()
4392
db Database name. This will be in lower case if
4393
lower_case_table_name is set
4396
We can't use hash_delete when looping hash_elements. We mark them first
4397
and afterwards delete those marked unused.
4400
void remove_db_from_cache(const SchemaIdentifier &schema_identifier)
4402
safe_mutex_assert_owner(LOCK_open.native_handle());
4404
for (TableOpenCache::const_iterator iter= get_open_cache().begin();
4405
iter != get_open_cache().end();
4408
Table *table= (*iter).second;
4410
if (not schema_identifier.getPath().compare(table->getMutableShare()->getSchemaName()))
4412
table->getMutableShare()->resetVersion(); /* Free when thread is ready */
4413
if (not table->in_use)
4414
unused_tables.relink(table);
4418
unused_tables.cullByVersion();
4423
Mark all entries with the table as deleted to force an reopen of the table
4425
The table will be closed (not stored in cache) by the current thread when
4426
close_thread_tables() is called.
4432
0 This thread now have exclusive access to this table and no other thread
4433
can access the table until close_thread_tables() is called.
4434
1 Table is in use by another thread
4437
bool remove_table_from_cache(Session *session, TableIdentifier &identifier, uint32_t flags)
4439
const TableIdentifier::Key &key(identifier.getKey());
4441
bool signalled= false;
4445
result= signalled= false;
4447
TableOpenCacheRange ppp;
4448
ppp= get_open_cache().equal_range(key);
4450
for (TableOpenCache::const_iterator iter= ppp.first;
4451
iter != ppp.second; ++iter)
4453
Table *table= (*iter).second;
4456
table->getMutableShare()->resetVersion(); /* Free when thread is ready */
4457
if (!(in_use=table->in_use))
4459
unused_tables.relink(table);
4461
else if (in_use != session)
4464
Mark that table is going to be deleted from cache. This will
4465
force threads that are in mysql_lock_tables() (but not yet
4466
in thr_multi_lock()) to abort it's locks, close all tables and retry
4468
in_use->some_tables_deleted= true;
4469
if (table->is_name_opened())
4474
Now we must abort all tables locks used by this thread
4475
as the thread may be waiting to get a lock for another table.
4476
Note that we need to hold LOCK_open while going through the
4477
list. So that the other thread cannot change it. The other
4478
thread must also hold LOCK_open whenever changing the
4479
open_tables list. Aborting the MERGE lock after a child was
4480
closed and before the parent is closed would be fatal.
4482
for (Table *session_table= in_use->open_tables;
4484
session_table= session_table->getNext())
4486
/* Do not handle locks of MERGE children. */
4487
if (session_table->db_stat) // If table is open
4488
signalled|= mysql_lock_abort_for_thread(session, session_table);
4492
result= result || (flags & RTFC_OWNED_BY_Session_FLAG);
4495
unused_tables.cullByVersion();
4497
/* Remove table from table definition cache if it's not in use */
4498
TableShare::release(identifier);
4500
if (result && (flags & RTFC_WAIT_OTHER_THREAD_FLAG))
4503
Signal any thread waiting for tables to be freed to
4506
broadcast_refresh();
4507
if (!(flags & RTFC_CHECK_KILLED_FLAG) || !session->killed)
4510
if (likely(signalled))
4512
boost::mutex::scoped_lock scoped(LOCK_open, boost::adopt_lock_t());
4513
COND_refresh.wait(scoped);
4519
It can happen that another thread has opened the
4520
table but has not yet locked any table at all. Since
4521
it can be locked waiting for a table that our thread
4522
has done LOCK Table x WRITE on previously, we need to
4523
ensure that the thread actually hears our signal
4524
before we go to sleep. Thus we wait for a short time
4525
and then we retry another loop in the
4526
remove_table_from_cache routine.
4529
xtime_get(&xt, boost::TIME_UTC);
4531
boost::mutex::scoped_lock scoped(LOCK_open, boost::adopt_lock_t());
4532
COND_refresh.timed_wait(scoped, xt);