mysql_com.h
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:9k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL 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. /*
  14. ** Common definition between mysql server & client
  15. */
  16. #ifndef _mysql_com_h
  17. #define _mysql_com_h
  18. #define NAME_LEN 64 /* Field/table name length */
  19. #define HOSTNAME_LENGTH 60
  20. #define USERNAME_LENGTH 16
  21. #define SERVER_VERSION_LENGTH 60
  22. #define LOCAL_HOST "localhost"
  23. #define LOCAL_HOST_NAMEDPIPE "."
  24. #if defined(__WIN__) && !defined( _CUSTOMCONFIG_)
  25. #define MYSQL_NAMEDPIPE "MySQL"
  26. #define MYSQL_SERVICENAME "MySQL"
  27. #endif /* __WIN__ */
  28. enum enum_server_command {
  29.   COM_SLEEP, COM_QUIT, COM_INIT_DB, COM_QUERY, COM_FIELD_LIST,
  30.   COM_CREATE_DB, COM_DROP_DB, COM_REFRESH, COM_SHUTDOWN,  COM_STATISTICS,
  31.   COM_PROCESS_INFO, COM_CONNECT, COM_PROCESS_KILL, COM_DEBUG, COM_PING,
  32.   COM_TIME, COM_DELAYED_INSERT, COM_CHANGE_USER, COM_BINLOG_DUMP,
  33.   COM_TABLE_DUMP,  COM_CONNECT_OUT, COM_REGISTER_SLAVE,
  34.   COM_END /* Must be last! */
  35. };
  36. #define NOT_NULL_FLAG 1 /* Field can't be NULL */
  37. #define PRI_KEY_FLAG 2 /* Field is part of a primary key */
  38. #define UNIQUE_KEY_FLAG 4 /* Field is part of a unique key */
  39. #define MULTIPLE_KEY_FLAG 8 /* Field is part of a key */
  40. #define BLOB_FLAG 16 /* Field is a blob */
  41. #define UNSIGNED_FLAG 32 /* Field is unsigned */
  42. #define ZEROFILL_FLAG 64 /* Field is zerofill */
  43. #define BINARY_FLAG 128
  44. /* The following are only sent to new clients */
  45. #define ENUM_FLAG 256 /* field is an enum */
  46. #define AUTO_INCREMENT_FLAG 512 /* field is a autoincrement field */
  47. #define TIMESTAMP_FLAG 1024 /* Field is a timestamp */
  48. #define SET_FLAG 2048 /* field is a set */
  49. #define NUM_FLAG 32768 /* Field is num (for clients) */
  50. #define PART_KEY_FLAG 16384 /* Intern; Part of some key */
  51. #define GROUP_FLAG 32768 /* Intern: Group field */
  52. #define UNIQUE_FLAG 65536 /* Intern: Used by sql_yacc */
  53. #define REFRESH_GRANT 1 /* Refresh grant tables */
  54. #define REFRESH_LOG 2 /* Start on new log file */
  55. #define REFRESH_TABLES 4 /* close all tables */
  56. #define REFRESH_HOSTS 8 /* Flush host cache */
  57. #define REFRESH_STATUS 16 /* Flush status variables */
  58. #define REFRESH_THREADS 32 /* Flush thread cache */
  59. #define REFRESH_SLAVE           64      /* Reset master info and restart slave
  60.    thread */
  61. #define REFRESH_MASTER          128     /* Remove all bin logs in the index
  62.    and truncate the index */
  63. /* The following can't be set with mysql_refresh() */
  64. #define REFRESH_READ_LOCK 16384 /* Lock tables for read */
  65. #define REFRESH_FAST 32768 /* Intern flag */
  66. /* RESET (remove all queries) from query cache */
  67. #define REFRESH_QUERY_CACHE 65536
  68. #define REFRESH_QUERY_CACHE_FREE 0x20000L /* pack query cache */
  69. #define REFRESH_DES_KEY_FILE 0x40000L
  70. #define REFRESH_USER_RESOURCES 0x80000L
  71. #define CLIENT_LONG_PASSWORD 1 /* new more secure passwords */
  72. #define CLIENT_FOUND_ROWS 2 /* Found instead of affected rows */
  73. #define CLIENT_LONG_FLAG 4 /* Get all column flags */
  74. #define CLIENT_CONNECT_WITH_DB 8 /* One can specify db on connect */
  75. #define CLIENT_NO_SCHEMA 16 /* Don't allow database.table.column */
  76. #define CLIENT_COMPRESS 32 /* Can use compression protocol */
  77. #define CLIENT_ODBC 64 /* Odbc client */
  78. #define CLIENT_LOCAL_FILES 128 /* Can use LOAD DATA LOCAL */
  79. #define CLIENT_IGNORE_SPACE 256 /* Ignore spaces before '(' */
  80. #define CLIENT_INTERACTIVE 1024 /* This is an interactive client */
  81. #define CLIENT_SSL              2048     /* Switch to SSL after handshake */
  82. #define CLIENT_IGNORE_SIGPIPE   4096     /* IGNORE sigpipes */
  83. #define CLIENT_TRANSACTIONS 8192 /* Client knows about transactions */
  84. #define SERVER_STATUS_IN_TRANS  1 /* Transaction has started */
  85. #define SERVER_STATUS_AUTOCOMMIT 2 /* Server in auto_commit mode */
  86. #define MYSQL_ERRMSG_SIZE 200
  87. #define NET_READ_TIMEOUT 30 /* Timeout on read */
  88. #define NET_WRITE_TIMEOUT 60 /* Timeout on write */
  89. #define NET_WAIT_TIMEOUT 8*60*60 /* Wait for new query */
  90. struct st_vio; /* Only C */
  91. typedef struct st_vio Vio;
  92. #define MAX_CHAR_WIDTH 255 /* Max length for a CHAR colum */
  93. #define MAX_BLOB_WIDTH 8192 /* Default width for blob */
  94. typedef struct st_net {
  95.   Vio* vio;
  96.   unsigned char *buff,*buff_end,*write_pos,*read_pos;
  97.   my_socket fd; /* For Perl DBI/dbd */
  98.   unsigned long max_packet,max_packet_size;
  99.   unsigned int last_errno,pkt_nr,compress_pkt_nr;
  100.   unsigned int write_timeout, read_timeout, retry_count;
  101.   int fcntl;
  102.   char last_error[MYSQL_ERRMSG_SIZE];
  103.   unsigned char error;
  104.   my_bool return_errno,compress;
  105.   /*
  106.     The following variable is set if we are doing several queries in one
  107.     command ( as in LOAD TABLE ... FROM MASTER ),
  108.     and do not want to confuse the client with OK at the wrong time
  109.   */
  110.   unsigned long remain_in_buf,length, buf_length, where_b;
  111.   unsigned int *return_status;
  112.   unsigned char reading_or_writing;
  113.   char save_char;
  114.   my_bool no_send_ok;
  115.   gptr query_cache_query;
  116. } NET;
  117. #define packet_error (~(unsigned long) 0)
  118. enum enum_field_types { FIELD_TYPE_DECIMAL, FIELD_TYPE_TINY,
  119. FIELD_TYPE_SHORT,  FIELD_TYPE_LONG,
  120. FIELD_TYPE_FLOAT,  FIELD_TYPE_DOUBLE,
  121. FIELD_TYPE_NULL,   FIELD_TYPE_TIMESTAMP,
  122. FIELD_TYPE_LONGLONG,FIELD_TYPE_INT24,
  123. FIELD_TYPE_DATE,   FIELD_TYPE_TIME,
  124. FIELD_TYPE_DATETIME, FIELD_TYPE_YEAR,
  125. FIELD_TYPE_NEWDATE,
  126. FIELD_TYPE_ENUM=247,
  127. FIELD_TYPE_SET=248,
  128. FIELD_TYPE_TINY_BLOB=249,
  129. FIELD_TYPE_MEDIUM_BLOB=250,
  130. FIELD_TYPE_LONG_BLOB=251,
  131. FIELD_TYPE_BLOB=252,
  132. FIELD_TYPE_VAR_STRING=253,
  133. FIELD_TYPE_STRING=254,
  134. FIELD_TYPE_GEOMETRY=255
  135. };
  136. #define FIELD_TYPE_CHAR FIELD_TYPE_TINY /* For compability */
  137. #define FIELD_TYPE_INTERVAL FIELD_TYPE_ENUM /* For compability */
  138. #define net_new_transaction(net) ((net)->pkt_nr=0)
  139. #ifdef __cplusplus
  140. extern "C" {
  141. #endif
  142. int my_net_init(NET *net, Vio* vio);
  143. void my_net_local_init(NET *net);
  144. void net_end(NET *net);
  145. void net_clear(NET *net);
  146. int net_flush(NET *net);
  147. int my_net_write(NET *net,const char *packet,unsigned long len);
  148. int net_write_command(NET *net,unsigned char command,const char *packet,
  149.   unsigned long len);
  150. int net_real_write(NET *net,const char *packet,unsigned long len);
  151. unsigned long my_net_read(NET *net);
  152. /* The following function is not meant for normal usage */
  153. struct sockaddr;
  154. int my_connect(my_socket s, const struct sockaddr *name, unsigned int namelen,
  155.        unsigned int timeout);
  156. struct rand_struct {
  157.   unsigned long seed1,seed2,max_value;
  158.   double max_value_dbl;
  159. };
  160. #ifdef __cplusplus
  161. }
  162. #endif
  163.   /* The following is for user defined functions */
  164. enum Item_result {STRING_RESULT,REAL_RESULT,INT_RESULT};
  165. typedef struct st_udf_args
  166. {
  167.   unsigned int arg_count; /* Number of arguments */
  168.   enum Item_result *arg_type; /* Pointer to item_results */
  169.   char **args; /* Pointer to argument */
  170.   unsigned long *lengths; /* Length of string arguments */
  171.   char *maybe_null; /* Set to 1 for all maybe_null args */
  172. } UDF_ARGS;
  173.   /* This holds information about the result */
  174. typedef struct st_udf_init
  175. {
  176.   my_bool maybe_null; /* 1 if function can return NULL */
  177.   unsigned int decimals; /* for real functions */
  178.   unsigned long max_length; /* For string functions */
  179.   char   *ptr; /* free pointer for function data */
  180.   my_bool const_item; /* 0 if result is independent of arguments */
  181. } UDF_INIT;
  182.   /* Constants when using compression */
  183. #define NET_HEADER_SIZE 4 /* standard header size */
  184. #define COMP_HEADER_SIZE 3 /* compression header extra size */
  185.   /* Prototypes to password functions */
  186. #ifdef __cplusplus
  187. extern "C" {
  188. #endif
  189. extern unsigned long max_allowed_packet;
  190. extern unsigned long net_buffer_length;
  191. void randominit(struct rand_struct *,unsigned long seed1,
  192. unsigned long seed2);
  193. double my_rnd(struct rand_struct *);
  194. void make_scrambled_password(char *to,const char *password);
  195. void get_salt_from_password(unsigned long *res,const char *password);
  196. void make_password_from_salt(char *to, unsigned long *hash_res);
  197. char *scramble(char *to,const char *message,const char *password,
  198.        my_bool old_ver);
  199. my_bool check_scramble(const char *, const char *message,
  200.        unsigned long *salt,my_bool old_ver);
  201. char *get_tty_password(char *opt_message);
  202. void hash_password(unsigned long *result, const char *password);
  203. /* Some other useful functions */
  204. my_bool my_init(void);
  205. int load_defaults(const char *conf_file, const char **groups,
  206.   int *argc, char ***argv);
  207. my_bool my_thread_init(void);
  208. void my_thread_end(void);
  209. #ifdef __cplusplus
  210. }
  211. #endif
  212. #define NULL_LENGTH ((unsigned long) ~0) /* For net_store_length */
  213. #endif