structs.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:7k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* The old structures from unireg */
  14. struct st_table;
  15. class Field;
  16. typedef struct st_lex_string
  17. {
  18.   char *str;
  19.   uint length;
  20. } LEX_STRING;
  21. typedef struct st_lex_string_with_init :public st_lex_string
  22. {
  23.   st_lex_string_with_init(const char *str_arg, uint length_arg)
  24.   {
  25.     str= (char*) str_arg;
  26.     length= length_arg;
  27.   }
  28. } LEX_STRING_WITH_INIT;
  29. typedef struct st_date_time_format {
  30.   uchar positions[8];
  31.   char  time_separator; /* Separator between hour and minute */
  32.   uint flag; /* For future */
  33.   LEX_STRING format;
  34. } DATE_TIME_FORMAT;
  35. typedef struct st_keyfile_info { /* used with ha_info() */
  36.   byte ref[MAX_REFLENGTH]; /* Pointer to current row */
  37.   byte dupp_ref[MAX_REFLENGTH]; /* Pointer to dupp row */
  38.   uint ref_length; /* Length of ref (1-8) */
  39.   uint block_size; /* index block size */
  40.   File filenr; /* (uniq) filenr for table */
  41.   ha_rows records; /* Records i datafilen */
  42.   ha_rows deleted; /* Deleted records */
  43.   ulonglong data_file_length; /* Length off data file */
  44.   ulonglong max_data_file_length; /* Length off data file */
  45.   ulonglong index_file_length;
  46.   ulonglong max_index_file_length;
  47.   ulonglong delete_length; /* Free bytes */
  48.   ulonglong auto_increment_value;
  49.   int errkey,sortkey; /* Last errorkey and sorted by */
  50.   time_t create_time; /* When table was created */
  51.   time_t check_time;
  52.   time_t update_time;
  53.   ulong mean_rec_length; /* physical reclength */
  54. } KEYFILE_INFO;
  55. typedef struct st_key_part_info { /* Info about a key part */
  56.   Field *field;
  57.   uint offset; /* offset in record (from 0) */
  58.   uint null_offset; /* Offset to null_bit in record */
  59.   uint16 length; /* Length of key_part */
  60.   uint16 store_length;
  61.   uint16 key_type;
  62.   uint16 fieldnr; /* Fieldnum in UNIREG */
  63.   uint8 key_part_flag; /* 0 or HA_REVERSE_SORT */
  64.   uint8 type;
  65.   uint8 null_bit; /* Position to null_bit */
  66. } KEY_PART_INFO ;
  67. typedef struct st_key {
  68.   uint key_length; /* Tot length of key */
  69.   uint flags; /* dupp key and pack flags */
  70.   uint key_parts; /* How many key_parts */
  71.   uint  extra_length;
  72.   uint usable_key_parts; /* Should normally be = key_parts */
  73.   enum  ha_key_alg algorithm;
  74.   KEY_PART_INFO *key_part;
  75.   char *name; /* Name of key */
  76.   /*
  77.     Array of AVG(#records with the same field value) for 1st ... Nth key part.
  78.     0 means 'not known'.
  79.     For temporary heap tables this member is NULL.
  80.   */
  81.   ulong *rec_per_key;
  82.   union {
  83.     int  bdb_return_if_eq;
  84.   } handler;
  85. } KEY;
  86. struct st_join_table;
  87. typedef struct st_reginfo { /* Extra info about reg */
  88.   struct st_join_table *join_tab; /* Used by SELECT() */
  89.   enum thr_lock_type lock_type; /* How database is used */
  90.   bool not_exists_optimize;
  91.   bool impossible_range;
  92. } REGINFO;
  93. struct st_read_record; /* For referense later */
  94. class SQL_SELECT;
  95. class THD;
  96. class handler;
  97. typedef struct st_read_record { /* Parameter to read_record */
  98.   struct st_table *table; /* Head-form */
  99.   handler *file;
  100.   struct st_table **forms; /* head and ref forms */
  101.   int (*read_record)(struct st_read_record *);
  102.   THD *thd;
  103.   SQL_SELECT *select;
  104.   uint cache_records;
  105.   uint ref_length,struct_length,reclength,rec_cache_size,error_offset;
  106.   uint index;
  107.   byte *ref_pos; /* pointer to form->refpos */
  108.   byte *record;
  109.   byte *rec_buf;                /* to read field values  after filesort */
  110.   byte *cache,*cache_pos,*cache_end,*read_positions;
  111.   IO_CACHE *io_cache;
  112.   bool print_error, ignore_not_found_rows;
  113. } READ_RECORD;
  114. /*
  115.   Originally MySQL used TIME structure inside server only, but since
  116.   4.1 it's exported to user in the new client API. Define aliases for
  117.   new names to keep existing code simple.
  118. */
  119. typedef struct st_mysql_time TIME;
  120. typedef enum enum_mysql_timestamp_type timestamp_type;
  121. typedef struct {
  122.   ulong year,month,day,hour;
  123.   ulonglong minute,second,second_part;
  124.   bool neg;
  125. } INTERVAL;
  126. typedef struct st_known_date_time_format {
  127.   const char *format_name;
  128.   const char *date_format;
  129.   const char *datetime_format;
  130.   const char *time_format;
  131. } KNOWN_DATE_TIME_FORMAT;
  132. enum SHOW_TYPE
  133. {
  134.   SHOW_UNDEF,
  135.   SHOW_LONG, SHOW_LONGLONG, SHOW_INT, SHOW_CHAR, SHOW_CHAR_PTR, SHOW_BOOL,
  136.   SHOW_MY_BOOL, SHOW_OPENTABLES, SHOW_STARTTIME, SHOW_QUESTION,
  137.   SHOW_LONG_CONST, SHOW_INT_CONST, SHOW_HAVE, SHOW_SYS, SHOW_HA_ROWS,
  138. #ifdef HAVE_OPENSSL
  139.   SHOW_SSL_CTX_SESS_ACCEPT,  SHOW_SSL_CTX_SESS_ACCEPT_GOOD,
  140.   SHOW_SSL_GET_VERSION,  SHOW_SSL_CTX_GET_SESSION_CACHE_MODE,
  141.   SHOW_SSL_CTX_SESS_CB_HITS,  SHOW_SSL_CTX_SESS_ACCEPT_RENEGOTIATE,
  142.   SHOW_SSL_CTX_SESS_NUMBER,  SHOW_SSL_SESSION_REUSED,
  143.   SHOW_SSL_CTX_SESS_GET_CACHE_SIZE, SHOW_SSL_GET_CIPHER,
  144.   SHOW_SSL_GET_DEFAULT_TIMEOUT, SHOW_SSL_GET_VERIFY_MODE,
  145.   SHOW_SSL_CTX_GET_VERIFY_MODE, SHOW_SSL_GET_VERIFY_DEPTH,
  146.   SHOW_SSL_CTX_GET_VERIFY_DEPTH, SHOW_SSL_CTX_SESS_CONNECT,
  147.   SHOW_SSL_CTX_SESS_CONNECT_RENEGOTIATE, SHOW_SSL_CTX_SESS_CONNECT_GOOD,
  148.   SHOW_SSL_CTX_SESS_HITS, SHOW_SSL_CTX_SESS_MISSES,
  149.   SHOW_SSL_CTX_SESS_TIMEOUTS, SHOW_SSL_CTX_SESS_CACHE_FULL,
  150.   SHOW_SSL_GET_CIPHER_LIST,
  151. #endif /* HAVE_OPENSSL */
  152.   SHOW_RPL_STATUS, SHOW_SLAVE_RUNNING, SHOW_SLAVE_RETRIED_TRANS,
  153.   SHOW_KEY_CACHE_LONG, SHOW_KEY_CACHE_CONST_LONG, SHOW_KEY_CACHE_LONGLONG
  154. };
  155. enum SHOW_COMP_OPTION { SHOW_OPTION_YES, SHOW_OPTION_NO, SHOW_OPTION_DISABLED};
  156. extern const char *show_comp_option_name[];
  157. typedef int *(*update_var)(THD *, struct show_var_st *);
  158. typedef struct show_var_st {
  159.   const char *name;
  160.   char *value;
  161.   SHOW_TYPE type;
  162. } SHOW_VAR;
  163. typedef struct st_lex_user {
  164.   LEX_STRING user, host, password;
  165. } LEX_USER;
  166. typedef struct user_resources {
  167.   uint questions, updates, connections, bits;
  168. } USER_RESOURCES;
  169. typedef struct  user_conn {
  170.   char *user, *host;
  171.   uint len, connections, conn_per_hour, updates, questions, user_len;
  172.   USER_RESOURCES user_resources;
  173.   time_t intime;
  174. } USER_CONN;
  175. /* Bits in form->update */
  176. #define REG_MAKE_DUPP 1 /* Make a copy of record when read */
  177. #define REG_NEW_RECORD 2 /* Write a new record if not found */
  178. #define REG_UPDATE 4 /* Uppdate record */
  179. #define REG_DELETE 8 /* Delete found record */
  180. #define REG_PROG 16 /* User is updating database */
  181. #define REG_CLEAR_AFTER_WRITE 32
  182. #define REG_MAY_BE_UPDATED 64
  183. #define REG_AUTO_UPDATE 64 /* Used in D-forms for scroll-tables */
  184. #define REG_OVERWRITE 128
  185. #define REG_SKIP_DUP 256
  186. /* Bits in form->status */
  187. #define STATUS_NO_RECORD (1+2) /* Record isn't usably */
  188. #define STATUS_GARBAGE 1
  189. #define STATUS_NOT_FOUND 2 /* No record in database when needed */
  190. #define STATUS_NO_PARENT 4 /* Parent record wasn't found */
  191. #define STATUS_NOT_READ 8 /* Record isn't read */
  192. #define STATUS_UPDATED 16 /* Record is updated by formula */
  193. #define STATUS_NULL_ROW 32 /* table->null_row is set */
  194. #define STATUS_DELETED 64