mysql_com.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:9k
源码类别:

模拟服务器

开发平台:

C/C++

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