sql_class.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:47k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* Classes in mysql */
  14. #ifdef USE_PRAGMA_INTERFACE
  15. #pragma interface /* gcc class implementation */
  16. #endif
  17. // TODO: create log.h and move all the log header stuff there
  18. class Query_log_event;
  19. class Load_log_event;
  20. class Slave_log_event;
  21. enum enum_enable_or_disable { LEAVE_AS_IS, ENABLE, DISABLE };
  22. enum enum_ha_read_modes { RFIRST, RNEXT, RPREV, RLAST, RKEY, RNEXT_SAME };
  23. enum enum_duplicates { DUP_ERROR, DUP_REPLACE, DUP_UPDATE };
  24. enum enum_log_type { LOG_CLOSED, LOG_TO_BE_OPENED, LOG_NORMAL, LOG_NEW, LOG_BIN};
  25. enum enum_delay_key_write { DELAY_KEY_WRITE_NONE, DELAY_KEY_WRITE_ON,
  26.     DELAY_KEY_WRITE_ALL };
  27. enum enum_check_fields { CHECK_FIELD_IGNORE, CHECK_FIELD_WARN,
  28.  CHECK_FIELD_ERROR_FOR_NULL };
  29. extern char internal_table_name[2];
  30. /* log info errors */
  31. #define LOG_INFO_EOF -1
  32. #define LOG_INFO_IO  -2
  33. #define LOG_INFO_INVALID -3
  34. #define LOG_INFO_SEEK -4
  35. #define LOG_INFO_MEM -6
  36. #define LOG_INFO_FATAL -7
  37. #define LOG_INFO_IN_USE -8
  38. /* bitmap to SQL_LOG::close() */
  39. #define LOG_CLOSE_INDEX 1
  40. #define LOG_CLOSE_TO_BE_OPENED 2
  41. #define LOG_CLOSE_STOP_EVENT 4
  42. struct st_relay_log_info;
  43. typedef struct st_log_info
  44. {
  45.   char log_file_name[FN_REFLEN];
  46.   my_off_t index_file_offset, index_file_start_offset;
  47.   my_off_t pos;
  48.   bool fatal; // if the purge happens to give us a negative offset
  49.   pthread_mutex_t lock;
  50.   st_log_info():fatal(0) { pthread_mutex_init(&lock, MY_MUTEX_INIT_FAST);}
  51.   ~st_log_info() { pthread_mutex_destroy(&lock);}
  52. } LOG_INFO;
  53. typedef struct st_user_var_events
  54. {
  55.   user_var_entry *user_var_event;
  56.   char *value;
  57.   ulong length;
  58.   Item_result type;
  59.   uint charset_number;
  60. } BINLOG_USER_VAR_EVENT;
  61. class Log_event;
  62. class MYSQL_LOG
  63.  {
  64.  private:
  65.   /* LOCK_log and LOCK_index are inited by init_pthread_objects() */
  66.   pthread_mutex_t LOCK_log, LOCK_index;
  67.   pthread_cond_t update_cond;
  68.   ulonglong bytes_written;
  69.   time_t last_time,query_start;
  70.   IO_CACHE log_file;
  71.   IO_CACHE index_file;
  72.   char *name;
  73.   char time_buff[20],db[NAME_LEN+1];
  74.   char log_file_name[FN_REFLEN],index_file_name[FN_REFLEN];
  75.   // current file sequence number for load data infile binary logging
  76.   uint file_id;
  77.   uint open_count; // For replication
  78.   volatile enum_log_type log_type;
  79.   enum cache_type io_cache_type;
  80.   bool write_error, inited;
  81.   bool need_start_event;
  82.   bool no_auto_events; // For relay binlog
  83.   /* 
  84.      The max size before rotation (usable only if log_type == LOG_BIN: binary
  85.      logs and relay logs).
  86.      For a binlog, max_size should be max_binlog_size.
  87.      For a relay log, it should be max_relay_log_size if this is non-zero,
  88.      max_binlog_size otherwise.
  89.      max_size is set in init(), and dynamically changed (when one does SET
  90.      GLOBAL MAX_BINLOG_SIZE|MAX_RELAY_LOG_SIZE) by fix_max_binlog_size and
  91.      fix_max_relay_log_size). 
  92.   */
  93.   ulong max_size;
  94.   friend class Log_event;
  95. public:
  96.   MYSQL_LOG();
  97.   ~MYSQL_LOG();
  98.   void reset_bytes_written()
  99.   {
  100.     bytes_written = 0;
  101.   }
  102.   void harvest_bytes_written(ulonglong* counter)
  103.   {
  104. #ifndef DBUG_OFF
  105.     char buf1[22],buf2[22];
  106. #endif
  107.     DBUG_ENTER("harvest_bytes_written");
  108.     (*counter)+=bytes_written;
  109.     DBUG_PRINT("info",("counter: %s  bytes_written: %s", llstr(*counter,buf1),
  110.        llstr(bytes_written,buf2)));
  111.     bytes_written=0;
  112.     DBUG_VOID_RETURN;
  113.   }
  114.   void set_max_size(ulong max_size_arg);
  115.   void signal_update();
  116.   void wait_for_update(THD* thd, bool master_or_slave);
  117.   void set_need_start_event() { need_start_event = 1; }
  118.   void init(enum_log_type log_type_arg,
  119.     enum cache_type io_cache_type_arg,
  120.     bool no_auto_events_arg, ulong max_size);
  121.   void init_pthread_objects();
  122.   void cleanup();
  123.   bool open(const char *log_name,enum_log_type log_type,
  124.     const char *new_name, const char *index_file_name_arg,
  125.     enum cache_type io_cache_type_arg,
  126.     bool no_auto_events_arg, ulong max_size);
  127.   void new_file(bool need_lock= 1);
  128.   bool write(THD *thd, enum enum_server_command command,
  129.      const char *format,...);
  130.   bool write(THD *thd, const char *query, uint query_length,
  131.      time_t query_start=0);
  132.   bool write(Log_event* event_info); // binary log write
  133.   bool write(THD *thd, IO_CACHE *cache, bool commit_or_rollback);
  134.   /*
  135.     v stands for vector
  136.     invoked as appendv(buf1,len1,buf2,len2,...,bufn,lenn,0)
  137.   */
  138.   bool appendv(const char* buf,uint len,...);
  139.   bool append(Log_event* ev);
  140.   
  141.   int generate_new_name(char *new_name,const char *old_name);
  142.   void make_log_name(char* buf, const char* log_ident);
  143.   bool is_active(const char* log_file_name);
  144.   int update_log_index(LOG_INFO* linfo, bool need_update_threads);
  145.   int purge_logs(const char *to_log, bool included, 
  146.                  bool need_mutex, bool need_update_threads,
  147.                  ulonglong *decrease_log_space);
  148.   int purge_logs_before_date(time_t purge_time);
  149.   int purge_first_log(struct st_relay_log_info* rli, bool included); 
  150.   bool reset_logs(THD* thd);
  151.   void close(uint exiting);
  152.   bool cut_spurious_tail();
  153.   void report_pos_in_innodb();
  154.   // iterating through the log index file
  155.   int find_log_pos(LOG_INFO* linfo, const char* log_name,
  156.    bool need_mutex);
  157.   int find_next_log(LOG_INFO* linfo, bool need_mutex);
  158.   int get_current_log(LOG_INFO* linfo);
  159.   uint next_file_id();
  160.   inline bool is_open() { return log_type != LOG_CLOSED; }
  161.   inline char* get_index_fname() { return index_file_name;}
  162.   inline char* get_log_fname() { return log_file_name; }
  163.   inline pthread_mutex_t* get_log_lock() { return &LOCK_log; }
  164.   inline IO_CACHE* get_log_file() { return &log_file; }
  165.   inline void lock_index() { pthread_mutex_lock(&LOCK_index);}
  166.   inline void unlock_index() { pthread_mutex_unlock(&LOCK_index);}
  167.   inline IO_CACHE *get_index_file() { return &index_file;}
  168.   inline uint32 get_open_count() { return open_count; }
  169. };
  170. /* character conversion tables */
  171. typedef struct st_copy_info {
  172.   ha_rows records;
  173.   ha_rows deleted;
  174.   ha_rows updated;
  175.   ha_rows copied;
  176.   ha_rows error_count;
  177.   enum enum_duplicates handle_duplicates;
  178.   int escape_char, last_errno;
  179.   bool ignore;
  180.   /* for INSERT ... UPDATE */
  181.   List<Item> *update_fields;
  182.   List<Item> *update_values;
  183. } COPY_INFO;
  184. class key_part_spec :public Sql_alloc {
  185. public:
  186.   const char *field_name;
  187.   uint length;
  188.   key_part_spec(const char *name,uint len=0) :field_name(name), length(len) {}
  189.   bool operator==(const key_part_spec& other) const;
  190. };
  191. class Alter_drop :public Sql_alloc {
  192. public:
  193.   enum drop_type {KEY, COLUMN };
  194.   const char *name;
  195.   enum drop_type type;
  196.   Alter_drop(enum drop_type par_type,const char *par_name)
  197.     :name(par_name), type(par_type) {}
  198. };
  199. class Alter_column :public Sql_alloc {
  200. public:
  201.   const char *name;
  202.   Item *def;
  203.   Alter_column(const char *par_name,Item *literal)
  204.     :name(par_name), def(literal) {}
  205. };
  206. class Key :public Sql_alloc {
  207. public:
  208.   enum Keytype { PRIMARY, UNIQUE, MULTIPLE, FULLTEXT, SPATIAL, FOREIGN_KEY};
  209.   enum Keytype type;
  210.   enum ha_key_alg algorithm;
  211.   List<key_part_spec> columns;
  212.   const char *name;
  213.   bool generated;
  214.   Key(enum Keytype type_par, const char *name_arg, enum ha_key_alg alg_par,
  215.       bool generated_arg, List<key_part_spec> &cols)
  216.     :type(type_par), algorithm(alg_par), columns(cols), name(name_arg),
  217.     generated(generated_arg)
  218.   {}
  219.   ~Key() {}
  220.   /* Equality comparison of keys (ignoring name) */
  221.   friend bool foreign_key_prefix(Key *a, Key *b);
  222. };
  223. class Table_ident;
  224. class foreign_key: public Key {
  225. public:
  226.   enum fk_match_opt { FK_MATCH_UNDEF, FK_MATCH_FULL,
  227.       FK_MATCH_PARTIAL, FK_MATCH_SIMPLE};
  228.   enum fk_option { FK_OPTION_UNDEF, FK_OPTION_RESTRICT, FK_OPTION_CASCADE,
  229.    FK_OPTION_SET_NULL, FK_OPTION_NO_ACTION, FK_OPTION_DEFAULT};
  230.   Table_ident *ref_table;
  231.   List<key_part_spec> ref_columns;
  232.   uint delete_opt, update_opt, match_opt;
  233.   foreign_key(const char *name_arg, List<key_part_spec> &cols,
  234.       Table_ident *table,   List<key_part_spec> &ref_cols,
  235.       uint delete_opt_arg, uint update_opt_arg, uint match_opt_arg)
  236.     :Key(FOREIGN_KEY, name_arg, HA_KEY_ALG_UNDEF, 0, cols),
  237.     ref_table(table), ref_columns(cols),
  238.     delete_opt(delete_opt_arg), update_opt(update_opt_arg),
  239.     match_opt(match_opt_arg)
  240.   {}
  241. };
  242. typedef struct st_mysql_lock
  243. {
  244.   TABLE **table;
  245.   uint table_count,lock_count;
  246.   THR_LOCK_DATA **locks;
  247. } MYSQL_LOCK;
  248. class LEX_COLUMN : public Sql_alloc
  249. {
  250. public:
  251.   String column;
  252.   uint rights;
  253.   LEX_COLUMN (const String& x,const  uint& y ): column (x),rights (y) {}
  254. };
  255. #include "sql_lex.h" /* Must be here */
  256. /* Needed to be able to have an I_List of char* strings in mysqld.cc. */
  257. class i_string: public ilink
  258. {
  259. public:
  260.   char* ptr;
  261.   i_string():ptr(0) { }
  262.   i_string(char* s) : ptr(s) {}
  263. };
  264. /* needed for linked list of two strings for replicate-rewrite-db */
  265. class i_string_pair: public ilink
  266. {
  267. public:
  268.   char* key;
  269.   char* val;
  270.   i_string_pair():key(0),val(0) { }
  271.   i_string_pair(char* key_arg, char* val_arg) : key(key_arg),val(val_arg) {}
  272. };
  273. class MYSQL_ERROR: public Sql_alloc
  274. {
  275. public:
  276.   enum enum_warning_level
  277.   { WARN_LEVEL_NOTE, WARN_LEVEL_WARN, WARN_LEVEL_ERROR, WARN_LEVEL_END};
  278.   uint code;
  279.   enum_warning_level level;
  280.   char *msg;
  281.   
  282.   MYSQL_ERROR(THD *thd, uint code_arg, enum_warning_level level_arg,
  283.       const char *msg_arg)
  284.     :code(code_arg), level(level_arg)
  285.   {
  286.     if (msg_arg)
  287.       set_msg(thd, msg_arg);
  288.   }
  289.   void set_msg(THD *thd, const char *msg_arg);
  290. };
  291. class delayed_insert;
  292. class select_result;
  293. #define THD_SENTRY_MAGIC 0xfeedd1ff
  294. #define THD_SENTRY_GONE  0xdeadbeef
  295. #define THD_CHECK_SENTRY(thd) DBUG_ASSERT(thd->dbug_sentry == THD_SENTRY_MAGIC)
  296. struct system_variables
  297. {
  298.   ulonglong myisam_max_extra_sort_file_size;
  299.   ulonglong myisam_max_sort_file_size;
  300.   ha_rows select_limit;
  301.   ha_rows max_join_size;
  302.   ulong bulk_insert_buff_size;
  303.   ulong join_buff_size;
  304.   ulong long_query_time;
  305.   ulong max_allowed_packet;
  306.   ulong max_error_count;
  307.   ulong max_heap_table_size;
  308.   ulong max_length_for_sort_data;
  309.   ulong max_sort_length;
  310.   ulong max_tmp_tables;
  311.   ulong max_insert_delayed_threads;
  312.   ulong myisam_repair_threads;
  313.   ulong myisam_sort_buff_size;
  314.   ulong myisam_stats_method;
  315.   ulong net_buffer_length;
  316.   ulong net_interactive_timeout;
  317.   ulong net_read_timeout;
  318.   ulong net_retry_count;
  319.   ulong net_wait_timeout;
  320.   ulong net_write_timeout;
  321.   ulong preload_buff_size;
  322.   ulong query_cache_type;
  323.   ulong read_buff_size;
  324.   ulong read_rnd_buff_size;
  325.   ulong sortbuff_size;
  326.   ulong table_type;
  327.   ulong tmp_table_size;
  328.   ulong tx_isolation;
  329.   /* Determines which non-standard SQL behaviour should be enabled */
  330.   ulong sql_mode;
  331.   ulong default_week_format;
  332.   ulong max_seeks_for_key;
  333.   ulong range_alloc_block_size;
  334.   ulong query_alloc_block_size;
  335.   ulong query_prealloc_size;
  336.   ulong trans_alloc_block_size;
  337.   ulong trans_prealloc_size;
  338.   ulong log_warnings;
  339.   ulong group_concat_max_len;
  340.   /*
  341.     In slave thread we need to know in behalf of which
  342.     thread the query is being run to replicate temp tables properly
  343.   */
  344.   ulong pseudo_thread_id;
  345.   my_bool low_priority_updates;
  346.   my_bool new_mode;
  347.   my_bool query_cache_wlock_invalidate;
  348. #ifdef HAVE_REPLICATION
  349.   ulong sync_replication;
  350.   ulong sync_replication_slave_id;
  351.   ulong sync_replication_timeout;
  352. #endif /* HAVE_REPLICATION */
  353. #ifdef HAVE_INNOBASE_DB
  354.   my_bool innodb_table_locks;
  355. #endif /* HAVE_INNOBASE_DB */
  356. #ifdef HAVE_NDBCLUSTER_DB
  357.   ulong ndb_autoincrement_prefetch_sz;
  358.   my_bool ndb_force_send;
  359.   my_bool ndb_use_exact_count;
  360.   my_bool ndb_use_transactions;
  361. #endif /* HAVE_NDBCLUSTER_DB */
  362.   my_bool old_passwords;
  363.   
  364.   /* Only charset part of these variables is sensible */
  365.   CHARSET_INFO  *character_set_client;
  366.   CHARSET_INFO  *character_set_results;
  367.   
  368.   /* Both charset and collation parts of these variables are important */
  369.   CHARSET_INFO *collation_server;
  370.   CHARSET_INFO *collation_database;
  371.   CHARSET_INFO  *collation_connection;
  372.   Time_zone *time_zone;
  373.   /* DATE, DATETIME and TIME formats */
  374.   DATE_TIME_FORMAT *date_format;
  375.   DATE_TIME_FORMAT *datetime_format;
  376.   DATE_TIME_FORMAT *time_format;
  377. };
  378. void free_tmp_table(THD *thd, TABLE *entry);
  379. class Item_arena
  380. {
  381. public:
  382.   /*
  383.     List of items created in the parser for this query. Every item puts
  384.     itself to the list on creation (see Item::Item() for details))
  385.   */
  386.   Item *free_list;
  387.   MEM_ROOT main_mem_root;
  388.   MEM_ROOT *mem_root;                   // Pointer to current memroot
  389.   enum enum_state 
  390.   {
  391.     INITIALIZED= 0, PREPARED= 1, EXECUTED= 3, CONVENTIONAL_EXECUTION= 2, 
  392.     ERROR= -1
  393.   };
  394.   
  395.   enum_state state;
  396.   /* We build without RTTI, so dynamic_cast can't be used. */
  397.   enum Type
  398.   {
  399.     STATEMENT, PREPARED_STATEMENT, STORED_PROCEDURE
  400.   };
  401.   /*
  402.     This constructor is used only when Item_arena is created as
  403.     backup storage for another instance of Item_arena.
  404.   */
  405.   Item_arena() {};
  406.   /*
  407.     Create arena for already constructed THD using its variables as
  408.     parameters for memory root initialization.
  409.   */
  410.   Item_arena(THD *thd);
  411.   /*
  412.     Create arena and optionally init memory root with minimal values.
  413.     Particularly used if Item_arena is part of Statement.
  414.   */
  415.   Item_arena(bool init_mem_root);
  416.   virtual Type type() const;
  417.   virtual ~Item_arena() {};
  418.   inline bool is_stmt_prepare() const { return (int)state < (int)PREPARED; }
  419.   inline bool is_first_stmt_execute() const { return state == PREPARED; }
  420.   inline bool is_stmt_execute() const
  421.   { return state == PREPARED || state == EXECUTED; }
  422.   inline bool is_conventional_execution() const
  423.   { return state == CONVENTIONAL_EXECUTION; }
  424.   inline gptr alloc(unsigned int size) { return alloc_root(mem_root,size); }
  425.   inline gptr calloc(unsigned int size)
  426.   {
  427.     gptr ptr;
  428.     if ((ptr=alloc_root(mem_root,size)))
  429.       bzero((char*) ptr,size);
  430.     return ptr;
  431.   }
  432.   inline char *strdup(const char *str)
  433.   { return strdup_root(mem_root,str); }
  434.   inline char *strmake(const char *str, uint size)
  435.   { return strmake_root(mem_root,str,size); }
  436.   inline char *memdup(const char *str, uint size)
  437.   { return memdup_root(mem_root,str,size); }
  438.   inline char *memdup_w_gap(const char *str, uint size, uint gap)
  439.   {
  440.     gptr ptr;
  441.     if ((ptr=alloc_root(mem_root,size+gap)))
  442.       memcpy(ptr,str,size);
  443.     return ptr;
  444.   }
  445.   void set_n_backup_item_arena(Item_arena *set, Item_arena *backup);
  446.   void restore_backup_item_arena(Item_arena *set, Item_arena *backup);
  447.   void set_item_arena(Item_arena *set);
  448. };
  449. /*
  450.   State of a single command executed against this connection.
  451.   One connection can contain a lot of simultaneously running statements,
  452.   some of which could be:
  453.    - prepared, that is, contain placeholders,
  454.    - opened as cursors. We maintain 1 to 1 relationship between
  455.      statement and cursor - if user wants to create another cursor for his
  456.      query, we create another statement for it. 
  457.   To perform some action with statement we reset THD part to the state  of
  458.   that statement, do the action, and then save back modified state from THD
  459.   to the statement. It will be changed in near future, and Statement will
  460.   be used explicitly.
  461. */
  462. class Statement: public Item_arena
  463. {
  464.   Statement(const Statement &rhs);              /* not implemented: */
  465.   Statement &operator=(const Statement &rhs);   /* non-copyable */
  466. public:
  467.   /* FIXME: must be private */
  468.   LEX     main_lex;
  469.   /*
  470.     Uniquely identifies each statement object in thread scope; change during
  471.     statement lifetime. FIXME: must be const
  472.   */
  473.    ulong id;
  474.   /*
  475.     - if set_query_id=1, we set field->query_id for all fields. In that case 
  476.     field list can not contain duplicates.
  477.   */
  478.   bool set_query_id;
  479.   /*
  480.     This variable is used in post-parse stage to declare that sum-functions,
  481.     or functions which have sense only if GROUP BY is present, are allowed.
  482.     For example in queries
  483.     SELECT MIN(i) FROM foo
  484.     SELECT GROUP_CONCAT(a, b, MIN(i)) FROM ... GROUP BY ...
  485.     MIN(i) have no sense.
  486.     Though it's grammar-related issue, it's hard to catch it out during the
  487.     parse stage because GROUP BY clause goes in the end of query. This
  488.     variable is mainly used in setup_fields/fix_fields.
  489.     See item_sum.cc for details.
  490.   */
  491.   bool allow_sum_func;
  492.   LEX_STRING name; /* name for named prepared statements */
  493.   LEX *lex;                                     // parse tree descriptor
  494.   /*
  495.     Points to the query associated with this statement. It's const, but
  496.     we need to declare it char * because all table handlers are written
  497.     in C and need to point to it.
  498.     Note that (A) if we set query = NULL, we must at the same time set
  499.     query_length = 0, and protect the whole operation with the
  500.     LOCK_thread_count mutex. And (B) we are ONLY allowed to set query to a
  501.     non-NULL value if its previous value is NULL. We do not need to protect
  502.     operation (B) with any mutex. To avoid crashes in races, if we do not
  503.     know that thd->query cannot change at the moment, one should print
  504.     thd->query like this:
  505.       (1) reserve the LOCK_thread_count mutex;
  506.       (2) check if thd->query is NULL;
  507.       (3) if not NULL, then print at most thd->query_length characters from
  508.       it. We will see the query_length field as either 0, or the right value
  509.       for it.
  510.     Assuming that the write and read of an n-bit memory field in an n-bit
  511.     computer is atomic, we can avoid races in the above way. 
  512.     This printing is needed at least in SHOW PROCESSLIST and SHOW INNODB
  513.     STATUS.
  514.   */
  515.   char *query;
  516.   uint32 query_length;                          // current query length
  517. public:
  518.   /*
  519.     This constructor is called when statement is a subobject of THD:
  520.     some variables are initialized in THD::init due to locking problems
  521.   */
  522.   Statement();
  523.   Statement(THD *thd);
  524.   virtual ~Statement();
  525.   /* Assign execution context (note: not all members) of given stmt to self */
  526.   void set_statement(Statement *stmt);
  527.   void set_n_backup_statement(Statement *stmt, Statement *backup);
  528.   void restore_backup_statement(Statement *stmt, Statement *backup);
  529.   /* return class type */
  530.   virtual Type type() const;
  531. };
  532. /*
  533.   Container for all statements created/used in a connection.
  534.   Statements in Statement_map have unique Statement::id (guaranteed by id
  535.   assignment in Statement::Statement)
  536.   Non-empty statement names are unique too: attempt to insert a new statement
  537.   with duplicate name causes older statement to be deleted
  538.   Statements are auto-deleted when they are removed from the map and when the
  539.   map is deleted.
  540. */
  541. class Statement_map
  542. {
  543. public:
  544.   Statement_map();
  545.   int insert(Statement *statement);
  546.   Statement *find_by_name(LEX_STRING *name)
  547.   {
  548.     Statement *stmt;
  549.     stmt= (Statement*)hash_search(&names_hash, (byte*)name->str,
  550.                                   name->length);
  551.     return stmt;
  552.   }
  553.   Statement *find(ulong id)
  554.   {
  555.     if (last_found_statement == 0 || id != last_found_statement->id)
  556.     {
  557.       Statement *stmt;
  558.       stmt= (Statement *) hash_search(&st_hash, (byte *) &id, sizeof(id));
  559.       if (stmt && stmt->name.str)
  560.         return NULL;
  561.       last_found_statement= stmt;
  562.     }
  563.     return last_found_statement;
  564.   }
  565.   void erase(Statement *statement)
  566.   {
  567.     if (statement == last_found_statement)
  568.       last_found_statement= 0;
  569.     if (statement->name.str)
  570.     {
  571.       hash_delete(&names_hash, (byte *) statement);  
  572.     }
  573.     hash_delete(&st_hash, (byte *) statement);
  574.   }
  575.   /* Erase all statements (calls Statement destructor) */
  576.   void reset()
  577.   {
  578.     my_hash_reset(&names_hash);
  579.     my_hash_reset(&st_hash);
  580.     last_found_statement= 0;
  581.   }
  582.   ~Statement_map()
  583.   {
  584.     hash_free(&names_hash);
  585.     hash_free(&st_hash);
  586.   }
  587. private:
  588.   HASH st_hash;
  589.   HASH names_hash;
  590.   Statement *last_found_statement;
  591. };
  592. /*
  593.   A registry for item tree transformations performed during
  594.   query optimization. We register only those changes which require
  595.   a rollback to re-execute a prepared statement or stored procedure
  596.   yet another time.
  597. */
  598. struct Item_change_record;
  599. typedef I_List<Item_change_record> Item_change_list;
  600. /*
  601.   For each client connection we create a separate thread with THD serving as
  602.   a thread/connection descriptor
  603. */
  604. class THD :public ilink, 
  605.            public Statement
  606. {
  607. public:
  608. #ifdef EMBEDDED_LIBRARY
  609.   struct st_mysql  *mysql;
  610.   struct st_mysql_data *data;
  611.   unsigned long  client_stmt_id;
  612.   unsigned long  client_param_count;
  613.   struct st_mysql_bind *client_params;
  614.   char *extra_data;
  615.   ulong extra_length;
  616.   String query_rest;
  617. #endif
  618.   NET   net; // client connection descriptor
  619.   MEM_ROOT warn_root; // For warnings and errors
  620.   Protocol *protocol; // Current protocol
  621.   Protocol_simple protocol_simple; // Normal protocol
  622.   Protocol_prep protocol_prep; // Binary protocol
  623.   HASH    user_vars; // hash for user variables
  624.   String  packet; // dynamic buffer for network I/O
  625.   String  convert_buffer;               // buffer for charset conversions
  626.   struct  sockaddr_in remote; // client socket address
  627.   struct  rand_struct rand; // used for authentication
  628.   struct  system_variables variables; // Changeable local variables
  629.   pthread_mutex_t LOCK_delete; // Locked before thd is deleted
  630.   /* all prepared statements and cursors of this connection */
  631.   Statement_map stmt_map; 
  632.   /*
  633.     keeps THD state while it is used for active statement
  634.     Note: we perform special cleanup for it in THD destructor.
  635.   */
  636.   Statement stmt_backup;
  637.   /*
  638.     A pointer to the stack frame of handle_one_connection(),
  639.     which is called first in the thread for handling a client
  640.   */
  641.   char   *thread_stack;
  642.   /*
  643.     host - host of the client
  644.     user - user of the client, set to NULL until the user has been read from
  645.      the connection
  646.     priv_user - The user privilege we are using. May be '' for anonymous user.
  647.     db - currently selected database
  648.     ip - client IP
  649.    */
  650.   char   *host,*user,*priv_user,*db,*ip;
  651.   char   priv_host[MAX_HOSTNAME];
  652.   /* remote (peer) port */
  653.   uint16 peer_port;
  654.   /*
  655.     Points to info-string that we show in SHOW PROCESSLIST
  656.     You are supposed to update thd->proc_info only if you have coded
  657.     a time-consuming piece that MySQL can get stuck in for a long time.
  658.   */
  659.   const char *proc_info;
  660.   /* points to host if host is available, otherwise points to ip */
  661.   const char *host_or_ip;
  662.   ulong client_capabilities; /* What the client supports */
  663.   ulong max_client_packet_length;
  664.   ulong master_access; /* Global privileges from mysql.user */
  665.   ulong db_access; /* Privileges for current db */
  666.   /*
  667.     open_tables - list of regular tables in use by this thread
  668.     temporary_tables - list of temp tables in use by this thread
  669.     handler_tables - list of tables that were opened with HANDLER OPEN
  670.      and are still in use by this thread
  671.   */
  672.   TABLE   *open_tables,*temporary_tables, *handler_tables, *derived_tables;
  673.   /*
  674.     During a MySQL session, one can lock tables in two modes: automatic
  675.     or manual. In automatic mode all necessary tables are locked just before
  676.     statement execution, and all acquired locks are stored in 'lock'
  677.     member. Unlocking takes place automatically as well, when the
  678.     statement ends.
  679.     Manual mode comes into play when a user issues a 'LOCK TABLES'
  680.     statement. In this mode the user can only use the locked tables.
  681.     Trying to use any other tables will give an error. The locked tables are
  682.     stored in 'locked_tables' member.  Manual locking is described in
  683.     the 'LOCK_TABLES' chapter of the MySQL manual.
  684.     See also lock_tables() for details.
  685.   */
  686.   MYSQL_LOCK *lock; /* Current locks */
  687.   MYSQL_LOCK *locked_tables; /* Tables locked with LOCK */
  688.   HASH handler_tables_hash;
  689.   /*
  690.     One thread can hold up to one named user-level lock. This variable
  691.     points to a lock object if the lock is present. See item_func.cc and
  692.     chapter 'Miscellaneous functions', for functions GET_LOCK, RELEASE_LOCK. 
  693.   */
  694.   User_level_lock *ull;
  695. #ifndef DBUG_OFF
  696.   uint dbug_sentry; // watch out for memory corruption
  697. #endif
  698.   struct st_my_thread_var *mysys_var;
  699.   /*
  700.     Type of current query: COM_PREPARE, COM_QUERY, etc. Set from 
  701.     first byte of the packet in do_command()
  702.   */
  703.   enum enum_server_command command;
  704.   uint32     server_id;
  705.   uint32     file_id; // for LOAD DATA INFILE
  706.   /*
  707.     Used in error messages to tell user in what part of MySQL we found an
  708.     error. E. g. when where= "having clause", if fix_fields() fails, user
  709.     will know that the error was in having clause.
  710.   */
  711.   const char *where;
  712.   time_t     start_time,time_after_lock,user_time;
  713.   time_t     connect_time,thr_create_time; // track down slow pthread_create
  714.   thr_lock_type update_lock_default;
  715.   delayed_insert *di;
  716.   my_bool    tablespace_op; /* This is TRUE in DISCARD/IMPORT TABLESPACE */
  717.   struct st_transactions {
  718.     IO_CACHE trans_log;                 // Inited ONLY if binlog is open !
  719.     THD_TRANS all; // Trans since BEGIN WORK
  720.     THD_TRANS stmt; // Trans for current statement
  721.     uint bdb_lock_count;
  722. #ifdef HAVE_NDBCLUSTER_DB
  723.     void* thd_ndb;
  724. #endif
  725.     bool on;
  726.     /*
  727.        Tables changed in transaction (that must be invalidated in query cache).
  728.        List contain only transactional tables, that not invalidated in query
  729.        cache (instead of full list of changed in transaction tables).
  730.     */
  731.     CHANGED_TABLE_LIST* changed_tables;
  732.     MEM_ROOT mem_root; // Transaction-life memory allocation pool
  733.     void cleanup()
  734.     {
  735.       changed_tables = 0;
  736.       free_root(&mem_root,MYF(MY_KEEP_PREALLOC));
  737.     }
  738.   } transaction;
  739.   Field      *dupp_field;
  740. #ifndef __WIN__
  741.   sigset_t signals,block_signals;
  742. #endif
  743. #ifdef SIGNAL_WITH_VIO_CLOSE
  744.   Vio* active_vio;
  745. #endif
  746.   /*
  747.     This is to track items changed during execution of a prepared
  748.     statement/stored procedure. It's created by
  749.     register_item_tree_change() in memory root of THD, and freed in
  750.     rollback_item_tree_changes(). For conventional execution it's always 0.
  751.   */
  752.   Item_change_list change_list;
  753.   /*
  754.     Current prepared Item_arena if there one, or 0
  755.   */
  756.   Item_arena *current_arena;
  757.   /*
  758.     next_insert_id is set on SET INSERT_ID= #. This is used as the next
  759.     generated auto_increment value in handler.cc
  760.   */
  761.   ulonglong  next_insert_id;
  762.   /*
  763.     The insert_id used for the last statement or set by SET LAST_INSERT_ID=#
  764.     or SELECT LAST_INSERT_ID(#).  Used for binary log and returned by
  765.     LAST_INSERT_ID()
  766.   */
  767.   ulonglong  last_insert_id;
  768.   /*
  769.     Set to the first value that LAST_INSERT_ID() returned for the last
  770.     statement.  When this is set, last_insert_id_used is set to true.
  771.   */
  772.   ulonglong  current_insert_id;
  773.   ulonglong  limit_found_rows;
  774.   ha_rows    cuted_fields,
  775.              sent_row_count, examined_row_count;
  776.   table_map  used_tables;
  777.   USER_CONN *user_connect;
  778.   CHARSET_INFO *db_charset;
  779.   List<TABLE> temporary_tables_should_be_free; // list of temporary tables
  780.   /*
  781.     FIXME: this, and some other variables like 'count_cuted_fields'
  782.     maybe should be statement/cursor local, that is, moved to Statement
  783.     class. With current implementation warnings produced in each prepared
  784.     statement/cursor settle here.
  785.   */
  786.   List      <MYSQL_ERROR> warn_list;
  787.   uint      warn_count[(uint) MYSQL_ERROR::WARN_LEVEL_END];
  788.   uint      total_warn_count;
  789.   /*
  790.     Id of current query. Statement can be reused to execute several queries
  791.     query_id is global in context of the whole MySQL server.
  792.     ID is automatically generated from mutex-protected counter.
  793.     It's used in handler code for various purposes: to check which columns
  794.     from table are necessary for this select, to check if it's necessary to
  795.     update auto-updatable fields (like auto_increment and timestamp).
  796.   */
  797.   ulong      query_id;
  798.   ulong      warn_id, version, options, thread_id, col_access;
  799.   /* Statement id is thread-wide. This counter is used to generate ids */
  800.   ulong      statement_id_counter;
  801.   ulong      rand_saved_seed1, rand_saved_seed2;
  802.   ulong      row_count;  // Row counter, mainly for errors and warnings
  803.   long      dbug_thread_id;
  804.   pthread_t  real_id;
  805.   uint      current_tablenr,tmp_table,global_read_lock;
  806.   uint      server_status,open_options,system_thread;
  807.   uint32     db_length;
  808.   uint       select_number;             //number of select (used for EXPLAIN)
  809.   /* variables.transaction_isolation is reset to this after each commit */
  810.   enum_tx_isolation session_tx_isolation;
  811.   enum_check_fields count_cuted_fields;
  812.   /* for user variables replication*/
  813.   DYNAMIC_ARRAY user_var_events;
  814.   /* scramble - random string sent to client on handshake */
  815.   char      scramble[SCRAMBLE_LENGTH+1];
  816.   bool       slave_thread, one_shot_set;
  817.   bool      locked, some_tables_deleted;
  818.   bool       last_cuted_field;
  819.   bool      no_errors, password, is_fatal_error;
  820.   bool      query_start_used,last_insert_id_used,insert_id_used,rand_used;
  821.   bool      time_zone_used;
  822.   bool      in_lock_tables;
  823.   bool       query_error, bootstrap, cleanup_done;
  824.   bool      tmp_table_used;
  825.   bool      charset_is_system_charset, charset_is_collation_connection;
  826.   bool       enable_slow_log;   /* enable slow log for current statement */
  827.   my_bool    volatile killed;
  828.   /*
  829.     If we do a purge of binary logs, log index info of the threads
  830.     that are currently reading it needs to be adjusted. To do that
  831.     each thread that is using LOG_INFO needs to adjust the pointer to it
  832.   */
  833.   LOG_INFO*  current_linfo;
  834.   NET*       slave_net; // network connection from slave -> m.
  835.   /* Used by the sys_var class to store temporary values */
  836.   union
  837.   {
  838.     my_bool my_bool_value;
  839.     long    long_value;
  840.   } sys_var_tmp;
  841.   THD();
  842.   ~THD();
  843.   void init(void);
  844.   /*
  845.     Initialize memory roots necessary for query processing and (!)
  846.     pre-allocate memory for it. We can't do that in THD constructor because
  847.     there are use cases (acl_init, delayed inserts, watcher threads,
  848.     killing mysqld) where it's vital to not allocate excessive and not used
  849.     memory. Note, that we still don't return error from init_for_queries():
  850.     if preallocation fails, we should notice that at the first call to
  851.     alloc_root. 
  852.   */
  853.   void init_for_queries();
  854.   void change_user(void);
  855.   void cleanup(void);
  856.   bool store_globals();
  857. #ifdef SIGNAL_WITH_VIO_CLOSE
  858.   inline void set_active_vio(Vio* vio)
  859.   {
  860.     pthread_mutex_lock(&LOCK_delete);
  861.     active_vio = vio;
  862.     pthread_mutex_unlock(&LOCK_delete);
  863.   }
  864.   inline void clear_active_vio()
  865.   {
  866.     pthread_mutex_lock(&LOCK_delete);
  867.     active_vio = 0;
  868.     pthread_mutex_unlock(&LOCK_delete);
  869.   }
  870.   void close_active_vio();
  871. #endif  
  872.   void awake(bool prepare_to_die);
  873.   /*
  874.     For enter_cond() / exit_cond() to work the mutex must be got before
  875.     enter_cond() (in 4.1 an assertion will soon ensure this); this mutex is
  876.     then released by exit_cond(). Use must be:
  877.     lock mutex; enter_cond(); your code; exit_cond().
  878.   */
  879.   inline const char* enter_cond(pthread_cond_t *cond, pthread_mutex_t* mutex,
  880.   const char* msg)
  881.   {
  882.     const char* old_msg = proc_info;
  883.     mysys_var->current_mutex = mutex;
  884.     mysys_var->current_cond = cond;
  885.     proc_info = msg;
  886.     return old_msg;
  887.   }
  888.   inline void exit_cond(const char* old_msg)
  889.   {
  890.     /*
  891.       Putting the mutex unlock in exit_cond() ensures that
  892.       mysys_var->current_mutex is always unlocked _before_ mysys_var->mutex is
  893.       locked (if that would not be the case, you'll get a deadlock if someone
  894.       does a THD::awake() on you).
  895.     */
  896.     pthread_mutex_unlock(mysys_var->current_mutex);
  897.     pthread_mutex_lock(&mysys_var->mutex);
  898.     mysys_var->current_mutex = 0;
  899.     mysys_var->current_cond = 0;
  900.     proc_info = old_msg;
  901.     pthread_mutex_unlock(&mysys_var->mutex);
  902.   }
  903.   inline time_t query_start() { query_start_used=1; return start_time; }
  904.   inline void set_time()    { if (user_time) start_time=time_after_lock=user_time; else time_after_lock=time(&start_time); }
  905.   inline void end_time()    { time(&start_time); }
  906.   inline void set_time(time_t t) { time_after_lock=start_time=user_time=t; }
  907.   inline void lock_time()   { time(&time_after_lock); }
  908.   inline void insert_id(ulonglong id_arg)
  909.   {
  910.     last_insert_id= id_arg;
  911.     insert_id_used=1;
  912.   }
  913.   inline ulonglong insert_id(void)
  914.   {
  915.     if (!last_insert_id_used)
  916.     {      
  917.       last_insert_id_used=1;
  918.       current_insert_id=last_insert_id;
  919.     }
  920.     return last_insert_id;
  921.   }
  922.   inline ulonglong found_rows(void)
  923.   {
  924.     return limit_found_rows;
  925.   }                                                                         
  926.   inline bool active_transaction()
  927.   {
  928. #ifdef USING_TRANSACTIONS    
  929.     return (transaction.all.bdb_tid != 0 ||
  930.     transaction.all.innodb_active_trans != 0 ||
  931.     transaction.all.ndb_tid != 0);
  932. #else
  933.     return 0;
  934. #endif
  935.   }
  936.   inline gptr trans_alloc(unsigned int size) 
  937.   { 
  938.     return alloc_root(&transaction.mem_root,size);
  939.   }
  940.   bool convert_string(LEX_STRING *to, CHARSET_INFO *to_cs,
  941.       const char *from, uint from_length,
  942.       CHARSET_INFO *from_cs);
  943.   bool convert_string(String *s, CHARSET_INFO *from_cs, CHARSET_INFO *to_cs);
  944.   void add_changed_table(TABLE *table);
  945.   void add_changed_table(const char *key, long key_length);
  946.   CHANGED_TABLE_LIST * changed_table_dup(const char *key, long key_length);
  947.   int send_explain_fields(select_result *result);
  948. #ifndef EMBEDDED_LIBRARY
  949.   inline void clear_error()
  950.   {
  951.     net.last_error[0]= 0;
  952.     net.last_errno= 0;
  953.     net.report_error= 0;
  954.   }
  955.   inline bool vio_ok() const { return net.vio != 0; }
  956. #else
  957.   void clear_error();
  958.   inline bool vio_ok() const { return true; }
  959. #endif
  960.   inline void fatal_error()
  961.   {
  962.     is_fatal_error= 1;
  963.     net.report_error= 1; 
  964.     DBUG_PRINT("error",("Fatal error set"));
  965.   }
  966.   inline CHARSET_INFO *charset() { return variables.character_set_client; }
  967.   void update_charset();
  968.   inline Item_arena *change_arena_if_needed(Item_arena *backup)
  969.   {
  970.     /*
  971.       use new arena if we are in a prepared statements and we have not
  972.       already changed to use this arena.
  973.     */
  974.     if (current_arena->is_stmt_prepare() &&
  975.         mem_root != &current_arena->main_mem_root)
  976.     {
  977.       set_n_backup_item_arena(current_arena, backup);
  978.       return current_arena;
  979.     }
  980.     return 0;
  981.   }
  982.   void change_item_tree(Item **place, Item *new_value)
  983.   {
  984.     /* TODO: check for OOM condition here */
  985.     if (!current_arena->is_conventional_execution())
  986.       nocheck_register_item_tree_change(place, *place, mem_root);
  987.     *place= new_value;
  988.   }
  989.   void nocheck_register_item_tree_change(Item **place, Item *old_value,
  990.                                          MEM_ROOT *runtime_memroot);
  991.   void rollback_item_tree_changes();
  992.   /*
  993.     Cleanup statement parse state (parse tree, lex) and execution
  994.     state after execution of a non-prepared SQL statement.
  995.   */
  996.   void end_statement();
  997. };
  998. #define tmp_disable_binlog(A)       
  999.   ulong save_options= (A)->options; 
  1000.   (A)->options&= ~OPTION_BIN_LOG;
  1001. #define reenable_binlog(A)          (A)->options= save_options;
  1002. /* Flags for the THD::system_thread (bitmap) variable */
  1003. #define SYSTEM_THREAD_DELAYED_INSERT 1
  1004. #define SYSTEM_THREAD_SLAVE_IO 2
  1005. #define SYSTEM_THREAD_SLAVE_SQL 4
  1006. /*
  1007.   Used to hold information about file and file structure in exchainge 
  1008.   via non-DB file (...INTO OUTFILE..., ...LOAD DATA...)
  1009.   XXX: We never call destructor for objects of this class.
  1010. */
  1011. class sql_exchange :public Sql_alloc
  1012. {
  1013. public:
  1014.   char *file_name;
  1015.   String *field_term,*enclosed,*line_term,*line_start,*escaped;
  1016.   bool opt_enclosed;
  1017.   bool dumpfile;
  1018.   ulong skip_lines;
  1019.   sql_exchange(char *name,bool dumpfile_flag);
  1020. };
  1021. #include "log_event.h"
  1022. /*
  1023.   This is used to get result from a select
  1024. */
  1025. class JOIN;
  1026. void send_error(THD *thd, uint sql_errno=0, const char *err=0);
  1027. class select_result :public Sql_alloc {
  1028. protected:
  1029.   THD *thd;
  1030.   SELECT_LEX_UNIT *unit;
  1031. public:
  1032.   select_result();
  1033.   virtual ~select_result() {};
  1034.   virtual int prepare(List<Item> &list, SELECT_LEX_UNIT *u)
  1035.   {
  1036.     unit= u;
  1037.     return 0;
  1038.   }
  1039.   /*
  1040.     Because of peculiarities of prepared statements protocol
  1041.     we need to know number of columns in the result set (if
  1042.     there is a result set) apart from sending columns metadata.
  1043.   */
  1044.   virtual uint field_count(List<Item> &fields) const
  1045.   { return fields.elements; }
  1046.   virtual bool send_fields(List<Item> &list,uint flag)=0;
  1047.   virtual bool send_data(List<Item> &items)=0;
  1048.   virtual bool initialize_tables (JOIN *join=0) { return 0; }
  1049.   virtual void send_error(uint errcode,const char *err);
  1050.   virtual bool send_eof()=0;
  1051.   virtual void abort() {}
  1052.   /*
  1053.     Cleanup instance of this class for next execution of a prepared
  1054.     statement/stored procedure.
  1055.   */
  1056.   virtual void cleanup();
  1057. };
  1058. /*
  1059.   Base class for select_result descendands which intercept and
  1060.   transform result set rows. As the rows are not sent to the client,
  1061.   sending of result set metadata should be suppressed as well.
  1062. */
  1063. class select_result_interceptor: public select_result
  1064. {
  1065. public:
  1066.   uint field_count(List<Item> &fields) const { return 0; }
  1067.   bool send_fields(List<Item> &fields, uint flag) { return FALSE; }
  1068. };
  1069. class select_send :public select_result {
  1070. public:
  1071.   select_send() {}
  1072.   bool send_fields(List<Item> &list,uint flag);
  1073.   bool send_data(List<Item> &items);
  1074.   bool send_eof();
  1075. };
  1076. class select_to_file :public select_result_interceptor {
  1077. protected:
  1078.   sql_exchange *exchange;
  1079.   File file;
  1080.   IO_CACHE cache;
  1081.   ha_rows row_count;
  1082.   char path[FN_REFLEN];
  1083. public:
  1084.   select_to_file(sql_exchange *ex) :exchange(ex), file(-1),row_count(0L)
  1085.   { path[0]=0; }
  1086.   ~select_to_file();
  1087.   void send_error(uint errcode,const char *err);
  1088.   bool send_eof();
  1089.   void cleanup();
  1090. };
  1091. class select_export :public select_to_file {
  1092.   uint field_term_length;
  1093.   int field_sep_char,escape_char,line_sep_char;
  1094.   bool fixed_row_size;
  1095. public:
  1096.   select_export(sql_exchange *ex) :select_to_file(ex) {}
  1097.   ~select_export();
  1098.   int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
  1099.   bool send_data(List<Item> &items);
  1100. };
  1101. class select_dump :public select_to_file {
  1102. public:
  1103.   select_dump(sql_exchange *ex) :select_to_file(ex) {}
  1104.   int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
  1105.   bool send_data(List<Item> &items);
  1106. };
  1107. class select_insert :public select_result_interceptor {
  1108.  public:
  1109.   TABLE *table;
  1110.   List<Item> *fields;
  1111.   ulonglong last_insert_id;
  1112.   COPY_INFO info;
  1113.   TABLE_LIST *insert_table_list;
  1114.   TABLE_LIST *dup_table_list;
  1115.   select_insert(TABLE *table_par, List<Item> *fields_par,
  1116. enum_duplicates duplic, bool ignore)
  1117.     :table(table_par), fields(fields_par), last_insert_id(0),
  1118.      insert_table_list(0), dup_table_list(0)
  1119.   {
  1120.     bzero((char*) &info,sizeof(info));
  1121.     info.ignore= ignore;
  1122.     info.handle_duplicates=duplic;
  1123.   }
  1124.   select_insert(TABLE *table_par,
  1125. TABLE_LIST *insert_table_list_par,
  1126. TABLE_LIST *dup_table_list_par,
  1127. List<Item> *fields_par,
  1128. List<Item> *update_fields, List<Item> *update_values,
  1129. enum_duplicates duplic, bool ignore)
  1130.     :table(table_par), fields(fields_par), last_insert_id(0),
  1131.      insert_table_list(insert_table_list_par),
  1132.      dup_table_list(dup_table_list_par)
  1133.   {
  1134.     bzero((char*) &info,sizeof(info));
  1135.     info.ignore= ignore;
  1136.     info.handle_duplicates= duplic;
  1137.     info.update_fields= update_fields;
  1138.     info.update_values= update_values;
  1139.   }
  1140.   ~select_insert();
  1141.   int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
  1142.   bool send_data(List<Item> &items);
  1143.   virtual void store_values(List<Item> &values);
  1144.   void send_error(uint errcode,const char *err);
  1145.   bool send_eof();
  1146.   /* not implemented: select_insert is never re-used in prepared statements */
  1147.   void cleanup();
  1148. };
  1149. class select_create: public select_insert {
  1150.   ORDER *group;
  1151.   const char *db;
  1152.   const char *name;
  1153.   List<create_field> *extra_fields;
  1154.   List<Key> *keys;
  1155.   HA_CREATE_INFO *create_info;
  1156.   MYSQL_LOCK *lock;
  1157.   Field **field;
  1158. public:
  1159.   select_create(const char *db_name, const char *table_name,
  1160. HA_CREATE_INFO *create_info_par,
  1161. List<create_field> &fields_par,
  1162. List<Key> &keys_par,
  1163. List<Item> &select_fields,enum_duplicates duplic, bool ignore)
  1164.     :select_insert (NULL, &select_fields, duplic, ignore), db(db_name),
  1165.     name(table_name), extra_fields(&fields_par),keys(&keys_par),
  1166.     create_info(create_info_par), lock(0)
  1167.     {}
  1168.   int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
  1169.   void store_values(List<Item> &values);
  1170.   void send_error(uint errcode,const char *err);
  1171.   bool send_eof();
  1172.   void abort();
  1173. };
  1174. #include <myisam.h>
  1175. /* 
  1176.   Param to create temporary tables when doing SELECT:s 
  1177.   NOTE
  1178.     This structure is copied using memcpy as a part of JOIN.
  1179. */
  1180. class TMP_TABLE_PARAM :public Sql_alloc
  1181. {
  1182. private:
  1183.   /* Prevent use of these (not safe because of lists and copy_field) */
  1184.   TMP_TABLE_PARAM(const TMP_TABLE_PARAM &);
  1185.   void operator=(TMP_TABLE_PARAM &);
  1186. public:
  1187.   List<Item> copy_funcs;
  1188.   List<Item> save_copy_funcs;
  1189.   Copy_field *copy_field, *copy_field_end;
  1190.   Copy_field *save_copy_field, *save_copy_field_end;
  1191.   byte     *group_buff;
  1192.   Item     **items_to_copy; /* Fields in tmp table */
  1193.   MI_COLUMNDEF *recinfo,*start_recinfo;
  1194.   KEY *keyinfo;
  1195.   ha_rows end_write_records;
  1196.   uint field_count,sum_func_count,func_count;
  1197.   uint  hidden_field_count;
  1198.   uint group_parts,group_length,group_null_parts;
  1199.   uint quick_group;
  1200.   bool  using_indirect_summary_function;
  1201.   /* If >0 convert all blob fields to varchar(convert_blob_length) */
  1202.   uint  convert_blob_length; 
  1203.   TMP_TABLE_PARAM()
  1204.     :copy_field(0), group_parts(0),
  1205.     group_length(0), group_null_parts(0), convert_blob_length(0)
  1206.   {}
  1207.   ~TMP_TABLE_PARAM()
  1208.   {
  1209.     cleanup();
  1210.   }
  1211.   void init(void);
  1212.   inline void cleanup(void)
  1213.   {
  1214.     if (copy_field) /* Fix for Intel compiler */
  1215.     {
  1216.       delete [] copy_field;
  1217.       save_copy_field= copy_field= 0;
  1218.     }
  1219.   }
  1220. };
  1221. class select_union :public select_result_interceptor {
  1222.  public:
  1223.   TABLE *table;
  1224.   COPY_INFO info;
  1225.   TMP_TABLE_PARAM tmp_table_param;
  1226.   select_union(TABLE *table_par);
  1227.   ~select_union();
  1228.   int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
  1229.   bool send_data(List<Item> &items);
  1230.   bool send_eof();
  1231.   bool flush();
  1232.   void set_table(TABLE *tbl) { table= tbl; }
  1233. };
  1234. /* Base subselect interface class */
  1235. class select_subselect :public select_result_interceptor
  1236. {
  1237. protected:
  1238.   Item_subselect *item;
  1239. public:
  1240.   select_subselect(Item_subselect *item);
  1241.   bool send_data(List<Item> &items)=0;
  1242.   bool send_eof() { return 0; };
  1243. };
  1244. /* Single value subselect interface class */
  1245. class select_singlerow_subselect :public select_subselect
  1246. {
  1247. public:
  1248.   select_singlerow_subselect(Item_subselect *item):select_subselect(item){}
  1249.   bool send_data(List<Item> &items);
  1250. };
  1251. /* used in independent ALL/ANY optimisation */
  1252. class select_max_min_finder_subselect :public select_subselect
  1253. {
  1254.   Item_cache *cache;
  1255.   bool (select_max_min_finder_subselect::*op)();
  1256.   bool fmax;
  1257. public:
  1258.   select_max_min_finder_subselect(Item_subselect *item, bool mx)
  1259.     :select_subselect(item), cache(0), fmax(mx)
  1260.   {}
  1261.   void cleanup();
  1262.   bool send_data(List<Item> &items);
  1263.   bool cmp_real();
  1264.   bool cmp_int();
  1265.   bool cmp_str();
  1266. };
  1267. /* EXISTS subselect interface class */
  1268. class select_exists_subselect :public select_subselect
  1269. {
  1270. public:
  1271.   select_exists_subselect(Item_subselect *item):select_subselect(item){}
  1272.   bool send_data(List<Item> &items);
  1273. };
  1274. /* Structs used when sorting */
  1275. typedef struct st_sort_field {
  1276.   Field *field; /* Field to sort */
  1277.   Item *item; /* Item if not sorting fields */
  1278.   uint  length; /* Length of sort field */
  1279.   Item_result result_type; /* Type of item */
  1280.   bool reverse; /* if descending sort */
  1281.   bool need_strxnfrm; /* If we have to use strxnfrm() */
  1282. } SORT_FIELD;
  1283. typedef struct st_sort_buffer {
  1284.   uint index; /* 0 or 1 */
  1285.   uint sort_orders;
  1286.   uint change_pos; /* If sort-fields changed */
  1287.   char **buff;
  1288.   SORT_FIELD *sortorder;
  1289. } SORT_BUFFER;
  1290. /* Structure for db & table in sql_yacc */
  1291. class Table_ident :public Sql_alloc
  1292. {
  1293.  public:
  1294.   LEX_STRING db;
  1295.   LEX_STRING table;
  1296.   SELECT_LEX_UNIT *sel;
  1297.   inline Table_ident(THD *thd, LEX_STRING db_arg, LEX_STRING table_arg,
  1298.      bool force)
  1299.     :table(table_arg), sel((SELECT_LEX_UNIT *)0)
  1300.   {
  1301.     if (!force && (thd->client_capabilities & CLIENT_NO_SCHEMA))
  1302.       db.str=0;
  1303.     else
  1304.       db= db_arg;
  1305.   }
  1306.   inline Table_ident(LEX_STRING table_arg) 
  1307.     :table(table_arg), sel((SELECT_LEX_UNIT *)0)
  1308.   {
  1309.     db.str=0;
  1310.   }
  1311.   inline Table_ident(SELECT_LEX_UNIT *s) : sel(s) 
  1312.   {
  1313.     /* We must have a table name here as this is used with add_table_to_list */
  1314.     db.str=0; table.str= internal_table_name; table.length=1;
  1315.   }
  1316.   inline void change_db(char *db_name)
  1317.   {
  1318.     db.str= db_name; db.length= (uint) strlen(db_name);
  1319.   }
  1320. };
  1321. // this is needed for user_vars hash
  1322. class user_var_entry
  1323. {
  1324.  public:
  1325.   LEX_STRING name;
  1326.   char *value;
  1327.   ulong length, update_query_id, used_query_id;
  1328.   Item_result type;
  1329.   double val(my_bool *null_value);
  1330.   longlong val_int(my_bool *null_value);
  1331.   String *val_str(my_bool *null_value, String *str, uint decimals);
  1332.   DTCollation collation;
  1333. };
  1334. /* Class for unique (removing of duplicates) */
  1335. class Unique :public Sql_alloc
  1336. {
  1337.   DYNAMIC_ARRAY file_ptrs;
  1338.   ulong max_elements, max_in_memory_size;
  1339.   IO_CACHE file;
  1340.   TREE tree;
  1341.   byte *record_pointers;
  1342.   bool flush();
  1343.   uint size;
  1344. public:
  1345.   ulong elements;
  1346.   Unique(qsort_cmp2 comp_func, void * comp_func_fixed_arg,
  1347.  uint size_arg, ulong max_in_memory_size_arg);
  1348.   ~Unique();
  1349.   inline bool unique_add(gptr ptr)
  1350.   {
  1351.     if (tree.elements_in_tree > max_elements && flush())
  1352.       return 1;
  1353.     return !tree_insert(&tree, ptr, 0, tree.custom_arg);
  1354.   }
  1355.   bool get(TABLE *table);
  1356.   friend int unique_write_to_file(gptr key, element_count count, Unique *unique);
  1357.   friend int unique_write_to_ptrs(gptr key, element_count count, Unique *unique);
  1358. };
  1359. class multi_delete :public select_result_interceptor
  1360. {
  1361.   TABLE_LIST *delete_tables, *table_being_deleted;
  1362.   Unique **tempfiles;
  1363.   THD *thd;
  1364.   ha_rows deleted, found;
  1365.   uint num_of_tables;
  1366.   int error;
  1367.   bool do_delete, transactional_tables, log_delayed, normal_tables;
  1368. public:
  1369.   multi_delete(THD *thd, TABLE_LIST *dt, uint num_of_tables);
  1370.   ~multi_delete();
  1371.   int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
  1372.   bool send_data(List<Item> &items);
  1373.   bool initialize_tables (JOIN *join);
  1374.   void send_error(uint errcode,const char *err);
  1375.   int  do_deletes (bool from_send_error);
  1376.   bool send_eof();
  1377. };
  1378. class multi_update :public select_result_interceptor
  1379. {
  1380.   TABLE_LIST *all_tables, *update_tables, *table_being_updated;
  1381.   THD *thd;
  1382.   TABLE **tmp_tables, *main_table, *table_to_update;
  1383.   TMP_TABLE_PARAM *tmp_table_param;
  1384.   ha_rows updated, found;
  1385.   List <Item> *fields, *values;
  1386.   List <Item> **fields_for_table, **values_for_table;
  1387.   uint table_count;
  1388.   Copy_field *copy_field;
  1389.   enum enum_duplicates handle_duplicates;
  1390.   bool do_update, trans_safe, transactional_tables, log_delayed, ignore;
  1391. public:
  1392.   multi_update(THD *thd_arg, TABLE_LIST *ut, List<Item> *fields,
  1393.        List<Item> *values, enum_duplicates handle_duplicates, bool ignore);
  1394.   ~multi_update();
  1395.   int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
  1396.   bool send_data(List<Item> &items);
  1397.   bool initialize_tables (JOIN *join);
  1398.   void send_error(uint errcode,const char *err);
  1399.   int  do_updates (bool from_send_error);
  1400.   bool send_eof();
  1401. };
  1402. class select_dumpvar :public select_result_interceptor {
  1403.   ha_rows row_count;
  1404. public:
  1405.   List<LEX_STRING> var_list;
  1406.   List<Item_func_set_user_var> vars;
  1407.   select_dumpvar(void)  { var_list.empty(); vars.empty(); row_count=0;}
  1408.   ~select_dumpvar() {}
  1409.   int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
  1410.   bool send_data(List<Item> &items);
  1411.   bool send_eof();
  1412.   void cleanup();
  1413. };