1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems, Inc.
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.
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.
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
21
#ifndef DRIZZLED_KEY_H
22
#define DRIZZLED_KEY_H
25
#include <boost/dynamic_bitset.hpp>
27
#include "drizzled/memory/sql_alloc.h"
28
#include "drizzled/key_part_spec.h"
29
#include "drizzled/sql_list.h"
30
#include "drizzled/lex_string.h"
31
#include "drizzled/sql_string.h"
32
#include "drizzled/handler_structs.h"
37
namespace memory { class Root; }
41
class Key :public memory::SqlAlloc {
43
enum Keytype { PRIMARY, UNIQUE, MULTIPLE, FOREIGN_KEY};
45
KEY_CREATE_INFO key_create_info;
46
List<Key_part_spec> columns;
51
const lex_string_t &name_arg,
52
KEY_CREATE_INFO *key_info_arg,
53
bool generated_arg, List<Key_part_spec> &cols) :
55
key_create_info(*key_info_arg),
58
generated(generated_arg)
64
KEY_CREATE_INFO *key_info_arg,
66
List<Key_part_spec> &cols) :
68
key_create_info(*key_info_arg),
70
generated(generated_arg)
72
name.str= const_cast<char *>(name_arg);
73
name.length= name_len_arg;
77
/* Equality comparison of keys (ignoring name) */
78
friend bool foreign_key_prefix(Key *a, Key *b);
82
int find_ref_key(KeyInfo *key, uint32_t key_count, unsigned char *record, Field *field,
83
uint32_t *key_length, uint32_t *keypart);
85
Copy part of a record that forms a key or key prefix to a buffer.
87
The function takes a complete table record (as e.g. retrieved by
88
handler::index_read()), and a description of an index on the same table,
89
and extracts the first key_length bytes of the record which are part of a
90
key into to_key. If length == 0 then copy all bytes from the record that
93
@param to_key buffer that will be used as a key
94
@param from_record full record to be copied from
95
@param key_info descriptor of the index
96
@param key_length specifies length of all keyparts that will be copied
99
DRIZZLED_API void key_copy(unsigned char *to_key, unsigned char *from_record, KeyInfo *key_info, uint32_t key_length);
100
void key_copy(std::basic_string<unsigned char> &to_key,
101
unsigned char *from_record, KeyInfo *key_info, uint32_t key_length);
102
void key_restore(unsigned char *to_record, unsigned char *from_key, KeyInfo *key_info,
103
uint16_t key_length);
104
void key_zero_nulls(unsigned char *tuple, KeyInfo *key_info);
105
bool key_cmp_if_same(Table *form,const unsigned char *key,uint32_t index,uint32_t key_length);
106
void key_unpack(String *to, const Table *form,uint32_t index);
107
bool is_key_used(Table *table, uint32_t idx, const boost::dynamic_bitset<>& fields);
108
int key_cmp(KeyPartInfo *key_part, const unsigned char *key, uint32_t key_length);
110
} /* namespace drizzled */
112
#endif /* DRIZZLED_KEY_H */