~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: Brian Aker
  • Date: 2010-10-28 01:45:34 UTC
  • mfrom: (1878.5.8 catalogs)
  • Revision ID: brian@tangent.org-20101028014534-b6qp4wp6crj60h7k
Merge in catalog tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
20
20
 
21
21
/* Structs that defines the Table */
22
22
 
23
 
 
24
 
 
25
23
#ifndef DRIZZLED_TABLE_H
26
24
#define DRIZZLED_TABLE_H
27
25
 
28
26
#include <string>
29
27
#include <boost/dynamic_bitset.hpp>
30
28
 
31
 
#include <drizzled/order.h>
32
 
#include <drizzled/filesort_info.h>
33
 
#include <drizzled/natural_join_column.h>
34
 
#include <drizzled/field_iterator.h>
35
 
#include <drizzled/cursor.h>
36
 
#include <drizzled/lex_string.h>
37
 
#include <drizzled/table/instance.h>
38
 
#include <drizzled/atomics.h>
39
 
#include <drizzled/query_id.h>
40
 
 
41
 
#include <drizzled/visibility.h>
 
29
#include "drizzled/order.h"
 
30
#include "drizzled/filesort_info.h"
 
31
#include "drizzled/natural_join_column.h"
 
32
#include "drizzled/field_iterator.h"
 
33
#include "drizzled/cursor.h"
 
34
#include "drizzled/lex_string.h"
 
35
#include "drizzled/table_list.h"
 
36
#include "drizzled/table_share.h"
 
37
#include "drizzled/atomics.h"
 
38
#include "drizzled/query_id.h"
42
39
 
43
40
namespace drizzled
44
41
{
45
42
 
46
 
class COND_EQUAL;
47
 
class Field_blob;
48
43
class Item;
49
44
class Item_subselect;
 
45
class Select_Lex_Unit;
 
46
class Select_Lex;
 
47
class COND_EQUAL;
50
48
class SecurityContext;
51
 
class Select_Lex;
52
 
class Select_Lex_Unit;
53
49
class TableList;
54
 
namespace field { class Epoch; }
55
 
namespace plugin { class StorageEngine; }
 
50
class Field_timestamp;
 
51
class Field_blob;
 
52
 
 
53
extern uint64_t refresh_version;
56
54
 
57
55
typedef enum enum_table_category TABLE_CATEGORY;
58
56
typedef struct st_columndef MI_COLUMNDEF;
61
59
 * Class representing a set of records, either in a temporary, 
62
60
 * normal, or derived table.
63
61
 */
64
 
class DRIZZLED_API Table 
 
62
class Table 
65
63
{
66
64
  Field **field; /**< Pointer to fields collection */
 
65
public:
67
66
 
68
 
public:
69
67
  Field **getFields() const
70
68
  {
71
69
    return field;
87
85
  }
88
86
 
89
87
  Cursor *cursor; /**< Pointer to the storage engine's Cursor managing this table */
90
 
 
91
88
private:
92
89
  Table *next;
93
 
 
94
90
public:
95
91
  Table *getNext() const
96
92
  {
147
143
    return in_use;
148
144
  }
149
145
 
150
 
  unsigned char *getInsertRecord() const
 
146
  unsigned char *getInsertRecord()
151
147
  {
152
148
    return record[0];
153
149
  }
162
158
  KeyInfo  *key_info; /**< data of keys in database */
163
159
  Field *next_number_field; /**< Set if next_number is activated. @TODO What the heck is the difference between this and the next member? */
164
160
  Field *found_next_number_field; /**< Points to the "next-number" field (autoincrement field) */
165
 
  field::Epoch *timestamp_field; /**< Points to the auto-setting timestamp field, if any */
 
161
  Field_timestamp *timestamp_field; /**< Points to the auto-setting timestamp field, if any */
166
162
 
167
163
  TableList *pos_in_table_list; /* Element referring to this table */
168
 
  Order *group;
 
164
  order_st *group;
169
165
  
170
166
  const char *getAlias() const
171
167
  {
284
280
    statement then the variable contains TIMESTAMP_NO_AUTO_SET (i.e. 0).
285
281
 
286
282
    Value of this variable is set for each statement in open_table() and
287
 
    if needed cleared later in statement processing code (see update_query()
 
283
    if needed cleared later in statement processing code (see mysql_update()
288
284
    as example).
289
285
  */
290
286
  timestamp_auto_set_type timestamp_field_type;
312
308
    The set is implemented as a bitmap.
313
309
  */
314
310
  key_map keys_in_use_for_query;
315
 
 
316
311
  /* Map of keys that can be used to calculate GROUP BY without sorting */
317
312
  key_map keys_in_use_for_group_by;
318
 
 
319
313
  /* Map of keys that can be used to calculate ORDER BY without sorting */
320
314
  key_map keys_in_use_for_order_by;
321
315
 
391
385
  virtual bool hasShare() const= 0; /* Get rid of this long term */
392
386
  virtual void setShare(TableShare *new_share)= 0; /* Get rid of this long term */
393
387
 
394
 
  virtual void release(void)= 0;
395
 
 
396
388
  uint32_t sizeKeys() { return getMutableShare()->sizeKeys(); }
397
389
  uint32_t sizeFields() { return getMutableShare()->sizeFields(); }
398
390
  uint32_t getRecordLength() const { return getShare()->getRecordLength(); }
414
406
 
415
407
    return NULL;
416
408
  }
417
 
  inline uint8_t getBlobPtrSize() const { return getShare()->sizeBlobPtr(); }
418
 
  inline uint32_t getNullBytes() const { return getShare()->null_bytes; }
419
 
  inline uint32_t getNullFields() const { return getShare()->null_fields; }
 
409
  inline uint8_t getBlobPtrSize() { return getShare()->blob_ptr_size; }
 
410
  inline uint32_t getNullBytes() { return getShare()->null_bytes; }
 
411
  inline uint32_t getNullFields() { return getShare()->null_fields; }
420
412
  inline unsigned char *getDefaultValues() { return  getMutableShare()->getDefaultValues(); }
421
413
  inline const char *getSchemaName()  const { return getShare()->getSchemaName(); }
422
414
  inline const char *getTableName()  const { return getShare()->getTableName(); }
423
415
 
424
 
  inline bool isDatabaseLowByteFirst() const { return getShare()->db_low_byte_first; } /* Portable row format */
425
 
  inline bool isNameLock() const { return open_placeholder; }
 
416
  inline bool isDatabaseLowByteFirst() { return getShare()->db_low_byte_first; } /* Portable row format */
 
417
  inline bool isNameLock() const { return getShare()->isNameLock(); }
 
418
  inline bool isReplaceWithNameLock() { return getShare()->replace_with_name_lock; }
426
419
 
427
 
  uint32_t index_flags(uint32_t idx) const;
 
420
  uint32_t index_flags(uint32_t idx) const
 
421
  {
 
422
    return getShare()->storage_engine->index_flags(getShare()->getKeyInfo(idx).algorithm);
 
423
  }
428
424
 
429
425
  inline plugin::StorageEngine *getEngine() const   /* table_type for handler */
430
426
  {
431
 
    return getShare()->getEngine();
 
427
    return getShare()->storage_engine;
432
428
  }
433
429
 
434
430
  Cursor &getCursor() const /* table_type for handler */
440
436
  size_t max_row_length(const unsigned char *data);
441
437
  uint32_t find_shortest_key(const key_map *usable_keys);
442
438
  bool compare_record(Field **ptr);
443
 
  bool records_are_comparable();
444
 
  bool compare_records();
 
439
  bool compare_record();
445
440
  /* TODO: the (re)storeRecord's may be able to be further condensed */
446
441
  void storeRecord();
447
442
  void storeRecordAsInsert();
450
445
  void restoreRecordAsDefault();
451
446
  void emptyRecord();
452
447
 
453
 
 
454
448
  /* See if this can be blown away */
455
449
  inline uint32_t getDBStat () { return db_stat; }
456
450
  inline uint32_t setDBStat () { return db_stat; }
499
493
  }
500
494
 
501
495
  /* Both of the below should go away once we can move this bit to the field objects */
502
 
  inline bool isReadSet(uint32_t index) const
 
496
  inline bool isReadSet(uint32_t index)
503
497
  {
504
498
    return read_set->test(index);
505
499
  }
554
548
  {
555
549
    return db_stat || open_placeholder;
556
550
  }
557
 
 
558
551
  /*
559
552
    Is this instance of the table should be reopen or represents a name-lock?
560
553
  */
561
 
  bool needs_reopen_or_name_lock() const;
 
554
  inline bool needs_reopen_or_name_lock()
 
555
  { 
 
556
    return getShare()->getVersion() != refresh_version;
 
557
  }
562
558
 
563
559
  /**
564
560
    clean/setup table fields and map.
579
575
  void filesort_free_buffers(bool full= false);
580
576
  void intern_close_table();
581
577
 
582
 
  void print_error(int error, myf errflag) const;
 
578
  void print_error(int error, myf errflag)
 
579
  {
 
580
    getShare()->storage_engine->print_error(error, errflag, *this);
 
581
  }
583
582
 
584
583
  /**
585
584
    @return
586
585
    key if error because of duplicated keys
587
586
  */
588
 
  uint32_t get_dup_key(int error) const
 
587
  uint32_t get_dup_key(int error)
589
588
  {
590
589
    cursor->errkey  = (uint32_t) -1;
591
590
    if (error == HA_ERR_FOUND_DUPP_KEY || error == HA_ERR_FOREIGN_DUPLICATE_KEY ||
601
600
  */
602
601
  bool operator<(const Table &right) const
603
602
  {
604
 
    return getShare()->getCacheKey() < right.getShare()->getCacheKey();
 
603
    int result= strcasecmp(this->getShare()->getSchemaName(), right.getShare()->getSchemaName());
 
604
 
 
605
    if (result <  0)
 
606
      return true;
 
607
 
 
608
    if (result >  0)
 
609
      return false;
 
610
 
 
611
    result= strcasecmp(this->getShare()->getTableName(), right.getShare()->getTableName());
 
612
 
 
613
    if (result <  0)
 
614
      return true;
 
615
 
 
616
    if (result >  0)
 
617
      return false;
 
618
 
 
619
    if (this->getShare()->getTableProto()->type()  < right.getShare()->getTableProto()->type())
 
620
      return true;
 
621
 
 
622
    return false;
605
623
  }
606
624
 
607
625
  static bool compare(const Table *a, const Table *b)
611
629
 
612
630
  friend std::ostream& operator<<(std::ostream& output, const Table &table)
613
631
  {
614
 
    if (table.getShare())
615
 
    {
616
 
      output << "Table:(";
617
 
      output << table.getShare()->getSchemaName();
618
 
      output << ", ";
619
 
      output <<  table.getShare()->getTableName();
620
 
      output << ", ";
621
 
      output <<  table.getShare()->getTableTypeAsString();
622
 
      output << ")";
623
 
    }
624
 
    else
625
 
    {
626
 
      output << "Table:(has no share)";
627
 
    }
 
632
    output << "Table:(";
 
633
    output << table.getShare()->getSchemaName();
 
634
    output << ", ";
 
635
    output <<  table.getShare()->getTableName();
 
636
    output << ", ";
 
637
    output <<  table.getShare()->getTableTypeAsString();
 
638
    output << ")";
628
639
 
629
640
    return output;  // for multiple << operators.
630
641
  }
828
839
 
829
840
namespace optimizer { class SqlSelect; }
830
841
 
 
842
ha_rows filesort(Session *session,
 
843
                 Table *form,
 
844
                 SortField *sortorder,
 
845
                 uint32_t s_length,
 
846
                 optimizer::SqlSelect *select,
 
847
                 ha_rows max_rows,
 
848
                 bool sort_positions,
 
849
                 ha_rows *examined_rows);
 
850
 
 
851
void filesort_free_buffers(Table *table, bool full);
831
852
void change_double_for_sort(double nr,unsigned char *to);
 
853
double my_double_round(double value, int64_t dec, bool dec_unsigned,
 
854
                       bool truncate);
832
855
int get_quick_record(optimizer::SqlSelect *select);
833
856
 
834
857
void find_date(char *pos,uint32_t *vek,uint32_t flag);
835
858
TYPELIB *convert_strings_to_array_type(char * *typelibs, char * *end);
836
859
TYPELIB *typelib(memory::Root *mem_root, List<String> &strings);
837
860
ulong get_form_pos(int file, unsigned char *head, TYPELIB *save_names);
 
861
ulong next_io_size(ulong pos);
838
862
void append_unescaped(String *res, const char *pos, uint32_t length);
839
863
 
840
 
DRIZZLED_API int rename_file_ext(const char * from,const char * to,const char * ext);
 
864
int rename_file_ext(const char * from,const char * to,const char * ext);
841
865
bool check_column_name(const char *name);
 
866
bool check_db_name(Session *session, SchemaIdentifier &schema);
842
867
bool check_table_name(const char *name, uint32_t length);
843
868
 
844
869
} /* namespace drizzled */
845
870
 
846
 
#include <drizzled/table/singular.h>
847
 
#include <drizzled/table/concurrent.h>
 
871
#include "drizzled/table/instance.h"
 
872
#include "drizzled/table/concurrent.h"
848
873
 
849
874
#endif /* DRIZZLED_TABLE_H */