1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2010 Brian Aker
4
5
* Copyright (C) 2009 Sun Microsystems
6
7
* This program is free software; you can redistribute it and/or modify
29
30
This will replace Table_ident.
32
#ifndef DRIZZLED_TABLE_IDENTIFIER_H
33
#define DRIZZLED_TABLE_IDENTIFIER_H
33
#ifndef DRIZZLED_IDENTIFIER_TABLE_H
34
#define DRIZZLED_IDENTIFIER_TABLE_H
35
36
#include <drizzled/enum.h>
36
37
#include "drizzled/definitions.h"
37
38
#include "drizzled/message/table.pb.h"
39
#include "drizzled/schema_identifier.h"
40
#include "drizzled/identifier.h"
41
42
#include <string.h>
47
48
#include <algorithm>
48
49
#include <functional>
51
#include <boost/functional/hash.hpp>
50
53
namespace drizzled {
54
uint32_t filename_to_tablename(const char *from, char *to, uint32_t to_length);
55
size_t build_table_filename(std::string &buff, const char *db, const char *table_name, bool is_tmp);
57
57
class TableIdentifier : public SchemaIdentifier
60
60
typedef message::Table::TableType Type;
64
std::vector<char> key_buffer;
74
const char *vector() const
76
return &key_buffer[0];
79
std::vector<char> &vectorPtr()
84
void set(size_t resize_arg, const std::string &a, const std::string &b);
86
friend bool operator==(const Key &left, const Key &right)
88
if (left.hash_value == right.hash_value and left.key_buffer.size() == right.key_buffer.size())
90
if (memcmp(&left.key_buffer[0], &right.key_buffer[0], left.key_buffer.size()) == 0)
97
friend bool operator<(const Key &left, const Key &right)
99
return left.key_buffer < right.key_buffer;
104
return key_buffer.size();
107
size_t getHashValue() const
65
117
std::string table_name;
66
std::string lower_table_name;
67
118
std::string sql_path;
124
size_t getKeySize() const
126
return getSchemaName().size() + getTableName().size() + 2;
72
130
TableIdentifier(const Table &table);
172
static bool isView(message::Table::TableType arg) // Not a SQL view, but a view for I_S
177
case message::Table::STANDARD:
178
case message::Table::TEMPORARY:
179
case message::Table::INTERNAL:
181
case message::Table::FUNCTION:
188
bool isView() const // Not a SQL view, but a view for I_S
115
193
Type getType() const
131
209
return table_name;
134
void copyToTableMessage(message::Table &message);
212
void copyToTableMessage(message::Table &message) const;
136
bool operator<(TableIdentifier &right)
214
friend bool operator<(const TableIdentifier &left, const TableIdentifier &right)
138
int first= getLower().compare(right.getLower());
216
if (left.getKey() < right.getKey())
150
int val= lower_table_name.compare(right.lower_table_name);
162
if (type < right.type)
205
259
friend bool operator==(TableIdentifier &left, TableIdentifier &right)
207
if (left.type == right.type)
261
if (left.getHashValue() == right.getHashValue())
209
if (static_cast<SchemaIdentifier &>(left) == static_cast<SchemaIdentifier &>(right))
211
if (left.lower_table_name == right.lower_table_name)
263
if (left.getKey() == right.getKey())
270
static uint32_t filename_to_tablename(const char *from, char *to, uint32_t to_length);
271
static size_t build_table_filename(std::string &path, const std::string &db, const std::string &table_name, bool is_tmp);
272
static size_t build_tmptable_filename(std::string &buffer);
273
static size_t build_tmptable_filename(std::vector<char> &buffer);
277
size_t getHashValue() const
282
const Key &getKey() const
223
typedef std::vector <TableIdentifier> TableIdentifierList;
224
typedef std::list <TableIdentifier> TableIdentifiers;
288
std::size_t hash_value(TableIdentifier const& b);
289
std::size_t hash_value(TableIdentifier::Key const& b);
291
typedef std::vector <TableIdentifier> TableIdentifiers;
226
293
} /* namespace drizzled */
228
#endif /* DRIZZLED_TABLE_IDENTIFIER_H */
295
#endif /* DRIZZLED_IDENTIFIER_TABLE_H */