~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/table.h

new date/time additions

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#define DRIZZLED_IDENTIFIER_TABLE_H
35
35
 
36
36
#include <drizzled/enum.h>
37
 
#include <drizzled/definitions.h>
38
 
#include <drizzled/message/table.pb.h>
 
37
#include "drizzled/definitions.h"
 
38
#include "drizzled/message/table.pb.h"
 
39
 
 
40
#include "drizzled/identifier.h"
39
41
 
40
42
#include <string.h>
41
43
 
48
50
 
49
51
#include <boost/functional/hash.hpp>
50
52
 
51
 
#include <drizzled/visibility.h>
52
 
 
53
53
namespace drizzled {
54
54
class Table;
55
55
 
56
56
namespace identifier {
57
57
 
58
 
class DRIZZLED_API Table : public Schema
 
58
class Table : public identifier::Schema
59
59
{
60
60
public:
61
61
  typedef message::Table::TableType Type;
118
118
 
119
119
  Type type;
120
120
  std::string path;
121
 
  std::string key_path;
122
121
  std::string table_name;
123
122
  Key key;
124
123
  size_t hash_value;
171
170
  {
172
171
    if (type == message::Table::TEMPORARY || type == message::Table::INTERNAL)
173
172
      return true;
174
 
 
175
173
    return false;
176
174
  }
177
175
 
204
202
  virtual void getSQLPath(std::string &sql_path) const;
205
203
 
206
204
  virtual const std::string &getPath() const;
207
 
  const std::string &getKeyPath() const;
208
205
 
209
206
  void setPath(const std::string &new_path)
210
207
  {
228
225
    return false;
229
226
  }
230
227
 
 
228
  friend std::ostream& operator<<(std::ostream& output, Table::const_reference identifier)
 
229
  {
 
230
    const char *type_str;
 
231
 
 
232
    output << "Table:(";
 
233
    output <<  identifier.getSchemaName();
 
234
    output << ", ";
 
235
    output << identifier.getTableName();
 
236
    output << ", ";
 
237
 
 
238
    switch (identifier.type) {
 
239
    case message::Table::STANDARD:
 
240
      type_str= "standard";
 
241
      break;
 
242
    case message::Table::INTERNAL:
 
243
      type_str= "internal";
 
244
      break;
 
245
    case message::Table::TEMPORARY:
 
246
      type_str= "temporary";
 
247
      break;
 
248
    case message::Table::FUNCTION:
 
249
      type_str= "function";
 
250
      break;
 
251
    }
 
252
 
 
253
    output << type_str;
 
254
    output << ", ";
 
255
    output << identifier.path;
 
256
    output << ", ";
 
257
    output << identifier.getHashValue();
 
258
    output << ")";
 
259
 
 
260
    return output;  // for multiple << operators.
 
261
  }
 
262
 
231
263
  friend bool operator==(Table::const_reference left, Table::const_reference right)
232
264
  {
233
265
    if (left.getHashValue() == right.getHashValue())
258
290
  }
259
291
};
260
292
 
261
 
std::ostream& operator<<(std::ostream& output, Table::const_reference identifier);
262
293
std::size_t hash_value(Table const& b);
263
294
std::size_t hash_value(Table::Key const& b);
264
295