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

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. #ifdef USE_PRAGMA_IMPLEMENTATION
  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/myrg_def.h"
  21. #else
  22. #include "../myisammrg/myrg_def.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. const char *ha_myisammrg::index_type(uint key_number)
  30. {
  31.   return ((table->key_info[key_number].flags & HA_FULLTEXT) ? 
  32.   "FULLTEXT" :
  33.   (table->key_info[key_number].flags & HA_SPATIAL) ?
  34.   "SPATIAL" :
  35.   (table->key_info[key_number].algorithm == HA_KEY_ALG_RTREE) ?
  36.   "RTREE" :
  37.   "BTREE");
  38. }
  39. int ha_myisammrg::open(const char *name, int mode, uint test_if_locked)
  40. {
  41.   char name_buff[FN_REFLEN];
  42.   DBUG_PRINT("info", ("ha_myisammrg::open"));
  43.   if (!(file=myrg_open(fn_format(name_buff,name,"","",2 | 4), mode,
  44.        test_if_locked)))
  45.   {
  46.     DBUG_PRINT("info", ("ha_myisammrg::open exit %d", my_errno));
  47.     return (my_errno ? my_errno : -1);
  48.   }
  49.   DBUG_PRINT("info", ("ha_myisammrg::open myrg_extrafunc..."))
  50.   myrg_extrafunc(file, query_cache_invalidate_by_MyISAM_filename_ref);
  51.   if (!(test_if_locked == HA_OPEN_WAIT_IF_LOCKED ||
  52. test_if_locked == HA_OPEN_ABORT_IF_LOCKED))
  53.     myrg_extra(file,HA_EXTRA_NO_WAIT_LOCK,0);
  54.   info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
  55.   if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED))
  56.     myrg_extra(file,HA_EXTRA_WAIT_LOCK,0);
  57.   if (table->reclength != mean_rec_length && mean_rec_length)
  58.   {
  59.     DBUG_PRINT("error",("reclength: %d  mean_rec_length: %d",
  60. table->reclength, mean_rec_length));
  61.     goto err;
  62.   }
  63. #if !defined(BIG_TABLES) || SIZEOF_OFF_T == 4
  64.   /* Merge table has more than 2G rows */
  65.   if (table->crashed)
  66.     goto err;
  67. #endif
  68.   return (0);
  69. err:
  70.   myrg_close(file);
  71.   file=0;
  72.   return (my_errno= HA_ERR_WRONG_MRG_TABLE_DEF);
  73. }
  74. int ha_myisammrg::close(void)
  75. {
  76.   return myrg_close(file);
  77. }
  78. int ha_myisammrg::write_row(byte * buf)
  79. {
  80.   statistic_increment(ha_write_count,&LOCK_status);
  81.   if (table->timestamp_field_type & TIMESTAMP_AUTO_SET_ON_INSERT)
  82.     table->timestamp_field->set_time();
  83.   if (table->next_number_field && buf == table->record[0])
  84.       update_auto_increment();
  85.   return myrg_write(file,buf);
  86. }
  87. int ha_myisammrg::update_row(const byte * old_data, byte * new_data)
  88. {
  89.   statistic_increment(ha_update_count,&LOCK_status);
  90.   if (table->timestamp_field_type & TIMESTAMP_AUTO_SET_ON_UPDATE)
  91.     table->timestamp_field->set_time();
  92.   return myrg_update(file,old_data,new_data);
  93. }
  94. int ha_myisammrg::delete_row(const byte * buf)
  95. {
  96.   statistic_increment(ha_delete_count,&LOCK_status);
  97.   return myrg_delete(file,buf);
  98. }
  99. int ha_myisammrg::index_read(byte * buf, const byte * key,
  100.   uint key_len, enum ha_rkey_function find_flag)
  101. {
  102.   statistic_increment(ha_read_key_count,&LOCK_status);
  103.   int error=myrg_rkey(file,buf,active_index, key, key_len, find_flag);
  104.   table->status=error ? STATUS_NOT_FOUND: 0;
  105.   return error;
  106. }
  107. int ha_myisammrg::index_read_idx(byte * buf, uint index, const byte * key,
  108.  uint key_len, enum ha_rkey_function find_flag)
  109. {
  110.   statistic_increment(ha_read_key_count,&LOCK_status);
  111.   int error=myrg_rkey(file,buf,index, key, key_len, find_flag);
  112.   table->status=error ? STATUS_NOT_FOUND: 0;
  113.   return error;
  114. }
  115. int ha_myisammrg::index_read_last(byte * buf, const byte * key, uint key_len)
  116. {
  117.   statistic_increment(ha_read_key_count,&LOCK_status);
  118.   int error=myrg_rkey(file,buf,active_index, key, key_len,
  119.       HA_READ_PREFIX_LAST);
  120.   table->status=error ? STATUS_NOT_FOUND: 0;
  121.   return error;
  122. }
  123. int ha_myisammrg::index_next(byte * buf)
  124. {
  125.   statistic_increment(ha_read_next_count,&LOCK_status);
  126.   int error=myrg_rnext(file,buf,active_index);
  127.   table->status=error ? STATUS_NOT_FOUND: 0;
  128.   return error;
  129. }
  130. int ha_myisammrg::index_prev(byte * buf)
  131. {
  132.   statistic_increment(ha_read_prev_count,&LOCK_status);
  133.   int error=myrg_rprev(file,buf, active_index);
  134.   table->status=error ? STATUS_NOT_FOUND: 0;
  135.   return error;
  136. }
  137. int ha_myisammrg::index_first(byte * buf)
  138. {
  139.   statistic_increment(ha_read_first_count,&LOCK_status);
  140.   int error=myrg_rfirst(file, buf, active_index);
  141.   table->status=error ? STATUS_NOT_FOUND: 0;
  142.   return error;
  143. }
  144. int ha_myisammrg::index_last(byte * buf)
  145. {
  146.   statistic_increment(ha_read_last_count,&LOCK_status);
  147.   int error=myrg_rlast(file, buf, active_index);
  148.   table->status=error ? STATUS_NOT_FOUND: 0;
  149.   return error;
  150. }
  151. int ha_myisammrg::index_next_same(byte * buf,
  152.                                   const byte *key __attribute__((unused)),
  153.                                   uint length __attribute__((unused)))
  154. {
  155.   statistic_increment(ha_read_next_count,&LOCK_status);
  156.   int error=myrg_rnext_same(file,buf);
  157.   table->status=error ? STATUS_NOT_FOUND: 0;
  158.   return error;
  159. }
  160. int ha_myisammrg::rnd_init(bool scan)
  161. {
  162.   return myrg_extra(file,HA_EXTRA_RESET,0);
  163. }
  164. int ha_myisammrg::rnd_next(byte *buf)
  165. {
  166.   statistic_increment(ha_read_rnd_next_count,&LOCK_status);
  167.   int error=myrg_rrnd(file, buf, HA_OFFSET_ERROR);
  168.   table->status=error ? STATUS_NOT_FOUND: 0;
  169.   return error;
  170. }
  171. int ha_myisammrg::rnd_pos(byte * buf, byte *pos)
  172. {
  173.   statistic_increment(ha_read_rnd_count,&LOCK_status);
  174.   int error=myrg_rrnd(file, buf, ha_get_ptr(pos,ref_length));
  175.   table->status=error ? STATUS_NOT_FOUND: 0;
  176.   return error;
  177. }
  178. void ha_myisammrg::position(const byte *record)
  179. {
  180.   ulonglong position= myrg_position(file);
  181.   ha_store_ptr(ref, ref_length, (my_off_t) position);
  182. }
  183. ha_rows ha_myisammrg::records_in_range(uint inx, key_range *min_key,
  184.                                        key_range *max_key)
  185. {
  186.   return (ha_rows) myrg_records_in_range(file, (int) inx, min_key, max_key);
  187. }
  188. void ha_myisammrg::info(uint flag)
  189. {
  190.   MYMERGE_INFO info;
  191.   (void) myrg_status(file,&info,flag);
  192.   /*
  193.     The following fails if one has not compiled MySQL with -DBIG_TABLES
  194.     and one has more than 2^32 rows in the merge tables.
  195.   */
  196.   records = (ha_rows) info.records;
  197.   deleted = (ha_rows) info.deleted;
  198. #if !defined(BIG_TABLES) || SIZEOF_OFF_T == 4
  199.   if ((info.records >= (ulonglong) 1 << 32) ||
  200.       (info.deleted >= (ulonglong) 1 << 32))
  201.     table->crashed=1;
  202. #endif
  203.   data_file_length=info.data_file_length;
  204.   errkey  = info.errkey;
  205.   table->keys_in_use.set_prefix(table->keys);
  206.   table->db_options_in_use    = info.options;
  207.   table->is_view=1;
  208.   mean_rec_length=info.reclength;
  209.   block_size=0;
  210.   update_time=0;
  211. #if SIZEOF_OFF_T > 4
  212.   ref_length=6; // Should be big enough
  213. #else
  214.   ref_length=4; // Can't be > than my_off_t
  215. #endif
  216.   if (flag & HA_STATUS_CONST)
  217.   {
  218.     if (table->key_parts && info.rec_per_key)
  219.       memcpy((char*) table->key_info[0].rec_per_key,
  220.      (char*) info.rec_per_key,
  221.      sizeof(table->key_info[0].rec_per_key)*table->key_parts);
  222.   }
  223. }
  224. int ha_myisammrg::extra(enum ha_extra_function operation)
  225. {
  226.   /* As this is just a mapping, we don't have to force the underlying
  227.      tables to be closed */
  228.   if (operation == HA_EXTRA_FORCE_REOPEN ||
  229.       operation == HA_EXTRA_PREPARE_FOR_DELETE)
  230.     return 0;
  231.   return myrg_extra(file,operation,0);
  232. }
  233. /* To be used with WRITE_CACHE, EXTRA_CACHE and BULK_INSERT_BEGIN */
  234. int ha_myisammrg::extra_opt(enum ha_extra_function operation, ulong cache_size)
  235. {
  236.   if ((specialflag & SPECIAL_SAFE_MODE) && operation == HA_EXTRA_WRITE_CACHE)
  237.     return 0;
  238.   return myrg_extra(file, operation, (void*) &cache_size);
  239. }
  240. int ha_myisammrg::external_lock(THD *thd, int lock_type)
  241. {
  242.   return myrg_lock_database(file,lock_type);
  243. }
  244. uint ha_myisammrg::lock_count(void) const
  245. {
  246.   return file->tables;
  247. }
  248. THR_LOCK_DATA **ha_myisammrg::store_lock(THD *thd,
  249.  THR_LOCK_DATA **to,
  250.  enum thr_lock_type lock_type)
  251. {
  252.   MYRG_TABLE *open_table;
  253.   for (open_table=file->open_tables ;
  254.        open_table != file->end_table ;
  255.        open_table++)
  256.   {
  257.     *(to++)= &open_table->table->lock;
  258.     if (lock_type != TL_IGNORE && open_table->table->lock.type == TL_UNLOCK)
  259.       open_table->table->lock.type=lock_type;
  260.   }
  261.   return to;
  262. }
  263. /* Find out database name and table name from a filename */
  264. static void split_file_name(const char *file_name,
  265.     LEX_STRING *db, LEX_STRING *name)
  266. {
  267.   uint dir_length, prefix_length;
  268.   char buff[FN_REFLEN];
  269.   db->length= 0;
  270.   strmake(buff, file_name, sizeof(buff)-1);
  271.   dir_length= dirname_length(buff);
  272.   if (dir_length > 1)
  273.   {
  274.     /* Get database */
  275.     buff[dir_length-1]= 0; // Remove end '/'
  276.     prefix_length= dirname_length(buff);
  277.     db->str= (char*) file_name+ prefix_length;
  278.     db->length= dir_length - prefix_length -1;
  279.   }
  280.   name->str= (char*) file_name+ dir_length;
  281.   name->length= (uint) (fn_ext(name->str) - name->str);
  282. }
  283. void ha_myisammrg::update_create_info(HA_CREATE_INFO *create_info)
  284. {
  285.   DBUG_ENTER("ha_myisammrg::update_create_info");
  286.   if (!(create_info->used_fields & HA_CREATE_USED_UNION))
  287.   {
  288.     MYRG_TABLE *open_table;
  289.     THD *thd=current_thd;
  290.     create_info->merge_list.next= &create_info->merge_list.first;
  291.     create_info->merge_list.elements=0;
  292.     for (open_table=file->open_tables ;
  293.  open_table != file->end_table ;
  294.  open_table++)
  295.     {
  296.       TABLE_LIST *ptr;
  297.       LEX_STRING db, name;
  298.       if (!(ptr = (TABLE_LIST *) thd->calloc(sizeof(TABLE_LIST))))
  299. goto err;
  300.       split_file_name(open_table->table->filename, &db, &name);
  301.       if (!(ptr->real_name= thd->strmake(name.str, name.length)))
  302. goto err;
  303.       if (db.length && !(ptr->db= thd->strmake(db.str, db.length)))
  304. goto err;
  305.       create_info->merge_list.elements++;
  306.       (*create_info->merge_list.next) = (byte*) ptr;
  307.       create_info->merge_list.next= (byte**) &ptr->next;
  308.     }
  309.     *create_info->merge_list.next=0;
  310.   }
  311.   if (!(create_info->used_fields & HA_CREATE_USED_INSERT_METHOD))
  312.   {
  313.     create_info->merge_insert_method = file->merge_insert_method;
  314.   }
  315.   DBUG_VOID_RETURN;
  316. err:
  317.   create_info->merge_list.elements=0;
  318.   create_info->merge_list.first=0;
  319.   DBUG_VOID_RETURN;
  320. }
  321. int ha_myisammrg::create(const char *name, register TABLE *form,
  322.  HA_CREATE_INFO *create_info)
  323. {
  324.   char buff[FN_REFLEN],**table_names,**pos;
  325.   TABLE_LIST *tables= (TABLE_LIST*) create_info->merge_list.first;
  326.   THD *thd= current_thd;
  327.   uint dirlgt= dirname_length(name);
  328.   DBUG_ENTER("ha_myisammrg::create");
  329.   if (!(table_names= (char**) thd->alloc((create_info->merge_list.elements+1)*
  330.  sizeof(char*))))
  331.     DBUG_RETURN(HA_ERR_OUT_OF_MEM);
  332.   for (pos=table_names ; tables ; tables=tables->next)
  333.   {
  334.     char *table_name;
  335.     TABLE **tbl= 0;
  336.     if (create_info->options & HA_LEX_CREATE_TMP_TABLE)
  337.       tbl= find_temporary_table(thd, tables->db, tables->real_name);
  338.     if (!tbl)
  339.     {
  340.       /*
  341.         Construct the path to the MyISAM table. Try to meet two conditions:
  342.         1.) Allow to include MyISAM tables from different databases, and
  343.         2.) allow for moving DATADIR around in the file system.
  344.         The first means that we need paths in the .MRG file. The second
  345.         means that we should not have absolute paths in the .MRG file.
  346.         The best, we can do, is to use 'mysql_data_home', which is '.'
  347.         in mysqld and may be an absolute path in an embedded server.
  348.         This means that it might not be possible to move the DATADIR of
  349.         an embedded server without changing the paths in the .MRG file.
  350.       */
  351.       uint length= my_snprintf(buff, FN_REFLEN, "%s/%s/%s", mysql_data_home,
  352.        tables->db, tables->real_name);
  353.       /*
  354.         If a MyISAM table is in the same directory as the MERGE table,
  355.         we use the table name without a path. This means that the
  356.         DATADIR can easily be moved even for an embedded server as long
  357.         as the MyISAM tables are from the same database as the MERGE table.
  358.       */
  359.       if ((dirname_length(buff) == dirlgt) && ! memcmp(buff, name, dirlgt))
  360.         table_name= tables->real_name;
  361.       else
  362.         if (! (table_name= thd->strmake(buff, length)))
  363.           DBUG_RETURN(HA_ERR_OUT_OF_MEM);
  364.     }
  365.     else
  366.       table_name=(*tbl)->path;
  367.     DBUG_PRINT("info",("MyISAM table_name: '%s'", table_name));
  368.     *pos++= table_name;
  369.   }
  370.   *pos=0;
  371.   DBUG_RETURN(myrg_create(fn_format(buff,name,"","",2+4+16),
  372.   (const char **) table_names,
  373.                           create_info->merge_insert_method,
  374.                           (my_bool) 0));
  375. }
  376. void ha_myisammrg::append_create_info(String *packet)
  377. {
  378.   const char *current_db;
  379.   uint db_length;
  380.   THD *thd= current_thd;
  381.   if (file->merge_insert_method != MERGE_INSERT_DISABLED)
  382.   {
  383.     packet->append(" INSERT_METHOD=",15);
  384.     packet->append(get_type(&merge_insert_method,file->merge_insert_method-1));
  385.   }
  386.   packet->append(" UNION=(",8);
  387.   MYRG_TABLE *open_table,*first;
  388.   current_db= table->table_cache_key;
  389.   db_length=  strlen(current_db);
  390.   for (first=open_table=file->open_tables ;
  391.        open_table != file->end_table ;
  392.        open_table++)
  393.   {
  394.     LEX_STRING db, name;
  395.     split_file_name(open_table->table->filename, &db, &name);
  396.     if (open_table != first)
  397.       packet->append(',');
  398.     /* Report database for mapped table if it isn't in current database */
  399.     if (db.length &&
  400. (db_length != db.length ||
  401.  strncmp(current_db, db.str, db.length)))
  402.     {
  403.       append_identifier(thd, packet, db.str, db.length);
  404.       packet->append('.');
  405.     }
  406.     append_identifier(thd, packet, name.str, name.length);
  407.   }
  408.   packet->append(')');
  409. }