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

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. #ifdef HAVE_ISAM
  18. #include <m_ctype.h>
  19. #ifndef MASTER
  20. #include "../srclib/merge/mrg_def.h"
  21. #else
  22. #include "../merge/mrg_def.h"
  23. #endif
  24. #include "ha_isammrg.h"
  25. /*****************************************************************************
  26. ** ISAM MERGE tables
  27. *****************************************************************************/
  28. const char **ha_isammrg::bas_ext() const
  29. { static const char *ext[]= { ".MRG", NullS }; return ext; }
  30. int ha_isammrg::open(const char *name, int mode, uint test_if_locked)
  31. {
  32.   char name_buff[FN_REFLEN];
  33.   if (!(file=mrg_open(fn_format(name_buff,name,"","",2 | 4), mode,
  34.        test_if_locked)))
  35.     return (my_errno ? my_errno : -1);
  36.   if (!(test_if_locked == HA_OPEN_WAIT_IF_LOCKED ||
  37. test_if_locked == HA_OPEN_ABORT_IF_LOCKED))
  38.     mrg_extra(file,HA_EXTRA_NO_WAIT_LOCK);
  39.   info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
  40.   if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED))
  41.     mrg_extra(file,HA_EXTRA_WAIT_LOCK);
  42.   if (table->reclength != mean_rec_length)
  43.   {
  44.     DBUG_PRINT("error",("reclength: %d  mean_rec_length: %d",
  45. table->reclength, mean_rec_length));
  46.     mrg_close(file);
  47.     file=0;
  48.     return ER_WRONG_MRG_TABLE;
  49.   }
  50.   return (0);
  51. }
  52. int ha_isammrg::close(void)
  53. {
  54.   return !mrg_close(file) ? 0 : my_errno ? my_errno : -1;
  55. }
  56. uint ha_isammrg::min_record_length(uint options) const
  57. {
  58.   return (options & HA_OPTION_PACK_RECORD) ? 1 : 5;
  59. }
  60. int ha_isammrg::write_row(byte * buf)
  61. {
  62.   return (my_errno=HA_ERR_WRONG_COMMAND);
  63. }
  64. int ha_isammrg::update_row(const byte * old_data, byte * new_data)
  65. {
  66.   statistic_increment(ha_update_count,&LOCK_status);
  67.   if (table->timestamp_field_type & TIMESTAMP_AUTO_SET_ON_UPDATE)
  68.     table->timestamp_field->set_time();
  69.   return !mrg_update(file,old_data,new_data) ? 0 : my_errno ? my_errno : -1;
  70. }
  71. int ha_isammrg::delete_row(const byte * buf)
  72. {
  73.   statistic_increment(ha_delete_count,&LOCK_status);
  74.   return !mrg_delete(file,buf) ? 0 : my_errno ? my_errno : -1;
  75. }
  76. int ha_isammrg::index_read(byte * buf, const byte * key,
  77.    uint key_len, enum ha_rkey_function find_flag)
  78. {
  79.   return (my_errno=HA_ERR_WRONG_COMMAND);
  80. }
  81. int ha_isammrg::index_read_idx(byte * buf, uint index, const byte * key,
  82.        uint key_len, enum ha_rkey_function find_flag)
  83. {
  84.   return (my_errno=HA_ERR_WRONG_COMMAND);
  85. }
  86. int ha_isammrg::index_next(byte * buf)
  87. {
  88.   return (my_errno=HA_ERR_WRONG_COMMAND);
  89. }
  90. int ha_isammrg::index_prev(byte * buf)
  91. {
  92.   return (my_errno=HA_ERR_WRONG_COMMAND);
  93. }
  94. int ha_isammrg::index_first(byte * buf)
  95. {
  96.   return (my_errno=HA_ERR_WRONG_COMMAND);
  97. }
  98. int ha_isammrg::index_last(byte * buf)
  99. {
  100.   return (my_errno=HA_ERR_WRONG_COMMAND);
  101. }
  102. int ha_isammrg::rnd_init(bool scan)
  103. {
  104.   return !mrg_extra(file,HA_EXTRA_RESET) ? 0 : my_errno ? my_errno : -1;
  105. }
  106. int ha_isammrg::rnd_next(byte *buf)
  107. {
  108.   statistic_increment(ha_read_rnd_next_count,&LOCK_status);
  109.   int error=mrg_rrnd(file, buf, ~(mrg_off_t) 0);
  110.   table->status=error ? STATUS_NOT_FOUND: 0;
  111.   return !error ? 0 : my_errno ? my_errno : -1;
  112. }
  113. int ha_isammrg::rnd_pos(byte * buf, byte *pos)
  114. {
  115.   statistic_increment(ha_read_rnd_count,&LOCK_status);
  116.   int error=mrg_rrnd(file, buf, (ulong) ha_get_ptr(pos,ref_length));
  117.   table->status=error ? STATUS_NOT_FOUND: 0;
  118.   return !error ? 0 : my_errno ? my_errno : -1;
  119. }
  120. void ha_isammrg::position(const byte *record)
  121. {
  122.   ulong position= mrg_position(file);
  123.   ha_store_ptr(ref, ref_length, (my_off_t) position);
  124. }
  125. void ha_isammrg::info(uint flag)
  126. {
  127.   MERGE_INFO info;
  128.   (void) mrg_info(file,&info,flag);
  129.   records = (ha_rows) info.records;
  130.   deleted = (ha_rows) info.deleted;
  131.   data_file_length=info.data_file_length;
  132.   errkey  = info.errkey;
  133.   table->keys_in_use.clear_all();               // No keys yet
  134.   table->db_options_in_use    = info.options;
  135.   mean_rec_length=info.reclength;
  136.   block_size=0;
  137.   update_time=0;
  138.   ref_length=4; // Should be big enough
  139. }
  140. int ha_isammrg::extra(enum ha_extra_function operation)
  141. {
  142.   return !mrg_extra(file,operation) ? 0 : my_errno ? my_errno : -1;
  143. }
  144. int ha_isammrg::external_lock(THD *thd, int lock_type)
  145. {
  146.   return !mrg_lock_database(file,lock_type) ? 0 : my_errno ? my_errno : -1;
  147. }
  148. uint ha_isammrg::lock_count(void) const
  149. {
  150.   return file->tables;
  151. }
  152. THR_LOCK_DATA **ha_isammrg::store_lock(THD *thd,
  153.        THR_LOCK_DATA **to,
  154.        enum thr_lock_type lock_type)
  155. {
  156.   MRG_TABLE *open_table;
  157.   for (open_table=file->open_tables ;
  158.        open_table != file->end_table ;
  159.        open_table++)
  160.   {
  161.     *(to++)= &open_table->table->lock;
  162.     if (lock_type != TL_IGNORE && open_table->table->lock.type == TL_UNLOCK)
  163.       open_table->table->lock.type=lock_type;
  164.   }
  165.   return to;
  166. }
  167. int ha_isammrg::create(const char *name, register TABLE *form,
  168.        HA_CREATE_INFO *create_info)
  169. {
  170.   char buff[FN_REFLEN];
  171.   return mrg_create(fn_format(buff,name,"","",2+4+16),0);
  172. }
  173. #endif /* HAVE_ISAM */