~drizzle-trunk/drizzle/development

390.1.2 by Monty Taylor
Fixed copyright headers in drizzled/
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2008 Sun Microsystems
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; version 2 of the License.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, write to the Free Software
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
1 by brian
clean slate
19
1122.2.10 by Monty Taylor
Fixed all of the include guards.
20
#ifndef DRIZZLED_SQL_SORT_H
21
#define DRIZZLED_SQL_SORT_H
471 by Monty Taylor
Added header protections.
22
1241.9.46 by Monty Taylor
Removed some more evil.
23
#include <unistd.h>
24
1241.9.23 by Monty Taylor
Removed sql_table.h from server_includes.h.
25
#include "drizzled/base.h"
1241.9.45 by Monty Taylor
Added a header for qsort_cmp.
26
#include "drizzled/qsort_cmp.h"
1241.9.12 by Monty Taylor
Trims more out of server_includes.h.
27
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
28
namespace drizzled
29
{
30
31
namespace internal
32
{
33
typedef struct st_io_cache IO_CACHE;
34
}
35
1237.9.4 by Padraig O'Sullivan
Removed the inclusion of drizzled/field.h in the server_includes header file.
36
class Field;
1241.9.30 by Monty Taylor
More cruft gone.
37
class Table;
1711.6.1 by Brian Aker
Style on structure cleanup
38
class SortField;
471 by Monty Taylor
Added header protections.
39
1241.9.45 by Monty Taylor
Added a header for qsort_cmp.
40
1 by brian
clean slate
41
/* Defines used by filesort and uniques */
42
43
#define MERGEBUFF		7
44
#define MERGEBUFF2		15
45
46
/*
1711.6.1 by Brian Aker
Style on structure cleanup
47
   The structure sort_addon_field_st describes a fixed layout
1 by brian
clean slate
48
   for field values appended to sorted values in records to be sorted
49
   in the sort buffer.
50
   Only fixed layout is supported now.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
51
   Null bit maps for the appended values is placed before the values
1 by brian
clean slate
52
   themselves. Offsets are from the last sorted field, that is from the
53
   record referefence, which is still last component of sorted records.
54
   It is preserved for backward compatiblility.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
55
   The structure is used tp store values of the additional fields
1 by brian
clean slate
56
   in the sort buffer. It is used also when these values are read
57
   from a temporary file/buffer. As the reading procedures are beyond the
58
   scope of the 'filesort' code the values have to be retrieved via
59
   the callback function 'unpack_addon_fields'.
60
*/
61
1711.6.1 by Brian Aker
Style on structure cleanup
62
struct sort_addon_field_st {  /* Sort addon packed field */
1 by brian
clean slate
63
  Field *field;          /* Original field */
482 by Brian Aker
Remove uint.
64
  uint32_t   offset;         /* Offset from the last sorted field */
65
  uint32_t   null_offset;    /* Offset to to null bit from the last sorted field */
66
  uint32_t   length;         /* Length in the sort buffer */
206 by Brian Aker
Removed final uint dead types.
67
  uint8_t  null_bit;       /* Null bit mask for the field */
1711.6.1 by Brian Aker
Style on structure cleanup
68
69
  sort_addon_field_st() :
70
    field(NULL),
71
    offset(0),
72
    null_offset(0),
73
    length(0),
74
    null_bit(0)
75
  { }
76
77
};
78
79
struct buffpek_st {		/* Struktur om sorteringsbuffrarna */
1241.9.45 by Monty Taylor
Added a header for qsort_cmp.
80
  off_t file_pos;			/* Where we are in the sort file */
1711.6.1 by Brian Aker
Style on structure cleanup
81
  unsigned char *base;			/* key pointers */
82
  unsigned char *key;			/* key pointers */
1 by brian
clean slate
83
  ha_rows count;			/* Number of rows in table */
1241.9.46 by Monty Taylor
Removed some more evil.
84
  size_t mem_count;			/* numbers of keys in memory */
85
  size_t max_keys;			/* Max keys in buffert */
1711.6.1 by Brian Aker
Style on structure cleanup
86
87
  buffpek_st() :
88
    file_pos(0),
89
    base(0),
90
    key(0),
91
    count(0),
92
    mem_count(0),
93
    max_keys(0)
94
  { }
95
96
};
1 by brian
clean slate
97
98
struct BUFFPEK_COMPARE_CONTEXT
99
{
100
  qsort_cmp2 key_compare;
101
  void *key_compare_arg;
102
};
103
1578.4.8 by Brian Aker
Modify merge-buffer to use std::vector in one location (just curious to see
104
struct st_sort_param {
482 by Brian Aker
Remove uint.
105
  uint32_t rec_length;          /* Length of sorted records */
106
  uint32_t sort_length;			/* Length of sorted columns */
107
  uint32_t ref_length;			/* Length of record ref. */
108
  uint32_t addon_length;        /* Length of added packed fields */
109
  uint32_t res_length;          /* Length of records in final sorted file/buffer */
110
  uint32_t keys;				/* Max keys / buffer */
1 by brian
clean slate
111
  ha_rows max_rows,examined_rows;
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
112
  Table *sort_form;			/* For quicker make_sortkey */
1711.6.1 by Brian Aker
Style on structure cleanup
113
  SortField *local_sortorder;
114
  SortField *end;
115
  sort_addon_field_st *addon_field; /* Descriptors for companion fields */
481 by Brian Aker
Remove all of uchar.
116
  unsigned char *unique_buff;
1 by brian
clean slate
117
  bool not_killable;
118
  char* tmp_buffer;
119
  /* The fields below are used only by Unique class */
120
  qsort2_cmp compare;
121
  BUFFPEK_COMPARE_CONTEXT cmp_context;
1578.4.8 by Brian Aker
Modify merge-buffer to use std::vector in one location (just curious to see
122
};
123
124
typedef struct st_sort_param SORTPARAM;
1 by brian
clean slate
125
126
481 by Brian Aker
Remove all of uchar.
127
int merge_many_buff(SORTPARAM *param, unsigned char *sort_buffer,
1711.6.1 by Brian Aker
Style on structure cleanup
128
                    buffpek_st *buffpek,
129
                    uint32_t *maxbuffer, internal::IO_CACHE *t_file);
130
131
uint32_t read_to_buffer(internal::IO_CACHE *fromfile, buffpek_st *buffpek,
132
                        uint32_t sort_length);
133
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
134
int merge_buffers(SORTPARAM *param,internal::IO_CACHE *from_file,
1711.6.1 by Brian Aker
Style on structure cleanup
135
                  internal::IO_CACHE *to_file, unsigned char *sort_buffer,
136
                  buffpek_st *lastbuff,
137
                  buffpek_st *Fb,
138
                  buffpek_st *Tb,int flag);
471 by Monty Taylor
Added header protections.
139
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
140
} /* namespace drizzled */
141
1122.2.10 by Monty Taylor
Fixed all of the include guards.
142
#endif /* DRIZZLED_SQL_SORT_H */