2001-04-11 13:04:03 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2000
|
|
|
|
* SWsoft company
|
|
|
|
*
|
|
|
|
* This material is provided "as is", with absolutely no warranty expressed
|
|
|
|
* or implied. Any use is at your own risk.
|
|
|
|
*
|
|
|
|
* Permission to use or copy this software for any purpose is hereby granted
|
|
|
|
* without fee, provided the above notices are retained on all copies.
|
|
|
|
* Permission to modify the code and to distribute modified code is granted,
|
|
|
|
* provided the above notices are retained, and a notice that the code was
|
|
|
|
* modified is included with the above copyright notice.
|
|
|
|
*
|
2002-07-23 17:31:22 +02:00
|
|
|
|
|
|
|
This code was modified by the MySQL team
|
|
|
|
*/
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2001-09-30 04:47:34 +02:00
|
|
|
/*
|
|
|
|
The following is needed to not cause conflicts when we include mysqld.cc
|
|
|
|
*/
|
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
#define main main1
|
|
|
|
#define mysql_unix_port mysql_inix_port1
|
|
|
|
#define mysql_port mysql_port1
|
|
|
|
|
2002-10-23 13:55:35 +02:00
|
|
|
static int fake_argc= 1;
|
|
|
|
static char *fake_argv[]= {(char *)"", 0};
|
|
|
|
static const char *fake_groups[] = { "server", "embedded", 0 };
|
2003-09-08 10:11:18 +02:00
|
|
|
static char org_my_init_done;
|
|
|
|
char server_inited;
|
2002-10-23 13:55:35 +02:00
|
|
|
|
2002-01-09 08:38:48 +01:00
|
|
|
#if defined (__WIN__)
|
|
|
|
#include "../sql/mysqld.cpp"
|
|
|
|
#else
|
2001-06-05 00:34:04 +02:00
|
|
|
#include "../sql/mysqld.cc"
|
2002-01-09 08:38:48 +01:00
|
|
|
#endif
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
C_MODE_START
|
2002-12-16 14:33:29 +01:00
|
|
|
#include <mysql.h>
|
2003-09-08 15:49:23 +02:00
|
|
|
#undef ER
|
2002-10-13 11:23:55 +02:00
|
|
|
#include "errmsg.h"
|
2003-07-18 13:26:35 +02:00
|
|
|
#include <sql_common.h>
|
2001-10-02 04:53:00 +02:00
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
static int check_connections1(THD * thd);
|
|
|
|
static int check_connections2(THD * thd);
|
|
|
|
static bool check_user(THD *thd, enum_server_command command,
|
|
|
|
const char *user, const char *passwd, const char *db,
|
|
|
|
bool check_count);
|
2001-09-30 04:47:34 +02:00
|
|
|
char * get_mysql_home(){ return mysql_home;};
|
|
|
|
char * get_mysql_real_data_home(){ return mysql_real_data_home;};
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2003-08-28 10:39:46 +02:00
|
|
|
my_bool STDCALL
|
2003-06-17 18:32:31 +02:00
|
|
|
emb_advanced_command(MYSQL *mysql, enum enum_server_command command,
|
|
|
|
const char *header, ulong header_length,
|
|
|
|
const char *arg, ulong arg_length, my_bool skip_check)
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2002-10-13 11:23:55 +02:00
|
|
|
my_bool result= 1;
|
2002-12-16 14:33:29 +01:00
|
|
|
THD *thd=(THD *) mysql->thd;
|
2003-09-08 15:49:23 +02:00
|
|
|
NET *net= &mysql->net;
|
2002-10-13 11:23:55 +02:00
|
|
|
|
|
|
|
/* Check that we are calling the client functions in right order */
|
|
|
|
if (mysql->status != MYSQL_STATUS_READY)
|
|
|
|
{
|
2003-09-08 15:49:23 +02:00
|
|
|
strmov(net->last_error,
|
|
|
|
ER(net->last_errno=CR_COMMANDS_OUT_OF_SYNC));
|
2002-10-13 11:23:55 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear result variables */
|
2003-02-10 16:59:16 +01:00
|
|
|
thd->clear_error();
|
2002-10-13 11:23:55 +02:00
|
|
|
mysql->affected_rows= ~(my_ulonglong) 0;
|
2003-07-18 13:26:35 +02:00
|
|
|
mysql->field_count= 0;
|
2002-10-13 11:23:55 +02:00
|
|
|
|
2001-06-15 21:55:15 +02:00
|
|
|
thd->store_globals(); // Fix if more than one connect
|
2003-07-18 13:26:35 +02:00
|
|
|
free_old_query(mysql);
|
2003-06-17 18:32:31 +02:00
|
|
|
result= dispatch_command(command, thd, (char *) arg, arg_length + 1);
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2003-06-17 18:32:31 +02:00
|
|
|
if (!skip_check)
|
2002-12-16 14:33:29 +01:00
|
|
|
result= thd->net.last_errno ? -1 : 0;
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2003-09-08 15:49:23 +02:00
|
|
|
if ((net->last_errno= thd->net.last_errno))
|
2003-07-23 12:23:20 +02:00
|
|
|
{
|
2003-09-10 09:09:24 +02:00
|
|
|
memcpy(net->last_error, thd->net.last_error, sizeof(net->last_error));
|
|
|
|
memcpy(net->sqlstate, thd->net.sqlstate, sizeof(net->sqlstate));
|
2003-07-23 12:23:20 +02:00
|
|
|
}
|
2003-06-19 13:38:21 +02:00
|
|
|
mysql->warning_count= ((THD*)mysql->thd)->total_warn_count;
|
2002-10-13 11:23:55 +02:00
|
|
|
return result;
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
C_MODE_END
|
2001-09-30 04:47:34 +02:00
|
|
|
|
2002-12-16 14:33:29 +01:00
|
|
|
void THD::clear_error()
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2002-12-16 14:33:29 +01:00
|
|
|
net.last_error[0]= 0;
|
|
|
|
net.last_errno= 0;
|
|
|
|
net.report_error= 0;
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool check_user(THD *thd,enum_server_command command, const char *user,
|
|
|
|
const char *passwd, const char *db, bool check_count)
|
|
|
|
{
|
|
|
|
thd->db=0;
|
|
|
|
|
|
|
|
if (!(thd->user = my_strdup(user, MYF(0))))
|
|
|
|
{
|
2002-10-02 12:33:08 +02:00
|
|
|
send_error(thd,ER_OUT_OF_RESOURCES);
|
2001-04-11 13:04:03 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2002-12-06 21:01:12 +01:00
|
|
|
thd->master_access= ~0L; // No user checking
|
|
|
|
thd->priv_user= thd->user;
|
2001-04-11 13:04:03 +02:00
|
|
|
mysql_log.write(thd,command,
|
|
|
|
(thd->priv_user == thd->user ?
|
|
|
|
(char*) "%s@%s on %s" :
|
|
|
|
(char*) "%s@%s as anonymous on %s"),
|
|
|
|
user,
|
2002-05-15 17:41:36 +02:00
|
|
|
thd->host_or_ip,
|
2001-04-11 13:04:03 +02:00
|
|
|
db ? db : (char*) "");
|
|
|
|
thd->db_access=0;
|
|
|
|
if (db && db[0])
|
|
|
|
return test(mysql_change_db(thd,db));
|
|
|
|
else
|
2002-10-02 12:33:08 +02:00
|
|
|
send_ok(thd); // Ready to handle questions
|
2001-04-11 13:04:03 +02:00
|
|
|
return 0; // ok
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-05 15:38:49 +01:00
|
|
|
/*
|
|
|
|
Make a copy of array and the strings array points to
|
|
|
|
*/
|
|
|
|
|
|
|
|
char **copy_arguments(int argc, char **argv)
|
|
|
|
{
|
|
|
|
uint length= 0;
|
|
|
|
char **from, **res, **end= argv+argc;
|
|
|
|
|
|
|
|
for (from=argv ; from != end ; from++)
|
|
|
|
length+= strlen(*from);
|
|
|
|
|
|
|
|
if ((res= (char**) my_malloc(sizeof(argv)*(argc+1)+length+argc,
|
|
|
|
MYF(MY_WME))))
|
|
|
|
{
|
|
|
|
char **to= res, *to_str= (char*) (res+argc+1);
|
|
|
|
for (from=argv ; from != end ;)
|
|
|
|
{
|
|
|
|
*to++= to_str;
|
|
|
|
to_str= strmov(to_str, *from++)+1;
|
|
|
|
}
|
|
|
|
*to= 0; // Last ptr should be null
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
|
2002-12-05 15:38:49 +01:00
|
|
|
char ** copy_arguments_ptr= 0;
|
2001-10-02 04:53:00 +02:00
|
|
|
|
2002-11-06 11:42:44 +01:00
|
|
|
int STDCALL mysql_server_init(int argc, char **argv, char **groups)
|
|
|
|
{
|
|
|
|
char glob_hostname[FN_REFLEN];
|
|
|
|
|
|
|
|
/* This mess is to allow people to call the init function without
|
|
|
|
* having to mess with a fake argv */
|
|
|
|
int *argcp;
|
|
|
|
char ***argvp;
|
|
|
|
int fake_argc = 1;
|
|
|
|
char *fake_argv[] = { (char *)"", 0 };
|
|
|
|
const char *fake_groups[] = { "server", "embedded", 0 };
|
|
|
|
if (argc)
|
|
|
|
{
|
2002-12-12 09:49:56 +01:00
|
|
|
argcp= &argc;
|
|
|
|
argvp= (char***) &argv;
|
2002-11-06 11:42:44 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-12-12 09:49:56 +01:00
|
|
|
argcp= &fake_argc;
|
|
|
|
argvp= (char ***) &fake_argv;
|
2002-11-06 11:42:44 +01:00
|
|
|
}
|
|
|
|
if (!groups)
|
2002-12-12 09:49:56 +01:00
|
|
|
groups= (char**) fake_groups;
|
2002-11-06 11:42:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* Only call MY_INIT() if it hasn't been called before */
|
2003-09-08 10:11:18 +02:00
|
|
|
if (!server_inited)
|
2002-11-06 11:42:44 +01:00
|
|
|
{
|
2003-09-08 10:11:18 +02:00
|
|
|
server_inited=1;
|
2002-11-06 11:42:44 +01:00
|
|
|
org_my_init_done=my_init_done;
|
|
|
|
}
|
|
|
|
if (!org_my_init_done)
|
|
|
|
{
|
|
|
|
MY_INIT((char *)"mysql_embedded"); // init my_sys library & pthreads
|
|
|
|
}
|
|
|
|
|
2003-06-03 12:02:57 +02:00
|
|
|
if (init_common_variables("my", *argcp, *argvp, (const char **)groups))
|
2002-11-06 11:42:44 +01:00
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get default temporary directory */
|
|
|
|
opt_mysql_tmpdir=getenv("TMPDIR"); /* Use this if possible */
|
|
|
|
#if defined( __WIN__) || defined(OS2)
|
|
|
|
if (!opt_mysql_tmpdir)
|
|
|
|
opt_mysql_tmpdir=getenv("TEMP");
|
|
|
|
if (!opt_mysql_tmpdir)
|
|
|
|
opt_mysql_tmpdir=getenv("TMP");
|
|
|
|
#endif
|
|
|
|
if (!opt_mysql_tmpdir || !opt_mysql_tmpdir[0])
|
|
|
|
opt_mysql_tmpdir=(char*) P_tmpdir; /* purecov: inspected */
|
|
|
|
|
|
|
|
umask(((~my_umask) & 0666));
|
|
|
|
if (init_server_components())
|
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
error_handler_hook = my_message_sql;
|
|
|
|
|
|
|
|
opt_noacl = 1; // No permissions
|
2002-12-12 09:16:34 +01:00
|
|
|
if (acl_init((THD *)0, opt_noacl))
|
2002-11-06 11:42:44 +01:00
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (!opt_noacl)
|
2002-12-12 09:16:34 +01:00
|
|
|
(void) grant_init((THD *)0);
|
2002-11-06 11:42:44 +01:00
|
|
|
init_max_user_conn();
|
|
|
|
init_update_queries();
|
|
|
|
|
|
|
|
#ifdef HAVE_DLOPEN
|
|
|
|
if (!opt_noacl)
|
|
|
|
udf_init();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (opt_bin_log)
|
|
|
|
{
|
|
|
|
if (!opt_bin_logname)
|
|
|
|
{
|
|
|
|
char tmp[FN_REFLEN];
|
|
|
|
/* TODO: The following should be using fn_format(); We just need to
|
|
|
|
first change fn_format() to cut the file name if it's too long.
|
|
|
|
*/
|
|
|
|
strmake(tmp,glob_hostname,FN_REFLEN-5);
|
|
|
|
strmov(strcend(tmp,'.'),"-bin");
|
|
|
|
opt_bin_logname=my_strdup(tmp,MYF(MY_WME));
|
|
|
|
}
|
|
|
|
open_log(&mysql_bin_log, glob_hostname, opt_bin_logname, "-bin",
|
2003-07-06 17:59:54 +02:00
|
|
|
opt_binlog_index_name, LOG_BIN, 0, 0, max_binlog_size);
|
2002-11-06 11:42:44 +01:00
|
|
|
using_update_log=1;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) thr_setconcurrency(concurrency); // 10 by default
|
|
|
|
|
|
|
|
if (
|
|
|
|
#ifdef HAVE_BERKELEY_DB
|
|
|
|
!berkeley_skip ||
|
|
|
|
#endif
|
|
|
|
(flush_time && flush_time != ~(ulong) 0L))
|
|
|
|
{
|
|
|
|
pthread_t hThread;
|
|
|
|
if (pthread_create(&hThread,&connection_attrib,handle_manager,0))
|
|
|
|
sql_print_error("Warning: Can't create thread to manage maintenance");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Update mysqld variables from client variables if set
|
|
|
|
The client variables are set also by get_one_option() in mysqld.cc
|
|
|
|
*/
|
|
|
|
if (max_allowed_packet)
|
|
|
|
global_system_variables.max_allowed_packet= max_allowed_packet;
|
|
|
|
if (net_buffer_length)
|
|
|
|
global_system_variables.net_buffer_length= net_buffer_length;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-11-03 20:33:11 +01:00
|
|
|
void STDCALL mysql_server_end()
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2002-12-12 09:49:56 +01:00
|
|
|
my_free((char*) copy_arguments_ptr, MYF(MY_ALLOW_ZERO_PTR));
|
|
|
|
copy_arguments_ptr=0;
|
2001-10-02 04:53:00 +02:00
|
|
|
clean_up(0);
|
|
|
|
#ifdef THREAD
|
|
|
|
/* Don't call my_thread_end() if the application is using MY_INIT() */
|
|
|
|
if (!org_my_init_done)
|
|
|
|
my_thread_end();
|
2001-04-11 13:04:03 +02:00
|
|
|
#endif
|
2002-05-15 15:36:41 +02:00
|
|
|
/* If library called my_init(), free memory allocated by it */
|
|
|
|
if (!org_my_init_done)
|
|
|
|
my_end(0);
|
2001-08-10 18:37:36 +02:00
|
|
|
}
|
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
} /* extern "C" */
|
2002-06-17 13:24:51 +02:00
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
C_MODE_START
|
2002-06-17 13:24:51 +02:00
|
|
|
void init_embedded_mysql(MYSQL *mysql, int client_flag, char *db)
|
|
|
|
{
|
2002-12-16 14:33:29 +01:00
|
|
|
THD *thd = (THD *)mysql->thd;
|
2002-06-17 13:24:51 +02:00
|
|
|
thd->mysql= mysql;
|
|
|
|
}
|
2002-10-13 11:23:55 +02:00
|
|
|
|
2002-12-16 14:33:29 +01:00
|
|
|
void *create_embedded_thd(int client_flag, char *db)
|
2002-06-17 13:24:51 +02:00
|
|
|
{
|
|
|
|
THD * thd= new THD;
|
|
|
|
thd->thread_id= thread_id++;
|
|
|
|
|
|
|
|
if (thd->store_globals())
|
|
|
|
{
|
|
|
|
fprintf(stderr,"store_globals failed.\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
thd->mysys_var= my_thread_var;
|
|
|
|
thd->dbug_thread_id= my_thread_id();
|
|
|
|
thd->thread_stack= (char*) &thd;
|
|
|
|
|
|
|
|
thd->proc_info=0; // Remove 'login'
|
|
|
|
thd->command=COM_SLEEP;
|
|
|
|
thd->version=refresh_version;
|
|
|
|
thd->set_time();
|
|
|
|
init_sql_alloc(&thd->mem_root,8192,8192);
|
|
|
|
thd->client_capabilities= client_flag;
|
|
|
|
|
|
|
|
thd->db= db;
|
2002-06-18 17:35:34 +02:00
|
|
|
thd->db_length= db ? strip_sp(db) : 0;
|
2002-06-17 13:24:51 +02:00
|
|
|
thd->db_access= DB_ACLS;
|
|
|
|
thd->master_access= ~NO_ACCESS;
|
2002-12-16 14:33:29 +01:00
|
|
|
thd->net.query_cache_query= 0;
|
2002-06-17 13:24:51 +02:00
|
|
|
|
|
|
|
return thd;
|
|
|
|
}
|
2002-12-16 14:33:29 +01:00
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
C_MODE_END
|
2002-06-17 13:24:51 +02:00
|
|
|
|
2002-12-17 16:33:25 +01:00
|
|
|
bool Protocol::send_fields(List<Item> *list, uint flag)
|
|
|
|
{
|
|
|
|
List_iterator_fast<Item> it(*list);
|
|
|
|
Item *item;
|
|
|
|
MYSQL_FIELD *field, *client_field;
|
|
|
|
MYSQL *mysql= thd->mysql;
|
|
|
|
|
2003-01-15 09:11:44 +01:00
|
|
|
DBUG_ENTER("send_fields");
|
2002-12-17 16:33:25 +01:00
|
|
|
|
2003-01-20 15:47:25 +01:00
|
|
|
field_count= list->elements;
|
2002-12-17 16:33:25 +01:00
|
|
|
if (!(mysql->result=(MYSQL_RES*) my_malloc(sizeof(MYSQL_RES)+
|
2003-01-15 09:11:44 +01:00
|
|
|
sizeof(ulong) * (field_count + 1),
|
2002-12-17 16:33:25 +01:00
|
|
|
MYF(MY_WME | MY_ZEROFILL))))
|
|
|
|
goto err;
|
|
|
|
mysql->result->lengths= (ulong *)(mysql->result + 1);
|
|
|
|
|
2003-01-15 09:11:44 +01:00
|
|
|
mysql->field_count=field_count;
|
2002-12-17 16:33:25 +01:00
|
|
|
alloc= &mysql->field_alloc;
|
2003-01-15 09:11:44 +01:00
|
|
|
field= (MYSQL_FIELD *)alloc_root(alloc, sizeof(MYSQL_FIELD) * field_count);
|
2002-12-17 16:33:25 +01:00
|
|
|
if (!field)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
client_field= field;
|
|
|
|
while ((item= it++))
|
|
|
|
{
|
|
|
|
Send_field server_field;
|
|
|
|
item->make_field(&server_field);
|
|
|
|
|
2003-02-14 10:47:41 +01:00
|
|
|
client_field->db= strdup_root(alloc, server_field.db_name);
|
2002-12-17 16:33:25 +01:00
|
|
|
client_field->table= strdup_root(alloc, server_field.table_name);
|
2003-02-14 10:47:41 +01:00
|
|
|
client_field->name= strdup_root(alloc, server_field.col_name);
|
|
|
|
client_field->org_table= strdup_root(alloc, server_field.org_table_name);
|
|
|
|
client_field->org_name= strdup_root(alloc, server_field.org_col_name);
|
2002-12-17 16:33:25 +01:00
|
|
|
client_field->length= server_field.length;
|
|
|
|
client_field->type= server_field.type;
|
|
|
|
client_field->flags= server_field.flags;
|
|
|
|
client_field->decimals= server_field.decimals;
|
2003-02-14 10:47:41 +01:00
|
|
|
client_field->db_length= strlen(client_field->db);
|
|
|
|
client_field->table_length= strlen(client_field->table);
|
|
|
|
client_field->name_length= strlen(client_field->name);
|
|
|
|
client_field->org_name_length= strlen(client_field->org_name);
|
|
|
|
client_field->org_table_length= strlen(client_field->org_table);
|
|
|
|
client_field->charsetnr= server_field.charsetnr;
|
|
|
|
|
2002-12-17 16:33:25 +01:00
|
|
|
if (INTERNAL_NUM_FIELD(client_field))
|
|
|
|
client_field->flags|= NUM_FLAG;
|
|
|
|
|
|
|
|
if (flag & 2)
|
|
|
|
{
|
|
|
|
char buff[80];
|
|
|
|
String tmp(buff, sizeof(buff), default_charset_info), *res;
|
|
|
|
|
|
|
|
if (!(res=item->val_str(&tmp)))
|
|
|
|
client_field->def= strdup_root(alloc, "");
|
|
|
|
else
|
|
|
|
client_field->def= strdup_root(alloc, tmp.ptr());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
client_field->def=0;
|
|
|
|
client_field->max_length= 0;
|
|
|
|
++client_field;
|
|
|
|
}
|
|
|
|
mysql->result->fields = field;
|
|
|
|
|
|
|
|
if (!(mysql->result->data= (MYSQL_DATA*) my_malloc(sizeof(MYSQL_DATA),
|
|
|
|
MYF(MY_WME | MY_ZEROFILL))))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
init_alloc_root(&mysql->result->data->alloc,8192,0); /* Assume rowlength < 8192 */
|
|
|
|
mysql->result->data->alloc.min_malloc=sizeof(MYSQL_ROWS);
|
|
|
|
mysql->result->data->rows=0;
|
2003-01-15 09:11:44 +01:00
|
|
|
mysql->result->data->fields=field_count;
|
|
|
|
mysql->result->field_count=field_count;
|
2002-12-17 16:33:25 +01:00
|
|
|
mysql->result->data->prev_ptr= &mysql->result->data->data;
|
|
|
|
|
|
|
|
mysql->result->field_alloc= mysql->field_alloc;
|
|
|
|
mysql->result->current_field=0;
|
|
|
|
mysql->result->current_row=0;
|
|
|
|
|
2003-01-15 09:11:44 +01:00
|
|
|
DBUG_RETURN(prepare_for_send(list));
|
2002-12-17 16:33:25 +01:00
|
|
|
err:
|
|
|
|
send_error(thd, ER_OUT_OF_RESOURCES); /* purecov: inspected */
|
2003-01-15 09:11:44 +01:00
|
|
|
DBUG_RETURN(1); /* purecov: inspected */
|
2002-12-17 16:33:25 +01:00
|
|
|
}
|
|
|
|
|
2003-01-20 15:47:25 +01:00
|
|
|
bool Protocol::send_records_num(List<Item> *list, ulonglong records)
|
2003-01-15 09:11:44 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-01-20 15:47:25 +01:00
|
|
|
bool Protocol::write()
|
2002-11-06 11:42:44 +01:00
|
|
|
{
|
2003-01-20 15:47:25 +01:00
|
|
|
*next_field= 0;
|
|
|
|
return false;
|
2002-11-06 11:42:44 +01:00
|
|
|
}
|
2002-06-17 13:24:51 +02:00
|
|
|
|
|
|
|
void
|
2002-10-13 11:23:55 +02:00
|
|
|
send_ok(THD *thd,ha_rows affected_rows,ulonglong id,const char *message)
|
2002-06-17 13:24:51 +02:00
|
|
|
{
|
|
|
|
DBUG_ENTER("send_ok");
|
|
|
|
MYSQL *mysql= current_thd->mysql;
|
|
|
|
mysql->affected_rows= affected_rows;
|
|
|
|
mysql->insert_id= id;
|
|
|
|
if (message)
|
|
|
|
{
|
2002-12-16 14:33:29 +01:00
|
|
|
strmake(thd->net.last_error, message, sizeof(thd->net.last_error)-1);
|
2002-06-17 13:24:51 +02:00
|
|
|
}
|
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
void
|
|
|
|
send_eof(THD *thd, bool no_flush)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2003-01-15 09:11:44 +01:00
|
|
|
void Protocol_simple::prepare_for_resend()
|
|
|
|
{
|
|
|
|
MYSQL_ROWS *cur;
|
|
|
|
MYSQL_DATA *result= thd->mysql->result->data;
|
|
|
|
|
|
|
|
DBUG_ENTER("send_data");
|
|
|
|
|
2003-01-20 15:47:25 +01:00
|
|
|
alloc= &result->alloc;
|
2003-01-15 09:11:44 +01:00
|
|
|
result->rows++;
|
|
|
|
if (!(cur= (MYSQL_ROWS *)alloc_root(alloc, sizeof(MYSQL_ROWS)+(field_count + 1) * sizeof(char *))))
|
|
|
|
{
|
|
|
|
my_error(ER_OUT_OF_RESOURCES,MYF(0));
|
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
cur->data= (MYSQL_ROW)(((char *)cur) + sizeof(MYSQL_ROWS));
|
|
|
|
|
|
|
|
*result->prev_ptr= cur;
|
|
|
|
result->prev_ptr= &cur->next;
|
|
|
|
next_field=cur->data;
|
2003-01-20 15:47:25 +01:00
|
|
|
next_mysql_field= thd->mysql->result->fields;
|
2003-01-15 09:11:44 +01:00
|
|
|
|
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
2003-01-20 15:47:25 +01:00
|
|
|
bool Protocol_simple::store_null()
|
|
|
|
{
|
|
|
|
*(next_field++)= NULL;
|
|
|
|
++next_mysql_field;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-01-15 09:11:44 +01:00
|
|
|
bool Protocol::net_store_data(const char *from, uint length)
|
|
|
|
{
|
2003-09-10 09:09:24 +02:00
|
|
|
char *field_buf;
|
|
|
|
if (!(field_buf=alloc_root(alloc, length + sizeof(uint))))
|
2003-01-20 15:47:25 +01:00
|
|
|
return true;
|
2003-09-10 09:09:24 +02:00
|
|
|
*(uint *)field_buf= length;
|
|
|
|
*next_field= field_buf + sizeof(uint);
|
2003-01-20 15:47:25 +01:00
|
|
|
memcpy(*next_field, from, length);
|
|
|
|
if (next_mysql_field->max_length < length)
|
|
|
|
next_mysql_field->max_length=length;
|
|
|
|
++next_field;
|
|
|
|
++next_mysql_field;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-03-18 14:01:32 +01:00
|
|
|
#if 0
|
2003-01-20 15:47:25 +01:00
|
|
|
/* The same as Protocol::net_store_data but does the converstion
|
|
|
|
*/
|
|
|
|
bool Protocol::convert_str(const char *from, uint length)
|
|
|
|
{
|
|
|
|
if (!(*next_field=alloc_root(alloc, length + 1)))
|
|
|
|
return true;
|
|
|
|
convert->store_dest(*next_field, from, length);
|
|
|
|
(*next_field)[length]= 0;
|
|
|
|
if (next_mysql_field->max_length < length)
|
|
|
|
next_mysql_field->max_length=length;
|
2003-01-15 09:11:44 +01:00
|
|
|
++next_field;
|
2003-01-20 15:47:25 +01:00
|
|
|
++next_mysql_field;
|
|
|
|
|
2003-01-15 09:11:44 +01:00
|
|
|
return false;
|
|
|
|
}
|
2003-03-18 14:01:32 +01:00
|
|
|
#endif
|