~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
 *
1999.6.1 by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
390.1.2 by Monty Taylor
Fixed copyright headers in drizzled/
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>
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
24
#include <drizzled/base.h>
25
#include <drizzled/qsort_cmp.h>
1241.9.12 by Monty Taylor
Trims more out of server_includes.h.
26
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
27
namespace drizzled
28
{
29
30
namespace internal
31
{
32
typedef struct st_io_cache IO_CACHE;
33
}
34
1237.9.4 by Padraig O'Sullivan
Removed the inclusion of drizzled/field.h in the server_includes header file.
35
class Field;
1241.9.30 by Monty Taylor
More cruft gone.
36
class Table;
1711.6.1 by Brian Aker
Style on structure cleanup
37
class SortField;
471 by Monty Taylor
Added header protections.
38
1 by brian
clean slate
39
/*
1826.1.1 by tdavies
Bug:621861 Changed C structs to C++ class in the following files: filesort.cc, filesort_info.h, sql_sort.h, table.h. removed the '_st' from the name of some of the classes. For more detail of changes made read the merge proposal notes.
40
   The structure sort_addon_field describes a fixed layout
1 by brian
clean slate
41
   for field values appended to sorted values in records to be sorted
42
   in the sort buffer.
43
   Only fixed layout is supported now.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
44
   Null bit maps for the appended values is placed before the values
1 by brian
clean slate
45
   themselves. Offsets are from the last sorted field, that is from the
46
   record referefence, which is still last component of sorted records.
47
   It is preserved for backward compatiblility.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
48
   The structure is used tp store values of the additional fields
1 by brian
clean slate
49
   in the sort buffer. It is used also when these values are read
50
   from a temporary file/buffer. As the reading procedures are beyond the
51
   scope of the 'filesort' code the values have to be retrieved via
52
   the callback function 'unpack_addon_fields'.
53
*/
54
1826.1.1 by tdavies
Bug:621861 Changed C structs to C++ class in the following files: filesort.cc, filesort_info.h, sql_sort.h, table.h. removed the '_st' from the name of some of the classes. For more detail of changes made read the merge proposal notes.
55
class sort_addon_field {  /* Sort addon packed field */
56
public:
1 by brian
clean slate
57
  Field *field;          /* Original field */
482 by Brian Aker
Remove uint.
58
  uint32_t   offset;         /* Offset from the last sorted field */
59
  uint32_t   null_offset;    /* Offset to to null bit from the last sorted field */
60
  uint32_t   length;         /* Length in the sort buffer */
206 by Brian Aker
Removed final uint dead types.
61
  uint8_t  null_bit;       /* Null bit mask for the field */
1711.6.1 by Brian Aker
Style on structure cleanup
62
1826.1.1 by tdavies
Bug:621861 Changed C structs to C++ class in the following files: filesort.cc, filesort_info.h, sql_sort.h, table.h. removed the '_st' from the name of some of the classes. For more detail of changes made read the merge proposal notes.
63
  sort_addon_field() :
1711.6.1 by Brian Aker
Style on structure cleanup
64
    field(NULL),
65
    offset(0),
66
    null_offset(0),
67
    length(0),
68
    null_bit(0)
69
  { }
70
71
};
72
1826.1.1 by tdavies
Bug:621861 Changed C structs to C++ class in the following files: filesort.cc, filesort_info.h, sql_sort.h, table.h. removed the '_st' from the name of some of the classes. For more detail of changes made read the merge proposal notes.
73
class buffpek {		/* Struktur om sorteringsbuffrarna */
74
public:
1241.9.45 by Monty Taylor
Added a header for qsort_cmp.
75
  off_t file_pos;			/* Where we are in the sort file */
1711.6.1 by Brian Aker
Style on structure cleanup
76
  unsigned char *base;			/* key pointers */
77
  unsigned char *key;			/* key pointers */
1 by brian
clean slate
78
  ha_rows count;			/* Number of rows in table */
1241.9.46 by Monty Taylor
Removed some more evil.
79
  size_t mem_count;			/* numbers of keys in memory */
80
  size_t max_keys;			/* Max keys in buffert */
1711.6.1 by Brian Aker
Style on structure cleanup
81
1826.1.1 by tdavies
Bug:621861 Changed C structs to C++ class in the following files: filesort.cc, filesort_info.h, sql_sort.h, table.h. removed the '_st' from the name of some of the classes. For more detail of changes made read the merge proposal notes.
82
  buffpek() :
1711.6.1 by Brian Aker
Style on structure cleanup
83
    file_pos(0),
84
    base(0),
85
    key(0),
86
    count(0),
87
    mem_count(0),
88
    max_keys(0)
89
  { }
90
91
};
1 by brian
clean slate
92
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
93
} /* namespace drizzled */
94
1122.2.10 by Monty Taylor
Fixed all of the include guards.
95
#endif /* DRIZZLED_SQL_SORT_H */