~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/key.h

  • Committer: Monty Taylor
  • Date: 2008-07-26 16:22:28 UTC
  • mto: (236.1.42 codestyle)
  • mto: This revision was merged to the branch mainline in revision 261.
  • Revision ID: monty@inaugust.com-20080726162228-atatk41l6w4np70m
Added gettext calls in to my_getopt.c and drizzle.c

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) 2008 Sun Microsystems, Inc.
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
 
 */
19
 
 
20
 
 
21
 
#ifndef DRIZZLED_KEY_H
22
 
#define DRIZZLED_KEY_H
23
 
 
24
 
#include <string>
25
 
#include <boost/dynamic_bitset.hpp>
26
 
 
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"
33
 
 
34
 
namespace drizzled
35
 
{
36
 
 
37
 
namespace memory { class Root; }
38
 
 
39
 
class Item;
40
 
 
41
 
class Key :public memory::SqlAlloc {
42
 
public:
43
 
  enum Keytype { PRIMARY, UNIQUE, MULTIPLE, FOREIGN_KEY};
44
 
  Keytype type;
45
 
  KEY_CREATE_INFO key_create_info;
46
 
  List<Key_part_spec> columns;
47
 
  LEX_STRING name;
48
 
  bool generated;
49
 
 
50
 
  Key(Keytype type_par,
51
 
      const lex_string_t &name_arg,
52
 
      KEY_CREATE_INFO *key_info_arg,
53
 
      bool generated_arg, List<Key_part_spec> &cols) :
54
 
    type(type_par),
55
 
    key_create_info(*key_info_arg),
56
 
    columns(cols),
57
 
    name(name_arg),
58
 
    generated(generated_arg)
59
 
  {}
60
 
 
61
 
  Key(Keytype type_par,
62
 
      const char *name_arg,
63
 
      size_t name_len_arg,
64
 
      KEY_CREATE_INFO *key_info_arg,
65
 
      bool generated_arg,
66
 
      List<Key_part_spec> &cols) :
67
 
    type(type_par),
68
 
    key_create_info(*key_info_arg),
69
 
    columns(cols),
70
 
    generated(generated_arg)
71
 
  {
72
 
    name.str= const_cast<char *>(name_arg);
73
 
    name.length= name_len_arg;
74
 
  }
75
 
 
76
 
  virtual ~Key() {}
77
 
  /* Equality comparison of keys (ignoring name) */
78
 
  friend bool foreign_key_prefix(Key *a, Key *b);
79
 
};
80
 
 
81
 
 
82
 
int find_ref_key(KeyInfo *key, uint32_t key_count, unsigned char *record, Field *field,
83
 
                 uint32_t *key_length, uint32_t *keypart);
84
 
/**
85
 
  Copy part of a record that forms a key or key prefix to a buffer.
86
 
 
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
91
 
    form a key.
92
 
 
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
97
 
*/
98
 
 
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);
109
 
 
110
 
} /* namespace drizzled */
111
 
 
112
 
#endif /* DRIZZLED_KEY_H */