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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL 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. /*
  14.   Make sure to look at ha_tina.h for more details.
  15.   First off, this is a play thing for me, there are a number of things wrong with it:
  16.  *) It was designed for csv and therefor its performance is highly questionable.
  17.  *) Indexes have not been implemented. This is because the files can be traded in
  18.  and out of the table directory without having to worry about rebuilding anything.
  19.  *) NULLs and "" are treated equally (like a spreadsheet).
  20.  *) There was in the beginning no point to anyone seeing this other then me, so there
  21.  is a good chance that I haven't quite documented it well.
  22.  *) Less design, more "make it work"
  23.  Now there are a few cool things with it:
  24.  *) Errors can result in corrupted data files.
  25.  *) Data files can be read by spreadsheets directly.
  26. TODO:
  27.  *) Move to a block system for larger files
  28.  *) Error recovery, its all there, just need to finish it
  29.  *) Document how the chains work.
  30.  -Brian
  31. */
  32. #ifdef USE_PRAGMA_IMPLEMENTATION
  33. #pragma implementation        // gcc: Class implementation
  34. #endif
  35. #include "mysql_priv.h"
  36. #ifdef HAVE_CSV_DB
  37. #include "ha_tina.h"
  38. #include <sys/mman.h>
  39. /* Stuff for shares */
  40. pthread_mutex_t tina_mutex;
  41. static HASH tina_open_tables;
  42. static int tina_init= 0;
  43. /*****************************************************************************
  44.  ** TINA tables
  45.  *****************************************************************************/
  46. /*
  47.   Used for sorting chains with qsort().
  48. */
  49. int sort_set (tina_set *a, tina_set *b)
  50. {
  51.   /*
  52.     We assume that intervals do not intersect. So, it is enought to compare
  53.     any two points. Here we take start of intervals for comparison.
  54.   */
  55.   return ( a->begin > b->begin ? -1 : ( a->begin < b->begin ? 1 : 0 ) );
  56. }
  57. static byte* tina_get_key(TINA_SHARE *share,uint *length,
  58.                           my_bool not_used __attribute__((unused)))
  59. {
  60.   *length=share->table_name_length;
  61.   return (byte*) share->table_name;
  62. }
  63. /*
  64.   Reloads the mmap file.
  65. */
  66. int get_mmap(TINA_SHARE *share, int write)
  67. {
  68.   DBUG_ENTER("ha_tina::get_mmap");
  69.   if (share->mapped_file && munmap(share->mapped_file, share->file_stat.st_size))
  70.     DBUG_RETURN(1);
  71.   if (my_fstat(share->data_file, &share->file_stat, MYF(MY_WME)) == -1)
  72.     DBUG_RETURN(1);
  73.   if (share->file_stat.st_size) 
  74.   {
  75.     if (write)
  76.       share->mapped_file= (byte *)mmap(NULL, share->file_stat.st_size, 
  77.                                        PROT_READ|PROT_WRITE, MAP_SHARED,
  78.                                        share->data_file, 0);
  79.     else
  80.       share->mapped_file= (byte *)mmap(NULL, share->file_stat.st_size, 
  81.                                        PROT_READ, MAP_PRIVATE,
  82.                                        share->data_file, 0);
  83.     if ((share->mapped_file ==(caddr_t)-1)) 
  84.     {
  85.       /*
  86.         Bad idea you think? See the problem is that nothing actually checks
  87.         the return value of ::rnd_init(), so tossing an error is about
  88.         it for us.
  89.         Never going to happen right? :)
  90.       */
  91.       my_message(errno, "Woops, blew up opening a mapped file", 0);
  92.       DBUG_ASSERT(0);
  93.       DBUG_RETURN(1);
  94.     }
  95.   }
  96.   else 
  97.     share->mapped_file= NULL;
  98.   DBUG_RETURN(0);
  99. }
  100. /*
  101.   Simple lock controls.
  102. */
  103. static TINA_SHARE *get_share(const char *table_name, TABLE *table)
  104. {
  105.   TINA_SHARE *share;
  106.   char *tmp_name;
  107.   uint length;
  108.   if (!tina_init)
  109.   {
  110.     /* Hijack a mutex for init'ing the storage engine */
  111.     pthread_mutex_lock(&LOCK_mysql_create_db);
  112.     if (!tina_init)
  113.     {
  114.       tina_init++;
  115.       VOID(pthread_mutex_init(&tina_mutex,MY_MUTEX_INIT_FAST));
  116.       (void) hash_init(&tina_open_tables,system_charset_info,32,0,0,
  117.                        (hash_get_key) tina_get_key,0,0);
  118.     }
  119.     pthread_mutex_unlock(&LOCK_mysql_create_db);
  120.   }
  121.   pthread_mutex_lock(&tina_mutex);
  122.   length=(uint) strlen(table_name);
  123.   if (!(share=(TINA_SHARE*) hash_search(&tina_open_tables,
  124.                                         (byte*) table_name,
  125.                                         length)))
  126.   {
  127.     char data_file_name[FN_REFLEN];
  128.     if (!my_multi_malloc(MYF(MY_WME | MY_ZEROFILL),
  129.                          &share, sizeof(*share),
  130.                          &tmp_name, length+1,
  131.                          NullS)) 
  132.     {
  133.       pthread_mutex_unlock(&tina_mutex);
  134.       return NULL;
  135.     }
  136.     share->use_count=0;
  137.     share->table_name_length=length;
  138.     share->table_name=tmp_name;
  139.     strmov(share->table_name,table_name);
  140.     fn_format(data_file_name, table_name, "", ".CSV",MY_REPLACE_EXT|MY_UNPACK_FILENAME);
  141.     if (my_hash_insert(&tina_open_tables, (byte*) share))
  142.       goto error;
  143.     thr_lock_init(&share->lock);
  144.     pthread_mutex_init(&share->mutex,MY_MUTEX_INIT_FAST);
  145.     if ((share->data_file= my_open(data_file_name, O_RDWR|O_APPEND,
  146.                                    MYF(0))) == -1)
  147.       goto error2;
  148.     /* We only use share->data_file for writing, so we scan to the end to append */
  149.     if (my_seek(share->data_file, 0, SEEK_END, MYF(0)) == MY_FILEPOS_ERROR)
  150.       goto error2;
  151.     share->mapped_file= NULL; // We don't know the state since we just allocated it
  152.     if (get_mmap(share, 0) > 0)
  153.       goto error3;
  154.   }
  155.   share->use_count++;
  156.   pthread_mutex_unlock(&tina_mutex);
  157.   return share;
  158. error3:
  159.   my_close(share->data_file,MYF(0));
  160. error2:
  161.   thr_lock_delete(&share->lock);
  162.   pthread_mutex_destroy(&share->mutex);
  163. error:
  164.   pthread_mutex_unlock(&tina_mutex);
  165.   my_free((gptr) share, MYF(0));
  166.   return NULL;
  167. }
  168. /* 
  169.   Free lock controls.
  170. */
  171. static int free_share(TINA_SHARE *share)
  172. {
  173.   DBUG_ENTER("ha_tina::free_share");
  174.   pthread_mutex_lock(&tina_mutex);
  175.   int result_code= 0;
  176.   if (!--share->use_count){
  177.     /* Drop the mapped file */
  178.     if (share->mapped_file) 
  179.       munmap(share->mapped_file, share->file_stat.st_size);
  180.     result_code= my_close(share->data_file,MYF(0));
  181.     hash_delete(&tina_open_tables, (byte*) share);
  182.     thr_lock_delete(&share->lock);
  183.     pthread_mutex_destroy(&share->mutex);
  184.     my_free((gptr) share, MYF(0));
  185.   }
  186.   pthread_mutex_unlock(&tina_mutex);
  187.   DBUG_RETURN(result_code);
  188. }
  189. /* 
  190.   Finds the end of a line.
  191.   Currently only supports files written on a UNIX OS.
  192. */
  193. byte * find_eoln(byte *data, off_t begin, off_t end) 
  194. {
  195.   for (off_t x= begin; x < end; x++) 
  196.     if (data[x] == 'n')
  197.       return data + x;
  198.   return 0;
  199. }
  200. /*
  201.   Encode a buffer into the quoted format.
  202. */
  203. int ha_tina::encode_quote(byte *buf) 
  204. {
  205.   char attribute_buffer[1024];
  206.   String attribute(attribute_buffer, sizeof(attribute_buffer), &my_charset_bin);
  207.   buffer.length(0);
  208.   for (Field **field=table->field ; *field ; field++)
  209.   {
  210.     const char *ptr;
  211.     const char *end_ptr;
  212.     (*field)->val_str(&attribute,&attribute);
  213.     ptr= attribute.ptr();
  214.     end_ptr= attribute.length() + ptr;
  215.     buffer.append('"');
  216.     while (ptr < end_ptr) 
  217.     {
  218.       if (*ptr == '"')
  219.       {
  220.         buffer.append('\');
  221.         buffer.append('"');
  222.         *ptr++;
  223.       }
  224.       else if (*ptr == 'r')
  225.       {
  226.         buffer.append('\');
  227.         buffer.append('r');
  228.         *ptr++;
  229.       }
  230.       else if (*ptr == '\')
  231.       {
  232.         buffer.append('\');
  233.         buffer.append('\');
  234.         *ptr++;
  235.       }
  236.       else if (*ptr == 'n')
  237.       {
  238.         buffer.append('\');
  239.         buffer.append('n');
  240.         *ptr++;
  241.       }
  242.       else
  243.         buffer.append(*ptr++);
  244.     }
  245.     buffer.append('"');
  246.     buffer.append(',');
  247.   }
  248.   // Remove the comma, add a line feed
  249.   buffer.length(buffer.length() - 1);
  250.   buffer.append('n');
  251.   //buffer.replace(buffer.length(), 0, "n", 1);
  252.   return (buffer.length());
  253. }
  254. /*
  255.   chain_append() adds delete positions to the chain that we use to keep track of space.
  256. */
  257. int ha_tina::chain_append()
  258. {
  259.   if ( chain_ptr != chain && (chain_ptr -1)->end == current_position)
  260.     (chain_ptr -1)->end= next_position;
  261.   else 
  262.   {
  263.     /* We set up for the next position */
  264.     if ((off_t)(chain_ptr - chain) == (chain_size -1))
  265.     {
  266.       off_t location= chain_ptr - chain;
  267.       chain_size += DEFAULT_CHAIN_LENGTH;
  268.       if (chain_alloced)
  269.       {
  270.         /* Must cast since my_malloc unlike malloc doesn't have a void ptr */
  271.         if ((chain= (tina_set *)my_realloc((gptr)chain,chain_size,MYF(MY_WME))) == NULL)
  272.           return -1;
  273.       }
  274.       else
  275.       {
  276.         tina_set *ptr= (tina_set *)my_malloc(chain_size * sizeof(tina_set),MYF(MY_WME));
  277.         memcpy(ptr, chain, DEFAULT_CHAIN_LENGTH * sizeof(tina_set));
  278.         chain= ptr;
  279.         chain_alloced++;
  280.       }
  281.       chain_ptr= chain + location;
  282.     }
  283.     chain_ptr->begin= current_position;
  284.     chain_ptr->end= next_position;
  285.     chain_ptr++;
  286.   }
  287.   return 0;
  288. }
  289. /* 
  290.   Scans for a row.
  291. */
  292. int ha_tina::find_current_row(byte *buf)
  293. {
  294.   byte *mapped_ptr= (byte *)share->mapped_file + current_position;
  295.   byte *end_ptr;
  296.   DBUG_ENTER("ha_tina::find_current_row");
  297.   /* EOF should be counted as new line */
  298.   if ((end_ptr=  find_eoln(share->mapped_file, current_position, share->file_stat.st_size)) == 0)
  299.     DBUG_RETURN(HA_ERR_END_OF_FILE);
  300.   for (Field **field=table->field ; *field ; field++)
  301.   {
  302.     buffer.length(0);
  303.     mapped_ptr++; // Increment past the first quote
  304.     for(;mapped_ptr != end_ptr; mapped_ptr++)
  305.     {
  306.       //Need to convert line feeds!
  307.       if (*mapped_ptr == '"' && 
  308.           (((mapped_ptr[1] == ',') && (mapped_ptr[2] == '"')) || (mapped_ptr == end_ptr -1 )))
  309.       {
  310.         mapped_ptr += 2; // Move past the , and the "
  311.         break;
  312.       } 
  313.       if (*mapped_ptr == '\' && mapped_ptr != (end_ptr - 1)) 
  314.       {
  315.         mapped_ptr++;
  316.         if (*mapped_ptr == 'r')
  317.           buffer.append('r');
  318.         else if (*mapped_ptr == 'n' )
  319.           buffer.append('n');
  320.         else if ((*mapped_ptr == '\') || (*mapped_ptr == '"'))
  321.           buffer.append(*mapped_ptr);
  322.         else  /* This could only happed with an externally created file */
  323.         {
  324.           buffer.append('\');
  325.           buffer.append(*mapped_ptr);
  326.         }
  327.       } 
  328.       else
  329.         buffer.append(*mapped_ptr);
  330.     }
  331.     (*field)->store(buffer.ptr(), buffer.length(), system_charset_info);
  332.   }
  333.   next_position= (end_ptr - share->mapped_file)+1;
  334.   /* Maybe use N for null? */
  335.   memset(buf, 0, table->null_bytes); /* We do not implement nulls! */
  336.   DBUG_RETURN(0);
  337. }
  338. /*
  339.   If frm_error() is called in table.cc this is called to find out what file
  340.   extensions exist for this handler.
  341. */
  342. const char **ha_tina::bas_ext() const
  343. { static const char *ext[]= { ".CSV", NullS }; return ext; }
  344. /* 
  345.   Open a database file. Keep in mind that tables are caches, so
  346.   this will not be called for every request. Any sort of positions
  347.   that need to be reset should be kept in the ::extra() call.
  348. */
  349. int ha_tina::open(const char *name, int mode, uint test_if_locked)
  350. {
  351.   DBUG_ENTER("ha_tina::open");
  352.   if (!(share= get_share(name, table)))
  353.     DBUG_RETURN(1);
  354.   thr_lock_data_init(&share->lock,&lock,NULL);
  355.   ref_length=sizeof(off_t);
  356.   DBUG_RETURN(0);
  357. }
  358. /*
  359.   Close a database file. We remove ourselves from the shared strucutre.
  360.   If it is empty we destroy it and free the mapped file.
  361. */
  362. int ha_tina::close(void)
  363. {
  364.   DBUG_ENTER("ha_tina::close");
  365.   DBUG_RETURN(free_share(share));
  366. }
  367. /* 
  368.   This is an INSERT. At the moment this handler just seeks to the end
  369.   of the file and appends the data. In an error case it really should
  370.   just truncate to the original position (this is not done yet).
  371. */
  372. int ha_tina::write_row(byte * buf)
  373. {
  374.   int size;
  375.   DBUG_ENTER("ha_tina::write_row");
  376.   statistic_increment(ha_write_count,&LOCK_status);
  377.   if (table->timestamp_field_type & TIMESTAMP_AUTO_SET_ON_INSERT)
  378.     table->timestamp_field->set_time();
  379.   size= encode_quote(buf);
  380.   if (my_write(share->data_file, buffer.ptr(), size, MYF(MY_WME | MY_NABP)))
  381.     DBUG_RETURN(-1);
  382.   /* 
  383.     Ok, this is means that we will be doing potentially bad things 
  384.     during a bulk insert on some OS'es. What we need is a cleanup
  385.     call for ::write_row that would let us fix up everything after the bulk
  386.     insert. The archive handler does this with an extra mutx call, which
  387.     might be a solution for this.
  388.   */
  389.   if (get_mmap(share, 0) > 0) 
  390.     DBUG_RETURN(-1);
  391.   DBUG_RETURN(0);
  392. }
  393. /* 
  394.   This is called for an update.
  395.   Make sure you put in code to increment the auto increment, also 
  396.   update any timestamp data. Currently auto increment is not being
  397.   fixed since autoincrements have yet to be added to this table handler.
  398.   This will be called in a table scan right before the previous ::rnd_next()
  399.   call.
  400. */
  401. int ha_tina::update_row(const byte * old_data, byte * new_data)
  402. {
  403.   int size;
  404.   DBUG_ENTER("ha_tina::update_row");
  405.   statistic_increment(ha_update_count,&LOCK_status);
  406.   if (table->timestamp_field_type & TIMESTAMP_AUTO_SET_ON_UPDATE)
  407.     table->timestamp_field->set_time();
  408.   size= encode_quote(new_data);
  409.   if (chain_append())
  410.     DBUG_RETURN(-1);
  411.   if (my_write(share->data_file, buffer.ptr(), size, MYF(MY_WME | MY_NABP)))
  412.     DBUG_RETURN(-1);
  413.   DBUG_RETURN(0);
  414. }
  415. /* 
  416.   Deletes a row. First the database will find the row, and then call this method.
  417.   In the case of a table scan, the previous call to this will be the ::rnd_next()
  418.   that found this row.
  419.   The exception to this is an ORDER BY. This will cause the table handler to walk
  420.   the table noting the positions of all rows that match a query. The table will
  421.   then be deleted/positioned based on the ORDER (so RANDOM, DESC, ASC).
  422. */
  423. int ha_tina::delete_row(const byte * buf)
  424. {
  425.   DBUG_ENTER("ha_tina::delete_row");
  426.   statistic_increment(ha_delete_count,&LOCK_status);
  427.   if (chain_append())
  428.     DBUG_RETURN(-1);
  429.   --records;
  430.   DBUG_RETURN(0);
  431. }
  432. /*
  433.   Fill buf with value from key. Simply this is used for a single index read 
  434.   with a key.
  435. */
  436. int ha_tina::index_read(byte * buf, const byte * key,
  437.                         uint key_len __attribute__((unused)),
  438.                         enum ha_rkey_function find_flag
  439.                         __attribute__((unused)))
  440. {
  441.   DBUG_ENTER("ha_tina::index_read");
  442.   DBUG_ASSERT(0);
  443.   DBUG_RETURN(HA_ADMIN_NOT_IMPLEMENTED);
  444. }
  445. /*
  446.   Fill buf with value from key. Simply this is used for a single index read 
  447.   with a key.
  448.   Whatever the current key is we will use it. This is what will be in "index".
  449. */
  450. int ha_tina::index_read_idx(byte * buf, uint index, const byte * key,
  451.                             uint key_len __attribute__((unused)),
  452.                             enum ha_rkey_function find_flag
  453.                             __attribute__((unused)))
  454. {
  455.   DBUG_ENTER("ha_tina::index_read_idx");
  456.   DBUG_ASSERT(0);
  457.   DBUG_RETURN(HA_ADMIN_NOT_IMPLEMENTED);
  458. }
  459. /*
  460.   Read the next position in the index.
  461. */
  462. int ha_tina::index_next(byte * buf)
  463. {
  464.   DBUG_ENTER("ha_tina::index_next");
  465.   DBUG_ASSERT(0);
  466.   DBUG_RETURN(HA_ADMIN_NOT_IMPLEMENTED);
  467. }
  468. /*
  469.   Read the previous position in the index.
  470. */
  471. int ha_tina::index_prev(byte * buf)
  472. {
  473.   DBUG_ENTER("ha_tina::index_prev");
  474.   DBUG_ASSERT(0);
  475.   DBUG_RETURN(HA_ADMIN_NOT_IMPLEMENTED);
  476. }
  477. /*
  478.   Read the first position in the index
  479. */
  480. int ha_tina::index_first(byte * buf)
  481. {
  482.   DBUG_ENTER("ha_tina::index_first");
  483.   DBUG_ASSERT(0);
  484.   DBUG_RETURN(HA_ADMIN_NOT_IMPLEMENTED);
  485. }
  486. /*
  487.   Read the last position in the index
  488.   With this we don't need to do a filesort() with index.
  489.   We just read the last row and call previous.
  490. */
  491. int ha_tina::index_last(byte * buf)
  492. {
  493.   DBUG_ENTER("ha_tina::index_last");
  494.   DBUG_ASSERT(0);
  495.   DBUG_RETURN(HA_ADMIN_NOT_IMPLEMENTED);
  496. }
  497. /* 
  498.   All table scans call this first. 
  499.   The order of a table scan is:
  500.   ha_tina::store_lock
  501.   ha_tina::external_lock
  502.   ha_tina::info
  503.   ha_tina::rnd_init
  504.   ha_tina::extra
  505.   ENUM HA_EXTRA_CACHE   Cash record in HA_rrnd()
  506.   ha_tina::rnd_next
  507.   ha_tina::rnd_next
  508.   ha_tina::rnd_next
  509.   ha_tina::rnd_next
  510.   ha_tina::rnd_next
  511.   ha_tina::rnd_next
  512.   ha_tina::rnd_next
  513.   ha_tina::rnd_next
  514.   ha_tina::rnd_next
  515.   ha_tina::extra
  516.   ENUM HA_EXTRA_NO_CACHE   End cacheing of records (def)
  517.   ha_tina::external_lock
  518.   ha_tina::extra
  519.   ENUM HA_EXTRA_RESET   Reset database to after open
  520.   Each call to ::rnd_next() represents a row returned in the can. When no more 
  521.   rows can be returned, rnd_next() returns a value of HA_ERR_END_OF_FILE. 
  522.   The ::info() call is just for the optimizer.
  523. */
  524. int ha_tina::rnd_init(bool scan)
  525. {
  526.   DBUG_ENTER("ha_tina::rnd_init");
  527.   current_position= next_position= 0;
  528.   records= 0;
  529.   chain_ptr= chain;
  530. #ifdef HAVE_MADVISE
  531.   if (scan)
  532.     (void)madvise(share->mapped_file,share->file_stat.st_size,MADV_SEQUENTIAL);
  533. #endif
  534.   DBUG_RETURN(0);
  535. }
  536. /*
  537.   ::rnd_next() does all the heavy lifting for a table scan. You will need to populate *buf
  538.   with the correct field data. You can walk the field to determine at what position you 
  539.   should store the data (take a look at how ::find_current_row() works). The structure
  540.   is something like:
  541.   0Foo  Dog  Friend
  542.   The first offset is for the first attribute. All space before that is reserved for null count.
  543.   Basically this works as a mask for which rows are nulled (compared to just empty).
  544.   This table handler doesn't do nulls and does not know the difference between NULL and "". This
  545.   is ok since this table handler is for spreadsheets and they don't know about them either :)
  546. */
  547. int ha_tina::rnd_next(byte *buf)
  548. {
  549.   DBUG_ENTER("ha_tina::rnd_next");
  550.   statistic_increment(ha_read_rnd_next_count,&LOCK_status);
  551.   current_position= next_position;
  552.   if (!share->mapped_file) 
  553.     DBUG_RETURN(HA_ERR_END_OF_FILE);
  554.   if (HA_ERR_END_OF_FILE == find_current_row(buf) ) 
  555.     DBUG_RETURN(HA_ERR_END_OF_FILE);
  556.   records++;
  557.   DBUG_RETURN(0);
  558. }
  559. /*
  560.   In the case of an order by rows will need to be sorted.
  561.   ::position() is called after each call to ::rnd_next(), 
  562.   the data it stores is to a byte array. You can store this
  563.   data via ha_store_ptr(). ref_length is a variable defined to the 
  564.   class that is the sizeof() of position being stored. In our case  
  565.   its just a position. Look at the bdb code if you want to see a case 
  566.   where something other then a number is stored.
  567. */
  568. void ha_tina::position(const byte *record)
  569. {
  570.   DBUG_ENTER("ha_tina::position");
  571.   ha_store_ptr(ref, ref_length, current_position);
  572.   DBUG_VOID_RETURN;
  573. }
  574. /* 
  575.   Used to fetch a row from a posiion stored with ::position(). 
  576.   ha_get_ptr() retrieves the data for you.
  577. */
  578. int ha_tina::rnd_pos(byte * buf, byte *pos)
  579. {
  580.   DBUG_ENTER("ha_tina::rnd_pos");
  581.   statistic_increment(ha_read_rnd_count,&LOCK_status);
  582.   current_position= ha_get_ptr(pos,ref_length);
  583.   DBUG_RETURN(find_current_row(buf));
  584. }
  585. /*
  586.   ::info() is used to return information to the optimizer.
  587.   Currently this table handler doesn't implement most of the fields
  588.   really needed. SHOW also makes use of this data
  589. */
  590. void ha_tina::info(uint flag)
  591. {
  592.   DBUG_ENTER("ha_tina::info");
  593.   /* This is a lie, but you don't want the optimizer to see zero or 1 */
  594.   if (records < 2) 
  595.     records= 2;
  596.   DBUG_VOID_RETURN;
  597. }
  598. /*
  599.   Grab bag of flags that are sent to the able handler every so often.
  600.   HA_EXTRA_RESET and HA_EXTRA_RESET_STATE are the most frequently called.
  601.   You are not required to implement any of these.
  602. */
  603. int ha_tina::extra(enum ha_extra_function operation)
  604. {
  605.   DBUG_ENTER("ha_tina::extra");
  606.   DBUG_RETURN(0);
  607. }
  608. /* 
  609.   This is no longer used.
  610. */
  611. int ha_tina::reset(void)
  612. {
  613.   DBUG_ENTER("ha_tina::reset");
  614.   ha_tina::extra(HA_EXTRA_RESET);
  615.   DBUG_RETURN(0);
  616. }
  617. /*
  618.   Called after deletes, inserts, and updates. This is where we clean up all of
  619.   the dead space we have collected while writing the file. 
  620. */
  621. int ha_tina::rnd_end()
  622. {
  623.   DBUG_ENTER("ha_tina::rnd_end");
  624.   /* First position will be truncate position, second will be increment */
  625.   if ((chain_ptr - chain)  > 0)
  626.   {
  627.     tina_set *ptr;
  628.     off_t length;
  629.     /* 
  630.       Setting up writable map, this will contain all of the data after the
  631.       get_mmap call that we have added to the file.
  632.     */
  633.     if (get_mmap(share, 1) > 0) 
  634.       DBUG_RETURN(-1);
  635.     length= share->file_stat.st_size;
  636.     /*
  637.       The sort handles updates/deletes with random orders.
  638.       It also sorts so that we move the final blocks to the
  639.       beginning so that we move the smallest amount of data possible.
  640.     */
  641.     qsort(chain, (size_t)(chain_ptr - chain), sizeof(tina_set), (qsort_cmp)sort_set);
  642.     for (ptr= chain; ptr < chain_ptr; ptr++)
  643.     {
  644.       memmove(share->mapped_file + ptr->begin, share->mapped_file + ptr->end,
  645.               length - (size_t)ptr->end);
  646.       length= length - (size_t)(ptr->end - ptr->begin);
  647.     }
  648.     /* Truncate the file to the new size */
  649.     if (my_chsize(share->data_file, length, 0, MYF(MY_WME)))
  650.       DBUG_RETURN(-1);
  651.     if (munmap(share->mapped_file, length))
  652.       DBUG_RETURN(-1);
  653.     /* We set it to null so that get_mmap() won't try to unmap it */
  654.     share->mapped_file= NULL;
  655.     if (get_mmap(share, 0) > 0) 
  656.       DBUG_RETURN(-1);
  657.   }
  658.   DBUG_RETURN(0);
  659. }
  660. /* 
  661.   Truncate table and others of its ilk call this. 
  662. */
  663. int ha_tina::delete_all_rows()
  664. {
  665.   DBUG_ENTER("ha_tina::delete_all_rows");
  666.   int rc= my_chsize(share->data_file, 0, 0, MYF(MY_WME));
  667.   if (get_mmap(share, 0) > 0) 
  668.     DBUG_RETURN(-1);
  669.   DBUG_RETURN(rc);
  670. }
  671. /*
  672.   Always called by the start of a transaction (or by "lock tables");
  673. */
  674. int ha_tina::external_lock(THD *thd, int lock_type)
  675. {
  676.   DBUG_ENTER("ha_tina::external_lock");
  677.   DBUG_RETURN(0);          // No external locking
  678. }
  679. /* 
  680.   Called by the database to lock the table. Keep in mind that this
  681.   is an internal lock.
  682. */
  683. THR_LOCK_DATA **ha_tina::store_lock(THD *thd,
  684.                                     THR_LOCK_DATA **to,
  685.                                     enum thr_lock_type lock_type)
  686. {
  687.   if (lock_type != TL_IGNORE && lock.type == TL_UNLOCK)
  688.     lock.type=lock_type;
  689.   *to++= &lock;
  690.   return to;
  691. }
  692. /* 
  693.   Range optimizer calls this.
  694.   I need to update the information on this.
  695. */
  696. ha_rows ha_tina::records_in_range(int inx,
  697.                                   const byte *start_key,uint start_key_len,
  698.                                   enum ha_rkey_function start_search_flag,
  699.                                   const byte *end_key,uint end_key_len,
  700.                                   enum ha_rkey_function end_search_flag)
  701. {
  702.   DBUG_ENTER("ha_tina::records_in_range ");
  703.   DBUG_RETURN(records); // Good guess
  704. }
  705. /* 
  706.   Create a table. You do not want to leave the table open after a call to
  707.   this (the database will call ::open() if it needs to).
  708. */
  709. int ha_tina::create(const char *name, TABLE *table_arg, HA_CREATE_INFO *create_info)
  710. {
  711.   char name_buff[FN_REFLEN];
  712.   File create_file;
  713.   DBUG_ENTER("ha_tina::create");
  714.   if ((create_file= my_create(fn_format(name_buff,name,"",".CSV",MY_REPLACE_EXT|MY_UNPACK_FILENAME),0,
  715.                               O_RDWR | O_TRUNC,MYF(MY_WME))) < 0)
  716.     DBUG_RETURN(-1);
  717.   my_close(create_file,MYF(0));
  718.   DBUG_RETURN(0);
  719. }
  720. #endif /* enable CSV */