ha_myisammrg.cc
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 8k
Category:

MySQL

Development Platform:

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. #ifdef __GNUC__
  14. #pragma implementation // gcc: Class implementation
  15. #endif
  16. #include "mysql_priv.h"
  17. #include <m_ctype.h>
  18. #include "ha_myisammrg.h"
  19. #ifndef MASTER
  20. #include "../srclib/myisammrg/mymrgdef.h"
  21. #else
  22. #include "../myisammrg/mymrgdef.h"
  23. #endif
  24. /*****************************************************************************
  25. ** MyISAM MERGE tables
  26. *****************************************************************************/
  27. const char **ha_myisammrg::bas_ext() const
  28. { static const char *ext[]= { ".MRG", NullS }; return ext; }
  29. int ha_myisammrg::open(const char *name, int mode, uint test_if_locked)
  30. {
  31.   char name_buff[FN_REFLEN];
  32.   if (!(file=myrg_open(fn_format(name_buff,name,"","",2 | 4), mode,
  33.        test_if_locked)))
  34.     return (my_errno ? my_errno : -1);
  35.   if (!(test_if_locked == HA_OPEN_WAIT_IF_LOCKED ||
  36. test_if_locked == HA_OPEN_ABORT_IF_LOCKED))
  37.     myrg_extra(file,HA_EXTRA_NO_WAIT_LOCK);
  38.   info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
  39.   if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED))
  40.     myrg_extra(file,HA_EXTRA_WAIT_LOCK);
  41.   if (table->reclength != mean_rec_length && mean_rec_length)
  42.   {
  43.     DBUG_PRINT("error",("reclength: %d  mean_rec_length: %d",
  44. table->reclength, mean_rec_length));
  45.     myrg_close(file);
  46.     file=0;
  47.     return my_errno=HA_ERR_WRONG_TABLE_DEF;
  48.   }
  49.   return (0);
  50. }
  51. int ha_myisammrg::close(void)
  52. {
  53.   return myrg_close(file);
  54. }
  55. int ha_myisammrg::write_row(byte * buf)
  56. {
  57.   return (my_errno=HA_ERR_WRONG_COMMAND);
  58. }
  59. int ha_myisammrg::update_row(const byte * old_data, byte * new_data)
  60. {
  61.   statistic_increment(ha_update_count,&LOCK_status);
  62.   if (table->time_stamp)
  63.     update_timestamp(new_data+table->time_stamp-1);
  64.   return myrg_update(file,old_data,new_data);
  65. }
  66. int ha_myisammrg::delete_row(const byte * buf)
  67. {
  68.   statistic_increment(ha_delete_count,&LOCK_status);
  69.   return myrg_delete(file,buf);
  70. }
  71. int ha_myisammrg::index_read(byte * buf, const byte * key,
  72.   uint key_len, enum ha_rkey_function find_flag)
  73. {
  74. //  return (my_errno=HA_ERR_WRONG_COMMAND);
  75.   statistic_increment(ha_read_key_count,&LOCK_status);
  76.   int error=myrg_rkey(file,buf,active_index, key, key_len, find_flag);
  77.   table->status=error ? STATUS_NOT_FOUND: 0;
  78.   return error;
  79. }
  80. int ha_myisammrg::index_read_idx(byte * buf, uint index, const byte * key,
  81.  uint key_len, enum ha_rkey_function find_flag)
  82. {
  83. //  return (my_errno=HA_ERR_WRONG_COMMAND);
  84.   statistic_increment(ha_read_key_count,&LOCK_status);
  85.   int error=myrg_rkey(file,buf,index, key, key_len, find_flag);
  86.   table->status=error ? STATUS_NOT_FOUND: 0;
  87.   return error;
  88. }
  89. int ha_myisammrg::index_next(byte * buf)
  90. {
  91. //  return (my_errno=HA_ERR_WRONG_COMMAND);
  92.   statistic_increment(ha_read_next_count,&LOCK_status);
  93.   int error=myrg_rnext(file,buf,active_index);
  94.   table->status=error ? STATUS_NOT_FOUND: 0;
  95.   return error;
  96. }
  97. int ha_myisammrg::index_prev(byte * buf)
  98. {
  99. // return (my_errno=HA_ERR_WRONG_COMMAND);
  100.   statistic_increment(ha_read_prev_count,&LOCK_status);
  101.   int error=myrg_rprev(file,buf, active_index);
  102.   table->status=error ? STATUS_NOT_FOUND: 0;
  103.   return error;
  104. }
  105. int ha_myisammrg::index_first(byte * buf)
  106. {
  107. //  return (my_errno=HA_ERR_WRONG_COMMAND);
  108.   statistic_increment(ha_read_first_count,&LOCK_status);
  109.   int error=myrg_rfirst(file, buf, active_index);
  110.   table->status=error ? STATUS_NOT_FOUND: 0;
  111.   return error;
  112. }
  113. int ha_myisammrg::index_last(byte * buf)
  114. {
  115. //  return (my_errno=HA_ERR_WRONG_COMMAND);
  116.   statistic_increment(ha_read_last_count,&LOCK_status);
  117.   int error=myrg_rlast(file, buf, active_index);
  118.   table->status=error ? STATUS_NOT_FOUND: 0;
  119.   return error;
  120. }
  121. int ha_myisammrg::rnd_init(bool scan)
  122. {
  123.   return myrg_extra(file,HA_EXTRA_RESET);
  124. }
  125. int ha_myisammrg::rnd_next(byte *buf)
  126. {
  127.   statistic_increment(ha_read_rnd_next_count,&LOCK_status);
  128.   int error=myrg_rrnd(file, buf, HA_OFFSET_ERROR);
  129.   table->status=error ? STATUS_NOT_FOUND: 0;
  130.   return error;
  131. }
  132. int ha_myisammrg::rnd_pos(byte * buf, byte *pos)
  133. {
  134.   statistic_increment(ha_read_rnd_count,&LOCK_status);
  135.   int error=myrg_rrnd(file, buf, ha_get_ptr(pos,ref_length));
  136.   table->status=error ? STATUS_NOT_FOUND: 0;
  137.   return error;
  138. }
  139. void ha_myisammrg::position(const byte *record)
  140. {
  141.   ulonglong position= myrg_position(file);
  142.   ha_store_ptr(ref, ref_length, (my_off_t) position);
  143. }
  144. void ha_myisammrg::info(uint flag)
  145. {
  146.   MYMERGE_INFO info;
  147.   (void) myrg_status(file,&info,flag);
  148.   records = (ha_rows) info.records;
  149.   deleted = (ha_rows) info.deleted;
  150.   data_file_length=info.data_file_length;
  151.   errkey  = info.errkey;
  152.   table->keys_in_use=(((key_map) 1) << table->keys)- (key_map) 1;
  153.   table->db_options_in_use    = info.options;
  154.   table->is_view=1;
  155.   mean_rec_length=info.reclength;
  156.   block_size=0;
  157.   update_time=0;
  158.   ref_length=6; // Should be big enough
  159. }
  160. int ha_myisammrg::extra(enum ha_extra_function operation)
  161. {
  162.   return myrg_extra(file,operation);
  163. }
  164. int ha_myisammrg::reset(void)
  165. {
  166.   return myrg_extra(file,HA_EXTRA_RESET);
  167. }
  168. int ha_myisammrg::external_lock(THD *thd, int lock_type)
  169. {
  170.   return myrg_lock_database(file,lock_type);
  171. }
  172. uint ha_myisammrg::lock_count(void) const
  173. {
  174.   return file->tables;
  175. }
  176. THR_LOCK_DATA **ha_myisammrg::store_lock(THD *thd,
  177.  THR_LOCK_DATA **to,
  178.  enum thr_lock_type lock_type)
  179. {
  180.   MYRG_TABLE *table;
  181.   for (table=file->open_tables ; table != file->end_table ; table++)
  182.   {
  183.     *(to++)= &table->table->lock;
  184.     if (lock_type != TL_IGNORE && table->table->lock.type == TL_UNLOCK)
  185.       table->table->lock.type=lock_type;
  186.   }
  187.   return to;
  188. }
  189. void ha_myisammrg::update_create_info(HA_CREATE_INFO *create_info)
  190. {
  191.   DBUG_ENTER("ha_myisammrg::update_create_info");
  192.   if (!(create_info->used_fields & HA_CREATE_USED_UNION))
  193.   {
  194.     MYRG_TABLE *table;
  195.     THD *thd=current_thd;
  196.     create_info->merge_list.next= &create_info->merge_list.first;
  197.     for (table=file->open_tables ; table != file->end_table ; table++)
  198.     {
  199.       char *name=table->table->s->filename;
  200.       char buff[FN_REFLEN];
  201.       TABLE_LIST *ptr;
  202.       if (!(ptr = (TABLE_LIST *) thd->calloc(sizeof(TABLE_LIST))))
  203. goto err;
  204.       fn_format(buff,name,"","",3);
  205.       if (!(ptr->real_name=thd->strdup(buff)))
  206. goto err;
  207.       (*create_info->merge_list.next) = (byte*) ptr;
  208.       create_info->merge_list.next= (byte**) &ptr->next;
  209.     }
  210.     *create_info->merge_list.next=0;
  211.   }
  212.   DBUG_VOID_RETURN;
  213. err:
  214.   create_info->merge_list.elements=0;
  215.   create_info->merge_list.first=0;
  216.   DBUG_VOID_RETURN;
  217. }
  218. int ha_myisammrg::create(const char *name, register TABLE *form,
  219.  HA_CREATE_INFO *create_info)
  220. {
  221.   char buff[FN_REFLEN],**table_names,**pos;
  222.   TABLE_LIST *tables= (TABLE_LIST*) create_info->merge_list.first;
  223.   DBUG_ENTER("ha_myisammrg::create");
  224.   if (!(table_names= (char**) sql_alloc((create_info->merge_list.elements+1)*
  225. sizeof(char*))))
  226.     DBUG_RETURN(1);
  227.   for (pos=table_names ; tables ; tables=tables->next)
  228.     *pos++= tables->real_name;
  229.   *pos=0;
  230.   DBUG_RETURN(myrg_create(fn_format(buff,name,"","",2+4+16),
  231.   (const char **) table_names, (my_bool) 0));
  232. }
  233. void ha_myisammrg::append_create_info(String *packet)
  234. {
  235.   char buff[FN_REFLEN];
  236.   packet->append(" UNION=(",8);
  237.   MYRG_TABLE *table,*first;
  238.   for (first=table=file->open_tables ; table != file->end_table ; table++)
  239.   {
  240.     char *name=table->table->s->filename;
  241.     fn_format(buff,name,"","",3);
  242.     if (table != first)
  243.       packet->append(',');
  244.     packet->append(buff,(uint) strlen(buff));
  245.   }
  246.   packet->append(')');
  247. }