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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2001 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.   Function to handle quick removal of duplicates
  15.   This code is used when doing multi-table deletes to find the rows in
  16.   reference tables that needs to be deleted.
  17.   The basic idea is as follows:
  18.   Store first all strings in a binary tree, ignoring duplicates.
  19.   When the tree uses more memory than 'max_heap_table_size',
  20.   write the tree (in sorted order) out to disk and start with a new tree.
  21.   When all data has been generated, merge the trees (removing any found
  22.   duplicates).
  23.   The unique entries will be returned in sort order, to ensure that we do the
  24.   deletes in disk order.
  25. */
  26. #include "mysql_priv.h"
  27. #include "sql_sort.h"
  28. int unique_write_to_file(gptr key, element_count count, Unique *unique)
  29. {
  30.   /*
  31.     Use unique->size (size of element stored in the tree) and not 
  32.     unique->tree.size_of_element. The latter is different from unique->size 
  33.     when tree implementation chooses to store pointer to key in TREE_ELEMENT
  34.     (instead of storing the element itself there)
  35.   */
  36.   return my_b_write(&unique->file, (byte*) key,
  37.     unique->size) ? 1 : 0;
  38. }
  39. int unique_write_to_ptrs(gptr key, element_count count, Unique *unique)
  40. {
  41.   memcpy(unique->record_pointers, key, unique->size);
  42.   unique->record_pointers+=unique->size;
  43.   return 0;
  44. }
  45. Unique::Unique(qsort_cmp2 comp_func, void * comp_func_fixed_arg,
  46.        uint size_arg, ulong max_in_memory_size_arg)
  47.   :max_in_memory_size(max_in_memory_size_arg), size(size_arg), elements(0)
  48. {
  49.   my_b_clear(&file);
  50.   init_tree(&tree, max_in_memory_size / 16, 0, size, comp_func, 0, NULL,
  51.     comp_func_fixed_arg);
  52.   /* If the following fail's the next add will also fail */
  53.   my_init_dynamic_array(&file_ptrs, sizeof(BUFFPEK), 16, 16);
  54.   max_elements= max_in_memory_size / ALIGN_SIZE(sizeof(TREE_ELEMENT)+size);
  55.   open_cached_file(&file, mysql_tmpdir,TEMP_PREFIX, DISK_BUFFER_SIZE,
  56.    MYF(MY_WME));
  57. }
  58. Unique::~Unique()
  59. {
  60.   close_cached_file(&file);
  61.   delete_tree(&tree);
  62.   delete_dynamic(&file_ptrs);
  63. }
  64.     /* Write tree to disk; clear tree */    
  65. bool Unique::flush()
  66. {
  67.   BUFFPEK file_ptr;
  68.   elements+= tree.elements_in_tree;
  69.   file_ptr.count=tree.elements_in_tree;
  70.   file_ptr.file_pos=my_b_tell(&file);
  71.   if (tree_walk(&tree, (tree_walk_action) unique_write_to_file,
  72. (void*) this, left_root_right) ||
  73.       insert_dynamic(&file_ptrs, (gptr) &file_ptr))
  74.     return 1;
  75.   delete_tree(&tree);
  76.   return 0;
  77. }
  78. /*
  79.   Modify the TABLE element so that when one calls init_records()
  80.   the rows will be read in priority order.
  81. */
  82. bool Unique::get(TABLE *table)
  83. {
  84.   SORTPARAM sort_param;
  85.   table->sort.found_records=elements+tree.elements_in_tree;
  86.   if (my_b_tell(&file) == 0)
  87.   {
  88.     /* Whole tree is in memory;  Don't use disk if you don't need to */
  89.     if ((record_pointers=table->sort.record_pointers= (byte*)
  90.  my_malloc(size * tree.elements_in_tree, MYF(0))))
  91.     {
  92.       (void) tree_walk(&tree, (tree_walk_action) unique_write_to_ptrs,
  93.        this, left_root_right);
  94.       return 0;
  95.     }
  96.   }
  97.   /* Not enough memory; Save the result to file */
  98.   if (flush())
  99.     return 1;
  100.   IO_CACHE *outfile=table->sort.io_cache;
  101.   BUFFPEK *file_ptr= (BUFFPEK*) file_ptrs.buffer;
  102.   uint maxbuffer= file_ptrs.elements - 1;
  103.   uchar *sort_buffer;
  104.   my_off_t save_pos;
  105.   bool error=1;
  106.       /* Open cached file if it isn't open */
  107.   outfile=table->sort.io_cache=(IO_CACHE*) my_malloc(sizeof(IO_CACHE), 
  108.                                 MYF(MY_ZEROFILL));
  109.   if (!outfile || ! my_b_inited(outfile) &&
  110.       open_cached_file(outfile,mysql_tmpdir,TEMP_PREFIX,READ_RECORD_BUFFER,
  111.        MYF(MY_WME)))
  112.     return 1;
  113.   reinit_io_cache(outfile,WRITE_CACHE,0L,0,0);
  114.   bzero((char*) &sort_param,sizeof(sort_param));
  115.   sort_param.max_rows= elements;
  116.   sort_param.sort_form=table;
  117.   sort_param.rec_length= sort_param.sort_length= sort_param.ref_length=
  118.     size;
  119.   sort_param.keys= max_in_memory_size / sort_param.sort_length;
  120.   sort_param.not_killable=1;
  121.   if (!(sort_buffer=(uchar*) my_malloc((sort_param.keys+1) * 
  122.        sort_param.sort_length,
  123.        MYF(0))))
  124.     return 1;
  125.   sort_param.unique_buff= sort_buffer+(sort_param.keys*
  126.        sort_param.sort_length);
  127.   /* Merge the buffers to one file, removing duplicates */
  128.   if (merge_many_buff(&sort_param,sort_buffer,file_ptr,&maxbuffer,&file))
  129.     goto err;
  130.   if (flush_io_cache(&file) ||
  131.       reinit_io_cache(&file,READ_CACHE,0L,0,0))
  132.     goto err;
  133.   if (merge_buffers(&sort_param, &file, outfile, sort_buffer, file_ptr,
  134.     file_ptr, file_ptr+maxbuffer,0))
  135.     goto err;                                                                 
  136.   error=0;
  137. err:
  138.   x_free((gptr) sort_buffer);
  139.   if (flush_io_cache(outfile))
  140.     error=1;
  141.   /* Setup io_cache for reading */
  142.   save_pos=outfile->pos_in_file;
  143.   if (reinit_io_cache(outfile,READ_CACHE,0L,0,0))
  144.     error=1;
  145.   outfile->end_of_file=save_pos;
  146.   return error;
  147. }