~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/filesort.h

  • Committer: Lee Bieber
  • Date: 2010-11-05 20:22:41 UTC
  • mfrom: (1907.1.2 build)
  • Revision ID: kalebral@gmail.com-20101105202241-1fm31t0y0fvdwcd3
Merge Brian - Adding FileSort class, merge in catalog tree
Merge Joe - fix bug 670971: InnoDB does not complete shutdown with transaction log enabled

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2010 Brian Aker
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
/* 
 
22
  This is a "work in progress". The concept needs to be replicated throughout
 
23
  the code, but we will start with baby steps for the moment. To not incur
 
24
  cost until we are complete, for the moment it will do no allocation.
 
25
 
 
26
  This is mainly here so that it can be used in the SE interface for
 
27
  the time being.
 
28
 
 
29
  This will replace Table_ident.
 
30
  */
 
31
 
 
32
#ifndef DRIZZLED_FILESORT_H
 
33
#define DRIZZLED_FILESORT_H
 
34
 
 
35
namespace drizzled {
 
36
 
 
37
class Session;
 
38
class Table;
 
39
class SortField;
 
40
 
 
41
namespace optimizer {
 
42
class SqlSelect;
 
43
}
 
44
 
 
45
class FileSort {
 
46
  Session &_session;
 
47
 
 
48
  uint32_t sortlength(SortField *sortorder, uint32_t s_length, bool *multi_byte_charset);
 
49
  sort_addon_field *get_addon_fields(Field **ptabfield, uint32_t sortlength, uint32_t *plength);
 
50
  ha_rows find_all_keys(SORTPARAM *param, 
 
51
                        optimizer::SqlSelect *select,
 
52
                        unsigned char **sort_keys,
 
53
                        internal::IO_CACHE *buffpek_pointers,
 
54
                        internal::IO_CACHE *tempfile, internal::IO_CACHE *indexfile);
 
55
 
 
56
  int merge_buffers(SORTPARAM *param,internal::IO_CACHE *from_file,
 
57
                    internal::IO_CACHE *to_file, unsigned char *sort_buffer,
 
58
                    buffpek *lastbuff,
 
59
                    buffpek *Fb,
 
60
                    buffpek *Tb,int flag);
 
61
 
 
62
  int merge_index(SORTPARAM *param,
 
63
                  unsigned char *sort_buffer,
 
64
                  buffpek *buffpek,
 
65
                  uint32_t maxbuffer,
 
66
                  internal::IO_CACHE *tempfile,
 
67
                  internal::IO_CACHE *outfile);
 
68
 
 
69
  int merge_many_buff(SORTPARAM *param, unsigned char *sort_buffer,
 
70
                      buffpek *buffpek,
 
71
                      uint32_t *maxbuffer, internal::IO_CACHE *t_file);
 
72
 
 
73
  uint32_t read_to_buffer(internal::IO_CACHE *fromfile, buffpek *buffpek,
 
74
                          uint32_t sort_length);
 
75
 
 
76
 
 
77
 
 
78
public:
 
79
 
 
80
  FileSort(Session &arg);
 
81
 
 
82
  Session &getSession()
 
83
  {
 
84
    return _session;
 
85
  }
 
86
 
 
87
  ha_rows run(Table *table, SortField *sortorder, uint32_t s_length,
 
88
              optimizer::SqlSelect *select, ha_rows max_rows,
 
89
              bool sort_positions, ha_rows *examined_rows);
 
90
 
 
91
};
 
92
 
 
93
} /* namespace drizzled */
 
94
 
 
95
#endif /* DRIZZLED_FILESORT_H */