/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*- * vim:expandtab:shiftwidth=2:tabstop=2:smarttab: * * Copyright (C) 2008 Sun Microsystems, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #pragma once #include #include namespace drizzled { extern uint64_t g_refresh_version; /** Class that holds information about tables which were opened and locked by the thread. */ class Open_tables_state { public: /** List of regular tables in use by this thread. Contains temporary and base tables that were opened with @see open_tables(). */ Table *open_tables_; /** List of temporary tables used by this thread. Contains user-level temporary tables, created with CREATE TEMPORARY TABLE, and internal temporary tables, created, e.g., to resolve a SELECT, or for an intermediate table used in ALTER. XXX Why are internal temporary tables added to this list? */ Table *temporary_tables; Table *getTemporaryTables() { return temporary_tables; } /** Mark all temporary tables which were used by the current statement or substatement as free for reuse, but only if the query_id can be cleared. @param session thread context @remark For temp tables associated with a open SQL HANDLER the query_id is not reset until the HANDLER is closed. */ void mark_temp_tables_as_free_for_reuse(); void close_temporary_tables(); void close_temporary_table(Table*); void nukeTable(Table*); void close_open_tables(); bool free_cached_table(); /* Work with temporary tables */ Table *find_temporary_table(const identifier::Table &identifier); void dumpTemporaryTableNames(const char *id); int drop_temporary_table(const identifier::Table&); bool rm_temporary_table(plugin::StorageEngine&, const identifier::Table&); bool rm_temporary_table(const identifier::Table &identifier, bool best_effort= false); private: Table *derived_tables; public: Table *getDerivedTables() { return derived_tables; } void setDerivedTables(Table *arg) { derived_tables= arg; } void clearDerivedTables() { derived_tables= NULL; // They should all be invalid by this point } /* During a MySQL session, one can lock tables in two modes: automatic or manual. In automatic mode all necessary tables are locked just before statement execution, and all acquired locks are stored in 'lock' member. Unlocking takes place automatically as well, when the statement ends. Manual mode comes into play when a user issues a 'LOCK TABLES' statement. In this mode the user can only use the locked tables. Trying to use any other tables will give an error. The locked tables are stored in 'locked_tables' member. Manual locking is described in the 'LOCK_TABLES' chapter of the MySQL manual. See also lock_tables() for details. */ DrizzleLock *lock; /* CREATE-SELECT keeps an extra lock for the table being created. This field is used to keep the extra lock available for lower level routines, which would otherwise miss that lock. */ DrizzleLock *extra_lock; uint64_t version; uint32_t current_tablenr; Open_tables_state(Session&, uint64_t version_arg); void doGetTableNames(CachedDirectory&, const identifier::Schema&, std::set&); void doGetTableNames(const identifier::Schema&, std::set&); void doGetTableIdentifiers(CachedDirectory&, const identifier::Schema&, identifier::table::vector&); void doGetTableIdentifiers(const identifier::Schema&, identifier::table::vector&); int doGetTableDefinition(const drizzled::identifier::Table&, message::Table&); bool doDoesTableExist(const drizzled::identifier::Table&); private: Session& session_; }; } /* namespace drizzled */