structs.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /* The old structures from unireg */
  17. struct st_table;
  18. class Field;
  19. typedef struct st_date_format { /* How to print date */
  20.   uint pos[6]; /* Positions to YY.MM.DD HH:MM:SS */
  21. } DATE_FORMAT;
  22. typedef struct st_keyfile_info { /* used with ha_info() */
  23.   byte ref[MAX_REFLENGTH]; /* Pointer to current row */
  24.   byte dupp_ref[MAX_REFLENGTH]; /* Pointer to dupp row */
  25.   uint ref_length; /* Length of ref (1-8) */
  26.   uint block_size; /* index block size */
  27.   File filenr; /* (uniq) filenr for table */
  28.   ha_rows records; /* Records i datafilen */
  29.   ha_rows deleted; /* Deleted records */
  30.   ulonglong data_file_length; /* Length off data file */
  31.   ulonglong max_data_file_length; /* Length off data file */
  32.   ulonglong index_file_length;
  33.   ulonglong max_index_file_length;
  34.   ulonglong delete_length; /* Free bytes */
  35.   ulonglong auto_increment_value;
  36.   int errkey,sortkey; /* Last errorkey and sorted by */
  37.   time_t create_time; /* When table was created */
  38.   time_t check_time;
  39.   time_t update_time;
  40.   ulong mean_rec_length; /* physical reclength */
  41. } KEYFILE_INFO;
  42. typedef struct st_key_part_info { /* Info about a key part */
  43.   Field *field;
  44.   uint offset; /* offset in record (from 0) */
  45.   uint null_offset; // Offset to null_bit in record
  46.   uint16 length; /* Length of key_part */
  47.   uint16 store_length;
  48.   uint16 key_type;
  49.   uint16 fieldnr; /* Fieldnum in UNIREG */
  50.   uint8 key_part_flag; /* 0 or HA_REVERSE_SORT */
  51.   uint8 type;
  52.   uint8 null_bit; // Position to null_bit
  53. } KEY_PART_INFO ;
  54. typedef struct st_key {
  55.   uint key_length; /* Tot length of key */
  56.   uint flags; /* dupp key and pack flags */
  57.   uint key_parts; /* How many key_parts */
  58.   uint  extra_length;
  59.   uint usable_key_parts; /* Should normally be = key_parts */
  60.   KEY_PART_INFO *key_part;
  61.   char *name; /* Name of key */
  62.   ulong *rec_per_key; /* Key part distribution */
  63.   union {
  64.     int  bdb_return_if_eq;
  65.   } handler;
  66. } KEY;
  67. struct st_join_table;
  68. typedef struct st_reginfo { /* Extra info about reg */
  69.   struct st_join_table *join_tab; /* Used by SELECT() */
  70.   enum thr_lock_type lock_type; /* How database is used */
  71.   bool not_exists_optimize;
  72.   bool impossible_range;
  73. } REGINFO;
  74. struct st_read_record; /* For referense later */
  75. class SQL_SELECT;
  76. class THD;
  77. class handler;
  78. typedef struct st_read_record { /* Parameter to read_record */
  79.   struct st_table *table; /* Head-form */
  80.   handler *file;
  81.   struct st_table **forms; /* head and ref forms */
  82.   int (*read_record)(struct st_read_record *);
  83.   THD *thd;
  84.   SQL_SELECT *select;
  85.   uint cache_records;
  86.   uint ref_length,struct_length,reclength,rec_cache_size,error_offset;
  87.   uint index;
  88.   byte *ref_pos; /* pointer to form->refpos */
  89.   byte *record;
  90.   byte *cache,*cache_pos,*cache_end,*read_positions;
  91.   IO_CACHE *io_cache;
  92.   bool print_error;
  93. } READ_RECORD;
  94. enum timestamp_type { TIMESTAMP_NONE, TIMESTAMP_DATE, TIMESTAMP_FULL,
  95.       TIMESTAMP_TIME };
  96. typedef struct st_time {
  97.   uint year,month,day,hour,minute,second,second_part;
  98.   bool neg;
  99.   timestamp_type time_type;
  100. } TIME;
  101. typedef struct {
  102.   long year,month,day,hour,minute,second,second_part;
  103.   bool neg;
  104. } INTERVAL;
  105. enum SHOW_TYPE { SHOW_LONG,SHOW_CHAR,SHOW_INT,SHOW_CHAR_PTR,SHOW_BOOL,
  106.  SHOW_MY_BOOL,SHOW_OPENTABLES,SHOW_STARTTIME,SHOW_QUESTION,
  107.  SHOW_LONG_CONST, SHOW_INT_CONST, SHOW_HAVE};
  108. enum SHOW_COMP_OPTION { SHOW_OPTION_YES, SHOW_OPTION_NO, SHOW_OPTION_DISABLED};
  109. struct show_var_st {
  110.   const char *name;
  111.   char *value;
  112.   SHOW_TYPE type;
  113. };
  114. typedef struct lex_string {
  115.   char *str;
  116.   uint length;
  117. } LEX_STRING;
  118. typedef struct st_lex_user {
  119.   LEX_STRING user, host, password;
  120. } LEX_USER;
  121. /* Bits in form->update */
  122. #define REG_MAKE_DUPP 1 /* Make a copy of record when read */
  123. #define REG_NEW_RECORD 2 /* Write a new record if not found */
  124. #define REG_UPDATE 4 /* Uppdate record */
  125. #define REG_DELETE 8 /* Delete found record */
  126. #define REG_PROG 16 /* User is updateing database */
  127. #define REG_CLEAR_AFTER_WRITE 32
  128. #define REG_MAY_BE_UPDATED 64
  129. #define REG_AUTO_UPDATE 64 /* Used in D-forms for scroll-tables */
  130. #define REG_OVERWRITE 128
  131. #define REG_SKIPP_DUPP 256
  132. /* Bits in form->status */
  133. #define STATUS_NO_RECORD (1+2) /* Record isn't usably */
  134. #define STATUS_GARBAGE 1
  135. #define STATUS_NOT_FOUND 2 /* No record in database when neaded */
  136. #define STATUS_NO_PARENT 4 /* Parent record wasn't found */
  137. #define STATUS_NOT_READ 8 /* Record isn't read */
  138. #define STATUS_UPDATED 16 /* Record is updated by formula */
  139. #define STATUS_NULL_ROW 32 /* table->null_row is set */