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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2004 MySQL 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. #ifndef MYSQL_CLIENT
  17. #ifdef USE_PRAGMA_IMPLEMENTATION
  18. #pragma implementation // gcc: Class implementation
  19. #endif
  20. #include  "mysql_priv.h"
  21. #include "slave.h"
  22. #include <my_dir.h>
  23. #endif /* MYSQL_CLIENT */
  24. #define log_cs &my_charset_latin1
  25. /*
  26.   pretty_print_str()
  27. */
  28. #ifdef MYSQL_CLIENT
  29. static void pretty_print_str(FILE* file, char* str, int len)
  30. {
  31.   char* end = str + len;
  32.   fputc(''', file);
  33.   while (str < end)
  34.   {
  35.     char c;
  36.     switch ((c=*str++)) {
  37.     case 'n': fprintf(file, "\n"); break;
  38.     case 'r': fprintf(file, "\r"); break;
  39.     case '\': fprintf(file, "\\"); break;
  40.     case 'b': fprintf(file, "\b"); break;
  41.     case 't': fprintf(file, "\t"); break;
  42.     case ''': fprintf(file, "\'"); break;
  43.     case 0   : fprintf(file, "\0"); break;
  44.     default:
  45.       fputc(c, file);
  46.       break;
  47.     }
  48.   }
  49.   fputc(''', file);
  50. }
  51. #endif /* MYSQL_CLIENT */
  52. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  53. static void clear_all_errors(THD *thd, struct st_relay_log_info *rli)
  54. {
  55.   thd->query_error = 0;
  56.   thd->clear_error();
  57.   *rli->last_slave_error = 0;
  58.   rli->last_slave_errno = 0;
  59. }
  60. /*
  61.   Ignore error code specified on command line
  62. */
  63. inline int ignored_error_code(int err_code)
  64. {
  65.   return ((err_code == ER_SLAVE_IGNORED_TABLE) ||
  66.           (use_slave_mask && bitmap_is_set(&slave_error_mask, err_code)));
  67. }
  68. #endif
  69. /*
  70.   pretty_print_str()
  71. */
  72. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  73. static char *pretty_print_str(char *packet, char *str, int len)
  74. {
  75.   char *end= str + len;
  76.   char *pos= packet;
  77.   *pos++= ''';
  78.   while (str < end)
  79.   {
  80.     char c;
  81.     switch ((c=*str++)) {
  82.     case 'n': *pos++= '\'; *pos++= 'n'; break;
  83.     case 'r': *pos++= '\'; *pos++= 'r'; break;
  84.     case '\': *pos++= '\'; *pos++= '\'; break;
  85.     case 'b': *pos++= '\'; *pos++= 'b'; break;
  86.     case 't': *pos++= '\'; *pos++= 't'; break;
  87.     case ''': *pos++= '\'; *pos++= '''; break;
  88.     case 0   : *pos++= '\'; *pos++= '0'; break;
  89.     default:
  90.       *pos++= c;
  91.       break;
  92.     }
  93.   }
  94.   *pos++= ''';
  95.   return pos;
  96. }
  97. #endif /* !MYSQL_CLIENT */
  98. /*
  99.   slave_load_file_stem()
  100. */
  101. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  102. static inline char* slave_load_file_stem(char*buf, uint file_id,
  103.  int event_server_id)
  104. {
  105.   fn_format(buf,"SQL_LOAD-",slave_load_tmpdir, "", MY_UNPACK_FILENAME);
  106.   buf = strend(buf);
  107.   buf = int10_to_str(::server_id, buf, 10);
  108.   *buf++ = '-';
  109.   buf = int10_to_str(event_server_id, buf, 10);
  110.   *buf++ = '-';
  111.   return int10_to_str(file_id, buf, 10);
  112. }
  113. #endif
  114. /*
  115.   Delete all temporary files used for SQL_LOAD.
  116.   SYNOPSIS
  117.     cleanup_load_tmpdir()
  118. */
  119. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  120. static void cleanup_load_tmpdir()
  121. {
  122.   MY_DIR *dirp;
  123.   FILEINFO *file;
  124.   uint i;
  125.   char fname[FN_REFLEN], prefbuf[31], *p;
  126.   if (!(dirp=my_dir(slave_load_tmpdir,MYF(MY_WME))))
  127.     return;
  128.   /* 
  129.      When we are deleting temporary files, we should only remove
  130.      the files associated with the server id of our server.
  131.      We don't use event_server_id here because since we've disabled
  132.      direct binlogging of Create_file/Append_file/Exec_load events
  133.      we cannot meet Start_log event in the middle of events from one 
  134.      LOAD DATA.
  135.   */
  136.   p= strmake(prefbuf,"SQL_LOAD-",9);
  137.   p= int10_to_str(::server_id, p, 10);
  138.   *(p++)= '-';
  139.   *p= 0;
  140.   for (i=0 ; i < (uint)dirp->number_off_files; i++)
  141.   {
  142.     file=dirp->dir_entry+i;
  143.     if (is_prefix(file->name, prefbuf))
  144.     {
  145.       fn_format(fname,file->name,slave_load_tmpdir,"",MY_UNPACK_FILENAME);
  146.       my_delete(fname, MYF(0));
  147.     }
  148.   }
  149.   my_dirend(dirp);
  150. }
  151. #endif
  152. /*
  153.   write_str()
  154. */
  155. static bool write_str(IO_CACHE *file, char *str, byte length)
  156. {
  157.   return (my_b_safe_write(file, &length, 1) ||
  158.   my_b_safe_write(file, (byte*) str, (int) length));
  159. }
  160. /*
  161.   read_str()
  162. */
  163. static inline int read_str(char * &buf, char *buf_end, char * &str,
  164.    uint8 &len)
  165. {
  166.   if (buf + (uint) (uchar) *buf >= buf_end)
  167.     return 1;
  168.   len = (uint8) *buf;
  169.   str= buf+1;
  170.   buf+= (uint) len+1;
  171.   return 0;
  172. }
  173. /*
  174.   Transforms a string into "" or its expression in 0x... form.
  175. */
  176. char *str_to_hex(char *to, const char *from, uint len)
  177. {
  178.   char *p= to;
  179.   if (len)
  180.   {
  181.     p= strmov(p, "0x");
  182.     for (uint i= 0; i < len; i++, p+= 2)
  183.     {
  184.       /* val[i] is char. Casting to uchar helps greatly if val[i] < 0 */
  185.       uint tmp= (uint) (uchar) from[i];
  186.       p[0]= _dig_vec_upper[tmp >> 4];
  187.       p[1]= _dig_vec_upper[tmp & 15];
  188.     }
  189.     *p= 0;
  190.   }
  191.   else
  192.     p= strmov(p, """");
  193.   return p; // pointer to end 0 of 'to'
  194. }
  195. /**************************************************************************
  196. Log_event methods
  197. **************************************************************************/
  198. /*
  199.   Log_event::get_type_str()
  200. */
  201. const char* Log_event::get_type_str()
  202. {
  203.   switch(get_type_code()) {
  204.   case START_EVENT:  return "Start";
  205.   case STOP_EVENT:   return "Stop";
  206.   case QUERY_EVENT:  return "Query";
  207.   case ROTATE_EVENT: return "Rotate";
  208.   case INTVAR_EVENT: return "Intvar";
  209.   case LOAD_EVENT:   return "Load";
  210.   case NEW_LOAD_EVENT:   return "New_load";
  211.   case SLAVE_EVENT:  return "Slave";
  212.   case CREATE_FILE_EVENT: return "Create_file";
  213.   case APPEND_BLOCK_EVENT: return "Append_block";
  214.   case DELETE_FILE_EVENT: return "Delete_file";
  215.   case EXEC_LOAD_EVENT: return "Exec_load";
  216.   case RAND_EVENT: return "RAND";
  217.   case USER_VAR_EVENT: return "User var";
  218.   default: return "Unknown"; /* impossible */ 
  219.   }
  220. }
  221. /*
  222.   Log_event::Log_event()
  223. */
  224. #ifndef MYSQL_CLIENT
  225. Log_event::Log_event(THD* thd_arg, uint16 flags_arg, bool using_trans)
  226.   :log_pos(0), temp_buf(0), exec_time(0), cached_event_len(0),
  227.    flags(flags_arg), thd(thd_arg)
  228. {
  229.   server_id= thd->server_id;
  230.   when= thd->start_time;
  231.   cache_stmt= (using_trans &&
  232.  (thd->options & (OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN)));
  233. }
  234. /*
  235.   This minimal constructor is for when you are not even sure that there is a
  236.   valid THD. For example in the server when we are shutting down or flushing
  237.   logs after receiving a SIGHUP (then we must write a Rotate to the binlog but
  238.   we have no THD, so we need this minimal constructor).
  239. */
  240. Log_event::Log_event()
  241.   :temp_buf(0), exec_time(0), cached_event_len(0), flags(0), cache_stmt(0),
  242.    thd(0)
  243. {
  244.   server_id= ::server_id;
  245.   when= time(NULL);
  246.   log_pos= 0;
  247. }
  248. #endif /* !MYSQL_CLIENT */
  249. /*
  250.   Log_event::Log_event()
  251. */
  252. Log_event::Log_event(const char* buf, bool old_format)
  253.   :temp_buf(0), cached_event_len(0), cache_stmt(0)
  254. {
  255.   when = uint4korr(buf);
  256.   server_id = uint4korr(buf + SERVER_ID_OFFSET);
  257.   if (old_format)
  258.   {
  259.     log_pos=0;
  260.     flags=0;
  261.   }
  262.   else
  263.   {
  264.     log_pos = uint4korr(buf + LOG_POS_OFFSET);
  265.     flags = uint2korr(buf + FLAGS_OFFSET);
  266.   }
  267. #ifndef MYSQL_CLIENT
  268.   thd = 0;
  269. #endif  
  270. }
  271. #ifndef MYSQL_CLIENT
  272. #ifdef HAVE_REPLICATION
  273. /*
  274.   Log_event::exec_event()
  275. */
  276. int Log_event::exec_event(struct st_relay_log_info* rli)
  277. {
  278.   DBUG_ENTER("Log_event::exec_event");
  279.   /*
  280.     rli is null when (as far as I (Guilhem) know)
  281.     the caller is
  282.     Load_log_event::exec_event *and* that one is called from
  283.     Execute_load_log_event::exec_event. 
  284.     In this case, we don't do anything here ;
  285.     Execute_load_log_event::exec_event will call Log_event::exec_event
  286.     again later with the proper rli.
  287.     Strictly speaking, if we were sure that rli is null
  288.     only in the case discussed above, 'if (rli)' is useless here.
  289.     But as we are not 100% sure, keep it for now.
  290.   */
  291.   if (rli)  
  292.   {
  293.     /*
  294.       If in a transaction, and if the slave supports transactions,
  295.       just inc_event_relay_log_pos(). We only have to check for OPTION_BEGIN
  296.       (not OPTION_NOT_AUTOCOMMIT) as transactions are logged
  297.       with BEGIN/COMMIT, not with SET AUTOCOMMIT= .
  298.       
  299.       CAUTION: opt_using_transactions means
  300.       innodb || bdb ; suppose the master supports InnoDB and BDB, 
  301.       but the slave supports only BDB, problems
  302.       will arise: 
  303.       - suppose an InnoDB table is created on the master,
  304.       - then it will be MyISAM on the slave
  305.       - but as opt_using_transactions is true, the slave will believe he is
  306.       transactional with the MyISAM table. And problems will come when one
  307.       does START SLAVE; STOP SLAVE; START SLAVE; (the slave will resume at
  308.       BEGIN whereas there has not been any rollback). This is the problem of
  309.       using opt_using_transactions instead of a finer
  310.       "does the slave support _the_transactional_handler_used_on_the_master_".
  311.       
  312.       More generally, we'll have problems when a query mixes a transactional
  313.       handler and MyISAM and STOP SLAVE is issued in the middle of the
  314.       "transaction". START SLAVE will resume at BEGIN while the MyISAM table
  315.       has already been updated.
  316.     */
  317.     if ((thd->options & OPTION_BEGIN) && opt_using_transactions)
  318.       rli->inc_event_relay_log_pos(get_event_len());
  319.     else
  320.     {
  321.       rli->inc_group_relay_log_pos(get_event_len(),log_pos);
  322.       flush_relay_log_info(rli);
  323.       /* 
  324.          Note that Rotate_log_event::exec_event() does not call this function,
  325.          so there is no chance that a fake rotate event resets
  326.          last_master_timestamp.
  327.          Note that we update without mutex (probably ok - except in some very
  328.          rare cases, only consequence is that value may take some time to
  329.          display in Seconds_Behind_Master - not critical).
  330.       */
  331.       rli->last_master_timestamp= when;
  332.     }
  333.   }
  334.   DBUG_RETURN(0);
  335. }
  336. /*
  337.   Log_event::pack_info()
  338. */
  339. void Log_event::pack_info(Protocol *protocol)
  340. {
  341.   protocol->store("", &my_charset_bin);
  342. }
  343. /*
  344.   Log_event::net_send()
  345.   Only called by SHOW BINLOG EVENTS
  346. */
  347. int Log_event::net_send(Protocol *protocol, const char* log_name, my_off_t pos)
  348. {
  349.   const char *p= strrchr(log_name, FN_LIBCHAR);
  350.   const char *event_type;
  351.   if (p)
  352.     log_name = p + 1;
  353.   
  354.   protocol->prepare_for_resend();
  355.   protocol->store(log_name, &my_charset_bin);
  356.   protocol->store((ulonglong) pos);
  357.   event_type = get_type_str();
  358.   protocol->store(event_type, strlen(event_type), &my_charset_bin);
  359.   protocol->store((uint32) server_id);
  360.   protocol->store((ulonglong) log_pos);
  361.   pack_info(protocol);
  362.   return protocol->write();
  363. }
  364. #endif /* HAVE_REPLICATION */
  365. /*
  366.   Log_event::init_show_field_list()
  367. */
  368. void Log_event::init_show_field_list(List<Item>* field_list)
  369. {
  370.   field_list->push_back(new Item_empty_string("Log_name", 20));
  371.   field_list->push_back(new Item_return_int("Pos", 11,
  372.     MYSQL_TYPE_LONGLONG));
  373.   field_list->push_back(new Item_empty_string("Event_type", 20));
  374.   field_list->push_back(new Item_return_int("Server_id", 10,
  375.     MYSQL_TYPE_LONG));
  376.   field_list->push_back(new Item_return_int("Orig_log_pos", 11,
  377.     MYSQL_TYPE_LONGLONG));
  378.   field_list->push_back(new Item_empty_string("Info", 20));
  379. }
  380. #endif /* !MYSQL_CLIENT */
  381. /*
  382.   Log_event::write()
  383. */
  384. int Log_event::write(IO_CACHE* file)
  385. {
  386.   return (write_header(file) || write_data(file)) ? -1 : 0;
  387. }
  388. /*
  389.   Log_event::write_header()
  390. */
  391. int Log_event::write_header(IO_CACHE* file)
  392. {
  393.   char buf[LOG_EVENT_HEADER_LEN];
  394.   char* pos = buf;
  395.   int4store(pos, (ulong) when); // timestamp
  396.   pos += 4;
  397.   *pos++ = get_type_code(); // event type code
  398.   int4store(pos, server_id);
  399.   pos += 4;
  400.   long tmp=get_data_size() + LOG_EVENT_HEADER_LEN;
  401.   int4store(pos, tmp);
  402.   pos += 4;
  403.   int4store(pos, log_pos);
  404.   pos += 4;
  405.   int2store(pos, flags);
  406.   pos += 2;
  407.   return (my_b_safe_write(file, (byte*) buf, (uint) (pos - buf)));
  408. }
  409. /*
  410.   Log_event::read_log_event()
  411. */
  412. #ifndef MYSQL_CLIENT
  413. int Log_event::read_log_event(IO_CACHE* file, String* packet,
  414.       pthread_mutex_t* log_lock)
  415. {
  416.   ulong data_len;
  417.   int result=0;
  418.   char buf[LOG_EVENT_HEADER_LEN];
  419.   DBUG_ENTER("read_log_event");
  420.   if (log_lock)
  421.     pthread_mutex_lock(log_lock);
  422.   if (my_b_read(file, (byte*) buf, sizeof(buf)))
  423.   {
  424.     /*
  425.       If the read hits eof, we must report it as eof so the caller
  426.       will know it can go into cond_wait to be woken up on the next
  427.       update to the log.
  428.     */
  429.     DBUG_PRINT("error",("file->error: %d", file->error));
  430.     if (!file->error)
  431.       result= LOG_READ_EOF;
  432.     else
  433.       result= (file->error > 0 ? LOG_READ_TRUNC : LOG_READ_IO);
  434.     goto end;
  435.   }
  436.   data_len= uint4korr(buf + EVENT_LEN_OFFSET);
  437.   if (data_len < LOG_EVENT_HEADER_LEN ||
  438.       data_len > current_thd->variables.max_allowed_packet)
  439.   {
  440.     DBUG_PRINT("error",("data_len: %ld", data_len));
  441.     result= ((data_len < LOG_EVENT_HEADER_LEN) ? LOG_READ_BOGUS :
  442.      LOG_READ_TOO_LARGE);
  443.     goto end;
  444.   }
  445.   packet->append(buf, sizeof(buf));
  446.   data_len-= LOG_EVENT_HEADER_LEN;
  447.   if (data_len)
  448.   {
  449.     if (packet->append(file, data_len))
  450.     {
  451.       /*
  452. Here we should never hit EOF in a non-error condition.
  453. EOF means we are reading the event partially, which should
  454. never happen.
  455.       */
  456.       result= file->error >= 0 ? LOG_READ_TRUNC: LOG_READ_IO;
  457.       /* Implicit goto end; */
  458.     }
  459.   }
  460. end:
  461.   if (log_lock)
  462.     pthread_mutex_unlock(log_lock);
  463.   DBUG_RETURN(result);
  464. }
  465. #endif /* !MYSQL_CLIENT */
  466. #ifndef MYSQL_CLIENT
  467. #define UNLOCK_MUTEX if (log_lock) pthread_mutex_unlock(log_lock);
  468. #define LOCK_MUTEX if (log_lock) pthread_mutex_lock(log_lock);
  469. #define max_allowed_packet current_thd->variables.max_allowed_packet
  470. #else
  471. #define UNLOCK_MUTEX
  472. #define LOCK_MUTEX
  473. #define max_allowed_packet (*mysql_get_parameters()->p_max_allowed_packet)
  474. #endif
  475. /*
  476.   Log_event::read_log_event()
  477.   NOTE:
  478.     Allocates memory;  The caller is responsible for clean-up
  479. */
  480. #ifndef MYSQL_CLIENT
  481. Log_event* Log_event::read_log_event(IO_CACHE* file,
  482.      pthread_mutex_t* log_lock,
  483.      bool old_format)
  484. #else
  485. Log_event* Log_event::read_log_event(IO_CACHE* file, bool old_format)
  486. #endif  
  487. {
  488.   char head[LOG_EVENT_HEADER_LEN];
  489.   uint header_size= old_format ? OLD_HEADER_LEN : LOG_EVENT_HEADER_LEN;
  490.   LOCK_MUTEX;
  491.   if (my_b_read(file, (byte *) head, header_size))
  492.   {
  493.     UNLOCK_MUTEX;
  494.     return 0;
  495.   }
  496.   uint data_len = uint4korr(head + EVENT_LEN_OFFSET);
  497.   char *buf= 0;
  498.   const char *error= 0;
  499.   Log_event *res=  0;
  500.   if (data_len > max_allowed_packet)
  501.   {
  502.     error = "Event too big";
  503.     goto err;
  504.   }
  505.   if (data_len < header_size)
  506.   {
  507.     error = "Event too small";
  508.     goto err;
  509.   }
  510.   // some events use the extra byte to null-terminate strings
  511.   if (!(buf = my_malloc(data_len+1, MYF(MY_WME))))
  512.   {
  513.     error = "Out of memory";
  514.     goto err;
  515.   }
  516.   buf[data_len] = 0;
  517.   memcpy(buf, head, header_size);
  518.   if (my_b_read(file, (byte*) buf + header_size, data_len - header_size))
  519.   {
  520.     error = "read error";
  521.     goto err;
  522.   }
  523.   if ((res = read_log_event(buf, data_len, &error, old_format)))
  524.     res->register_temp_buf(buf);
  525. err:
  526.   UNLOCK_MUTEX;
  527.   if (error)
  528.   {
  529.     sql_print_error("
  530. Error in Log_event::read_log_event(): '%s', data_len: %d, event_type: %d",
  531.     error,data_len,head[EVENT_TYPE_OFFSET]);
  532.     my_free(buf, MYF(MY_ALLOW_ZERO_PTR));
  533.     /*
  534.       The SQL slave thread will check if file->error<0 to know
  535.       if there was an I/O error. Even if there is no "low-level" I/O errors
  536.       with 'file', any of the high-level above errors is worrying
  537.       enough to stop the SQL thread now ; as we are skipping the current event,
  538.       going on with reading and successfully executing other events can
  539.       only corrupt the slave's databases. So stop.
  540.     */
  541.     file->error= -1;
  542.   }
  543.   return res;
  544. }
  545. /*
  546.   Log_event::read_log_event()
  547. */
  548. Log_event* Log_event::read_log_event(const char* buf, int event_len,
  549.      const char **error, bool old_format)
  550. {
  551.   DBUG_ENTER("Log_event::read_log_event");
  552.   if (event_len < EVENT_LEN_OFFSET ||
  553.       (uint) event_len != uint4korr(buf+EVENT_LEN_OFFSET))
  554.   {
  555.     *error="Sanity check failed"; // Needed to free buffer
  556.     DBUG_RETURN(NULL); // general sanity check - will fail on a partial read
  557.   }
  558.   
  559.   Log_event* ev = NULL;
  560.   
  561.   switch(buf[EVENT_TYPE_OFFSET]) {
  562.   case QUERY_EVENT:
  563.     ev  = new Query_log_event(buf, event_len, old_format);
  564.     break;
  565.   case LOAD_EVENT:
  566.     ev = new Create_file_log_event(buf, event_len, old_format);
  567.     break;
  568.   case NEW_LOAD_EVENT:
  569.     ev = new Load_log_event(buf, event_len, old_format);
  570.     break;
  571.   case ROTATE_EVENT:
  572.     ev = new Rotate_log_event(buf, event_len, old_format);
  573.     break;
  574. #ifdef HAVE_REPLICATION
  575.   case SLAVE_EVENT:
  576.     ev = new Slave_log_event(buf, event_len);
  577.     break;
  578. #endif /* HAVE_REPLICATION */
  579.   case CREATE_FILE_EVENT:
  580.     ev = new Create_file_log_event(buf, event_len, old_format);
  581.     break;
  582.   case APPEND_BLOCK_EVENT:
  583.     ev = new Append_block_log_event(buf, event_len);
  584.     break;
  585.   case DELETE_FILE_EVENT:
  586.     ev = new Delete_file_log_event(buf, event_len);
  587.     break;
  588.   case EXEC_LOAD_EVENT:
  589.     ev = new Execute_load_log_event(buf, event_len);
  590.     break;
  591.   case START_EVENT:
  592.     ev = new Start_log_event(buf, old_format);
  593.     break;
  594. #ifdef HAVE_REPLICATION
  595.   case STOP_EVENT:
  596.     ev = new Stop_log_event(buf, old_format);
  597.     break;
  598. #endif /* HAVE_REPLICATION */
  599.   case INTVAR_EVENT:
  600.     ev = new Intvar_log_event(buf, old_format);
  601.     break;
  602.   case RAND_EVENT:
  603.     ev = new Rand_log_event(buf, old_format);
  604.     break;
  605.   case USER_VAR_EVENT:
  606.     ev = new User_var_log_event(buf, old_format);
  607.     break;
  608.   default:
  609.     break;
  610.   }
  611.   if (!ev || !ev->is_valid())
  612.   {
  613.     delete ev;
  614. #ifdef MYSQL_CLIENT
  615.     if (!force_opt)
  616.     {
  617.       *error= "Found invalid event in binary log";
  618.       DBUG_RETURN(0);
  619.     }
  620.     ev= new Unknown_log_event(buf, old_format);
  621. #else
  622.     *error= "Found invalid event in binary log";
  623.     DBUG_RETURN(0);
  624. #endif
  625.   }
  626.   ev->cached_event_len = event_len;
  627.   DBUG_RETURN(ev);  
  628. }
  629. #ifdef MYSQL_CLIENT
  630. /*
  631.   Log_event::print_header()
  632. */
  633. void Log_event::print_header(FILE* file)
  634. {
  635.   char llbuff[22];
  636.   fputc('#', file);
  637.   print_timestamp(file);
  638.   fprintf(file, " server id %d  log_pos %s ", server_id,
  639.   llstr(log_pos,llbuff)); 
  640. }
  641. /*
  642.   Log_event::print_timestamp()
  643. */
  644. void Log_event::print_timestamp(FILE* file, time_t* ts)
  645. {
  646.   struct tm *res;
  647.   if (!ts)
  648.     ts = &when;
  649. #ifdef MYSQL_SERVER // This is always false
  650.   struct tm tm_tmp;
  651.   localtime_r(ts,(res= &tm_tmp));
  652. #else
  653.   res=localtime(ts);
  654. #endif
  655.   fprintf(file,"%02d%02d%02d %2d:%02d:%02d",
  656.   res->tm_year % 100,
  657.   res->tm_mon+1,
  658.   res->tm_mday,
  659.   res->tm_hour,
  660.   res->tm_min,
  661.   res->tm_sec);
  662. }
  663. #endif /* MYSQL_CLIENT */
  664. /*
  665.   Log_event::set_log_pos()
  666. */
  667. #ifndef MYSQL_CLIENT
  668. void Log_event::set_log_pos(MYSQL_LOG* log)
  669. {
  670.   if (!log_pos)
  671.     log_pos = my_b_tell(&log->log_file);
  672. }
  673. #endif /* !MYSQL_CLIENT */
  674. /**************************************************************************
  675. Query_log_event methods
  676. **************************************************************************/
  677. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  678. /*
  679.   Query_log_event::pack_info()
  680. */
  681. void Query_log_event::pack_info(Protocol *protocol)
  682. {
  683.   char *buf, *pos;
  684.   if (!(buf= my_malloc(9 + db_len + q_len, MYF(MY_WME))))
  685.     return;
  686.   pos= buf;    
  687.   if (!(flags & LOG_EVENT_SUPPRESS_USE_F) 
  688.       && db && db_len)
  689.   {
  690.     pos= strmov(buf, "use `");
  691.     memcpy(pos, db, db_len);
  692.     pos= strmov(pos+db_len, "`; ");
  693.   }
  694.   if (query && q_len)
  695.   {
  696.     memcpy(pos, query, q_len);
  697.     pos+= q_len;
  698.   }
  699.   protocol->store(buf, pos-buf, &my_charset_bin);
  700.   my_free(buf, MYF(MY_ALLOW_ZERO_PTR));
  701. }
  702. #endif
  703. /*
  704.   Query_log_event::write()
  705. */
  706. int Query_log_event::write(IO_CACHE* file)
  707. {
  708.   return query ? Log_event::write(file) : -1; 
  709. }
  710. /*
  711.   Query_log_event::write_data()
  712. */
  713. int Query_log_event::write_data(IO_CACHE* file)
  714. {
  715.   char buf[QUERY_HEADER_LEN]; 
  716.   if (!query)
  717.     return -1;
  718.   
  719.   /*
  720.     We want to store the thread id:
  721.     (- as an information for the user when he reads the binlog)
  722.     - if the query uses temporary table: for the slave SQL thread to know to
  723.     which master connection the temp table belongs.
  724.     Now imagine we (write_data()) are called by the slave SQL thread (we are
  725.     logging a query executed by this thread; the slave runs with
  726.     --log-slave-updates). Then this query will be logged with
  727.     thread_id=the_thread_id_of_the_SQL_thread. Imagine that 2 temp tables of
  728.     the same name were created simultaneously on the master (in the master
  729.     binlog you have
  730.     CREATE TEMPORARY TABLE t; (thread 1)
  731.     CREATE TEMPORARY TABLE t; (thread 2)
  732.     ...)
  733.     then in the slave's binlog there will be
  734.     CREATE TEMPORARY TABLE t; (thread_id_of_the_slave_SQL_thread)
  735.     CREATE TEMPORARY TABLE t; (thread_id_of_the_slave_SQL_thread)
  736.     which is bad (same thread id!).
  737.     To avoid this, we log the thread's thread id EXCEPT for the SQL
  738.     slave thread for which we log the original (master's) thread id.
  739.     Now this moves the bug: what happens if the thread id on the
  740.     master was 10 and when the slave replicates the query, a
  741.     connection number 10 is opened by a normal client on the slave,
  742.     and updates a temp table of the same name? We get a problem
  743.     again. To avoid this, in the handling of temp tables (sql_base.cc)
  744.     we use thread_id AND server_id.  TODO when this is merged into
  745.     4.1: in 4.1, slave_proxy_id has been renamed to pseudo_thread_id
  746.     and is a session variable: that's to make mysqlbinlog work with
  747.     temp tables. We probably need to introduce
  748.     SET PSEUDO_SERVER_ID
  749.     for mysqlbinlog in 4.1. mysqlbinlog would print:
  750.     SET PSEUDO_SERVER_ID=
  751.     SET PSEUDO_THREAD_ID=
  752.     for each query using temp tables.
  753.   */
  754.   int4store(buf + Q_THREAD_ID_OFFSET, slave_proxy_id);
  755.   int4store(buf + Q_EXEC_TIME_OFFSET, exec_time);
  756.   buf[Q_DB_LEN_OFFSET] = (char) db_len;
  757.   int2store(buf + Q_ERR_CODE_OFFSET, error_code);
  758.   return (my_b_safe_write(file, (byte*) buf, QUERY_HEADER_LEN) ||
  759.   my_b_safe_write(file, (db) ? (byte*) db : (byte*)"", db_len + 1) ||
  760.   my_b_safe_write(file, (byte*) query, q_len)) ? -1 : 0;
  761. }
  762. /*
  763.   Query_log_event::Query_log_event()
  764. */
  765. #ifndef MYSQL_CLIENT
  766. Query_log_event::Query_log_event(THD* thd_arg, const char* query_arg,
  767.  ulong query_length, bool using_trans,
  768.  bool suppress_use)
  769.   :Log_event(thd_arg, 
  770.      ((thd_arg->tmp_table_used ? LOG_EVENT_THREAD_SPECIFIC_F : 0)
  771.       | (suppress_use          ? LOG_EVENT_SUPPRESS_USE_F    : 0)),
  772.      using_trans),
  773.    data_buf(0), query(query_arg),
  774.    db(thd_arg->db), q_len((uint32) query_length),
  775.    error_code(thd_arg->killed ?
  776.               ((thd_arg->system_thread & SYSTEM_THREAD_DELAYED_INSERT) ?
  777.                0 : ER_SERVER_SHUTDOWN) : thd_arg->net.last_errno),
  778.    thread_id(thd_arg->thread_id),
  779.    /* save the original thread id; we already know the server id */
  780.    slave_proxy_id(thd_arg->variables.pseudo_thread_id)
  781. {
  782.   time_t end_time;
  783.   time(&end_time);
  784.   exec_time = (ulong) (end_time  - thd->start_time);
  785.   db_len = (db) ? (uint32) strlen(db) : 0;
  786. }
  787. #endif /* MYSQL_CLIENT */
  788. /*
  789.   Query_log_event::Query_log_event()
  790. */
  791. Query_log_event::Query_log_event(const char* buf, int event_len,
  792.  bool old_format)
  793.   :Log_event(buf, old_format),data_buf(0), query(NULL), db(NULL)
  794. {
  795.   ulong data_len;
  796.   if (old_format)
  797.   {
  798.     if ((uint)event_len < OLD_HEADER_LEN + QUERY_HEADER_LEN)
  799.       return;
  800.     data_len = event_len - (QUERY_HEADER_LEN + OLD_HEADER_LEN);
  801.     buf += OLD_HEADER_LEN;
  802.   }
  803.   else
  804.   {
  805.     if ((uint)event_len < QUERY_EVENT_OVERHEAD)
  806.       return;
  807.     data_len = event_len - QUERY_EVENT_OVERHEAD;
  808.     buf += LOG_EVENT_HEADER_LEN;
  809.   }
  810.   exec_time = uint4korr(buf + Q_EXEC_TIME_OFFSET);
  811.   error_code = uint2korr(buf + Q_ERR_CODE_OFFSET);
  812.   if (!(data_buf = (char*) my_malloc(data_len + 1, MYF(MY_WME))))
  813.     return;
  814.   memcpy(data_buf, buf + Q_DATA_OFFSET, data_len);
  815.   slave_proxy_id= thread_id= uint4korr(buf + Q_THREAD_ID_OFFSET);
  816.   db = data_buf;
  817.   db_len = (uint)buf[Q_DB_LEN_OFFSET];
  818.   query=data_buf + db_len + 1;
  819.   q_len = data_len - 1 - db_len;
  820.   *((char*)query+q_len) = 0;
  821. }
  822. /*
  823.   Query_log_event::print()
  824. */
  825. #ifdef MYSQL_CLIENT
  826. void Query_log_event::print(FILE* file, bool short_form, char* last_db)
  827. {
  828.   char buff[40],*end; // Enough for SET TIMESTAMP
  829.   if (!short_form)
  830.   {
  831.     print_header(file);
  832.     fprintf(file, "tQuerytthread_id=%lutexec_time=%luterror_code=%dn",
  833.     (ulong) thread_id, (ulong) exec_time, error_code);
  834.   }
  835.   bool different_db= 1;
  836.   if (!(flags & LOG_EVENT_SUPPRESS_USE_F))
  837.   {
  838.     if (db && last_db) 
  839.     {
  840.       if (different_db= memcmp(last_db, db, db_len + 1))
  841.         memcpy(last_db, db, db_len + 1);
  842.     }
  843.     
  844.     if (db && db[0] && different_db) 
  845.     {
  846.       fprintf(file, "use %s;n", db);
  847.     }
  848.   }
  849.   end=int10_to_str((long) when, strmov(buff,"SET TIMESTAMP="),10);
  850.   *end++=';';
  851.   *end++='n';
  852.   my_fwrite(file, (byte*) buff, (uint) (end-buff),MYF(MY_NABP | MY_WME));
  853.   if (flags & LOG_EVENT_THREAD_SPECIFIC_F)
  854.     fprintf(file,"SET @@session.pseudo_thread_id=%lu;n",(ulong)thread_id);
  855.   my_fwrite(file, (byte*) query, q_len, MYF(MY_NABP | MY_WME));
  856.   fprintf(file, ";n");
  857. }
  858. #endif /* MYSQL_CLIENT */
  859. /*
  860.   Query_log_event::exec_event()
  861. */
  862. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  863. int Query_log_event::exec_event(struct st_relay_log_info* rli)
  864. {
  865.   int expected_error,actual_error= 0;
  866.   thd->db_length= db_len;
  867.   thd->db= (char*) rewrite_db(db, &thd->db_length);
  868.   /*
  869.     InnoDB internally stores the master log position it has processed so far;
  870.     position to store is of the END of the current log event.
  871.   */
  872. #if MYSQL_VERSION_ID < 50000
  873.   rli->future_group_master_log_pos= log_pos + get_event_len() -
  874.     (rli->mi->old_format ? (LOG_EVENT_HEADER_LEN - OLD_HEADER_LEN) : 0);
  875. #else
  876.   /* In 5.0 we store the end_log_pos in the relay log so no problem */
  877.   rli->future_group_master_log_pos= log_pos;
  878. #endif
  879.   clear_all_errors(thd, rli);
  880.   /*
  881.     Note:   We do not need to execute reset_one_shot_variables() if this
  882.             db_ok() test fails.
  883.     Reason: The db stored in binlog events is the same for SET and for
  884.             its companion query.  If the SET is ignored because of
  885.             db_ok(), the companion query will also be ignored, and if
  886.             the companion query is ignored in the db_ok() test of
  887.             ::exec_event(), then the companion SET also have so we
  888.             don't need to reset_one_shot_variables().
  889.   */
  890.   if (db_ok(thd->db, replicate_do_db, replicate_ignore_db))
  891.   {
  892.     thd->set_time((time_t)when);
  893.     thd->query_length= q_len;
  894.     thd->query = (char*)query;
  895.     VOID(pthread_mutex_lock(&LOCK_thread_count));
  896.     thd->query_id = query_id++;
  897.     VOID(pthread_mutex_unlock(&LOCK_thread_count));
  898.     thd->variables.pseudo_thread_id= thread_id; // for temp tables
  899.     DBUG_PRINT("query",("%s",thd->query));
  900.     if (ignored_error_code((expected_error= error_code)) ||
  901. !check_expected_error(thd,rli,expected_error))
  902.       mysql_parse(thd, thd->query, q_len);
  903.     else
  904.     {
  905.       /*
  906.         The query got a really bad error on the master (thread killed etc),
  907.         which could be inconsistent. Parse it to test the table names: if the
  908.         replicate-*-do|ignore-table rules say "this query must be ignored" then
  909.         we exit gracefully; otherwise we warn about the bad error and tell DBA
  910.         to check/fix it.
  911.       */
  912.       if (mysql_test_parse_for_slave(thd, thd->query, q_len))
  913.         clear_all_errors(thd, rli);        /* Can ignore query */
  914.       else
  915.       {
  916.         slave_print_error(rli,expected_error, 
  917.                           "
  918. Query partially completed on the master (error on master: %d) 
  919. and was aborted. There is a chance that your master is inconsistent at this 
  920. point. If you are sure that your master is ok, run this query manually on the 
  921. slave and then restart the slave with SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1; 
  922. START SLAVE; . Query: '%s'", expected_error, thd->query);
  923.         thd->query_error= 1;
  924.       }
  925.       goto end;
  926.     }
  927.     /* If the query was not ignored, it is printed to the general log */
  928.     if (thd->net.last_errno != ER_SLAVE_IGNORED_TABLE)
  929.       mysql_log.write(thd,COM_QUERY,"%s",thd->query);
  930.     /*
  931.       If we expected a non-zero error code, and we don't get the same error
  932.       code, and none of them should be ignored.
  933.     */
  934.     DBUG_PRINT("info",("expected_error: %d  last_errno: %d",
  935.        expected_error, thd->net.last_errno));
  936.     if ((expected_error != (actual_error= thd->net.last_errno)) &&
  937. expected_error &&
  938. !ignored_error_code(actual_error) &&
  939. !ignored_error_code(expected_error))
  940.     {
  941.       slave_print_error(rli, 0,
  942. "
  943. Query caused different errors on master and slave. 
  944. Error on master: '%s' (%d), Error on slave: '%s' (%d). 
  945. Default database: '%s'. Query: '%s'",
  946. ER_SAFE(expected_error),
  947. expected_error,
  948. actual_error ? thd->net.last_error: "no error",
  949. actual_error,
  950. print_slave_db_safe(thd->db), query);
  951.       thd->query_error= 1;
  952.     }
  953.     /*
  954.       If we get the same error code as expected, or they should be ignored. 
  955.     */
  956.     else if (expected_error == actual_error ||
  957.      ignored_error_code(actual_error))
  958.     {
  959.       DBUG_PRINT("info",("error ignored"));
  960.       clear_all_errors(thd, rli);
  961.     }
  962.     /*
  963.       Other cases: mostly we expected no error and get one.
  964.     */
  965.     else if (thd->query_error || thd->is_fatal_error)
  966.     {
  967.       slave_print_error(rli,actual_error,
  968. "Error '%s' on query. Default database: '%s'. Query: '%s'",
  969. (actual_error ? thd->net.last_error :
  970.  "unexpected success or fatal error"),
  971. print_slave_db_safe(thd->db), query);
  972.       thd->query_error= 1;
  973.     }
  974.   } /* End of if (db_ok(... */
  975. end:
  976.   VOID(pthread_mutex_lock(&LOCK_thread_count));
  977.   thd->db= 0;                         // prevent db from being freed
  978.   thd->query= 0; // just to be sure
  979.   thd->query_length= thd->db_length =0;
  980.   VOID(pthread_mutex_unlock(&LOCK_thread_count));
  981.   close_thread_tables(thd);      
  982.   free_root(thd->mem_root,MYF(MY_KEEP_PREALLOC));
  983.   /*
  984.     If there was an error we stop. Otherwise we increment positions. Note that
  985.     we will not increment group* positions if we are just after a SET
  986.     ONE_SHOT, because SET ONE_SHOT should not be separated from its following
  987.     updating query.
  988.   */
  989.   return (thd->query_error ? thd->query_error : 
  990.           (thd->one_shot_set ? (rli->inc_event_relay_log_pos(get_event_len()),0) :
  991.            Log_event::exec_event(rli))); 
  992. }
  993. #endif
  994. /**************************************************************************
  995. Start_log_event methods
  996. **************************************************************************/
  997. /*
  998.   Start_log_event::pack_info()
  999. */
  1000. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  1001. void Start_log_event::pack_info(Protocol *protocol)
  1002. {
  1003.   char buf[12 + ST_SERVER_VER_LEN + 14 + 22], *pos;
  1004.   pos= strmov(buf, "Server ver: ");
  1005.   pos= strmov(pos, server_version);
  1006.   pos= strmov(pos, ", Binlog ver: ");
  1007.   pos= int10_to_str(binlog_version, pos, 10);
  1008.   protocol->store(buf, (uint) (pos-buf), &my_charset_bin);
  1009. }
  1010. #endif
  1011. /*
  1012.   Start_log_event::print()
  1013. */
  1014. #ifdef MYSQL_CLIENT
  1015. void Start_log_event::print(FILE* file, bool short_form, char* last_db)
  1016. {
  1017.   if (short_form)
  1018.     return;
  1019.   print_header(file);
  1020.   fprintf(file, "tStart: binlog v %d, server v %s created ", binlog_version,
  1021.   server_version);
  1022.   print_timestamp(file);
  1023.   if (created)
  1024.     fprintf(file," at startup");
  1025.   fputc('n', file);
  1026.   fflush(file);
  1027. }
  1028. #endif /* MYSQL_CLIENT */
  1029. /*
  1030.   Start_log_event::Start_log_event()
  1031. */
  1032. Start_log_event::Start_log_event(const char* buf,
  1033.  bool old_format)
  1034.   :Log_event(buf, old_format)
  1035. {
  1036.   buf += (old_format) ? OLD_HEADER_LEN : LOG_EVENT_HEADER_LEN;
  1037.   binlog_version = uint2korr(buf+ST_BINLOG_VER_OFFSET);
  1038.   memcpy(server_version, buf+ST_SERVER_VER_OFFSET,
  1039.  ST_SERVER_VER_LEN);
  1040.   created = uint4korr(buf+ST_CREATED_OFFSET);
  1041. }
  1042. /*
  1043.   Start_log_event::write_data()
  1044. */
  1045. int Start_log_event::write_data(IO_CACHE* file)
  1046. {
  1047.   char buff[START_HEADER_LEN];
  1048.   int2store(buff + ST_BINLOG_VER_OFFSET,binlog_version);
  1049.   memcpy(buff + ST_SERVER_VER_OFFSET,server_version,ST_SERVER_VER_LEN);
  1050.   int4store(buff + ST_CREATED_OFFSET,created);
  1051.   return (my_b_safe_write(file, (byte*) buff, sizeof(buff)) ? -1 : 0);
  1052. }
  1053. /*
  1054.   Start_log_event::exec_event()
  1055.   The master started
  1056.   IMPLEMENTATION
  1057.     - To handle the case where the master died without having time to write
  1058.       DROP TEMPORARY TABLE, DO RELEASE_LOCK (prepared statements' deletion is
  1059.       TODO), we clean up all temporary tables that we got, if we are sure we
  1060.       can (see below).
  1061.   TODO
  1062.     - Remove all active user locks.
  1063.       Guilhem 2003-06: this is true but not urgent: the worst it can cause is
  1064.       the use of a bit of memory for a user lock which will not be used
  1065.       anymore. If the user lock is later used, the old one will be released. In
  1066.       other words, no deadlock problem.
  1067. */
  1068. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  1069. int Start_log_event::exec_event(struct st_relay_log_info* rli)
  1070. {
  1071.   DBUG_ENTER("Start_log_event::exec_event");
  1072.   /*
  1073.     If the I/O thread has not started, mi->old_format is BINLOG_FORMAT_CURRENT
  1074.     (that's what the MASTER_INFO constructor does), so the test below is not
  1075.     perfect at all.
  1076.   */
  1077.   switch (rli->mi->old_format) {
  1078.   case BINLOG_FORMAT_CURRENT:
  1079.     /* 
  1080.        This is 4.x, so a Start_log_event is only at master startup,
  1081.        so we are sure the master has restarted and cleared his temp tables.
  1082.     */
  1083.     close_temporary_tables(thd);
  1084.     cleanup_load_tmpdir();
  1085.     /*
  1086.       As a transaction NEVER spans on 2 or more binlogs:
  1087.       if we have an active transaction at this point, the master died while
  1088.       writing the transaction to the binary log, i.e. while flushing the binlog
  1089.       cache to the binlog. As the write was started, the transaction had been
  1090.       committed on the master, so we lack of information to replay this
  1091.       transaction on the slave; all we can do is stop with error.
  1092.     */
  1093.     if (thd->options & OPTION_BEGIN)
  1094.     {
  1095.       slave_print_error(rli, 0, "
  1096. Rolling back unfinished transaction (no COMMIT or ROLLBACK) from relay log. 
  1097. A probable cause is that the master died while writing the transaction to its 
  1098. binary log.");
  1099.       return(1);
  1100.     }
  1101.     break;
  1102.     /* 
  1103.        Now the older formats; in that case load_tmpdir is cleaned up by the I/O
  1104.        thread.
  1105.     */
  1106.   case BINLOG_FORMAT_323_LESS_57:
  1107.     /*
  1108.       Cannot distinguish a Start_log_event generated at master startup and
  1109.       one generated by master FLUSH LOGS, so cannot be sure temp tables
  1110.       have to be dropped. So do nothing.
  1111.     */
  1112.     break;
  1113.   case BINLOG_FORMAT_323_GEQ_57:
  1114.     /*
  1115.       Can distinguish, based on the value of 'created',
  1116.       which was generated at master startup.
  1117.     */
  1118.     if (created)
  1119.       close_temporary_tables(thd);
  1120.     break;
  1121.   default:
  1122.     /* this case is impossible */
  1123.     return 1;
  1124.   }
  1125.   DBUG_RETURN(Log_event::exec_event(rli));
  1126. }
  1127. #endif /* defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT) */
  1128. /**************************************************************************
  1129. Load_log_event methods
  1130. **************************************************************************/
  1131. /*
  1132.   Load_log_event::pack_info()
  1133. */
  1134. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  1135. void Load_log_event::pack_info(Protocol *protocol)
  1136. {
  1137.   char *buf, *pos;
  1138.   uint buf_len;
  1139.   buf_len= 
  1140.     5 + db_len + 3 +                        // "use DB; "
  1141.     18 + fname_len + 2 +                    // "LOAD DATA INFILE 'file''"
  1142.     7 +     // LOCAL
  1143.     9 +                                     // " REPLACE or IGNORE "
  1144.     13 + table_name_len*2 +                 // "INTO TABLE `table`"
  1145.     21 + sql_ex.field_term_len*4 + 2 +      // " FIELDS TERMINATED BY 'str'"
  1146.     23 + sql_ex.enclosed_len*4 + 2 +        // " OPTIONALLY ENCLOSED BY 'str'"
  1147.     12 + sql_ex.escaped_len*4 + 2 +         // " ESCAPED BY 'str'"
  1148.     21 + sql_ex.line_term_len*4 + 2 +       // " FIELDS TERMINATED BY 'str'"
  1149.     19 + sql_ex.line_start_len*4 + 2 +      // " LINES STARTING BY 'str'" 
  1150.     15 + 22 +                               // " IGNORE xxx  LINES" 
  1151.     3 + (num_fields-1)*2 + field_block_len; // " (field1, field2, ...)"
  1152.   if (!(buf= my_malloc(buf_len, MYF(MY_WME))))
  1153.     return;
  1154.   pos= buf;
  1155.   if (db && db_len)
  1156.   {
  1157.     pos= strmov(pos, "use `");
  1158.     memcpy(pos, db, db_len);
  1159.     pos= strmov(pos+db_len, "`; ");
  1160.   }
  1161.   pos= strmov(pos, "LOAD DATA ");
  1162.   if (check_fname_outside_temp_buf())
  1163.     pos= strmov(pos, "LOCAL ");
  1164.   pos= strmov(pos, "INFILE '");
  1165.   memcpy(pos, fname, fname_len);
  1166.   pos= strmov(pos+fname_len, "' ");
  1167.   if (sql_ex.opt_flags & REPLACE_FLAG)
  1168.     pos= strmov(pos, " REPLACE ");
  1169.   else if (sql_ex.opt_flags & IGNORE_FLAG)
  1170.     pos= strmov(pos, " IGNORE ");
  1171.   pos= strmov(pos ,"INTO TABLE `");
  1172.   memcpy(pos, table_name, table_name_len);
  1173.   pos+= table_name_len;
  1174.   /* We have to create all optinal fields as the default is not empty */
  1175.   pos= strmov(pos, "` FIELDS TERMINATED BY ");
  1176.   pos= pretty_print_str(pos, sql_ex.field_term, sql_ex.field_term_len);
  1177.   if (sql_ex.opt_flags & OPT_ENCLOSED_FLAG)
  1178.     pos= strmov(pos, " OPTIONALLY ");
  1179.   pos= strmov(pos, " ENCLOSED BY ");
  1180.   pos= pretty_print_str(pos, sql_ex.enclosed, sql_ex.enclosed_len);
  1181.   pos= strmov(pos, " ESCAPED BY ");
  1182.   pos= pretty_print_str(pos, sql_ex.escaped, sql_ex.escaped_len);
  1183.   pos= strmov(pos, " LINES TERMINATED BY ");
  1184.   pos= pretty_print_str(pos, sql_ex.line_term, sql_ex.line_term_len);
  1185.   if (sql_ex.line_start_len)
  1186.   {
  1187.     pos= strmov(pos, " STARTING BY ");
  1188.     pos= pretty_print_str(pos, sql_ex.line_start, sql_ex.line_start_len);
  1189.   }
  1190.   if ((long) skip_lines > 0)
  1191.   {
  1192.     pos= strmov(pos, " IGNORE ");
  1193.     pos= longlong10_to_str((longlong) skip_lines, pos, 10);
  1194.     pos= strmov(pos," LINES ");    
  1195.   }
  1196.   if (num_fields)
  1197.   {
  1198.     uint i;
  1199.     const char *field= fields;
  1200.     pos= strmov(pos, " (");
  1201.     for (i = 0; i < num_fields; i++)
  1202.     {
  1203.       if (i)
  1204.       {
  1205.         *pos++= ' ';
  1206.         *pos++= ',';
  1207.       }
  1208.       memcpy(pos, field, field_lens[i]);
  1209.       pos+=   field_lens[i];
  1210.       field+= field_lens[i]  + 1;
  1211.     }
  1212.     *pos++= ')';
  1213.   }
  1214.   protocol->store(buf, pos-buf, &my_charset_bin);
  1215.   my_free(buf, MYF(0));
  1216. }
  1217. #endif /* defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT) */
  1218. /*
  1219.   Load_log_event::write_data_header()
  1220. */
  1221. int Load_log_event::write_data_header(IO_CACHE* file)
  1222. {
  1223.   char buf[LOAD_HEADER_LEN];
  1224.   int4store(buf + L_THREAD_ID_OFFSET, slave_proxy_id);
  1225.   int4store(buf + L_EXEC_TIME_OFFSET, exec_time);
  1226.   int4store(buf + L_SKIP_LINES_OFFSET, skip_lines);
  1227.   buf[L_TBL_LEN_OFFSET] = (char)table_name_len;
  1228.   buf[L_DB_LEN_OFFSET] = (char)db_len;
  1229.   int4store(buf + L_NUM_FIELDS_OFFSET, num_fields);
  1230.   return my_b_safe_write(file, (byte*)buf, LOAD_HEADER_LEN);
  1231. }
  1232. /*
  1233.   Load_log_event::write_data_body()
  1234. */
  1235. int Load_log_event::write_data_body(IO_CACHE* file)
  1236. {
  1237.   if (sql_ex.write_data(file))
  1238.     return 1;
  1239.   if (num_fields && fields && field_lens)
  1240.   {
  1241.     if (my_b_safe_write(file, (byte*)field_lens, num_fields) ||
  1242. my_b_safe_write(file, (byte*)fields, field_block_len))
  1243.       return 1;
  1244.   }
  1245.   return (my_b_safe_write(file, (byte*)table_name, table_name_len + 1) ||
  1246.   my_b_safe_write(file, (byte*)db, db_len + 1) ||
  1247.   my_b_safe_write(file, (byte*)fname, fname_len));
  1248. }
  1249. /*
  1250.   Load_log_event::Load_log_event()
  1251. */
  1252. #ifndef MYSQL_CLIENT
  1253. Load_log_event::Load_log_event(THD *thd_arg, sql_exchange *ex,
  1254.        const char *db_arg, const char *table_name_arg,
  1255.        List<Item> &fields_arg,
  1256.        enum enum_duplicates handle_dup,
  1257.        bool ignore, bool using_trans)
  1258.   :Log_event(thd_arg, !thd_arg->tmp_table_used ?
  1259.      0 : LOG_EVENT_THREAD_SPECIFIC_F, using_trans),
  1260.    thread_id(thd_arg->thread_id),
  1261.    slave_proxy_id(thd_arg->variables.pseudo_thread_id),
  1262.    num_fields(0),fields(0),
  1263.    field_lens(0),field_block_len(0),
  1264.    table_name(table_name_arg ? table_name_arg : ""),
  1265.    db(db_arg), fname(ex->file_name), local_fname(FALSE)
  1266. {
  1267.   time_t end_time;
  1268.   time(&end_time);
  1269.   exec_time = (ulong) (end_time  - thd_arg->start_time);
  1270.   /* db can never be a zero pointer in 4.0 */
  1271.   db_len = (uint32) strlen(db);
  1272.   table_name_len = (uint32) strlen(table_name);
  1273.   fname_len = (fname) ? (uint) strlen(fname) : 0;
  1274.   sql_ex.field_term = (char*) ex->field_term->ptr();
  1275.   sql_ex.field_term_len = (uint8) ex->field_term->length();
  1276.   sql_ex.enclosed = (char*) ex->enclosed->ptr();
  1277.   sql_ex.enclosed_len = (uint8) ex->enclosed->length();
  1278.   sql_ex.line_term = (char*) ex->line_term->ptr();
  1279.   sql_ex.line_term_len = (uint8) ex->line_term->length();
  1280.   sql_ex.line_start = (char*) ex->line_start->ptr();
  1281.   sql_ex.line_start_len = (uint8) ex->line_start->length();
  1282.   sql_ex.escaped = (char*) ex->escaped->ptr();
  1283.   sql_ex.escaped_len = (uint8) ex->escaped->length();
  1284.   sql_ex.opt_flags = 0;
  1285.   sql_ex.cached_new_format = -1;
  1286.     
  1287.   if (ex->dumpfile)
  1288.     sql_ex.opt_flags|= DUMPFILE_FLAG;
  1289.   if (ex->opt_enclosed)
  1290.     sql_ex.opt_flags|= OPT_ENCLOSED_FLAG;
  1291.   sql_ex.empty_flags= 0;
  1292.   switch (handle_dup) {
  1293.   case DUP_REPLACE:
  1294.     sql_ex.opt_flags|= REPLACE_FLAG;
  1295.     break;
  1296.   case DUP_UPDATE: // Impossible here
  1297.   case DUP_ERROR:
  1298.     break;
  1299.   }
  1300.   if (ignore)
  1301.     sql_ex.opt_flags|= IGNORE_FLAG;
  1302.   if (!ex->field_term->length())
  1303.     sql_ex.empty_flags |= FIELD_TERM_EMPTY;
  1304.   if (!ex->enclosed->length())
  1305.     sql_ex.empty_flags |= ENCLOSED_EMPTY;
  1306.   if (!ex->line_term->length())
  1307.     sql_ex.empty_flags |= LINE_TERM_EMPTY;
  1308.   if (!ex->line_start->length())
  1309.     sql_ex.empty_flags |= LINE_START_EMPTY;
  1310.   if (!ex->escaped->length())
  1311.     sql_ex.empty_flags |= ESCAPED_EMPTY;
  1312.     
  1313.   skip_lines = ex->skip_lines;
  1314.   List_iterator<Item> li(fields_arg);
  1315.   field_lens_buf.length(0);
  1316.   fields_buf.length(0);
  1317.   Item* item;
  1318.   while ((item = li++))
  1319.   {
  1320.     num_fields++;
  1321.     uchar len = (uchar) strlen(item->name);
  1322.     field_block_len += len + 1;
  1323.     fields_buf.append(item->name, len + 1);
  1324.     field_lens_buf.append((char*)&len, 1);
  1325.   }
  1326.   field_lens = (const uchar*)field_lens_buf.ptr();
  1327.   fields = fields_buf.ptr();
  1328. }
  1329. #endif /* !MYSQL_CLIENT */
  1330. /*
  1331.   Load_log_event::Load_log_event()
  1332.   NOTE
  1333.     The caller must do buf[event_len] = 0 before he starts using the
  1334.     constructed event.
  1335. */
  1336. Load_log_event::Load_log_event(const char *buf, int event_len,
  1337.        bool old_format)
  1338.   :Log_event(buf, old_format), num_fields(0), fields(0),
  1339.    field_lens(0), field_block_len(0),
  1340.    table_name(0), db(0), fname(0), local_fname(FALSE)
  1341. {
  1342.   DBUG_ENTER("Load_log_event");
  1343.   if (event_len) // derived class, will call copy_log_event() itself
  1344.     copy_log_event(buf, event_len, old_format);
  1345.   DBUG_VOID_RETURN;
  1346. }
  1347. /*
  1348.   Load_log_event::copy_log_event()
  1349. */
  1350. int Load_log_event::copy_log_event(const char *buf, ulong event_len,
  1351.    bool old_format)
  1352. {
  1353.   uint data_len;
  1354.   char* buf_end = (char*)buf + event_len;
  1355.   uint header_len= old_format ? OLD_HEADER_LEN : LOG_EVENT_HEADER_LEN;
  1356.   const char* data_head = buf + header_len;
  1357.   DBUG_ENTER("Load_log_event::copy_log_event");
  1358.   slave_proxy_id= thread_id= uint4korr(data_head + L_THREAD_ID_OFFSET);
  1359.   exec_time = uint4korr(data_head + L_EXEC_TIME_OFFSET);
  1360.   skip_lines = uint4korr(data_head + L_SKIP_LINES_OFFSET);
  1361.   table_name_len = (uint)data_head[L_TBL_LEN_OFFSET];
  1362.   db_len = (uint)data_head[L_DB_LEN_OFFSET];
  1363.   num_fields = uint4korr(data_head + L_NUM_FIELDS_OFFSET);
  1364.   
  1365.   int body_offset = ((buf[EVENT_TYPE_OFFSET] == LOAD_EVENT) ?
  1366.      LOAD_HEADER_LEN + header_len :
  1367.      get_data_body_offset());
  1368.   
  1369.   if ((int) event_len < body_offset)
  1370.     DBUG_RETURN(1);
  1371.   /*
  1372.     Sql_ex.init() on success returns the pointer to the first byte after
  1373.     the sql_ex structure, which is the start of field lengths array.
  1374.   */
  1375.   if (!(field_lens=(uchar*)sql_ex.init((char*)buf + body_offset,
  1376.        buf_end,
  1377.        buf[EVENT_TYPE_OFFSET] != LOAD_EVENT)))
  1378.     DBUG_RETURN(1);
  1379.   data_len = event_len - body_offset;
  1380.   if (num_fields > data_len) // simple sanity check against corruption
  1381.     DBUG_RETURN(1);
  1382.   for (uint i = 0; i < num_fields; i++)
  1383.     field_block_len += (uint)field_lens[i] + 1;
  1384.   fields = (char*)field_lens + num_fields;
  1385.   table_name  = fields + field_block_len;
  1386.   db = table_name + table_name_len + 1;
  1387.   fname = db + db_len + 1;
  1388.   fname_len = strlen(fname);
  1389.   // null termination is accomplished by the caller doing buf[event_len]=0
  1390.   DBUG_RETURN(0);
  1391. }
  1392. /*
  1393.   Load_log_event::print()
  1394. */
  1395. #ifdef MYSQL_CLIENT
  1396. void Load_log_event::print(FILE* file, bool short_form, char* last_db)
  1397. {
  1398.   print(file, short_form, last_db, 0);
  1399. }
  1400. void Load_log_event::print(FILE* file, bool short_form, char* last_db,
  1401.    bool commented)
  1402. {
  1403.   DBUG_ENTER("Load_log_event::print");
  1404.   if (!short_form)
  1405.   {
  1406.     print_header(file);
  1407.     fprintf(file, "tQuerytthread_id=%ldtexec_time=%ldn",
  1408.     thread_id, exec_time);
  1409.   }
  1410.   bool different_db= 1;
  1411.   if (db && last_db)
  1412.   {
  1413.     /*
  1414.       If the database is different from the one of the previous statement, we
  1415.       need to print the "use" command, and we update the last_db.
  1416.       But if commented, the "use" is going to be commented so we should not
  1417.       update the last_db.
  1418.     */
  1419.     if ((different_db= memcmp(last_db, db, db_len + 1)) &&
  1420.         !commented)
  1421.       memcpy(last_db, db, db_len + 1);
  1422.   }
  1423.   
  1424.   if (db && db[0] && different_db)
  1425.     fprintf(file, "%suse %s;n", 
  1426.             commented ? "# " : "",
  1427.             db);
  1428.   if (flags & LOG_EVENT_THREAD_SPECIFIC_F)
  1429.     fprintf(file,"%sSET @@session.pseudo_thread_id=%lu;n",
  1430.             commented ? "# " : "", (ulong)thread_id);
  1431.   fprintf(file, "%sLOAD DATA ",
  1432.           commented ? "# " : "");
  1433.   if (check_fname_outside_temp_buf())
  1434.     fprintf(file, "LOCAL ");
  1435.   fprintf(file, "INFILE '%-*s' ", fname_len, fname);
  1436.   if (sql_ex.opt_flags & REPLACE_FLAG)
  1437.     fprintf(file," REPLACE ");
  1438.   else if (sql_ex.opt_flags & IGNORE_FLAG)
  1439.     fprintf(file," IGNORE ");
  1440.   
  1441.   fprintf(file, "INTO TABLE `%s`", table_name);
  1442.   fprintf(file, " FIELDS TERMINATED BY ");
  1443.   pretty_print_str(file, sql_ex.field_term, sql_ex.field_term_len);
  1444.   if (sql_ex.opt_flags & OPT_ENCLOSED_FLAG)
  1445.     fprintf(file," OPTIONALLY ");
  1446.   fprintf(file, " ENCLOSED BY ");
  1447.   pretty_print_str(file, sql_ex.enclosed, sql_ex.enclosed_len);
  1448.      
  1449.   fprintf(file, " ESCAPED BY ");
  1450.   pretty_print_str(file, sql_ex.escaped, sql_ex.escaped_len);
  1451.      
  1452.   fprintf(file," LINES TERMINATED BY ");
  1453.   pretty_print_str(file, sql_ex.line_term, sql_ex.line_term_len);
  1454.   if (sql_ex.line_start)
  1455.   {
  1456.     fprintf(file," STARTING BY ");
  1457.     pretty_print_str(file, sql_ex.line_start, sql_ex.line_start_len);
  1458.   }
  1459.   if ((long) skip_lines > 0)
  1460.     fprintf(file, " IGNORE %ld LINES", (long) skip_lines);
  1461.   if (num_fields)
  1462.   {
  1463.     uint i;
  1464.     const char* field = fields;
  1465.     fprintf(file, " (");
  1466.     for (i = 0; i < num_fields; i++)
  1467.     {
  1468.       if (i)
  1469. fputc(',', file);
  1470.       fprintf(file, field);
  1471.   
  1472.       field += field_lens[i]  + 1;
  1473.     }
  1474.     fputc(')', file);
  1475.   }
  1476.   fprintf(file, ";n");
  1477.   DBUG_VOID_RETURN;
  1478. }
  1479. #endif /* MYSQL_CLIENT */
  1480. /*
  1481.   Load_log_event::set_fields()
  1482.   Note that this function can not use the member variable 
  1483.   for the database, since LOAD DATA INFILE on the slave
  1484.   can be for a different database than the current one.
  1485.   This is the reason for the affected_db argument to this method.
  1486. */
  1487. #ifndef MYSQL_CLIENT
  1488. void Load_log_event::set_fields(const char* affected_db, 
  1489. List<Item> &field_list)
  1490. {
  1491.   uint i;
  1492.   const char* field = fields;
  1493.   for (i= 0; i < num_fields; i++)
  1494.   {
  1495.     field_list.push_back(new Item_field(affected_db, table_name, field));
  1496.     field+= field_lens[i]  + 1;
  1497.   }
  1498. }
  1499. #endif /* !MYSQL_CLIENT */
  1500. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  1501. /*
  1502.   Does the data loading job when executing a LOAD DATA on the slave
  1503.   SYNOPSIS
  1504.     Load_log_event::exec_event
  1505.       net  
  1506.       rli                             
  1507.       use_rli_only_for_errors   - if set to 1, rli is provided to 
  1508.                                   Load_log_event::exec_event only for this 
  1509.   function to have RPL_LOG_NAME and 
  1510.   rli->last_slave_error, both being used by 
  1511.   error reports. rli's position advancing
  1512.   is skipped (done by the caller which is
  1513.   Execute_load_log_event::exec_event).
  1514.   - if set to 0, rli is provided for full use,
  1515.   i.e. for error reports and position
  1516.   advancing.
  1517.   DESCRIPTION
  1518.     Does the data loading job when executing a LOAD DATA on the slave
  1519.  
  1520.   RETURN VALUE
  1521.     0           Success                                                 
  1522.     1     Failure
  1523. */
  1524. int Load_log_event::exec_event(NET* net, struct st_relay_log_info* rli, 
  1525.        bool use_rli_only_for_errors)
  1526. {
  1527.   char *load_data_query= 0;
  1528.   thd->db_length= db_len;
  1529.   thd->db= (char*) rewrite_db(db, &thd->db_length);
  1530.   DBUG_ASSERT(thd->query == 0);
  1531.   thd->query_length= 0;                         // Should not be needed
  1532.   thd->query_error= 0;
  1533.   clear_all_errors(thd, rli);
  1534.   /*
  1535.     Usually mysql_init_query() is called by mysql_parse(), but we need it here
  1536.     as the present method does not call mysql_parse().
  1537.   */
  1538.   mysql_init_query(thd, 0, 0);
  1539.   if (!use_rli_only_for_errors)
  1540.   {
  1541. #if MYSQL_VERSION_ID < 50000
  1542.     rli->future_group_master_log_pos= log_pos + get_event_len() -
  1543.       (rli->mi->old_format ? (LOG_EVENT_HEADER_LEN - OLD_HEADER_LEN) : 0);
  1544. #else
  1545.     rli->future_group_master_log_pos= log_pos;
  1546. #endif
  1547.   }
  1548.   /*
  1549.     We test replicate_*_db rules. Note that we have already prepared the file
  1550.     to load, even if we are going to ignore and delete it now. So it is
  1551.     possible that we did a lot of disk writes for nothing. In other words, a
  1552.     big LOAD DATA INFILE on the master will still consume a lot of space on
  1553.     the slave (space in the relay log + space of temp files: twice the space
  1554.     of the file to load...) even if it will finally be ignored.
  1555.     TODO: fix this; this can be done by testing rules in
  1556.     Create_file_log_event::exec_event() and then discarding Append_block and
  1557.     al. Another way is do the filtering in the I/O thread (more efficient: no
  1558.     disk writes at all).
  1559.     Note:   We do not need to execute reset_one_shot_variables() if this
  1560.             db_ok() test fails.
  1561.     Reason: The db stored in binlog events is the same for SET and for
  1562.             its companion query.  If the SET is ignored because of
  1563.             db_ok(), the companion query will also be ignored, and if
  1564.             the companion query is ignored in the db_ok() test of
  1565.             ::exec_event(), then the companion SET also have so we
  1566.             don't need to reset_one_shot_variables().
  1567.   */
  1568.   if (db_ok(thd->db, replicate_do_db, replicate_ignore_db))
  1569.   {
  1570.     thd->set_time((time_t)when);
  1571.     VOID(pthread_mutex_lock(&LOCK_thread_count));
  1572.     thd->query_id = query_id++;
  1573.     VOID(pthread_mutex_unlock(&LOCK_thread_count));
  1574.     /*
  1575.       Initing thd->row_count is not necessary in theory as this variable has no
  1576.       influence in the case of the slave SQL thread (it is used to generate a
  1577.       "data truncated" warning but which is absorbed and never gets to the
  1578.       error log); still we init it to avoid a Valgrind message.
  1579.     */
  1580.     mysql_reset_errors(thd);
  1581.     TABLE_LIST tables;
  1582.     bzero((char*) &tables,sizeof(tables));
  1583.     tables.db = thd->db;
  1584.     tables.alias = tables.real_name = (char*)table_name;
  1585.     tables.lock_type = TL_WRITE;
  1586.     tables.updating= 1;
  1587.     // the table will be opened in mysql_load    
  1588.     if (table_rules_on && !tables_ok(thd, &tables))
  1589.     {
  1590.       // TODO: this is a bug - this needs to be moved to the I/O thread
  1591.       if (net)
  1592.         skip_load_data_infile(net);
  1593.     }
  1594.     else
  1595.     {
  1596.       char llbuff[22];
  1597.       enum enum_duplicates handle_dup;
  1598.       bool ignore= 0;
  1599.       /*
  1600.         Make a simplified LOAD DATA INFILE query, for the information of the
  1601.         user in SHOW PROCESSLIST. Note that db is known in the 'db' column.
  1602.       */
  1603.       if ((load_data_query= (char *) my_alloca(18 + strlen(fname) + 14 +
  1604.                                                strlen(tables.real_name) + 8)))
  1605.       {
  1606.         thd->query_length= (uint)(strxmov(load_data_query,
  1607.                                           "LOAD DATA INFILE '", fname,
  1608.                                           "' INTO TABLE `", tables.real_name,
  1609.                                           "` <...>", NullS) - load_data_query);
  1610.         thd->query= load_data_query;
  1611.       }
  1612.       if (sql_ex.opt_flags & REPLACE_FLAG)
  1613.       {
  1614. handle_dup= DUP_REPLACE;
  1615.       }
  1616.       else if (sql_ex.opt_flags & IGNORE_FLAG)
  1617.       {
  1618.         ignore= 1;
  1619.         handle_dup= DUP_ERROR;
  1620.       }
  1621.       else
  1622.       {
  1623.         /*
  1624.   When replication is running fine, if it was DUP_ERROR on the
  1625.           master then we could choose IGNORE here, because if DUP_ERROR
  1626.           suceeded on master, and data is identical on the master and slave,
  1627.           then there should be no uniqueness errors on slave, so IGNORE is
  1628.           the same as DUP_ERROR. But in the unlikely case of uniqueness errors
  1629.           (because the data on the master and slave happen to be different
  1630.   (user error or bug), we want LOAD DATA to print an error message on
  1631.   the slave to discover the problem.
  1632.           If reading from net (a 3.23 master), mysql_load() will change this
  1633.           to IGNORE.
  1634.         */
  1635.         handle_dup= DUP_ERROR;
  1636.       }
  1637.       /*
  1638.         We need to set thd->lex->sql_command and thd->lex->duplicates
  1639.         since InnoDB tests these variables to decide if this is a LOAD
  1640.         DATA ... REPLACE INTO ... statement even though mysql_parse()
  1641.         is not called.  This is not needed in 5.0 since there the LOAD
  1642.         DATA ... statement is replicated using mysql_parse(), which
  1643.         sets the thd->lex fields correctly.
  1644.       */
  1645.       thd->lex->sql_command= SQLCOM_LOAD;
  1646.       thd->lex->duplicates= handle_dup;
  1647.       sql_exchange ex((char*)fname, sql_ex.opt_flags & DUMPFILE_FLAG);
  1648.       String field_term(sql_ex.field_term,sql_ex.field_term_len,log_cs);
  1649.       String enclosed(sql_ex.enclosed,sql_ex.enclosed_len,log_cs);
  1650.       String line_term(sql_ex.line_term,sql_ex.line_term_len,log_cs);
  1651.       String line_start(sql_ex.line_start,sql_ex.line_start_len,log_cs);
  1652.       String escaped(sql_ex.escaped,sql_ex.escaped_len, log_cs);
  1653.       ex.field_term= &field_term;
  1654.       ex.enclosed= &enclosed;
  1655.       ex.line_term= &line_term;
  1656.       ex.line_start= &line_start;
  1657.       ex.escaped= &escaped;
  1658.       ex.opt_enclosed = (sql_ex.opt_flags & OPT_ENCLOSED_FLAG);
  1659.       if (sql_ex.empty_flags & FIELD_TERM_EMPTY)
  1660. ex.field_term->length(0);
  1661.       ex.skip_lines = skip_lines;
  1662.       List<Item> field_list;
  1663.       set_fields(thd->db,field_list);
  1664.       thd->variables.pseudo_thread_id= thread_id;
  1665.       if (net)
  1666.       {
  1667. // mysql_load will use thd->net to read the file
  1668. thd->net.vio = net->vio;
  1669. /*
  1670.   Make sure the client does not get confused about the packet sequence
  1671. */
  1672. thd->net.pkt_nr = net->pkt_nr;
  1673.       }
  1674.       if (mysql_load(thd, &ex, &tables, field_list, handle_dup, ignore, net != 0,
  1675.      TL_WRITE))
  1676. thd->query_error = 1;
  1677.       if (thd->cuted_fields)
  1678.       {
  1679. /* log_pos is the position of the LOAD event in the master log */
  1680.         sql_print_warning("Slave: load data infile on table '%s' at "
  1681.                           "log position %s in log '%s' produced %ld "
  1682.                           "warning(s). Default database: '%s'",
  1683.                           (char*) table_name,
  1684.                           llstr(log_pos,llbuff), RPL_LOG_NAME, 
  1685.                           (ulong) thd->cuted_fields,
  1686.                           print_slave_db_safe(thd->db));
  1687.       }
  1688.       if (net)
  1689.         net->pkt_nr= thd->net.pkt_nr;
  1690.     }
  1691.   }
  1692.   else
  1693.   {
  1694.     /*
  1695.       We will just ask the master to send us /dev/null if we do not
  1696.       want to load the data.
  1697.       TODO: this a bug - needs to be done in I/O thread
  1698.     */
  1699.     if (net)
  1700.       skip_load_data_infile(net);
  1701.   }
  1702.     
  1703.   thd->net.vio = 0; 
  1704.   char *save_db= thd->db;
  1705.   VOID(pthread_mutex_lock(&LOCK_thread_count));
  1706.   thd->db= 0;
  1707.   thd->query= 0;
  1708.   thd->query_length= thd->db_length= 0;
  1709.   VOID(pthread_mutex_unlock(&LOCK_thread_count));
  1710.   close_thread_tables(thd);
  1711.   if (load_data_query)
  1712.     my_afree(load_data_query);
  1713.   if (thd->query_error)
  1714.   {
  1715.     /* this err/sql_errno code is copy-paste from send_error() */
  1716.     const char *err;
  1717.     int sql_errno;
  1718.     if ((err=thd->net.last_error)[0])
  1719.       sql_errno=thd->net.last_errno;
  1720.     else
  1721.     {
  1722.       sql_errno=ER_UNKNOWN_ERROR;
  1723.       err=ER(sql_errno);       
  1724.     }
  1725.     slave_print_error(rli,sql_errno,"
  1726. Error '%s' running LOAD DATA INFILE on table '%s'. Default database: '%s'",
  1727.       err, (char*)table_name, print_slave_db_safe(save_db));
  1728.     free_root(thd->mem_root,MYF(MY_KEEP_PREALLOC));
  1729.     return 1;
  1730.   }
  1731.   free_root(thd->mem_root,MYF(MY_KEEP_PREALLOC));
  1732.     
  1733.   if (thd->is_fatal_error)
  1734.   {
  1735.     slave_print_error(rli,ER_UNKNOWN_ERROR, "
  1736. Fatal error running LOAD DATA INFILE on table '%s'. Default database: '%s'",
  1737.       (char*)table_name, print_slave_db_safe(save_db));
  1738.     return 1;
  1739.   }
  1740.   return ( use_rli_only_for_errors ? 0 : Log_event::exec_event(rli) ); 
  1741. }
  1742. #endif
  1743. /**************************************************************************
  1744.   Rotate_log_event methods
  1745. **************************************************************************/
  1746. /*
  1747.   Rotate_log_event::pack_info()
  1748. */
  1749. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  1750. void Rotate_log_event::pack_info(Protocol *protocol)
  1751. {
  1752.   char buf1[256], buf[22];
  1753.   String tmp(buf1, sizeof(buf1), log_cs);
  1754.   tmp.length(0);
  1755.   tmp.append(new_log_ident, ident_len);
  1756.   tmp.append(";pos=");
  1757.   tmp.append(llstr(pos,buf));
  1758.   protocol->store(tmp.ptr(), tmp.length(), &my_charset_bin);
  1759. }
  1760. #endif
  1761. /*
  1762.   Rotate_log_event::print()
  1763. */
  1764. #ifdef MYSQL_CLIENT
  1765. void Rotate_log_event::print(FILE* file, bool short_form, char* last_db)
  1766. {
  1767.   char buf[22];
  1768.   if (short_form)
  1769.     return;
  1770.   print_header(file);
  1771.   fprintf(file, "tRotate to ");
  1772.   if (new_log_ident)
  1773.     my_fwrite(file, (byte*) new_log_ident, (uint)ident_len, 
  1774.       MYF(MY_NABP | MY_WME));
  1775.   fprintf(file, "  pos: %s", llstr(pos, buf));
  1776.   fputc('n', file);
  1777.   fflush(file);
  1778. }
  1779. #endif /* MYSQL_CLIENT */
  1780. /*
  1781.   Rotate_log_event::Rotate_log_event() (2 constructors)
  1782. */
  1783. #ifndef MYSQL_CLIENT
  1784. Rotate_log_event::Rotate_log_event(THD* thd_arg,
  1785.                                    const char* new_log_ident_arg,
  1786.                                    uint ident_len_arg, ulonglong pos_arg,
  1787.                                    uint flags_arg)
  1788.   :Log_event(), new_log_ident(new_log_ident_arg),
  1789.    pos(pos_arg),ident_len(ident_len_arg ? ident_len_arg :
  1790.                           (uint) strlen(new_log_ident_arg)), flags(flags_arg)
  1791. {
  1792. #ifndef DBUG_OFF
  1793.   char buff[22];
  1794.   DBUG_ENTER("Rotate_log_event::Rotate_log_event(THD*,...)");
  1795.   DBUG_PRINT("enter",("new_log_ident %s pos %s flags %lu", new_log_ident_arg,
  1796.                       llstr(pos_arg, buff), flags));
  1797. #endif
  1798.   if (flags & DUP_NAME)
  1799.     new_log_ident= my_strdup_with_length((byte*) new_log_ident_arg,
  1800.                                          ident_len,
  1801.                                          MYF(MY_WME));
  1802.   DBUG_VOID_RETURN;
  1803. }
  1804. #endif
  1805. Rotate_log_event::Rotate_log_event(const char* buf, int event_len,
  1806.    bool old_format)
  1807.   :Log_event(buf, old_format), new_log_ident(0), flags(DUP_NAME)
  1808. {
  1809.   // The caller will ensure that event_len is what we have at EVENT_LEN_OFFSET
  1810.   int header_size = (old_format) ? OLD_HEADER_LEN : LOG_EVENT_HEADER_LEN;
  1811.   uint ident_offset;
  1812.   DBUG_ENTER("Rotate_log_event::Rotate_log_event(char*,...)");
  1813.   if (event_len < header_size)
  1814.     DBUG_VOID_RETURN;
  1815.   buf += header_size;
  1816.   if (old_format)
  1817.   {
  1818.     ident_len = (uint)(event_len - OLD_HEADER_LEN);
  1819.     pos = 4;
  1820.     ident_offset = 0;
  1821.   }
  1822.   else
  1823.   {
  1824.     ident_len = (uint)(event_len - ROTATE_EVENT_OVERHEAD);
  1825.     pos = uint8korr(buf + R_POS_OFFSET);
  1826.     ident_offset = ROTATE_HEADER_LEN;
  1827.   }
  1828.   set_if_smaller(ident_len,FN_REFLEN-1);
  1829.   new_log_ident= my_strdup_with_length((byte*) buf + ident_offset,
  1830.                                        (uint) ident_len,
  1831.                                        MYF(MY_WME));
  1832.   DBUG_VOID_RETURN;
  1833. }
  1834. /*
  1835.   Rotate_log_event::write_data()
  1836. */
  1837. int Rotate_log_event::write_data(IO_CACHE* file)
  1838. {
  1839.   char buf[ROTATE_HEADER_LEN];
  1840.   DBUG_ASSERT(!(flags & ZERO_LEN)); // such an event cannot be written
  1841.   int8store(buf + R_POS_OFFSET, pos);
  1842.   return (my_b_safe_write(file, (byte*)buf, ROTATE_HEADER_LEN) ||
  1843.   my_b_safe_write(file, (byte*)new_log_ident, (uint) ident_len));
  1844. }
  1845. /*
  1846.   Rotate_log_event::exec_event()
  1847.   Got a rotate log even from the master
  1848.   IMPLEMENTATION
  1849.     This is mainly used so that we can later figure out the logname and
  1850.     position for the master.
  1851.     We can't rotate the slave as this will cause infinitive rotations
  1852.     in a A -> B -> A setup.
  1853.   RETURN VALUES
  1854.     0 ok
  1855. */
  1856. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  1857. int Rotate_log_event::exec_event(struct st_relay_log_info* rli)
  1858. {
  1859.   DBUG_ENTER("Rotate_log_event::exec_event");
  1860.   pthread_mutex_lock(&rli->data_lock);
  1861.   rli->event_relay_log_pos += get_event_len();
  1862.   /*
  1863.     If we are in a transaction: the only normal case is when the I/O thread was
  1864.     copying a big transaction, then it was stopped and restarted: we have this
  1865.     in the relay log:
  1866.     BEGIN
  1867.     ...
  1868.     ROTATE (a fake one)
  1869.     ...
  1870.     COMMIT or ROLLBACK
  1871.     In that case, we don't want to touch the coordinates which correspond to
  1872.     the beginning of the transaction.
  1873.   */
  1874.   if (!(thd->options & OPTION_BEGIN))
  1875.   {
  1876.     memcpy(rli->group_master_log_name, new_log_ident, ident_len+1);
  1877.     rli->notify_group_master_log_name_update();
  1878.     rli->group_master_log_pos = pos;
  1879.     rli->group_relay_log_pos = rli->event_relay_log_pos;
  1880.     DBUG_PRINT("info", ("group_master_log_pos: %lu",
  1881.                         (ulong) rli->group_master_log_pos));
  1882.   }
  1883.   pthread_mutex_unlock(&rli->data_lock);
  1884.   pthread_cond_broadcast(&rli->data_cond);
  1885.   flush_relay_log_info(rli);
  1886.   DBUG_RETURN(0);
  1887. }
  1888. #endif
  1889. /**************************************************************************
  1890. Intvar_log_event methods
  1891. **************************************************************************/
  1892. /*
  1893.   Intvar_log_event::pack_info()
  1894. */
  1895. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  1896. void Intvar_log_event::pack_info(Protocol *protocol)
  1897. {
  1898.   char buf[256], *pos;
  1899.   pos= strmake(buf, get_var_type_name(), sizeof(buf)-23);
  1900.   *pos++= '=';
  1901.   pos= longlong10_to_str(val, pos, -10);
  1902.   protocol->store(buf, (uint) (pos-buf), &my_charset_bin);
  1903. }
  1904. #endif
  1905. /*
  1906.   Intvar_log_event::Intvar_log_event()
  1907. */
  1908. Intvar_log_event::Intvar_log_event(const char* buf, bool old_format)
  1909.   :Log_event(buf, old_format)
  1910. {
  1911.   buf += (old_format) ? OLD_HEADER_LEN : LOG_EVENT_HEADER_LEN;
  1912.   type = buf[I_TYPE_OFFSET];
  1913.   val = uint8korr(buf+I_VAL_OFFSET);
  1914. }
  1915. /*
  1916.   Intvar_log_event::get_var_type_name()
  1917. */
  1918. const char* Intvar_log_event::get_var_type_name()
  1919. {
  1920.   switch(type) {
  1921.   case LAST_INSERT_ID_EVENT: return "LAST_INSERT_ID";
  1922.   case INSERT_ID_EVENT: return "INSERT_ID";
  1923.   default: /* impossible */ return "UNKNOWN";
  1924.   }
  1925. }
  1926. /*
  1927.   Intvar_log_event::write_data()
  1928. */
  1929. int Intvar_log_event::write_data(IO_CACHE* file)
  1930. {
  1931.   char buf[9];
  1932.   buf[I_TYPE_OFFSET] = type;
  1933.   int8store(buf + I_VAL_OFFSET, val);
  1934.   return my_b_safe_write(file, (byte*) buf, sizeof(buf));
  1935. }
  1936. /*
  1937.   Intvar_log_event::print()
  1938. */
  1939. #ifdef MYSQL_CLIENT
  1940. void Intvar_log_event::print(FILE* file, bool short_form, char* last_db)
  1941. {
  1942.   char llbuff[22];
  1943.   const char *msg;
  1944.   LINT_INIT(msg);
  1945.   if (!short_form)
  1946.   {
  1947.     print_header(file);
  1948.     fprintf(file, "tIntvarn");
  1949.   }
  1950.   fprintf(file, "SET ");
  1951.   switch (type) {
  1952.   case LAST_INSERT_ID_EVENT:
  1953.     msg="LAST_INSERT_ID";
  1954.     break;
  1955.   case INSERT_ID_EVENT:
  1956.     msg="INSERT_ID";
  1957.     break;
  1958.   }
  1959.   fprintf(file, "%s=%s;n", msg, llstr(val,llbuff));
  1960.   fflush(file);
  1961. }
  1962. #endif
  1963. /*
  1964.   Intvar_log_event::exec_event()
  1965. */
  1966. #if defined(HAVE_REPLICATION)&& !defined(MYSQL_CLIENT)
  1967. int Intvar_log_event::exec_event(struct st_relay_log_info* rli)
  1968. {
  1969.   switch (type) {
  1970.   case LAST_INSERT_ID_EVENT:
  1971.     thd->last_insert_id_used = 1;
  1972.     thd->last_insert_id = val;
  1973.     break;
  1974.   case INSERT_ID_EVENT:
  1975.     thd->next_insert_id = val;
  1976.     break;
  1977.   }
  1978.   rli->inc_event_relay_log_pos(get_event_len());
  1979.   return 0;
  1980. }
  1981. #endif
  1982. /**************************************************************************
  1983.   Rand_log_event methods
  1984. **************************************************************************/
  1985. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  1986. void Rand_log_event::pack_info(Protocol *protocol)
  1987. {
  1988.   char buf1[256], *pos;
  1989.   pos= strmov(buf1,"rand_seed1=");
  1990.   pos= int10_to_str((long) seed1, pos, 10);
  1991.   pos= strmov(pos, ",rand_seed2=");
  1992.   pos= int10_to_str((long) seed2, pos, 10);
  1993.   protocol->store(buf1, (uint) (pos-buf1), &my_charset_bin);
  1994. }
  1995. #endif
  1996. Rand_log_event::Rand_log_event(const char* buf, bool old_format)
  1997.   :Log_event(buf, old_format)
  1998. {
  1999.   buf += (old_format) ? OLD_HEADER_LEN : LOG_EVENT_HEADER_LEN;
  2000.   seed1 = uint8korr(buf+RAND_SEED1_OFFSET);
  2001.   seed2 = uint8korr(buf+RAND_SEED2_OFFSET);
  2002. }
  2003. int Rand_log_event::write_data(IO_CACHE* file)
  2004. {
  2005.   char buf[16];
  2006.   int8store(buf + RAND_SEED1_OFFSET, seed1);
  2007.   int8store(buf + RAND_SEED2_OFFSET, seed2);
  2008.   return my_b_safe_write(file, (byte*) buf, sizeof(buf));
  2009. }
  2010. #ifdef MYSQL_CLIENT
  2011. void Rand_log_event::print(FILE* file, bool short_form, char* last_db)
  2012. {
  2013.   char llbuff[22],llbuff2[22];
  2014.   if (!short_form)
  2015.   {
  2016.     print_header(file);
  2017.     fprintf(file, "tRandn");
  2018.   }
  2019.   fprintf(file, "SET @@RAND_SEED1=%s, @@RAND_SEED2=%s;n",
  2020.   llstr(seed1, llbuff),llstr(seed2, llbuff2));
  2021.   fflush(file);
  2022. }
  2023. #endif /* MYSQL_CLIENT */
  2024. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  2025. int Rand_log_event::exec_event(struct st_relay_log_info* rli)
  2026. {
  2027.   thd->rand.seed1= (ulong) seed1;
  2028.   thd->rand.seed2= (ulong) seed2;
  2029.   rli->inc_event_relay_log_pos(get_event_len());
  2030.   return 0;
  2031. }
  2032. #endif /* !MYSQL_CLIENT */
  2033. /**************************************************************************
  2034.   User_var_log_event methods
  2035. **************************************************************************/
  2036. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  2037. void User_var_log_event::pack_info(Protocol* protocol)
  2038. {
  2039.   char *buf= 0;
  2040.   uint val_offset= 4 + name_len;
  2041.   uint event_len= val_offset;
  2042.   if (is_null)
  2043.   {
  2044.     buf= my_malloc(val_offset + 5, MYF(MY_WME));
  2045.     strmov(buf + val_offset, "NULL");
  2046.     event_len= val_offset + 4;
  2047.   }
  2048.   else
  2049.   {
  2050.     switch (type) {
  2051.     case REAL_RESULT:
  2052.       double real_val;
  2053.       float8get(real_val, val);
  2054.       buf= my_malloc(val_offset + FLOATING_POINT_BUFFER, MYF(MY_WME));
  2055.       event_len+= my_sprintf(buf + val_offset,
  2056.      (buf + val_offset, "%.14g", real_val));
  2057.       break;
  2058.     case INT_RESULT:
  2059.       buf= my_malloc(val_offset + 22, MYF(MY_WME));
  2060.       event_len= longlong10_to_str(uint8korr(val), buf + val_offset,-10)-buf;
  2061.       break;
  2062.     case STRING_RESULT:
  2063.       /* 15 is for 'COLLATE' and other chars */
  2064.       buf= my_malloc(event_len+val_len*2+1+2*MY_CS_NAME_SIZE+15, MYF(MY_WME));
  2065.       CHARSET_INFO *cs;
  2066.       if (!(cs= get_charset(charset_number, MYF(0))))
  2067.       {
  2068.         strmov(buf+val_offset, "???");
  2069.         event_len+= 3;
  2070.       }
  2071.       else
  2072.       {
  2073.         char *p= strxmov(buf + val_offset, "_", cs->csname, " ", NullS);
  2074.         p= str_to_hex(p, val, val_len);
  2075.         p= strxmov(p, " COLLATE ", cs->name, NullS);
  2076.         event_len= p-buf;
  2077.       }
  2078.       break;
  2079.     case ROW_RESULT:
  2080.     default:
  2081.       DBUG_ASSERT(1);
  2082.       return;
  2083.     }
  2084.   }
  2085.   buf[0]= '@';
  2086.   buf[1]= '`';
  2087.   buf[2+name_len]= '`';
  2088.   buf[3+name_len]= '=';
  2089.   memcpy(buf+2, name, name_len);
  2090.   protocol->store(buf, event_len, &my_charset_bin);
  2091.   my_free(buf, MYF(MY_ALLOW_ZERO_PTR));
  2092. }
  2093. #endif /* !MYSQL_CLIENT */
  2094. User_var_log_event::User_var_log_event(const char* buf, bool old_format)
  2095.   :Log_event(buf, old_format)
  2096. {
  2097.   buf+= (old_format) ? OLD_HEADER_LEN : LOG_EVENT_HEADER_LEN;
  2098.   name_len= uint4korr(buf);
  2099.   name= (char *) buf + UV_NAME_LEN_SIZE;
  2100.   buf+= UV_NAME_LEN_SIZE + name_len;
  2101.   is_null= (bool) *buf;
  2102.   if (is_null)
  2103.   {
  2104.     type= STRING_RESULT;
  2105.     charset_number= my_charset_bin.number;
  2106.     val_len= 0;
  2107.     val= 0;  
  2108.   }
  2109.   else
  2110.   {
  2111.     type= (Item_result) buf[UV_VAL_IS_NULL];
  2112.     charset_number= uint4korr(buf + UV_VAL_IS_NULL + UV_VAL_TYPE_SIZE);
  2113.     val_len= uint4korr(buf + UV_VAL_IS_NULL + UV_VAL_TYPE_SIZE + 
  2114.        UV_CHARSET_NUMBER_SIZE);
  2115.     val= (char *) (buf + UV_VAL_IS_NULL + UV_VAL_TYPE_SIZE +
  2116.    UV_CHARSET_NUMBER_SIZE + UV_VAL_LEN_SIZE);
  2117.   }
  2118. }
  2119. int User_var_log_event::write_data(IO_CACHE* file)
  2120. {
  2121.   char buf[UV_NAME_LEN_SIZE];
  2122.   char buf1[UV_VAL_IS_NULL + UV_VAL_TYPE_SIZE + 
  2123.     UV_CHARSET_NUMBER_SIZE + UV_VAL_LEN_SIZE];
  2124.   char buf2[8], *pos= buf2;
  2125.   uint buf1_length;
  2126.   int4store(buf, name_len);
  2127.   
  2128.   if ((buf1[0]= is_null))
  2129.   {
  2130.     buf1_length= 1;
  2131.     val_len= 0;
  2132.   }    
  2133.   else
  2134.   {
  2135.     buf1[1]= type;
  2136.     int4store(buf1 + 2, charset_number);
  2137.     int4store(buf1 + 2 + UV_CHARSET_NUMBER_SIZE, val_len);
  2138.     buf1_length= 10;
  2139.     switch (type) {
  2140.     case REAL_RESULT:
  2141.       float8store(buf2, *(double*) val);
  2142.       break;
  2143.     case INT_RESULT:
  2144.       int8store(buf2, *(longlong*) val);
  2145.       break;
  2146.     case STRING_RESULT:
  2147.       pos= val;
  2148.       break;
  2149.     case ROW_RESULT:
  2150.     default:
  2151.       DBUG_ASSERT(1);
  2152.       return 0;
  2153.     }
  2154.   }
  2155.   return (my_b_safe_write(file, (byte*) buf, sizeof(buf))   ||
  2156.   my_b_safe_write(file, (byte*) name, name_len)     ||
  2157.   my_b_safe_write(file, (byte*) buf1, buf1_length) ||
  2158.   my_b_safe_write(file, (byte*) pos, val_len));
  2159. }
  2160. /*
  2161.   User_var_log_event::print()
  2162. */
  2163. #ifdef MYSQL_CLIENT
  2164. void User_var_log_event::print(FILE* file, bool short_form, char* last_db)
  2165. {
  2166.   if (!short_form)
  2167.   {
  2168.     print_header(file);
  2169.     fprintf(file, "tUser_varn");
  2170.   }
  2171.   fprintf(file, "SET @`");
  2172.   my_fwrite(file, (byte*) name, (uint) (name_len), MYF(MY_NABP | MY_WME));
  2173.   fprintf(file, "`");
  2174.   if (is_null)
  2175.   {
  2176.     fprintf(file, ":=NULL;n");
  2177.   }
  2178.   else
  2179.   {
  2180.     switch (type) {
  2181.     case REAL_RESULT:
  2182.       double real_val;
  2183.       float8get(real_val, val);
  2184.       fprintf(file, ":=%.14g;n", real_val);
  2185.       break;
  2186.     case INT_RESULT:
  2187.       char int_buf[22];
  2188.       longlong10_to_str(uint8korr(val), int_buf, -10);
  2189.       fprintf(file, ":=%s;n", int_buf);
  2190.       break;
  2191.     case STRING_RESULT:
  2192.     {
  2193.       /*
  2194.         Let's express the string in hex. That's the most robust way. If we
  2195.         print it in character form instead, we need to escape it with
  2196.         character_set_client which we don't know (we will know it in 5.0, but
  2197.         in 4.1 we don't know it easily when we are printing
  2198.         User_var_log_event). Explanation why we would need to bother with
  2199.         character_set_client (quoting Bar):
  2200.         > Note, the parser doesn't switch to another unescaping mode after
  2201.         > it has met a character set introducer.
  2202.         > For example, if an SJIS client says something like:
  2203.         > SET @a= _ucs2 ab'
  2204.         > the string constant is still unescaped according to SJIS, not
  2205.         > according to UCS2.
  2206.       */
  2207.       char *hex_str;
  2208.       CHARSET_INFO *cs;
  2209.       if (!(hex_str= (char *)my_alloca(2*val_len+1+2))) // 2 hex digits / byte
  2210.         break; // no error, as we are 'void'
  2211.       str_to_hex(hex_str, val, val_len);
  2212.       /*
  2213.         For proper behaviour when mysqlbinlog|mysql, we need to explicitely
  2214.         specify the variable's collation. It will however cause problems when
  2215.         people want to mysqlbinlog|mysql into another server not supporting the
  2216.         character set. But there's not much to do about this and it's unlikely.
  2217.       */
  2218.       if (!(cs= get_charset(charset_number, MYF(0))))
  2219.         /*
  2220.           Generate an unusable command (=> syntax error) is probably the best
  2221.           thing we can do here.
  2222.         */
  2223.         fprintf(file, ":=???;n");
  2224.       else
  2225.         fprintf(file, ":=_%s %s COLLATE `%s`;n", cs->csname, hex_str, cs->name);
  2226.       my_afree(hex_str);
  2227.     }
  2228.       break;
  2229.     case ROW_RESULT:
  2230.     default:
  2231.       DBUG_ASSERT(1);
  2232.       return;
  2233.     }
  2234.   }
  2235.   fflush(file);
  2236. }
  2237. #endif
  2238. /*
  2239.   User_var_log_event::exec_event()
  2240. */
  2241. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  2242. int User_var_log_event::exec_event(struct st_relay_log_info* rli)
  2243. {
  2244.   Item *it= 0;
  2245.   CHARSET_INFO *charset;
  2246.   if (!(charset= get_charset(charset_number, MYF(MY_WME))))
  2247.     return 1;
  2248.   LEX_STRING user_var_name;
  2249.   user_var_name.str= name;
  2250.   user_var_name.length= name_len;
  2251.   double real_val;
  2252.   longlong int_val;
  2253.   if (is_null)
  2254.   {
  2255.     it= new Item_null();
  2256.   }
  2257.   else
  2258.   {
  2259.     switch (type) {
  2260.     case REAL_RESULT:
  2261.       float8get(real_val, val);
  2262.       it= new Item_real(real_val);
  2263.       val= (char*) &real_val; // Pointer to value in native format
  2264.       val_len= 8;
  2265.       break;
  2266.     case INT_RESULT:
  2267.       int_val= (longlong) uint8korr(val);
  2268.       it= new Item_int(int_val);
  2269.       val= (char*) &int_val; // Pointer to value in native format
  2270.       val_len= 8;
  2271.       break;
  2272.     case STRING_RESULT:
  2273.       it= new Item_string(val, val_len, charset);
  2274.       break;
  2275.     case ROW_RESULT:
  2276.     default:
  2277.       DBUG_ASSERT(1);
  2278.       return 0;
  2279.     }
  2280.   }
  2281.   Item_func_set_user_var e(user_var_name, it);
  2282.   /*
  2283.     Item_func_set_user_var can't substitute something else on its place =>
  2284.     0 can be passed as last argument (reference on item)
  2285.   */
  2286.   e.fix_fields(thd, 0, 0);
  2287.   /*
  2288.     A variable can just be considered as a table with
  2289.     a single record and with a single column. Thus, like
  2290.     a column value, it could always have IMPLICIT derivation.
  2291.    */
  2292.   e.update_hash(val, val_len, type, charset, DERIVATION_IMPLICIT);
  2293.   free_root(thd->mem_root,0);
  2294.   rli->inc_event_relay_log_pos(get_event_len());
  2295.   return 0;
  2296. }
  2297. #endif /* !MYSQL_CLIENT */
  2298. /**************************************************************************
  2299.   Slave_log_event methods
  2300. **************************************************************************/
  2301. #ifdef HAVE_REPLICATION
  2302. #ifdef MYSQL_CLIENT
  2303. void Unknown_log_event::print(FILE* file, bool short_form, char* last_db)
  2304. {
  2305.   if (short_form)
  2306.     return;
  2307.   print_header(file);
  2308.   fputc('n', file);
  2309.   fprintf(file, "# %s", "Unknown eventn");
  2310. }
  2311. #endif  
  2312. #ifndef MYSQL_CLIENT
  2313. void Slave_log_event::pack_info(Protocol *protocol)
  2314. {
  2315.   char buf[256+HOSTNAME_LENGTH], *pos;
  2316.   pos= strmov(buf, "host=");
  2317.   pos= strnmov(pos, master_host, HOSTNAME_LENGTH);
  2318.   pos= strmov(pos, ",port=");
  2319.   pos= int10_to_str((long) master_port, pos, 10);
  2320.   pos= strmov(pos, ",log=");
  2321.   pos= strmov(pos, master_log);
  2322.   pos= strmov(pos, ",pos=");
  2323.   pos= longlong10_to_str(master_pos, pos, 10);
  2324.   protocol->store(buf, pos-buf, &my_charset_bin);
  2325. }
  2326. #endif /* !MYSQL_CLIENT */
  2327. #ifndef MYSQL_CLIENT
  2328. Slave_log_event::Slave_log_event(THD* thd_arg,
  2329.  struct st_relay_log_info* rli)
  2330.   :Log_event(thd_arg, 0, 0), mem_pool(0), master_host(0)
  2331. {
  2332.   DBUG_ENTER("Slave_log_event");
  2333.   if (!rli->inited) // QQ When can this happen ?
  2334.     DBUG_VOID_RETURN;
  2335.   
  2336.   MASTER_INFO* mi = rli->mi;
  2337.   // TODO: re-write this better without holding both locks at the same time
  2338.   pthread_mutex_lock(&mi->data_lock);
  2339.   pthread_mutex_lock(&rli->data_lock);
  2340.   master_host_len = strlen(mi->host);
  2341.   master_log_len = strlen(rli->group_master_log_name);
  2342.   // on OOM, just do not initialize the structure and print the error
  2343.   if ((mem_pool = (char*)my_malloc(get_data_size() + 1,
  2344.    MYF(MY_WME))))
  2345.   {
  2346.     master_host = mem_pool + SL_MASTER_HOST_OFFSET ;
  2347.     memcpy(master_host, mi->host, master_host_len + 1);
  2348.     master_log = master_host + master_host_len + 1;
  2349.     memcpy(master_log, rli->group_master_log_name, master_log_len + 1);
  2350.     master_port = mi->port;
  2351.     master_pos = rli->group_master_log_pos;
  2352.     DBUG_PRINT("info", ("master_log: %s  pos: %d", master_log,
  2353. (ulong) master_pos));
  2354.   }
  2355.   else
  2356.     sql_print_error("Out of memory while recording slave event");
  2357.   pthread_mutex_unlock(&rli->data_lock);
  2358.   pthread_mutex_unlock(&mi->data_lock);
  2359.   DBUG_VOID_RETURN;
  2360. }
  2361. #endif /* !MYSQL_CLIENT */
  2362. Slave_log_event::~Slave_log_event()
  2363. {
  2364.   my_free(mem_pool, MYF(MY_ALLOW_ZERO_PTR));
  2365. }
  2366. #ifdef MYSQL_CLIENT
  2367. void Slave_log_event::print(FILE* file, bool short_form, char* last_db)
  2368. {
  2369.   char llbuff[22];
  2370.   if (short_form)
  2371.     return;
  2372.   print_header(file);
  2373.   fputc('n', file);
  2374.   fprintf(file, "
  2375. Slave: master_host: '%s'  master_port: %d  master_log: '%s'  master_pos: %sn",
  2376.   master_host, master_port, master_log, llstr(master_pos, llbuff));
  2377. }
  2378. #endif /* MYSQL_CLIENT */
  2379. int Slave_log_event::get_data_size()
  2380. {
  2381.   return master_host_len + master_log_len + 1 + SL_MASTER_HOST_OFFSET;
  2382. }
  2383. int Slave_log_event::write_data(IO_CACHE* file)
  2384. {
  2385.   int8store(mem_pool + SL_MASTER_POS_OFFSET, master_pos);
  2386.   int2store(mem_pool + SL_MASTER_PORT_OFFSET, master_port);
  2387.   // log and host are already there
  2388.   return my_b_safe_write(file, (byte*)mem_pool, get_data_size());
  2389. }
  2390. void Slave_log_event::init_from_mem_pool(int data_size)
  2391. {
  2392.   master_pos = uint8korr(mem_pool + SL_MASTER_POS_OFFSET);
  2393.   master_port = uint2korr(mem_pool + SL_MASTER_PORT_OFFSET);
  2394.   master_host = mem_pool + SL_MASTER_HOST_OFFSET;
  2395.   master_host_len = strlen(master_host);
  2396.   // safety
  2397.   master_log = master_host + master_host_len + 1;
  2398.   if (master_log > mem_pool + data_size)
  2399.   {
  2400.     master_host = 0;
  2401.     return;
  2402.   }
  2403.   master_log_len = strlen(master_log);
  2404. }
  2405. Slave_log_event::Slave_log_event(const char* buf, int event_len)
  2406.   :Log_event(buf,0),mem_pool(0),master_host(0)
  2407. {
  2408.   event_len -= LOG_EVENT_HEADER_LEN;
  2409.   if (event_len < 0)
  2410.     return;
  2411.   if (!(mem_pool = (char*) my_malloc(event_len + 1, MYF(MY_WME))))
  2412.     return;
  2413.   memcpy(mem_pool, buf + LOG_EVENT_HEADER_LEN, event_len);
  2414.   mem_pool[event_len] = 0;
  2415.   init_from_mem_pool(event_len);
  2416. }
  2417. #ifndef MYSQL_CLIENT
  2418. int Slave_log_event::exec_event(struct st_relay_log_info* rli)
  2419. {
  2420.   if (mysql_bin_log.is_open())
  2421.     mysql_bin_log.write(this);
  2422.   return Log_event::exec_event(rli);
  2423. }
  2424. #endif /* !MYSQL_CLIENT */
  2425. /**************************************************************************
  2426. Stop_log_event methods
  2427. **************************************************************************/
  2428. /*
  2429.   Stop_log_event::print()
  2430. */
  2431. #ifdef MYSQL_CLIENT
  2432. void Stop_log_event::print(FILE* file, bool short_form, char* last_db)
  2433. {
  2434.   if (short_form)
  2435.     return;
  2436.   print_header(file);
  2437.   fprintf(file, "tStopn");
  2438.   fflush(file);
  2439. }
  2440. #endif /* MYSQL_CLIENT */
  2441. /*
  2442.   Stop_log_event::exec_event()
  2443.   The master stopped. 
  2444.   We used to clean up all temporary tables but this is useless as, as the
  2445.   master has shut down properly, it has written all DROP TEMPORARY TABLE and DO
  2446.   RELEASE_LOCK (prepared statements' deletion is TODO).
  2447.   We used to clean up slave_load_tmpdir, but this is useless as it has been
  2448.   cleared at the end of LOAD DATA INFILE.
  2449.   So we have nothing to do here.
  2450.   The place were we must do this cleaning is in Start_log_event::exec_event(),
  2451.   not here. Because if we come here, the master was sane.
  2452. */
  2453. #ifndef MYSQL_CLIENT
  2454. int Stop_log_event::exec_event(struct st_relay_log_info* rli)
  2455. {
  2456.   /*
  2457.     We do not want to update master_log pos because we get a rotate event
  2458.     before stop, so by now group_master_log_name is set to the next log.
  2459.     If we updated it, we will have incorrect master coordinates and this
  2460.     could give false triggers in MASTER_POS_WAIT() that we have reached
  2461.     the target position when in fact we have not.
  2462.   */
  2463.   rli->inc_group_relay_log_pos(get_event_len(), 0);
  2464.   flush_relay_log_info(rli);
  2465.   return 0;
  2466. }
  2467. #endif /* !MYSQL_CLIENT */
  2468. #endif /* HAVE_REPLICATION */
  2469. /**************************************************************************
  2470. Create_file_log_event methods
  2471. **************************************************************************/
  2472. /*
  2473.   Create_file_log_event ctor
  2474. */
  2475. #ifndef MYSQL_CLIENT
  2476. Create_file_log_event::
  2477. Create_file_log_event(THD* thd_arg, sql_exchange* ex,
  2478.       const char* db_arg, const char* table_name_arg,
  2479.       List<Item>& fields_arg, enum enum_duplicates handle_dup,
  2480.                       bool ignore,
  2481.       char* block_arg, uint block_len_arg, bool using_trans)
  2482.   :Load_log_event(thd_arg,ex,db_arg,table_name_arg,fields_arg,handle_dup, ignore,
  2483.   using_trans),
  2484.    fake_base(0), block(block_arg), event_buf(0), block_len(block_len_arg),
  2485.    file_id(thd_arg->file_id = mysql_bin_log.next_file_id())
  2486. {
  2487.   DBUG_ENTER("Create_file_log_event");
  2488.   sql_ex.force_new_format();
  2489.   DBUG_VOID_RETURN;
  2490. }
  2491. #endif /* !MYSQL_CLIENT */
  2492. /*
  2493.   Create_file_log_event::write_data_body()
  2494. */
  2495. int Create_file_log_event::write_data_body(IO_CACHE* file)
  2496. {
  2497.   int res;
  2498.   if ((res = Load_log_event::write_data_body(file)) || fake_base)
  2499.     return res;
  2500.   return (my_b_safe_write(file, (byte*) "", 1) ||
  2501.   my_b_safe_write(file, (byte*) block, block_len));
  2502. }
  2503. /*
  2504.   Create_file_log_event::write_data_header()
  2505. */
  2506. int Create_file_log_event::write_data_header(IO_CACHE* file)
  2507. {
  2508.   int res;
  2509.   if ((res = Load_log_event::write_data_header(file)) || fake_base)
  2510.     return res;
  2511.   byte buf[CREATE_FILE_HEADER_LEN];
  2512.   int4store(buf + CF_FILE_ID_OFFSET, file_id);
  2513.   return my_b_safe_write(file, buf, CREATE_FILE_HEADER_LEN);
  2514. }
  2515. /*
  2516.   Create_file_log_event::write_base()
  2517. */
  2518. int Create_file_log_event::write_base(IO_CACHE* file)
  2519. {
  2520.   int res;
  2521.   fake_base = 1; // pretend we are Load event
  2522.   res = write(file);
  2523.   fake_base = 0;
  2524.   return res;
  2525. }
  2526. /*
  2527.   Create_file_log_event ctor
  2528. */
  2529. Create_file_log_event::Create_file_log_event(const char* buf, int len,
  2530.      bool old_format)
  2531.   :Load_log_event(buf,0,old_format),fake_base(0),block(0),inited_from_old(0)
  2532. {
  2533.   int block_offset;
  2534.   DBUG_ENTER("Create_file_log_event");
  2535.   /*
  2536.     We must make copy of 'buf' as this event may have to live over a
  2537.     rotate log entry when used in mysqlbinlog
  2538.   */
  2539.   if (!(event_buf= my_memdup((byte*) buf, len, MYF(MY_WME))) ||
  2540.       (copy_log_event(event_buf, len, old_format)))
  2541.     DBUG_VOID_RETURN;
  2542.   if (!old_format)
  2543.   {
  2544.     file_id = uint4korr(buf + LOG_EVENT_HEADER_LEN +
  2545. + LOAD_HEADER_LEN + CF_FILE_ID_OFFSET);
  2546.     // + 1 for  terminating fname  
  2547.     block_offset = (LOG_EVENT_HEADER_LEN + Load_log_event::get_data_size() +
  2548.     CREATE_FILE_HEADER_LEN + 1);
  2549.     if (len < block_offset)
  2550.       return;
  2551.     block = (char*)buf + block_offset;
  2552.     block_len = len - block_offset;
  2553.   }
  2554.   else
  2555.   {
  2556.     sql_ex.force_new_format();
  2557.     inited_from_old = 1;
  2558.   }
  2559.   DBUG_VOID_RETURN;
  2560. }
  2561. /*
  2562.   Create_file_log_event::print()
  2563. */
  2564. #ifdef MYSQL_CLIENT
  2565. void Create_file_log_event::print(FILE* file, bool short_form, 
  2566.   char* last_db, bool enable_local)
  2567. {
  2568.   if (short_form)
  2569.   {
  2570.     if (enable_local && check_fname_outside_temp_buf())
  2571.       Load_log_event::print(file, 1, last_db);
  2572.     return;
  2573.   }
  2574.   if (enable_local)
  2575.   {
  2576.     Load_log_event::print(file, short_form, last_db, !check_fname_outside_temp_buf());
  2577.     /* 
  2578.        That one is for "file_id: etc" below: in mysqlbinlog we want the #, in
  2579.        SHOW BINLOG EVENTS we don't.
  2580.     */
  2581.     fprintf(file, "#"); 
  2582.   }
  2583.   fprintf(file, " file_id: %d  block_len: %dn", file_id, block_len);
  2584. }
  2585. void Create_file_log_event::print(FILE* file, bool short_form,
  2586.   char* last_db)
  2587. {
  2588.   print(file,short_form,last_db,0);
  2589. }
  2590. #endif /* MYSQL_CLIENT */
  2591. /*
  2592.   Create_file_log_event::pack_info()
  2593. */
  2594. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  2595. void Create_file_log_event::pack_info(Protocol *protocol)
  2596. {
  2597.   char buf[NAME_LEN*2 + 30 + 21*2], *pos;
  2598.   pos= strmov(buf, "db=");
  2599.   memcpy(pos, db, db_len);
  2600.   pos= strmov(pos + db_len, ";table=");
  2601.   memcpy(pos, table_name, table_name_len);
  2602.   pos= strmov(pos + table_name_len, ";file_id=");
  2603.   pos= int10_to_str((long) file_id, pos, 10);
  2604.   pos= strmov(pos, ";block_len=");
  2605.   pos= int10_to_str((long) block_len, pos, 10);
  2606.   protocol->store(buf, (uint) (pos-buf), &my_charset_bin);
  2607. }
  2608. #endif /* defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT) */
  2609. /*
  2610.   Create_file_log_event::exec_event()
  2611. */
  2612. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  2613. int Create_file_log_event::exec_event(struct st_relay_log_info* rli)
  2614. {
  2615.   char proc_info[17+FN_REFLEN+10], *fname_buf= proc_info+17;
  2616.   char *p;
  2617.   int fd = -1;
  2618.   IO_CACHE file;
  2619.   int error = 1;
  2620.   bzero((char*)&file, sizeof(file));
  2621.   p = slave_load_file_stem(fname_buf, file_id, server_id);
  2622.   strmov(p, ".info"); // strmov takes less code than memcpy
  2623.   strnmov(proc_info, "Making temp file ", 17); // no end 0
  2624.   thd->proc_info= proc_info;
  2625.   my_delete(fname_buf, MYF(0)); // old copy may exist already
  2626.   if ((fd= my_create(fname_buf, CREATE_MODE,
  2627.      O_WRONLY | O_BINARY | O_EXCL | O_NOFOLLOW,
  2628.      MYF(MY_WME))) < 0 ||
  2629.       init_io_cache(&file, fd, IO_SIZE, WRITE_CACHE, (my_off_t)0, 0,
  2630.     MYF(MY_WME|MY_NABP)))
  2631.   {
  2632.     slave_print_error(rli,my_errno, "Error in Create_file event: could not open file '%s'", fname_buf);
  2633.     goto err;
  2634.   }
  2635.   
  2636.   // a trick to avoid allocating another buffer
  2637.   strmov(p, ".data");
  2638.   fname = fname_buf;
  2639.   fname_len = (uint)(p-fname) + 5;
  2640.   if (write_base(&file))
  2641.   {
  2642.     strmov(p, ".info"); // to have it right in the error message
  2643.     slave_print_error(rli,my_errno,
  2644.       "Error in Create_file event: could not write to file '%s'",
  2645.       fname_buf);
  2646.     goto err;
  2647.   }
  2648.   end_io_cache(&file);
  2649.   my_close(fd, MYF(0));
  2650.   
  2651.   // fname_buf now already has .data, not .info, because we did our trick
  2652.   my_delete(fname_buf, MYF(0)); // old copy may exist already
  2653.   if ((fd= my_create(fname_buf, CREATE_MODE,
  2654.      O_WRONLY | O_BINARY | O_EXCL | O_NOFOLLOW,
  2655.      MYF(MY_WME))) < 0)
  2656.   {
  2657.     slave_print_error(rli,my_errno, "Error in Create_file event: could not open file '%s'", fname_buf);
  2658.     goto err;
  2659.   }
  2660.   if (my_write(fd, (byte*) block, block_len, MYF(MY_WME+MY_NABP)))
  2661.   {
  2662.     slave_print_error(rli,my_errno, "Error in Create_file event: write to '%s' failed", fname_buf);
  2663.     goto err;
  2664.   }
  2665.   error=0; // Everything is ok
  2666. err:
  2667.   if (error)
  2668.     end_io_cache(&file);
  2669.   if (fd >= 0)
  2670.     my_close(fd, MYF(0));
  2671.   thd->proc_info= 0;
  2672.   return error ? 1 : Log_event::exec_event(rli);
  2673. }
  2674. #endif /* defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT) */
  2675. /**************************************************************************
  2676. Append_block_log_event methods
  2677. **************************************************************************/
  2678. /*
  2679.   Append_block_log_event ctor
  2680. */
  2681. #ifndef MYSQL_CLIENT  
  2682. Append_block_log_event::Append_block_log_event(THD* thd_arg, const char* db_arg,
  2683.        char* block_arg,
  2684.        uint block_len_arg,
  2685.        bool using_trans)
  2686.   :Log_event(thd_arg,0, using_trans), block(block_arg),
  2687.    block_len(block_len_arg), file_id(thd_arg->file_id), db(db_arg)
  2688. {
  2689. }
  2690. #endif
  2691. /*
  2692.   Append_block_log_event ctor
  2693. */
  2694. Append_block_log_event::Append_block_log_event(const char* buf, int len)
  2695.   :Log_event(buf, 0),block(0)
  2696. {
  2697.   DBUG_ENTER("Append_block_log_event");
  2698.   if ((uint)len < APPEND_BLOCK_EVENT_OVERHEAD)
  2699.     DBUG_VOID_RETURN;
  2700.   file_id = uint4korr(buf + LOG_EVENT_HEADER_LEN + AB_FILE_ID_OFFSET);
  2701.   block = (char*)buf + APPEND_BLOCK_EVENT_OVERHEAD;
  2702.   block_len = len - APPEND_BLOCK_EVENT_OVERHEAD;
  2703.   DBUG_VOID_RETURN;
  2704. }
  2705. /*
  2706.   Append_block_log_event::write_data()
  2707. */
  2708. int Append_block_log_event::write_data(IO_CACHE* file)
  2709. {
  2710.   byte buf[APPEND_BLOCK_HEADER_LEN];
  2711.   int4store(buf + AB_FILE_ID_OFFSET, file_id);
  2712.   return (my_b_safe_write(file, buf, APPEND_BLOCK_HEADER_LEN) ||
  2713.   my_b_safe_write(file, (byte*) block, block_len));
  2714. }
  2715. /*
  2716.   Append_block_log_event::print()
  2717. */
  2718. #ifdef MYSQL_CLIENT  
  2719. void Append_block_log_event::print(FILE* file, bool short_form,
  2720.    char* last_db)
  2721. {
  2722.   if (short_form)
  2723.     return;
  2724.   print_header(file);
  2725.   fputc('n', file);
  2726.   fprintf(file, "#Append_block: file_id: %d  block_len: %dn",
  2727.   file_id, block_len);
  2728. }
  2729. #endif /* MYSQL_CLIENT */
  2730. /*
  2731.   Append_block_log_event::pack_info()
  2732. */
  2733. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  2734. void Append_block_log_event::pack_info(Protocol *protocol)
  2735. {
  2736.   char buf[256];
  2737.   uint length;
  2738.   length= (uint) my_sprintf(buf,
  2739.     (buf, ";file_id=%u;block_len=%u", file_id,
  2740.      block_len));
  2741.   protocol->store(buf, length, &my_charset_bin);
  2742. }
  2743. #endif /* defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT) */
  2744. /*
  2745.   Append_block_log_event::exec_event()
  2746. */
  2747. #if defined( HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  2748. int Append_block_log_event::exec_event(struct st_relay_log_info* rli)
  2749. {
  2750.   char proc_info[17+FN_REFLEN+10], *fname= proc_info+17;
  2751.   char *p= slave_load_file_stem(fname, file_id, server_id);
  2752.   int fd;
  2753.   int error = 1;
  2754.   DBUG_ENTER("Append_block_log_event::exec_event");
  2755.   memcpy(p, ".data", 6);
  2756.   strnmov(proc_info, "Making temp file ", 17); // no end 0
  2757.   thd->proc_info= proc_info;
  2758.   if ((fd = my_open(fname, O_WRONLY|O_APPEND|O_BINARY|O_NOFOLLOW, MYF(MY_WME))) < 0)
  2759.   {
  2760.     slave_print_error(rli,my_errno, "Error in Append_block event: could not open file '%s'", fname);
  2761.     goto err;
  2762.   }
  2763.   if (my_write(fd, (byte*) block, block_len, MYF(MY_WME+MY_NABP)))
  2764.   {
  2765.     slave_print_error(rli,my_errno, "Error in Append_block event: write to '%s' failed", fname);
  2766.     goto err;
  2767.   }
  2768.   error=0;
  2769. err:
  2770.   if (fd >= 0)
  2771.     my_close(fd, MYF(0));
  2772.   thd->proc_info= 0;
  2773.   DBUG_RETURN(error ? error : Log_event::exec_event(rli));
  2774. }
  2775. #endif
  2776. /**************************************************************************
  2777. Delete_file_log_event methods
  2778. **************************************************************************/
  2779. /*
  2780.   Delete_file_log_event ctor
  2781. */
  2782. #ifndef MYSQL_CLIENT
  2783. Delete_file_log_event::Delete_file_log_event(THD *thd_arg, const char* db_arg,
  2784.      bool using_trans)
  2785.   :Log_event(thd_arg, 0, using_trans), file_id(thd_arg->file_id), db(db_arg)
  2786. {
  2787. }
  2788. #endif
  2789. /*
  2790.   Delete_file_log_event ctor
  2791. */
  2792. Delete_file_log_event::Delete_file_log_event(const char* buf, int len)
  2793.   :Log_event(buf, 0),file_id(0)
  2794. {
  2795.   if ((uint)len < DELETE_FILE_EVENT_OVERHEAD)
  2796.     return;
  2797.   file_id = uint4korr(buf + LOG_EVENT_HEADER_LEN + AB_FILE_ID_OFFSET);
  2798. }
  2799. /*
  2800.   Delete_file_log_event::write_data()
  2801. */
  2802. int Delete_file_log_event::write_data(IO_CACHE* file)
  2803. {
  2804.  byte buf[DELETE_FILE_HEADER_LEN];
  2805.  int4store(buf + DF_FILE_ID_OFFSET, file_id);
  2806.  return my_b_safe_write(file, buf, DELETE_FILE_HEADER_LEN);
  2807. }
  2808. /*
  2809.   Delete_file_log_event::print()
  2810. */
  2811. #ifdef MYSQL_CLIENT  
  2812. void Delete_file_log_event::print(FILE* file, bool short_form,
  2813.   char* last_db)
  2814. {
  2815.   if (short_form)
  2816.     return;
  2817.   print_header(file);
  2818.   fputc('n', file);
  2819.   fprintf(file, "#Delete_file: file_id=%un", file_id);
  2820. }
  2821. #endif /* MYSQL_CLIENT */
  2822. /*
  2823.   Delete_file_log_event::pack_info()
  2824. */
  2825. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  2826. void Delete_file_log_event::pack_info(Protocol *protocol)
  2827. {
  2828.   char buf[64];
  2829.   uint length;
  2830.   length= (uint) my_sprintf(buf, (buf, ";file_id=%u", (uint) file_id));
  2831.   protocol->store(buf, (int32) length, &my_charset_bin);
  2832. }
  2833. #endif
  2834. /*
  2835.   Delete_file_log_event::exec_event()
  2836. */
  2837. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  2838. int Delete_file_log_event::exec_event(struct st_relay_log_info* rli)
  2839. {
  2840.   char fname[FN_REFLEN+10];
  2841.   char *p= slave_load_file_stem(fname, file_id, server_id);
  2842.   memcpy(p, ".data", 6);
  2843.   (void) my_delete(fname, MYF(MY_WME));
  2844.   memcpy(p, ".info", 6);
  2845.   (void) my_delete(fname, MYF(MY_WME));
  2846.   return Log_event::exec_event(rli);
  2847. }
  2848. #endif /* defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT) */
  2849. /**************************************************************************
  2850. Execute_load_log_event methods
  2851. **************************************************************************/
  2852. /*
  2853.   Execute_load_log_event ctor
  2854. */
  2855. #ifndef MYSQL_CLIENT  
  2856. Execute_load_log_event::Execute_load_log_event(THD *thd_arg, const char* db_arg,
  2857.        bool using_trans)
  2858.   :Log_event(thd_arg, 0, using_trans), file_id(thd_arg->file_id), db(db_arg)
  2859. {
  2860. }
  2861. #endif
  2862.   
  2863. /*
  2864.   Execute_load_log_event ctor
  2865. */
  2866. Execute_load_log_event::Execute_load_log_event(const char* buf, int len)
  2867.   :Log_event(buf, 0), file_id(0)
  2868. {
  2869.   if ((uint)len < EXEC_LOAD_EVENT_OVERHEAD)
  2870.     return;
  2871.   file_id = uint4korr(buf + LOG_EVENT_HEADER_LEN + EL_FILE_ID_OFFSET);
  2872. }
  2873. /*
  2874.   Execute_load_log_event::write_data()
  2875. */
  2876. int Execute_load_log_event::write_data(IO_CACHE* file)
  2877. {
  2878.   byte buf[EXEC_LOAD_HEADER_LEN];
  2879.   int4store(buf + EL_FILE_ID_OFFSET, file_id);
  2880.   return my_b_safe_write(file, buf, EXEC_LOAD_HEADER_LEN);
  2881. }
  2882. /*
  2883.   Execute_load_log_event::print()
  2884. */
  2885. #ifdef MYSQL_CLIENT  
  2886. void Execute_load_log_event::print(FILE* file, bool short_form,
  2887.    char* last_db)
  2888. {
  2889.   if (short_form)
  2890.     return;
  2891.   print_header(file);
  2892.   fputc('n', file);
  2893.   fprintf(file, "#Exec_load: file_id=%dn",
  2894.   file_id);
  2895. }
  2896. #endif
  2897. /*
  2898.   Execute_load_log_event::pack_info()
  2899. */
  2900. #if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
  2901. void Execute_load_log_event::pack_info(Protocol *protocol)
  2902. {
  2903.   char buf[64];
  2904.   uint length;
  2905.   length= (uint) my_sprintf(buf, (buf, ";file_id=%u", (uint) file_id));
  2906.   protocol->store(buf, (int32) length, &my_charset_bin);
  2907. }
  2908. /*
  2909.   Execute_load_log_event::exec_event()
  2910. */
  2911. int Execute_load_log_event::exec_event(struct st_relay_log_info* rli)
  2912. {
  2913.   char fname[FN_REFLEN+10];
  2914.   char *p= slave_load_file_stem(fname, file_id, server_id);
  2915.   int fd;
  2916.   int error = 1;
  2917.   IO_CACHE file;
  2918.   Load_log_event* lev = 0;
  2919.   memcpy(p, ".info", 6);
  2920.   if ((fd = my_open(fname, O_RDONLY|O_BINARY|O_NOFOLLOW, MYF(MY_WME))) < 0 ||
  2921.       init_io_cache(&file, fd, IO_SIZE, READ_CACHE, (my_off_t)0, 0,
  2922.     MYF(MY_WME|MY_NABP)))
  2923.   {
  2924.     slave_print_error(rli,my_errno, "Error in Exec_load event: could not open file '%s'", fname);
  2925.     goto err;
  2926.   }
  2927.   if (!(lev = (Load_log_event*)Log_event::read_log_event(&file,
  2928.  (pthread_mutex_t*)0,
  2929.  (bool)0)) ||
  2930.       lev->get_type_code() != NEW_LOAD_EVENT)
  2931.   {
  2932.     slave_print_error(rli,0, "Error in Exec_load event: file '%s' appears corrupted", fname);
  2933.     goto err;
  2934.   }
  2935.   lev->thd = thd;
  2936.   /*
  2937.     lev->exec_event should use rli only for errors
  2938.     i.e. should not advance rli's position.
  2939.     lev->exec_event is the place where the table is loaded (it calls
  2940.     mysql_load()).
  2941.   */
  2942. #if MYSQL_VERSION_ID < 40100
  2943.     rli->future_master_log_pos= log_pos + get_event_len() -
  2944.       (rli->mi->old_format ? (LOG_EVENT_HEADER_LEN - OLD_HEADER_LEN) : 0);
  2945. #elif MYSQL_VERSION_ID < 50000
  2946.     rli->future_group_master_log_pos= log_pos + get_event_len() -
  2947.       (rli->mi->old_format ? (LOG_EVENT_HEADER_LEN - OLD_HEADER_LEN) : 0);
  2948. #else
  2949.     rli->future_group_master_log_pos= log_pos;
  2950. #endif
  2951.   if (lev->exec_event(0,rli,1)) 
  2952.   {
  2953.     /*
  2954.       We want to indicate the name of the file that could not be loaded
  2955.       (SQL_LOADxxx).
  2956.       But as we are here we are sure the error is in rli->last_slave_error and
  2957.       rli->last_slave_errno (example of error: duplicate entry for key), so we
  2958.       don't want to overwrite it with the filename.
  2959.       What we want instead is add the filename to the current error message.
  2960.     */
  2961.     char *tmp= my_strdup(rli->last_slave_error,MYF(MY_WME));
  2962.     if (tmp)
  2963.     {
  2964.       slave_print_error(rli,
  2965. rli->last_slave_errno, /* ok to re-use error code */
  2966. "%s. Failed executing load from '%s'", 
  2967. tmp, fname);
  2968.       my_free(tmp,MYF(0));
  2969.     }
  2970.     goto err;
  2971.   }
  2972.   /*
  2973.     We have an open file descriptor to the .info file; we need to close it
  2974.     or Windows will refuse to delete the file in my_delete().
  2975.   */
  2976.   if (fd >= 0)
  2977.   {
  2978.     my_close(fd, MYF(0));
  2979.     end_io_cache(&file);
  2980.     fd= -1;
  2981.   }
  2982.   (void) my_delete(fname, MYF(MY_WME));
  2983.   memcpy(p, ".data", 6);
  2984.   (void) my_delete(fname, MYF(MY_WME));
  2985.   error = 0;
  2986. err:
  2987.   delete lev;
  2988.   if (fd >= 0)
  2989.   {
  2990.     my_close(fd, MYF(0));
  2991.     end_io_cache(&file);
  2992.   }
  2993.   return error ? error : Log_event::exec_event(rli);
  2994. }
  2995. #endif /* defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT) */
  2996. /**************************************************************************
  2997. sql_ex_info methods
  2998. **************************************************************************/
  2999. /*
  3000.   sql_ex_info::write_data()
  3001. */
  3002. int sql_ex_info::write_data(IO_CACHE* file)
  3003. {
  3004.   if (new_format())
  3005.   {
  3006.     return (write_str(file, field_term, field_term_len) ||
  3007.     write_str(file, enclosed,   enclosed_len) ||
  3008.     write_str(file, line_term,  line_term_len) ||
  3009.     write_str(file, line_start, line_start_len) ||
  3010.     write_str(file, escaped,    escaped_len) ||
  3011.     my_b_safe_write(file,(byte*) &opt_flags,1));
  3012.   }
  3013.   else
  3014.   {
  3015.     old_sql_ex old_ex;
  3016.     old_ex.field_term= *field_term;
  3017.     old_ex.enclosed=   *enclosed;
  3018.     old_ex.line_term=  *line_term;
  3019.     old_ex.line_start= *line_start;
  3020.     old_ex.escaped=    *escaped;
  3021.     old_ex.opt_flags=  opt_flags;
  3022.     old_ex.empty_flags=empty_flags;
  3023.     return my_b_safe_write(file, (byte*) &old_ex, sizeof(old_ex));
  3024.   }
  3025. }
  3026. /*
  3027.   sql_ex_info::init()
  3028. */
  3029. char* sql_ex_info::init(char* buf,char* buf_end,bool use_new_format)
  3030. {
  3031.   cached_new_format = use_new_format;
  3032.   if (use_new_format)
  3033.   {
  3034.     empty_flags=0;
  3035.     /*
  3036.       The code below assumes that buf will not disappear from
  3037.       under our feet during the lifetime of the event. This assumption
  3038.       holds true in the slave thread if the log is in new format, but is not
  3039.       the case when we have old format because we will be reusing net buffer
  3040.       to read the actual file before we write out the Create_file event.
  3041.     */
  3042.     if (read_str(buf, buf_end, field_term, field_term_len) ||
  3043. read_str(buf, buf_end, enclosed,   enclosed_len) ||
  3044. read_str(buf, buf_end, line_term,  line_term_len) ||
  3045. read_str(buf, buf_end, line_start, line_start_len) ||
  3046. read_str(buf, buf_end, escaped,    escaped_len))
  3047.       return 0;
  3048.     opt_flags = *buf++;
  3049.   }
  3050.   else
  3051.   {
  3052.     field_term_len= enclosed_len= line_term_len= line_start_len= escaped_len=1;
  3053.     field_term = buf++; // Use first byte in string
  3054.     enclosed=  buf++;
  3055.     line_term=   buf++;
  3056.     line_start=  buf++;
  3057.     escaped=     buf++;
  3058.     opt_flags =  *buf++;
  3059.     empty_flags= *buf++;
  3060.     if (empty_flags & FIELD_TERM_EMPTY)
  3061.       field_term_len=0;
  3062.     if (empty_flags & ENCLOSED_EMPTY)
  3063.       enclosed_len=0;
  3064.     if (empty_flags & LINE_TERM_EMPTY)
  3065.       line_term_len=0;
  3066.     if (empty_flags & LINE_START_EMPTY)
  3067.       line_start_len=0;
  3068.     if (empty_flags & ESCAPED_EMPTY)
  3069.       escaped_len=0;
  3070.   }
  3071.   return buf;
  3072. }