~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; 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
 */
1 by brian
clean slate
20
21
/* The old structures from unireg */
22
575.1.3 by Monty Taylor
Moved some stuff out of handler.h.
23
#ifndef DRIZZLED_STRUCTS_H
24
#define DRIZZLED_STRUCTS_H
25
1237.9.2 by Padraig O'Sullivan
Moved opt_range.[cc,h] into the optimizer directory and namespace and renamed the files to
26
#include "drizzled/base.h"
1241.9.51 by Monty Taylor
More mysys stuff out of headers.
27
#include "drizzled/definitions.h"
1237.9.2 by Padraig O'Sullivan
Moved opt_range.[cc,h] into the optimizer directory and namespace and renamed the files to
28
#include "drizzled/lex_string.h"
1241.9.43 by Monty Taylor
Merged trunk. Also renamed thr_lock. Doh. I hate it when I do both.
29
#include "drizzled/thr_lock.h"
481.1.16 by Monty Taylor
Merged iocache.h addition.
30
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
31
namespace drizzled
32
{
33
34
namespace internal
35
{
36
typedef struct st_io_cache IO_CACHE;
37
}
38
327.1.1 by Brian Aker
First pass in encapsulating table (it is now an object, no longer a structure).
39
class Table;
1 by brian
clean slate
40
class Field;
41
1805.1.1 by tdavies
In .../drizzled/structs.h: Changed C structs KeyPartInfo, KeyInfo, and RegInfo to C++ classes
42
class KeyPartInfo 
43
{	/* Info about a key part */
44
public:
1 by brian
clean slate
45
  Field *field;
1241.9.40 by Monty Taylor
Fixed OSX.
46
  unsigned int	offset;				/* offset in record (from 0) */
47
  unsigned int	null_offset;			/* Offset to null_bit in record */
1 by brian
clean slate
48
  /* Length of key part in bytes, excluding NULL flag and length bytes */
206 by Brian Aker
Removed final uint dead types.
49
  uint16_t length;
1 by brian
clean slate
50
  /*
51
    Number of bytes required to store the keypart value. This may be
52
    different from the "length" field as it also counts
53
     - possible NULL-flag byte (see HA_KEY_NULL_LENGTH) [if null_bit != 0,
54
       the first byte stored at offset is 1 if null, 0 if non-null; the
55
       actual value is stored from offset+1].
56
     - possible HA_KEY_BLOB_LENGTH bytes needed to store actual value length.
57
  */
206 by Brian Aker
Removed final uint dead types.
58
  uint16_t store_length;
59
  uint16_t key_type;
1575 by Brian Aker
First part, remove pack flags.
60
private:
61
public:
62
  uint16_t getKeyType() const
63
  {
64
    return key_type;
65
  }
206 by Brian Aker
Removed final uint dead types.
66
  uint16_t fieldnr;			/* Fieldnum in UNIREG (1,2,3,...) */
67
  uint16_t key_part_flag;			/* 0 or HA_REVERSE_SORT */
68
  uint8_t type;
69
  uint8_t null_bit;			/* Position to null_bit */
1534 by Brian Aker
Remove of KeyPartInfo
70
};
1 by brian
clean slate
71
72
1805.1.1 by tdavies
In .../drizzled/structs.h: Changed C structs KeyPartInfo, KeyInfo, and RegInfo to C++ classes
73
class KeyInfo 
74
{
75
public:
1241.9.40 by Monty Taylor
Fixed OSX.
76
  unsigned int	key_length;		/* Tot length of key */
1030.1.1 by Brian Aker
Straighten out structures (remove some some dead bits).
77
  enum  ha_key_alg algorithm;
1241.9.40 by Monty Taylor
Fixed OSX.
78
  unsigned long flags;			/* dupp key and pack flags */
79
  unsigned int key_parts;		/* How many key_parts */
482 by Brian Aker
Remove uint.
80
  uint32_t  extra_length;
1241.9.40 by Monty Taylor
Fixed OSX.
81
  unsigned int usable_key_parts;	/* Should normally be = key_parts */
482 by Brian Aker
Remove uint.
82
  uint32_t  block_size;
1534 by Brian Aker
Remove of KeyPartInfo
83
  KeyPartInfo *key_part;
1 by brian
clean slate
84
  char	*name;				/* Name of key */
85
  /*
86
    Array of AVG(#records with the same field value) for 1st ... Nth key part.
87
    0 means 'not known'.
88
    For temporary heap tables this member is NULL.
89
  */
90
  ulong *rec_per_key;
327.1.1 by Brian Aker
First pass in encapsulating table (it is now an object, no longer a structure).
91
  Table *table;
1 by brian
clean slate
92
  LEX_STRING comment;
1535 by Brian Aker
Rename of KEY to KeyInfo
93
};
1 by brian
clean slate
94
95
1089.1.1 by Brian Aker
Remove of JOIN_TAB to JoinTable
96
class JoinTable;
1 by brian
clean slate
97
1805.1.1 by tdavies
In .../drizzled/structs.h: Changed C structs KeyPartInfo, KeyInfo, and RegInfo to C++ classes
98
class RegInfo 
99
{
100
public:		/* Extra info about reg */
1089.1.1 by Brian Aker
Remove of JOIN_TAB to JoinTable
101
  JoinTable *join_tab;	/* Used by SELECT() */
1 by brian
clean slate
102
  enum thr_lock_type lock_type;		/* How database is used */
103
  bool not_exists_optimize;
104
  bool impossible_range;
1014.2.10 by Monty Taylor
Made REGINFO into RegInfo and responsible for initializing itself.
105
  RegInfo()
106
    : join_tab(NULL), lock_type(TL_UNLOCK),
107
      not_exists_optimize(false), impossible_range(false) {}
108
  void reset()
109
  {
110
    join_tab= NULL;
111
    lock_type= TL_UNLOCK;
112
    not_exists_optimize= false;
113
    impossible_range= false;
114
  }
115
};
1 by brian
clean slate
116
520.1.21 by Brian Aker
THD -> Session rename
117
class Session;
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
118
class Cursor;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
119
namespace optimizer { class SqlSelect; }
1 by brian
clean slate
120
1228.1.5 by Monty Taylor
Merged in some naming things.
121
typedef int *(*update_var)(Session *, struct drizzle_show_var *);
1 by brian
clean slate
122
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
123
} /* namespace drizzled */
124
1 by brian
clean slate
125
	/* Bits in form->status */
126
#define STATUS_NO_RECORD	(1+2)	/* Record isn't usably */
127
#define STATUS_GARBAGE		1
128
#define STATUS_NOT_FOUND	2	/* No record in database when needed */
129
#define STATUS_NO_PARENT	4	/* Parent record wasn't found */
130
#define STATUS_NOT_READ		8	/* Record isn't read */
131
#define STATUS_UPDATED		16	/* Record is updated by formula */
132
#define STATUS_NULL_ROW		32	/* table->null_row is set */
133
#define STATUS_DELETED		64
134
575.1.3 by Monty Taylor
Moved some stuff out of handler.h.
135
#endif /* DRIZZLED_STRUCTS_H */