log_event.h 125 KB
Newer Older
1
/* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
2

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3 4
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
kent@mysql.com/kent-amd64.(none)'s avatar
kent@mysql.com/kent-amd64.(none) committed
5
   the Free Software Foundation; version 2 of the License.
6

bk@work.mysql.com's avatar
bk@work.mysql.com committed
7 8 9 10
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
11

bk@work.mysql.com's avatar
bk@work.mysql.com committed
12 13
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
Kent Boortz's avatar
Kent Boortz committed
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
15

16 17 18 19 20
/**
  @addtogroup Replication
  @{

  @file
21 22 23 24
  
  @brief Binary log event definitions.  This includes generic code
  common to all types of log events, as well as specific code for each
  type of log event.
25 26
*/

bk@work.mysql.com's avatar
bk@work.mysql.com committed
27

28 29
#ifndef _log_event_h
#define _log_event_h
bk@work.mysql.com's avatar
bk@work.mysql.com committed
30

31
#if defined(USE_PRAGMA_INTERFACE) && defined(MYSQL_SERVER)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
32 33 34
#pragma interface			/* gcc class implementation */
#endif

35
#include <my_bitmap.h>
36
#include "rpl_constants.h"
37 38

#ifdef MYSQL_CLIENT
39
#include "sql_const.h"
40 41 42 43 44 45
#include "rpl_utility.h"
#include "hash.h"
#include "rpl_tblmap.h"
#include "rpl_tblmap.cc"
#endif

46
#ifdef MYSQL_SERVER
47 48
#include "rpl_record.h"
#include "rpl_reporting.h"
49
#include "sql_class.h"                          /* THD */
50
#endif
51

52 53 54
/* Forward declarations */
class String;

55
#define PREFIX_SQL_LOAD "SQL_LOAD-"
56
#define LONG_FIND_ROW_THRESHOLD 60 /* seconds */
57

58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
/**
   Either assert or return an error.

   In debug build, the condition will be checked, but in non-debug
   builds, the error code given will be returned instead.

   @param COND   Condition to check
   @param ERRNO  Error number to return in non-debug builds
*/
#ifdef DBUG_OFF
#define ASSERT_OR_RETURN_ERROR(COND, ERRNO) \
  do { if (!(COND)) return ERRNO; } while (0)
#else
#define ASSERT_OR_RETURN_ERROR(COND, ERRNO) \
  DBUG_ASSERT(COND)
#endif

bk@work.mysql.com's avatar
bk@work.mysql.com committed
75 76 77 78
#define LOG_READ_EOF    -1
#define LOG_READ_BOGUS  -2
#define LOG_READ_IO     -3
#define LOG_READ_MEM    -5
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
79
#define LOG_READ_TRUNC  -6
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
80
#define LOG_READ_TOO_LARGE -7
bk@work.mysql.com's avatar
bk@work.mysql.com committed
81 82

#define LOG_EVENT_OFFSET 4
83 84

/*
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
   3 is MySQL 4.x; 4 is MySQL 5.0.0.
   Compared to version 3, version 4 has:
   - a different Start_log_event, which includes info about the binary log
   (sizes of headers); this info is included for better compatibility if the
   master's MySQL version is different from the slave's.
   - all events have a unique ID (the triplet (server_id, timestamp at server
   start, other) to be sure an event is not executed more than once in a
   multimaster setup, example:
                M1
              /   \
             v     v
             M2    M3
             \     /
              v   v
                S
   if a query is run on M1, it will arrive twice on S, so we need that S
   remembers the last unique ID it has processed, to compare and know if the
   event should be skipped or not. Example of ID: we already have the server id
   (4 bytes), plus:
   timestamp_when_the_master_started (4 bytes), a counter (a sequence number
   which increments every time we write an event to the binlog) (3 bytes).
   Q: how do we handle when the counter is overflowed and restarts from 0 ?
107

108 109
   - Query and Load (Create or Execute) events may have a more precise
     timestamp (with microseconds), number of matched/affected/warnings rows
110 111
   and fields of session variables: SQL_MODE,
   FOREIGN_KEY_CHECKS, UNIQUE_CHECKS, SQL_AUTO_IS_NULL, the collations and
112
   charsets, the PASSWORD() version (old/new/...).
113 114
*/
#define BINLOG_VERSION    4
115

116 117 118
/*
 We could have used SERVER_VERSION_LENGTH, but this introduces an
 obscure dependency - if somebody decided to change SERVER_VERSION_LENGTH
119
 this would break the replication protocol
120 121 122
*/
#define ST_SERVER_VER_LEN 50

123 124 125 126 127
/*
  These are flags and structs to handle all the LOAD DATA INFILE options (LINES
  TERMINATED etc).
*/

128 129 130 131 132 133
/*
  These are flags and structs to handle all the LOAD DATA INFILE options (LINES
  TERMINATED etc).
  DUMPFILE_FLAG is probably useless (DUMPFILE is a clause of SELECT, not of LOAD
  DATA).
*/
134 135 136 137
#define DUMPFILE_FLAG		0x1
#define OPT_ENCLOSED_FLAG	0x2
#define REPLACE_FLAG		0x4
#define IGNORE_FLAG		0x8
138

139 140 141 142 143
#define FIELD_TERM_EMPTY	0x1
#define ENCLOSED_EMPTY		0x2
#define LINE_TERM_EMPTY		0x4
#define LINE_START_EMPTY	0x8
#define ESCAPED_EMPTY		0x10
144

145 146 147 148 149
/*****************************************************************************

  old_sql_ex struct

 ****************************************************************************/
150
struct old_sql_ex
151 152 153 154 155 156 157 158 159
{
  char field_term;
  char enclosed;
  char line_term;
  char line_start;
  char escaped;
  char opt_flags;
  char empty_flags;
};
160

161 162
#define NUM_LOAD_DELIM_STRS 5

163 164 165 166 167
/*****************************************************************************

  sql_ex_info struct

 ****************************************************************************/
168
struct sql_ex_info
169
{
170
  sql_ex_info() {}                            /* Remove gcc warning */
171 172 173 174 175
  const char* field_term;
  const char* enclosed;
  const char* line_term;
  const char* line_start;
  const char* escaped;
176 177
  int cached_new_format;
  uint8 field_term_len,enclosed_len,line_term_len,line_start_len, escaped_len;
178
  char opt_flags;
179
  char empty_flags;
180

181
  // store in new format even if old is possible
182
  void force_new_format() { cached_new_format = 1;}
183 184 185 186 187 188
  int data_size()
  {
    return (new_format() ?
	    field_term_len + enclosed_len + line_term_len +
	    line_start_len + escaped_len + 6 : 7);
  }
189
  bool write_data(IO_CACHE* file);
190
  const char* init(const char* buf, const char* buf_end, bool use_new_format);
191 192 193 194 195 196 197 198 199
  bool new_format()
  {
    return ((cached_new_format != -1) ? cached_new_format :
	    (cached_new_format=(field_term_len > 1 ||
				enclosed_len > 1 ||
				line_term_len > 1 || line_start_len > 1 ||
				escaped_len > 1)));
  }
};
200

201 202 203 204 205 206 207 208 209 210 211 212
/*****************************************************************************

  MySQL Binary Log

  This log consists of events.  Each event has a fixed-length header,
  possibly followed by a variable length data body.

  The data body consists of an optional fixed length segment (post-header)
  and  an optional variable length segment.

  See the #defines below for the format specifics.

213 214 215 216 217 218
  The events which really update data are Query_log_event,
  Execute_load_query_log_event and old Load_log_event and
  Execute_load_log_event events (Execute_load_query is used together with
  Begin_load_query and Append_block events to replicate LOAD DATA INFILE.
  Create_file/Append_block/Execute_load (which includes Load_log_event)
  were used to replicate LOAD DATA before the 5.0.3).
219

220
 ****************************************************************************/
221

222 223
#define LOG_EVENT_HEADER_LEN 19     /* the fixed header length */
#define OLD_HEADER_LEN       13     /* the fixed header length in 3.23 */
224
/*
225 226 227 228 229 230
   Fixed header length, where 4.x and 5.0 agree. That is, 5.0 may have a longer
   header (it will for sure when we have the unique event's ID), but at least
   the first 19 bytes are the same in 4.x and 5.0. So when we have the unique
   event's ID, LOG_EVENT_HEADER_LEN will be something like 26, but
   LOG_EVENT_MINIMAL_HEADER_LEN will remain 19.
*/
231 232
#define LOG_EVENT_MINIMAL_HEADER_LEN 19

233
/* event-specific post-header sizes */
234 235 236
// where 3.23, 4.x and 5.0 agree
#define QUERY_HEADER_MINIMAL_LEN     (4 + 4 + 1 + 2)
// where 5.0 differs: 2 for len of N-bytes vars.
237
#define QUERY_HEADER_LEN     (QUERY_HEADER_MINIMAL_LEN + 2)
238
#define STOP_HEADER_LEN      0
239
#define LOAD_HEADER_LEN      (4 + 4 + 4 + 1 +1 + 4)
240
#define SLAVE_HEADER_LEN     0
241 242
#define START_V3_HEADER_LEN     (2 + ST_SERVER_VER_LEN + 4)
#define ROTATE_HEADER_LEN    8 // this is FROZEN (the Rotate post-header is frozen)
243
#define INTVAR_HEADER_LEN      0
244 245 246 247
#define CREATE_FILE_HEADER_LEN 4
#define APPEND_BLOCK_HEADER_LEN 4
#define EXEC_LOAD_HEADER_LEN   4
#define DELETE_FILE_HEADER_LEN 4
248 249 250
#define NEW_LOAD_HEADER_LEN    LOAD_HEADER_LEN
#define RAND_HEADER_LEN        0
#define USER_VAR_HEADER_LEN    0
251
#define FORMAT_DESCRIPTION_HEADER_LEN (START_V3_HEADER_LEN+1+LOG_EVENT_TYPES)
252 253
#define XID_HEADER_LEN         0
#define BEGIN_LOAD_QUERY_HEADER_LEN APPEND_BLOCK_HEADER_LEN
254 255
#define ROWS_HEADER_LEN        8
#define TABLE_MAP_HEADER_LEN   8
256 257
#define EXECUTE_LOAD_QUERY_EXTRA_HEADER_LEN (4 + 4 + 4 + 1)
#define EXECUTE_LOAD_QUERY_HEADER_LEN  (QUERY_HEADER_LEN + EXECUTE_LOAD_QUERY_EXTRA_HEADER_LEN)
258
#define INCIDENT_HEADER_LEN    2
Andrei Elkin's avatar
Andrei Elkin committed
259
#define HEARTBEAT_HEADER_LEN   0
260 261
/* 
  Max number of possible extra bytes in a replication event compared to a
262 263
  packet (i.e. a query) sent from client to master;
  First, an auxiliary log_event status vars estimation:
264
*/
265 266 267 268 269 270 271 272
#define MAX_SIZE_LOG_EVENT_STATUS (1 + 4          /* type, flags2 */   + \
                                   1 + 8          /* type, sql_mode */ + \
                                   1 + 1 + 255    /* type, length, catalog */ + \
                                   1 + 4          /* type, auto_increment */ + \
                                   1 + 6          /* type, charset */ + \
                                   1 + 1 + 255    /* type, length, time_zone */ + \
                                   1 + 2          /* type, lc_time_names_number */ + \
                                   1 + 2          /* type, charset_database_number */ + \
273
                                   1 + 8          /* type, table_map_for_update */ + \
274 275
                                   1 + 4          /* type, master_data_written */ + \
                                   1 + 16 + 1 + 60/* type, user_len, user, host_len, host */)
276 277 278 279 280 281
#define MAX_LOG_EVENT_HEADER   ( /* in order of Query_log_event::write */ \
  LOG_EVENT_HEADER_LEN + /* write_header */ \
  QUERY_HEADER_LEN     + /* write_data */   \
  EXECUTE_LOAD_QUERY_EXTRA_HEADER_LEN + /*write_post_header_for_derived */ \
  MAX_SIZE_LOG_EVENT_STATUS + /* status */ \
  NAME_LEN + 1)
282

283 284 285 286 287 288 289
/*
  The new option is added to handle large packets that are sent from the master 
  to the slave. It is used to increase the thd(max_allowed) for both the
  DUMP thread on the master and the SQL/IO thread on the slave. 
*/
#define MAX_MAX_ALLOWED_PACKET 1024*1024*1024

290 291 292 293
/* 
   Event header offsets; 
   these point to places inside the fixed header.
*/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
294

295
#define EVENT_TYPE_OFFSET    4
296 297
#define SERVER_ID_OFFSET     5
#define EVENT_LEN_OFFSET     9
298
#define LOG_POS_OFFSET       13
299 300
#define FLAGS_OFFSET         17

301
/* start event post-header (for v3 and v4) */
302 303 304 305

#define ST_BINLOG_VER_OFFSET  0
#define ST_SERVER_VER_OFFSET  2
#define ST_CREATED_OFFSET     (ST_SERVER_VER_OFFSET + ST_SERVER_VER_LEN)
306
#define ST_COMMON_HEADER_LEN_OFFSET (ST_CREATED_OFFSET + 4)
307

308
/* slave event post-header (this event is never written) */
309

310 311 312
#define SL_MASTER_PORT_OFFSET   8
#define SL_MASTER_POS_OFFSET    0
#define SL_MASTER_HOST_OFFSET   10
313 314 315

/* query event post-header */

316 317 318 319
#define Q_THREAD_ID_OFFSET	0
#define Q_EXEC_TIME_OFFSET	4
#define Q_DB_LEN_OFFSET		8
#define Q_ERR_CODE_OFFSET	9
320
#define Q_STATUS_VARS_LEN_OFFSET 11
321
#define Q_DATA_OFFSET		QUERY_HEADER_LEN
322 323 324
/* these are codes, not offsets; not more than 256 values (1 byte). */
#define Q_FLAGS2_CODE           0
#define Q_SQL_MODE_CODE         1
325 326
/*
  Q_CATALOG_CODE is catalog with end zero stored; it is used only by MySQL
327 328
  5.0.x where 0<=x<=3. We have to keep it to be able to replicate these
  old masters.
329
*/
330
#define Q_CATALOG_CODE          2
331
#define Q_AUTO_INCREMENT	3
332
#define Q_CHARSET_CODE          4
333
#define Q_TIME_ZONE_CODE        5
334 335 336 337 338 339 340 341
/*
  Q_CATALOG_NZ_CODE is catalog withOUT end zero stored; it is used by MySQL
  5.0.x where x>=4. Saves one byte in every Query_log_event in binlog,
  compared to Q_CATALOG_CODE. The reason we didn't simply re-use
  Q_CATALOG_CODE is that then a 5.0.3 slave of this 5.0.x (x>=4) master would
  crash (segfault etc) because it would expect a 0 when there is none.
*/
#define Q_CATALOG_NZ_CODE       6
342

343 344
#define Q_LC_TIME_NAMES_CODE    7

345
#define Q_CHARSET_DATABASE_CODE 8
346 347

#define Q_TABLE_MAP_FOR_UPDATE_CODE 9
348

349 350
#define Q_MASTER_DATA_WRITTEN_CODE 10

351 352
#define Q_INVOKER 11

353 354
/* Intvar event post-header */

355
/* Intvar event data */
356 357 358
#define I_TYPE_OFFSET        0
#define I_VAL_OFFSET         1

359
/* Rand event data */
nick@mysql.com's avatar
nick@mysql.com committed
360 361 362
#define RAND_SEED1_OFFSET 0
#define RAND_SEED2_OFFSET 8

363
/* User_var event data */
364 365 366 367 368 369
#define UV_VAL_LEN_SIZE        4
#define UV_VAL_IS_NULL         1
#define UV_VAL_TYPE_SIZE       1
#define UV_NAME_LEN_SIZE       4
#define UV_CHARSET_NUMBER_SIZE 4

370 371 372 373
/* Load event post-header */
#define L_THREAD_ID_OFFSET   0
#define L_EXEC_TIME_OFFSET   4
#define L_SKIP_LINES_OFFSET  8
374 375
#define L_TBL_LEN_OFFSET     12
#define L_DB_LEN_OFFSET      13
376
#define L_NUM_FIELDS_OFFSET  14
377
#define L_SQL_EX_OFFSET      18
378
#define L_DATA_OFFSET        LOAD_HEADER_LEN
379

380 381 382
/* Rotate event post-header */
#define R_POS_OFFSET       0
#define R_IDENT_OFFSET     8
383

384 385 386
/* CF to DF handle LOAD DATA INFILE */

/* CF = "Create File" */
387 388 389
#define CF_FILE_ID_OFFSET  0
#define CF_DATA_OFFSET     CREATE_FILE_HEADER_LEN

390
/* AB = "Append Block" */
391 392 393
#define AB_FILE_ID_OFFSET  0
#define AB_DATA_OFFSET     APPEND_BLOCK_HEADER_LEN

394
/* EL = "Execute Load" */
395 396
#define EL_FILE_ID_OFFSET  0

397
/* DF = "Delete File" */
398
#define DF_FILE_ID_OFFSET  0
399

400 401 402 403 404 405 406 407
/* TM = "Table Map" */
#define TM_MAPID_OFFSET    0
#define TM_FLAGS_OFFSET    6

/* RW = "RoWs" */
#define RW_MAPID_OFFSET    0
#define RW_FLAGS_OFFSET    6

408 409 410 411 412 413
/* ELQ = "Execute Load Query" */
#define ELQ_FILE_ID_OFFSET QUERY_HEADER_LEN
#define ELQ_FN_POS_START_OFFSET ELQ_FILE_ID_OFFSET + 4
#define ELQ_FN_POS_END_OFFSET ELQ_FILE_ID_OFFSET + 8
#define ELQ_DUP_HANDLING_OFFSET ELQ_FILE_ID_OFFSET + 12

414
/* 4 bytes which all binlogs should begin with */
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
415
#define BINLOG_MAGIC        "\xfe\x62\x69\x6e"
416

417 418 419 420 421 422 423 424
/*
  The 2 flags below were useless :
  - the first one was never set
  - the second one was set in all Rotate events on the master, but not used for
  anything useful.
  So they are now removed and their place may later be reused for other
  flags. Then one must remember that Rotate events in 4.x have
  LOG_EVENT_FORCED_ROTATE_F set, so one should not rely on the value of the
425
  replacing flag when reading a Rotate event.
426 427 428
  I keep the defines here just to remember what they were.
*/
#ifdef TO_BE_REMOVED
429
#define LOG_EVENT_TIME_F            0x1
430
#define LOG_EVENT_FORCED_ROTATE_F   0x2
431
#endif
432 433

/*
434 435 436 437 438 439 440 441
   This flag only makes sense for Format_description_log_event. It is set
   when the event is written, and *reset* when a binlog file is
   closed (yes, it's the only case when MySQL modifies already written
   part of binlog).  Thus it is a reliable indicator that binlog was
   closed correctly.  (Stop_log_event is not enough, there's always a
   small chance that mysqld crashes in the middle of insert and end of
   the binlog would look like a Stop_log_event).

442 443 444 445 446 447 448 449
   This flag is used to detect a restart after a crash, and to provide
   "unbreakable" binlog. The problem is that on a crash storage engines
   rollback automatically, while binlog does not.  To solve this we use this
   flag and automatically append ROLLBACK to every non-closed binlog (append
   virtually, on reading, file itself is not changed). If this flag is found,
   mysqlbinlog simply prints "ROLLBACK" Replication master does not abort on
   binlog corruption, but takes it as EOF, and replication slave forces a
   rollback in this case.
450 451 452

   Note, that old binlogs does not have this flag set, so we get a
   a backward-compatible behaviour.
453 454
*/

455 456
#define LOG_EVENT_BINLOG_IN_USE_F       0x1

457 458 459 460 461 462 463
/**
  @def LOG_EVENT_THREAD_SPECIFIC_F

  If the query depends on the thread (for example: TEMPORARY TABLE).
  Currently this is used by mysqlbinlog to know it must print
  SET @@PSEUDO_THREAD_ID=xx; before the query (it would not hurt to print it
  for every query but this would be slow).
464
*/
465
#define LOG_EVENT_THREAD_SPECIFIC_F 0x4
466

467 468 469
/**
  @def LOG_EVENT_SUPPRESS_USE_F

470 471 472 473 474 475 476 477 478 479 480 481
  Suppress the generation of 'USE' statements before the actual
  statement. This flag should be set for any events that does not need
  the current database set to function correctly. Most notable cases
  are 'CREATE DATABASE' and 'DROP DATABASE'.

  This flags should only be used in exceptional circumstances, since
  it introduce a significant change in behaviour regarding the
  replication logic together with the flags --binlog-do-db and
  --replicated-do-db.
 */
#define LOG_EVENT_SUPPRESS_USE_F    0x8

482
/*
483 484 485
  Note: this is a place holder for the flag
  LOG_EVENT_UPDATE_TABLE_MAP_VERSION_F (0x10), which is not used any
  more, please do not reused this value for other flags.
486 487
 */

488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
/**
   @def LOG_EVENT_ARTIFICIAL_F
   
   Artificial events are created arbitarily and not written to binary
   log

   These events should not update the master log position when slave
   SQL thread executes them.
*/
#define LOG_EVENT_ARTIFICIAL_F 0x20

/**
   @def LOG_EVENT_RELAY_LOG_F
   
   Events with this flag set are created by slave IO thread and written
   to relay log
*/
#define LOG_EVENT_RELAY_LOG_F 0x40

507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
/**
  @def OPTIONS_WRITTEN_TO_BIN_LOG

  OPTIONS_WRITTEN_TO_BIN_LOG are the bits of thd->options which must
  be written to the binlog. OPTIONS_WRITTEN_TO_BIN_LOG could be
  written into the Format_description_log_event, so that if later we
  don't want to replicate a variable we did replicate, or the
  contrary, it's doable. But it should not be too hard to decide once
  for all of what we replicate and what we don't, among the fixed 32
  bits of thd->options.

  I (Guilhem) have read through every option's usage, and it looks
  like OPTION_AUTO_IS_NULL and OPTION_NO_FOREIGN_KEYS are the only
  ones which alter how the query modifies the table. It's good to
  replicate OPTION_RELAXED_UNIQUE_CHECKS too because otherwise, the
  slave may insert data slower than the master, in InnoDB.
  OPTION_BIG_SELECTS is not needed (the slave thread runs with
  max_join_size=HA_POS_ERROR) and OPTION_BIG_TABLES is not needed
  either, as the manual says (because a too big in-memory temp table
  is automatically written to disk).
527
*/
528 529 530
#define OPTIONS_WRITTEN_TO_BIN_LOG \
  (OPTION_AUTO_IS_NULL | OPTION_NO_FOREIGN_KEY_CHECKS |  \
   OPTION_RELAXED_UNIQUE_CHECKS | OPTION_NOT_AUTOCOMMIT)
531

532 533 534
/* Shouldn't be defined before */
#define EXPECTED_OPTIONS \
  ((ULL(1) << 14) | (ULL(1) << 26) | (ULL(1) << 27) | (ULL(1) << 19))
535

536
#if OPTIONS_WRITTEN_TO_BIN_LOG != EXPECTED_OPTIONS
serg@serg.mylan's avatar
serg@serg.mylan committed
537 538
#error OPTIONS_WRITTEN_TO_BIN_LOG must NOT change their values!
#endif
539
#undef EXPECTED_OPTIONS         /* You shouldn't use this one */
serg@serg.mylan's avatar
serg@serg.mylan committed
540

541 542 543 544 545
/**
  @enum Log_event_type

  Enumeration type for the different types of log events.
*/
546 547
enum Log_event_type
{
548 549
  /*
    Every time you update this enum (when you add a type), you have to
550
    fix Format_description_log_event::Format_description_log_event().
551
  */
lars@mysql.com's avatar
lars@mysql.com committed
552 553 554 555 556 557 558 559 560 561 562
  UNKNOWN_EVENT= 0,
  START_EVENT_V3= 1,
  QUERY_EVENT= 2,
  STOP_EVENT= 3,
  ROTATE_EVENT= 4,
  INTVAR_EVENT= 5,
  LOAD_EVENT= 6,
  SLAVE_EVENT= 7,
  CREATE_FILE_EVENT= 8,
  APPEND_BLOCK_EVENT= 9,
  EXEC_LOAD_EVENT= 10,
563
  DELETE_FILE_EVENT= 11,
564
  /*
565 566 567
    NEW_LOAD_EVENT is like LOAD_EVENT except that it has a longer
    sql_ex, allowing multibyte TERMINATED BY etc; both types share the
    same class (Load_log_event)
568
  */
569
  NEW_LOAD_EVENT= 12,
lars@mysql.com's avatar
lars@mysql.com committed
570 571 572 573 574 575
  RAND_EVENT= 13,
  USER_VAR_EVENT= 14,
  FORMAT_DESCRIPTION_EVENT= 15,
  XID_EVENT= 16,
  BEGIN_LOAD_QUERY_EVENT= 17,
  EXECUTE_LOAD_QUERY_EVENT= 18,
576

577
  TABLE_MAP_EVENT = 19,
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592

  /*
    These event numbers were used for 5.1.0 to 5.1.15 and are
    therefore obsolete.
   */
  PRE_GA_WRITE_ROWS_EVENT = 20,
  PRE_GA_UPDATE_ROWS_EVENT = 21,
  PRE_GA_DELETE_ROWS_EVENT = 22,

  /*
    These event numbers are used from 5.1.16 and forward
   */
  WRITE_ROWS_EVENT = 23,
  UPDATE_ROWS_EVENT = 24,
  DELETE_ROWS_EVENT = 25,
593

594 595 596
  /*
    Something out of the ordinary happened on the master
   */
mats@romeo.(none)'s avatar
mats@romeo.(none) committed
597
  INCIDENT_EVENT= 26,
598

Andrei Elkin's avatar
Andrei Elkin committed
599 600 601 602 603 604
  /*
    Heartbeat event to be send by master at its idle time 
    to ensure master's online status to slave 
  */
  HEARTBEAT_LOG_EVENT= 27,
  
605
  /*
lars@mysql.com's avatar
lars@mysql.com committed
606
    Add new events here - right above this comment!
607
    Existing events (except ENUM_END_EVENT) should never change their numbers
608 609
  */

610
  ENUM_END_EVENT /* end marker */
611 612
};

613
/*
614 615 616 617 618 619
   The number of types we handle in Format_description_log_event (UNKNOWN_EVENT
   is not to be handled, it does not exist in binlogs, it does not have a
   format).
*/
#define LOG_EVENT_TYPES (ENUM_END_EVENT-1)

620 621 622 623 624
enum Int_event_type
{
  INVALID_INT_EVENT = 0, LAST_INSERT_ID_EVENT = 1, INSERT_ID_EVENT = 2
};

bk@work.mysql.com's avatar
bk@work.mysql.com committed
625

626
#ifdef MYSQL_SERVER
bk@work.mysql.com's avatar
bk@work.mysql.com committed
627
class String;
628
class MYSQL_BIN_LOG;
629
class THD;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
630 631
#endif

632
class Format_description_log_event;
633
class Relay_log_info;
634

635
#ifdef MYSQL_CLIENT
636 637 638 639 640
enum enum_base64_output_mode {
  BASE64_OUTPUT_NEVER= 0,
  BASE64_OUTPUT_AUTO= 1,
  BASE64_OUTPUT_ALWAYS= 2,
  BASE64_OUTPUT_UNSPEC= 3,
641
  BASE64_OUTPUT_DECODE_ROWS= 4,
642 643 644 645
  /* insert new output modes here */
  BASE64_OUTPUT_MODE_COUNT
};

646
/*
lars@mysql.com's avatar
lars@mysql.com committed
647 648
  A structure for mysqlbinlog to know how to print events

649 650 651 652 653 654 655 656
  This structure is passed to the event's print() methods,

  There are two types of settings stored here:
  1. Last db, flags2, sql_mode etc comes from the last printed event.
     They are stored so that only the necessary USE and SET commands
     are printed.
  2. Other information on how to print the events, e.g. short_form,
     hexdump_from.  These are not dependent on the last event.
657
*/
658
typedef struct st_print_event_info
659
{
660 661
  /*
    Settings for database, sql_mode etc that comes from the last event
662 663 664
    that was printed.  We cache these so that we don't have to print
    them if they are unchanged.
  */
665 666 667 668 669
  // TODO: have the last catalog here ??
  char db[FN_REFLEN+1]; // TODO: make this a LEX_STRING when thd->db is
  bool flags2_inited;
  uint32 flags2;
  bool sql_mode_inited;
monty@mysql.com's avatar
monty@mysql.com committed
670
  ulong sql_mode;		/* must be same as THD.variables.sql_mode */
671
  ulong auto_increment_increment, auto_increment_offset;
672 673
  bool charset_inited;
  char charset[6]; // 3 variables, each of them storable in 2 bytes
674
  char time_zone_str[MAX_TIME_ZONE_NAME_LENGTH];
675
  uint lc_time_names_number;
676
  uint charset_database_number;
677 678 679 680
  uint thread_id;
  bool thread_id_printed;

  st_print_event_info();
lars@mysql.com's avatar
lars@mysql.com committed
681

682
  ~st_print_event_info() {
683 684
    close_cached_file(&head_cache);
    close_cached_file(&body_cache);
685
  }
686 687
  bool init_ok() /* tells if construction was successful */
    { return my_b_inited(&head_cache) && my_b_inited(&body_cache); }
688 689


lars@mysql.com's avatar
lars@mysql.com committed
690 691
  /* Settings on how to print the events */
  bool short_form;
692 693 694 695 696 697 698 699
  enum_base64_output_mode base64_output_mode;
  /*
    This is set whenever a Format_description_event is printed.
    Later, when an event is printed in base64, this flag is tested: if
    no Format_description_event has been seen, it is unsafe to print
    the base64 event, so an error message is generated.
  */
  bool printed_fd_event;
lars@mysql.com's avatar
lars@mysql.com committed
700 701
  my_off_t hexdump_from;
  uint8 common_header_len;
702
  char delimiter[16];
lars@mysql.com's avatar
lars@mysql.com committed
703

704 705
  uint verbose;
  table_mapping m_table_map;
706
  table_mapping m_table_map_ignored;
707

708 709 710 711 712 713 714
  /*
     These two caches are used by the row-based replication events to
     collect the header information and the main body of the events
     making up a statement.
   */
  IO_CACHE head_cache;
  IO_CACHE body_cache;
715
} PRINT_EVENT_INFO;
716 717
#endif

Andrei Elkin's avatar
Andrei Elkin committed
718 719 720 721 722 723 724 725 726
/**
  the struct aggregates two paramenters that identify an event
  uniquely in scope of communication of a particular master and slave couple.
  I.e there can not be 2 events from the same staying connected master which
  have the same coordinates.
  @note
  Such identifier is not yet unique generally as the event originating master
  is resetable. Also the crashed master can be replaced with some other.
*/
727
typedef struct event_coordinates
Andrei Elkin's avatar
Andrei Elkin committed
728 729 730
{
  char * file_name; // binlog file name (directories stripped)
  my_off_t  pos;       // event's position in the binlog file
731
} LOG_POS_COORD;
732

733 734
/**
  @class Log_event
735 736

  This is the abstract base class for binary log events.
737 738 739
  
  @section Log_event_binary_format Binary Format

740
  Any @c Log_event saved on disk consists of the following three
741 742
  components.

743 744 745
  - Common-Header
  - Post-Header
  - Body
746

747 748
  The Common-Header, documented in the table @ref Table_common_header
  "below", always has the same form and length within one version of
749 750 751 752 753 754
  MySQL.  Each event type specifies a format and length of the
  Post-Header.  The length of the Common-Header is the same for all
  events of the same type.  The Body may be of different format and
  length even for different events of the same type.  The binary
  formats of Post-Header and Body are documented separately in each
  subclass.  The binary format of Common-Header is as follows.
755 756 757 758 759 760

  <table>
  <caption>Common-Header</caption>

  <tr>
    <th>Name</th>
761
    <th>Format</th>
762 763 764 765 766 767
    <th>Description</th>
  </tr>

  <tr>
    <td>timestamp</td>
    <td>4 byte unsigned integer</td>
768
    <td>The time when the query started, in seconds since 1970.
769 770 771 772 773 774 775 776 777 778
    </td>
  </tr>

  <tr>
    <td>type</td>
    <td>1 byte enumeration</td>
    <td>See enum #Log_event_type.</td>
  </tr>

  <tr>
779 780
    <td>server_id</td>
    <td>4 byte unsigned integer</td>
781 782 783 784 785
    <td>Server ID of the server that created the event.</td>
  </tr>

  <tr>
    <td>total_size</td>
786
    <td>4 byte unsigned integer</td>
787 788 789 790 791 792 793
    <td>The total size of this event, in bytes.  In other words, this
    is the sum of the sizes of Common-Header, Post-Header, and Body.
    </td>
  </tr>

  <tr>
    <td>master_position</td>
794
    <td>4 byte unsigned integer</td>
795
    <td>The position of the next event in the master binary log, in
796 797 798 799
    bytes from the beginning of the file.  In a binlog that is not a
    relay log, this is just the position of the next event, in bytes
    from the beginning of the file.  In a relay log, this is
    the position of the next event in the master's binlog.
800 801 802 803 804 805 806 807 808 809 810 811 812
    </td>
  </tr>

  <tr>
    <td>flags</td>
    <td>2 byte bitfield</td>
    <td>See Log_event::flags.</td>
  </tr>
  </table>

  Summing up the numbers above, we see that the total size of the
  common header is 19 bytes.

813 814 815 816 817 818 819 820 821 822
  @subsection Log_event_format_of_atomic_primitives Format of Atomic Primitives

  - All numbers, whether they are 16-, 24-, 32-, or 64-bit numbers,
  are stored in little endian, i.e., the least significant byte first,
  unless otherwise specified.

  @anchor packed_integer
  - Some events use a special format for efficient representation of
  unsigned integers, called Packed Integer.  A Packed Integer has the
  capacity of storing up to 8-byte integers, while small integers
823 824
  still can use 1, 3, or 4 bytes.  The value of the first byte
  determines how to read the number, according to the following table:
825 826 827 828 829 830 831 832 833 834 835

  <table>
  <caption>Format of Packed Integer</caption>

  <tr>
    <th>First byte</th>
    <th>Format</th>
  </tr>

  <tr>
    <td>0-250</td>
836
    <td>The first byte is the number (in the range 0-250), and no more
837 838 839 840 841 842 843 844
    bytes are used.</td>
  </tr>

  <tr>
    <td>252</td>
    <td>Two more bytes are used.  The number is in the range
    251-0xffff.</td>
  </tr>
845

846 847 848 849 850
  <tr>
    <td>253</td>
    <td>Three more bytes are used.  The number is in the range
    0xffff-0xffffff.</td>
  </tr>
851

852 853 854 855 856 857 858 859 860 861
  <tr>
    <td>254</td>
    <td>Eight more bytes are used.  The number is in the range
    0xffffff-0xffffffffffffffff.</td>
  </tr>

  </table>

  - Strings are stored in various formats.  The format of each string
  is documented separately.
862
*/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
863 864 865
class Log_event
{
public:
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891
  /**
     Enumeration of what kinds of skipping (and non-skipping) that can
     occur when the slave executes an event.

     @see shall_skip
     @see do_shall_skip
   */
  enum enum_skip_reason {
    /**
       Don't skip event.
    */
    EVENT_SKIP_NOT,

    /**
       Skip event by ignoring it.

       This means that the slave skip counter will not be changed.
    */
    EVENT_SKIP_IGNORE,

    /**
       Skip event and decrease skip counter.
    */
    EVENT_SKIP_COUNT
  };

892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
  enum enum_event_cache_type 
  {
    EVENT_INVALID_CACHE,
    /* 
      If possible the event should use a non-transactional cache before
      being flushed to the binary log. This means that it must be flushed
      right after its correspondent statement is completed.
    */
    EVENT_STMT_CACHE,
    /* 
      The event should use a transactional cache before being flushed to
      the binary log. This means that it must be flushed upon commit or 
      rollback. 
    */
    EVENT_TRANSACTIONAL_CACHE,
    /* 
      The event must be written directly to the binary log without going
      through a cache.
    */
    EVENT_NO_CACHE,
    /**
       If there is a need for different types, introduce them before this.
    */
    EVENT_CACHE_COUNT
  };
917

918 919 920 921 922 923 924
  /*
    The following type definition is to be used whenever data is placed 
    and manipulated in a common buffer. Use this typedef for buffers
    that contain data containing binary and character data.
  */
  typedef unsigned char Byte;

925
  /*
926 927 928 929 930 931 932 933
    The offset in the log where this event originally appeared (it is
    preserved in relay logs, making SHOW SLAVE STATUS able to print
    coordinates of the event in the master's binlog). Note: when a
    transaction is written by the master to its binlog (wrapped in
    BEGIN/COMMIT) the log_pos of all the queries it contains is the
    one of the BEGIN (this way, when one does SHOW SLAVE STATUS it
    sees the offset of the BEGIN, which is logical as rollback may
    occur), except the COMMIT query which has its real offset.
934
  */
935
  my_off_t log_pos;
936
  /*
937 938 939
     A temp buffer for read_log_event; it is later analysed according to the
     event's type, and its content is distributed in the event-specific fields.
  */
940
  char *temp_buf;
941
  /*
942 943 944 945 946 947
    Timestamp on the master(for debugging and replication of
    NOW()/TIMESTAMP).  It is important for queries and LOAD DATA
    INFILE. This is set at the event's creation time, except for Query
    and Load (et al.) events where this is set at the query's
    execution time, which guarantees good replication (otherwise, we
    could have a query and its event with different timestamps).
948
  */
949
  time_t when;
950
  /* The number of seconds the query took to run on the master. */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
951
  ulong exec_time;
952 953 954
  /* Number of bytes written by write() function */
  ulong data_written;

955
  /*
956 957
    The master's server id (is preserved in the relay log; used to
    prevent from infinite loops in circular replication).
958
  */
959
  uint32 server_id;
960

961 962
  /**
    Some 16 flags. See the definitions above for LOG_EVENT_TIME_F,
963 964
    LOG_EVENT_FORCED_ROTATE_F, LOG_EVENT_THREAD_SPECIFIC_F, and
    LOG_EVENT_SUPPRESS_USE_F for notes.
965
  */
966
  uint16 flags;
967 968 969 970 971 972
  
  /*
    Defines the type of the cache, if any, where the event will be
    stored before being flushed to disk.
  */
  uint16 cache_type;
973

974 975 976 977 978 979
  /**
    A storage to cache the global system variable's value.
    Handling of a separate event will be governed its member.
  */
  ulong slave_exec_mode;

980
#ifdef MYSQL_SERVER
981
  THD* thd;
982

983
  Log_event();
984
  Log_event(THD* thd_arg, uint16 flags_arg, bool is_transactional);
985
  /*
986 987 988 989 990 991 992 993 994
    read_log_event() functions read an event from a binlog or relay
    log; used by SHOW BINLOG EVENTS, the binlog_dump thread on the
    master (reads master's binlog), the slave IO thread (reads the
    event sent by binlog_dump), the slave SQL thread (reads the event
    from the relay log).  If mutex is 0, the read will proceed without
    mutex.  We need the description_event to be able to parse the
    event (to know the post-header's size); in fact in read_log_event
    we detect the event's type, then call the specific event's
    constructor and pass description_event as an argument.
995
  */
996
  static Log_event* read_log_event(IO_CACHE* file,
Marc Alff's avatar
Marc Alff committed
997
                                   mysql_mutex_t* log_lock,
998 999
                                   const Format_description_log_event
                                   *description_event);
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023

  /**
    Reads an event from a binlog or relay log. Used by the dump thread
    this method reads the event into a raw buffer without parsing it.

    @Note If mutex is 0, the read will proceed without mutex.

    @Note If a log name is given than the method will check if the
    given binlog is still active.

    @param[in]  file                log file to be read
    @param[out] packet              packet to hold the event
    @param[in]  lock                the lock to be used upon read
    @param[in]  log_file_name_arg   the log's file name
    @param[out] is_binlog_active    is the current log still active

    @retval 0                   success
    @retval LOG_READ_EOF        end of file, nothing was read
    @retval LOG_READ_BOGUS      malformed event
    @retval LOG_READ_IO         io error while reading
    @retval LOG_READ_MEM        packet memory allocation failed
    @retval LOG_READ_TRUNC      only a partial event could be read
    @retval LOG_READ_TOO_LARGE  event too large
   */
1024
  static int read_log_event(IO_CACHE* file, String* packet,
1025
                            mysql_mutex_t* log_lock,
1026 1027
                            const char *log_file_name_arg= NULL,
                            bool* is_binlog_active= false);
1028
  /*
1029 1030 1031
    init_show_field_list() prepares the column names and types for the
    output of SHOW BINLOG EVENTS; it is used only by SHOW BINLOG
    EVENTS.
1032
  */
1033
  static void init_show_field_list(List<Item>* field_list);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
1034
#ifdef HAVE_REPLICATION
hf@deer.mysql.r18.ru's avatar
Merging  
hf@deer.mysql.r18.ru committed
1035
  int net_send(Protocol *protocol, const char* log_name, my_off_t pos);
1036

1037 1038 1039 1040
  /*
    pack_info() is used by SHOW BINLOG EVENTS; as print() it prepares and sends
    a string to display to the user, so it resembles print().
  */
1041

hf@deer.mysql.r18.ru's avatar
Merging  
hf@deer.mysql.r18.ru committed
1042
  virtual void pack_info(Protocol *protocol);
1043

hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
1044
#endif /* HAVE_REPLICATION */
1045 1046 1047 1048 1049
  virtual const char* get_db()
  {
    return thd ? thd->db : 0;
  }
#else
Libing Song's avatar
Libing Song committed
1050
  Log_event() : temp_buf(0), flags(0) {}
1051
    /* avoid having to link mysqlbinlog against libpthread */
1052
  static Log_event* read_log_event(IO_CACHE* file,
1053 1054
                                   const Format_description_log_event
                                   *description_event);
1055
  /* print*() functions are used by mysqlbinlog */
1056
  virtual void print(FILE* file, PRINT_EVENT_INFO* print_event_info) = 0;
1057 1058 1059 1060 1061
  void print_timestamp(IO_CACHE* file, time_t *ts = 0);
  void print_header(IO_CACHE* file, PRINT_EVENT_INFO* print_event_info,
                    bool is_more);
  void print_base64(IO_CACHE* file, PRINT_EVENT_INFO* print_event_info,
                    bool is_more);
1062
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1063

1064 1065 1066 1067
  static void *operator new(size_t size)
  {
    return (void*) my_malloc((uint)size, MYF(MY_WME|MY_FAE));
  }
1068

1069
  static void operator delete(void *ptr, size_t)
1070
  {
1071
    my_free(ptr);
1072
  }
1073

1074 1075 1076 1077
  /* Placement version of the above operators */
  static void *operator new(size_t, void* ptr) { return ptr; }
  static void operator delete(void*, void*) { }

1078
#ifdef MYSQL_SERVER
1079 1080 1081 1082 1083 1084 1085 1086
  bool write_header(IO_CACHE* file, ulong data_length);
  virtual bool write(IO_CACHE* file)
  {
    return (write_header(file, get_data_size()) ||
            write_data_header(file) ||
            write_data_body(file));
  }
  virtual bool write_data_header(IO_CACHE* file)
1087
  { return 0; }
1088
  virtual bool write_data_body(IO_CACHE* file __attribute__((unused)))
1089
  { return 0; }
1090
  inline time_t get_time()
1091 1092 1093
  {
    THD *tmp_thd;
    if (when)
1094
      return when;
1095 1096 1097 1098 1099 1100
    if (thd)
      return thd->start_time;
    if ((tmp_thd= current_thd))
      return tmp_thd->start_time;
    return my_time(0);
  }
1101
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1102
  virtual Log_event_type get_type_code() = 0;
1103
  virtual bool is_valid() const = 0;
1104 1105 1106 1107
  void set_artificial_event() { flags |= LOG_EVENT_ARTIFICIAL_F; }
  void set_relay_log_event() { flags |= LOG_EVENT_RELAY_LOG_F; }
  bool is_artificial_event() const { return flags & LOG_EVENT_ARTIFICIAL_F; }
  bool is_relay_log_event() const { return flags & LOG_EVENT_RELAY_LOG_F; }
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
  inline bool use_trans_cache() const
  { 
    return (cache_type == Log_event::EVENT_TRANSACTIONAL_CACHE);
  }
  inline void set_direct_logging()
  {
    cache_type = Log_event::EVENT_NO_CACHE;
  }
  inline bool use_direct_logging()
  {
    return (cache_type == Log_event::EVENT_NO_CACHE);
  }
1120 1121
  Log_event(const char* buf, const Format_description_log_event
            *description_event);
1122 1123 1124
  virtual ~Log_event() { free_temp_buf();}
  void register_temp_buf(char* buf) { temp_buf = buf; }
  void free_temp_buf()
1125 1126
  {
    if (temp_buf)
1127
    {
1128
      my_free(temp_buf);
1129
      temp_buf = 0;
1130
    }
1131
  }
1132 1133 1134 1135
  /*
    Get event length for simple events. For complicated events the length
    is calculated during write()
  */
1136
  virtual int get_data_size() { return 0;}
1137 1138 1139
  static Log_event* read_log_event(const char* buf, uint event_len,
				   const char **error,
                                   const Format_description_log_event
1140
                                   *description_event);
1141 1142 1143 1144 1145 1146 1147
  /**
    Returns the human readable name of the given event type.
  */
  static const char* get_type_str(Log_event_type type);
  /**
    Returns the human readable name of this event's type.
  */
1148
  const char* get_type_str();
1149

1150 1151
  /* Return start of query time or current time */

1152
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162
public:

  /**
     Apply the event to the database.

     This function represents the public interface for applying an
     event.

     @see do_apply_event
   */
rafal@quant.(none)'s avatar
rafal@quant.(none) committed
1163
  int apply_event(Relay_log_info const *rli)
1164
  {
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
    return do_apply_event(rli);
  }


  /**
     Update the relay log position.

     This function represents the public interface for "stepping over"
     the event and will update the relay log information.

     @see do_update_pos
   */
1177
  int update_pos(Relay_log_info *rli)
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
  {
    return do_update_pos(rli);
  }

  /**
     Decide if the event shall be skipped, and the reason for skipping
     it.

     @see do_shall_skip
   */
1188
  enum_skip_reason shall_skip(Relay_log_info *rli)
1189 1190 1191 1192 1193
  {
    return do_shall_skip(rli);
  }

protected:
1194

1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213
  /**
     Helper function to ignore an event w.r.t. the slave skip counter.

     This function can be used inside do_shall_skip() for functions
     that cannot end a group. If the slave skip counter is 1 when
     seeing such an event, the event shall be ignored, the counter
     left intact, and processing continue with the next event.

     A typical usage is:
     @code
     enum_skip_reason do_shall_skip(Relay_log_info *rli) {
       return continue_group(rli);
     }
     @endcode

     @return Skip reason
   */
  enum_skip_reason continue_group(Relay_log_info *rli);

1214 1215 1216 1217 1218
  /**
    Primitive to apply an event to the database.

    This is where the change to the database is made.

1219 1220 1221 1222 1223
    @note The primitive is protected instead of private, since there
    is a hierarchy of actions to be performed in some cases.

    @see Format_description_log_event::do_apply_event()

1224 1225 1226 1227 1228
    @param rli Pointer to relay log info structure

    @retval 0     Event applied successfully
    @retval errno Error code if event application failed
  */
1229
  virtual int do_apply_event(Relay_log_info const *rli)
1230 1231 1232 1233
  {
    return 0;                /* Default implementation does nothing */
  }

1234 1235

  /**
1236 1237 1238 1239 1240 1241
     Advance relay log coordinates.

     This function is called to advance the relay log coordinates to
     just after the event.  It is essential that both the relay log
     coordinate and the group log position is updated correctly, since
     this function is used also for skipping events.
1242

1243 1244 1245 1246 1247 1248 1249
     Normally, each implementation of do_update_pos() shall:

     - Update the event position to refer to the position just after
       the event.

     - Update the group log position to refer to the position just
       after the event <em>if the event is last in a group</em>
1250 1251 1252 1253

     @param rli Pointer to relay log info structure

     @retval 0     Coordinates changed successfully
1254 1255 1256
     @retval errno Error code if advancing failed (usually just
                   1). Observe that handler errors are returned by the
                   do_apply_event() function, and not by this one.
1257
   */
1258
  virtual int do_update_pos(Relay_log_info *rli);
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289


  /**
     Decide if this event shall be skipped or not and the reason for
     skipping it.

     The default implementation decide that the event shall be skipped
     if either:

     - the server id of the event is the same as the server id of the
       server and <code>rli->replicate_same_server_id</code> is true,
       or

     - if <code>rli->slave_skip_counter</code> is greater than zero.

     @see do_apply_event
     @see do_update_pos

     @retval Log_event::EVENT_SKIP_NOT
     The event shall not be skipped and should be applied.

     @retval Log_event::EVENT_SKIP_IGNORE
     The event shall be skipped by just ignoring it, i.e., the slave
     skip counter shall not be changed. This happends if, for example,
     the originating server id of the event is the same as the server
     id of the slave.

     @retval Log_event::EVENT_SKIP_COUNT
     The event shall be skipped because the slave skip counter was
     non-zero. The caller shall decrease the counter by one.
   */
1290
  virtual enum_skip_reason do_shall_skip(Relay_log_info *rli);
1291
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1292 1293
};

1294

1295
/*
1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306
   One class for each type of event.
   Two constructors for each class:
   - one to create the event for logging (when the server acts as a master),
   called after an update to the database is done,
   which accepts parameters like the query, the database, the options for LOAD
   DATA INFILE...
   - one to create the event from a packet (when the server acts as a slave),
   called before reproducing the update, which accepts parameters (like a
   buffer). Used to read from the master, from the relay log, and in
   mysqlbinlog. This constructor must be format-tolerant.
*/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1307

1308 1309 1310
/**
  @class Query_log_event
   
1311 1312
  A @c Query_log_event is created for each query that modifies the
  database, unless the query is logged row-based.
1313 1314 1315

  @section Query_log_event_binary_format Binary format

1316 1317 1318 1319
  See @ref Log_event_binary_format "Binary format for log events" for
  a general discussion and introduction to the binary format of binlog
  events.

1320 1321 1322 1323 1324 1325 1326
  The Post-Header has five components:

  <table>
  <caption>Post-Header for Query_log_event</caption>

  <tr>
    <th>Name</th>
1327
    <th>Format</th>
1328 1329 1330 1331 1332 1333
    <th>Description</th>
  </tr>

  <tr>
    <td>slave_proxy_id</td>
    <td>4 byte unsigned integer</td>
1334 1335 1336 1337 1338 1339
    <td>An integer identifying the client thread that issued the
    query.  The id is unique per server.  (Note, however, that two
    threads on different servers may have the same slave_proxy_id.)
    This is used when a client thread creates a temporary table local
    to the client.  The slave_proxy_id is used to distinguish
    temporary tables that belong to different clients.
1340 1341 1342 1343 1344
    </td>
  </tr>

  <tr>
    <td>exec_time</td>
1345 1346 1347
    <td>4 byte unsigned integer</td>
    <td>The time from when the query started to when it was logged in
    the binlog, in seconds.</td>
1348 1349 1350 1351 1352
  </tr>

  <tr>
    <td>db_len</td>
    <td>1 byte integer</td>
1353
    <td>The length of the name of the currently selected database.</td>
1354 1355 1356 1357
  </tr>

  <tr>
    <td>error_code</td>
1358
    <td>2 byte unsigned integer</td>
1359 1360
    <td>Error code generated by the master.  If the master fails, the
    slave will fail with the same error code, except for the error
1361
    codes ER_DB_CREATE_EXISTS == 1007 and ER_DB_DROP_EXISTS == 1008.
1362 1363 1364 1365 1366
    </td>
  </tr>

  <tr>
    <td>status_vars_len</td>
1367
    <td>2 byte unsigned integer</td>
1368
    <td>The length of the status_vars block of the Body, in bytes. See
1369
    @ref query_log_event_status_vars "below".
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380
    </td>
  </tr>
  </table>

  The Body has the following components:

  <table>
  <caption>Body for Query_log_event</caption>

  <tr>
    <th>Name</th>
1381
    <th>Format</th>
1382 1383 1384 1385
    <th>Description</th>
  </tr>

  <tr>
1386 1387
    <td>@anchor query_log_event_status_vars status_vars</td>
    <td>status_vars_len bytes</td>
1388 1389 1390
    <td>Zero or more status variables.  Each status variable consists
    of one byte identifying the variable stored, followed by the value
    of the variable.  The possible variables are listed separately in
1391 1392 1393
    the table @ref Table_query_log_event_status_vars "below".  MySQL
    always writes events in the order defined below; however, it is
    capable of reading them in any order.  </td>
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418
  </tr>

  <tr>
    <td>db</td>
    <td>db_len+1</td>
    <td>The currently selected database, as a null-terminated string.

    (The trailing zero is redundant since the length is already known;
    it is db_len from Post-Header.)
    </td>
  </tr>

  <tr>
    <td>query</td>
    <td>variable length string without trailing zero, extending to the
    end of the event (determined by the length field of the
    Common-Header)
    </td>
    <td>The SQL query.</td>
  </tr>
  </table>

  The following table lists the status variables that may appear in
  the status_vars field.

1419
  @anchor Table_query_log_event_status_vars
1420 1421 1422 1423 1424
  <table>
  <caption>Status variables for Query_log_event</caption>

  <tr>
    <th>Status variable</th>
1425 1426
    <th>1 byte identifier</th>
    <th>Format</th>
1427 1428 1429 1430 1431 1432 1433
    <th>Description</th>
  </tr>

  <tr>
    <td>flags2</td>
    <td>Q_FLAGS2_CODE == 0</td>
    <td>4 byte bitfield</td>
1434 1435 1436 1437 1438 1439 1440
    <td>The flags in @c thd->options, binary AND-ed with @c
    OPTIONS_WRITTEN_TO_BIN_LOG.  The @c thd->options bitfield contains
    options for "SELECT".  @c OPTIONS_WRITTEN identifies those options
    that need to be written to the binlog (not all do).  Specifically,
    @c OPTIONS_WRITTEN_TO_BIN_LOG equals (@c OPTION_AUTO_IS_NULL | @c
    OPTION_NO_FOREIGN_KEY_CHECKS | @c OPTION_RELAXED_UNIQUE_CHECKS |
    @c OPTION_NOT_AUTOCOMMIT), or 0x0c084000 in hex.
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453

    These flags correspond to the SQL variables SQL_AUTO_IS_NULL,
    FOREIGN_KEY_CHECKS, UNIQUE_CHECKS, and AUTOCOMMIT, documented in
    the "SET Syntax" section of the MySQL Manual.

    This field is always written to the binlog in version >= 5.0, and
    never written in version < 5.0.
    </td>
  </tr>

  <tr>
    <td>sql_mode</td>
    <td>Q_SQL_MODE_CODE == 1</td>
1454 1455
    <td>8 byte bitfield</td>
    <td>The @c sql_mode variable.  See the section "SQL Modes" in the
1456
    MySQL manual, and see sql_priv.h for a list of the possible
1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
    flags. Currently (2007-10-04), the following flags are available:
    <pre>
    MODE_REAL_AS_FLOAT==0x1
    MODE_PIPES_AS_CONCAT==0x2
    MODE_ANSI_QUOTES==0x4
    MODE_IGNORE_SPACE==0x8
    MODE_NOT_USED==0x10
    MODE_ONLY_FULL_GROUP_BY==0x20
    MODE_NO_UNSIGNED_SUBTRACTION==0x40
    MODE_NO_DIR_IN_CREATE==0x80
    MODE_POSTGRESQL==0x100
    MODE_ORACLE==0x200
    MODE_MSSQL==0x400
    MODE_DB2==0x800
    MODE_MAXDB==0x1000
    MODE_NO_KEY_OPTIONS==0x2000
    MODE_NO_TABLE_OPTIONS==0x4000
    MODE_NO_FIELD_OPTIONS==0x8000
    MODE_MYSQL323==0x10000
    MODE_MYSQL323==0x20000
    MODE_MYSQL40==0x40000
    MODE_ANSI==0x80000
    MODE_NO_AUTO_VALUE_ON_ZERO==0x100000
    MODE_NO_BACKSLASH_ESCAPES==0x200000
    MODE_STRICT_TRANS_TABLES==0x400000
    MODE_STRICT_ALL_TABLES==0x800000
    MODE_NO_ZERO_IN_DATE==0x1000000
    MODE_NO_ZERO_DATE==0x2000000
    MODE_INVALID_DATES==0x4000000
    MODE_ERROR_FOR_DIVISION_BY_ZERO==0x8000000
    MODE_TRADITIONAL==0x10000000
    MODE_NO_AUTO_CREATE_USER==0x20000000
    MODE_HIGH_NOT_PRECEDENCE==0x40000000
    MODE_PAD_CHAR_TO_FULL_LENGTH==0x80000000
    </pre>
    All these flags are replicated from the server.  However, all
1493 1494 1495 1496
    flags except @c MODE_NO_DIR_IN_CREATE are honored by the slave;
    the slave always preserves its old value of @c
    MODE_NO_DIR_IN_CREATE.  For a rationale, see comment in
    @c Query_log_event::do_apply_event in @c log_event.cc.
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509

    This field is always written to the binlog.
    </td>
  </tr>

  <tr>
    <td>catalog</td>
    <td>Q_CATALOG_NZ_CODE == 6</td>
    <td>Variable-length string: the length in bytes (1 byte) followed
    by the characters (at most 255 bytes)
    </td>
    <td>Stores the client's current catalog.  Every database belongs
    to a catalog, the same way that every table belongs to a
1510
    database.  Currently, there is only one catalog, "std".
1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525

    This field is written if the length of the catalog is > 0;
    otherwise it is not written.
    </td>
  </tr>

  <tr>
    <td>auto_increment</td>
    <td>Q_AUTO_INCREMENT == 3</td>
    <td>two 2 byte unsigned integers, totally 2+2=4 bytes</td>

    <td>The two variables auto_increment_increment and
    auto_increment_offset, in that order.  For more information, see
    "System variables" in the MySQL manual.

1526
    This field is written if auto_increment > 1.  Otherwise, it is not
1527 1528 1529 1530 1531 1532 1533
    written.
    </td>
  </tr>

  <tr>
    <td>charset</td>
    <td>Q_CHARSET_CODE == 4</td>
1534
    <td>three 2 byte unsigned integers, totally 2+2+2=6 bytes</td>
1535 1536
    <td>The three variables character_set_client,
    collation_connection, and collation_server, in that order.
1537
    character_set_client is a code identifying the character set and
1538
    collation used by the client to encode the query.
1539
    collation_connection identifies the character set and collation
1540
    that the master converts the query to when it receives it; this is
1541
    useful when comparing literal strings.  collation_server is the
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552
    default character set and collation used when a new database is
    created.

    See also "Connection Character Sets and Collations" in the MySQL
    5.1 manual.

    All three variables are codes identifying a (character set,
    collation) pair.  To see which codes map to which pairs, run the
    query "SELECT id, character_set_name, collation_name FROM
    COLLATIONS".

1553
    Cf. Q_CHARSET_DATABASE_CODE below.
1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578

    This field is always written.
    </td>
  </tr>

  <tr>
    <td>time_zone</td>
    <td>Q_TIME_ZONE_CODE == 5</td>
    <td>Variable-length string: the length in bytes (1 byte) followed
    by the characters (at most 255 bytes).
    <td>The time_zone of the master.

    See also "System Variables" and "MySQL Server Time Zone Support"
    in the MySQL manual.

    This field is written if the length of the time zone string is >
    0; otherwise, it is not written.
    </td>
  </tr>

  <tr>
    <td>lc_time_names_number</td>
    <td>Q_LC_TIME_NAMES_CODE == 7</td>
    <td>2 byte integer</td>
    <td>A code identifying a table of month and day names.  The
1579
    mapping from codes to languages is defined in @c sql_locale.cc.
1580

1581
    This field is written if it is not 0, i.e., if the locale is not
1582 1583 1584 1585 1586 1587
    en_US.
    </td>
  </tr>

  <tr>
    <td>charset_database_number</td>
1588
    <td>Q_CHARSET_DATABASE_CODE == 8</td>
1589 1590 1591
    <td>2 byte integer</td>

    <td>The value of the collation_database system variable (in the
1592
    source code stored in @c thd->variables.collation_database), which
1593 1594 1595
    holds the code for a (character set, collation) pair as described
    above (see Q_CHARSET_CODE).

1596 1597 1598 1599
    collation_database was used in old versions (???WHEN).  Its value
    was loaded when issuing a "use db" query and could be changed by
    issuing a "SET collation_database=xxx" query.  It used to affect
    the "LOAD DATA INFILE" and "CREATE TABLE" commands.
1600 1601 1602

    In newer versions, "CREATE TABLE" has been changed to take the
    character set from the database of the created table, rather than
1603 1604 1605 1606 1607
    the character set of the current database.  This makes a
    difference when creating a table in another database than the
    current one.  "LOAD DATA INFILE" has not yet changed to do this,
    but there are plans to eventually do it, and to make
    collation_database read-only.
1608 1609 1610 1611

    This field is written if it is not 0.
    </td>
  </tr>
1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627
  <tr>
    <td>table_map_for_update</td>
    <td>Q_TABLE_MAP_FOR_UPDATE_CODE == 9</td>
    <td>8 byte integer</td>

    <td>The value of the table map that is to be updated by the
    multi-table update query statement. Every bit of this variable
    represents a table, and is set to 1 if the corresponding table is
    to be updated by this statement.

    The value of this variable is set when executing a multi-table update
    statement and used by slave to apply filter rules without opening
    all the tables on slave. This is required because some tables may
    not exist on slave because of the filter rules.
    </td>
  </tr>
1628 1629 1630 1631
  </table>

  @subsection Query_log_event_notes_on_previous_versions Notes on Previous Versions

1632
  * Status vars were introduced in version 5.0.  To read earlier
1633 1634
  versions correctly, check the length of the Post-Header.

1635
  * The status variable Q_CATALOG_CODE == 2 existed in MySQL 5.0.x,
1636 1637 1638 1639 1640 1641
  where 0<=x<=3.  It was identical to Q_CATALOG_CODE, except that the
  string had a trailing '\0'.  The '\0' was removed in 5.0.4 since it
  was redundant (the string length is stored before the string).  The
  Q_CATALOG_CODE will never be written by a new master, but can still
  be understood by a new slave.

1642
  * See Q_CHARSET_DATABASE_CODE in the table above.
1643

1644 1645 1646
  * When adding new status vars, please don't forget to update the
  MAX_SIZE_LOG_EVENT_STATUS, and update function code_name

1647
*/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1648 1649
class Query_log_event: public Log_event
{
1650 1651
  LEX_STRING user;
  LEX_STRING host;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1652
protected:
1653
  Log_event::Byte* data_buf;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1654 1655
public:
  const char* query;
1656
  const char* catalog;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1657
  const char* db;
1658 1659 1660 1661 1662 1663
  /*
    If we already know the length of the query string
    we pass it with q_len, so we would not have to call strlen()
    otherwise, set it to 0, in which case, we compute it with strlen()
  */
  uint32 q_len;
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
1664
  uint32 db_len;
1665
  uint16 error_code;
1666
  ulong thread_id;
1667
  /*
1668 1669
    For events created by Query_log_event::do_apply_event (and
    Load_log_event::do_apply_event()) we need the *original* thread
1670 1671
    id, to be able to log the event with the original (=master's)
    thread id (fix for BUG#1686).
guilhem@mysql.com's avatar
guilhem@mysql.com committed
1672 1673
  */
  ulong slave_proxy_id;
1674 1675

  /*
1676 1677
    Binlog format 3 and 4 start to differ (as far as class members are
    concerned) from here.
1678
  */
1679

1680
  uint catalog_len;			// <= 255 char; 0 means uninited
1681

1682 1683
  /*
    We want to be able to store a variable number of N-bit status vars:
1684 1685 1686
    (generally N=32; but N=64 for SQL_MODE) a user may want to log the number
    of affected rows (for debugging) while another does not want to lose 4
    bytes in this.
1687 1688 1689 1690 1691
    The storage on disk is the following:
    status_vars_len is part of the post-header,
    status_vars are in the variable-length part, after the post-header, before
    the db & query.
    status_vars on disk is a sequence of pairs (code, value) where 'code' means
1692 1693
    'sql_mode', 'affected' etc. Sometimes 'value' must be a short string, so
    its first byte is its length. For now the order of status vars is:
1694
    flags2 - sql_mode - catalog - autoinc - charset
1695 1696 1697 1698 1699 1700 1701 1702
    We should add the same thing to Load_log_event, but in fact
    LOAD DATA INFILE is going to be logged with a new type of event (logging of
    the plain text query), so Load_log_event would be frozen, so no need. The
    new way of logging LOAD DATA INFILE would use a derived class of
    Query_log_event, so automatically benefit from the work already done for
    status variables in Query_log_event.
 */
  uint16 status_vars_len;
1703

1704 1705 1706
  /*
    'flags2' is a second set of flags (on top of those in Log_event), for
    session variables. These are thd->options which is & against a mask
1707
    (OPTIONS_WRITTEN_TO_BIN_LOG).
1708 1709 1710 1711 1712
    flags2_inited helps make a difference between flags2==0 (3.23 or 4.x
    master, we don't know flags2, so use the slave server's global options) and
    flags2==0 (5.0 master, we know this has a meaning of flags all down which
    must influence the query).
  */
1713
  bool flags2_inited;
1714
  bool sql_mode_inited;
1715
  bool charset_inited;
1716 1717

  uint32 flags2;
1718
  /* In connections sql_mode is 32 bits now but will be 64 bits soon */
monty@mysql.com's avatar
monty@mysql.com committed
1719
  ulong sql_mode;
1720
  ulong auto_increment_increment, auto_increment_offset;
1721
  char charset[6];
1722 1723
  uint time_zone_len; /* 0 means uninited */
  const char *time_zone_str;
1724
  uint lc_time_names_number; /* 0 means en_US */
1725
  uint charset_database_number;
1726 1727 1728 1729 1730
  /*
    map for tables that will be updated for a multi-table update query
    statement, for other query statements, this will be zero.
  */
  ulonglong table_map_for_update;
1731 1732 1733 1734 1735 1736
  /*
    Holds the original length of a Query_log_event that comes from a
    master of version < 5.0 (i.e., binlog_version < 4). When the IO
    thread writes the relay log, it augments the Query_log_event with a
    Q_MASTER_DATA_WRITTEN_CODE status_var that holds the original event
    length. This field is initialized to non-zero in the SQL thread when
Andrei Elkin's avatar
Andrei Elkin committed
1737 1738
    it reads this augmented event. SQL thread does not write 
    Q_MASTER_DATA_WRITTEN_CODE to the slave's server binlog.
1739 1740
  */
  uint32 master_data_written;
1741

1742
#ifdef MYSQL_SERVER
1743

1744
  Query_log_event(THD* thd_arg, const char* query_arg, ulong query_length,
1745
                  bool using_trans, bool direct, bool suppress_use, int error);
1746
  const char* get_db() { return db; }
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
1747
#ifdef HAVE_REPLICATION
1748
  void pack_info(Protocol* protocol);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
1749
#endif /* HAVE_REPLICATION */
1750
#else
1751
  void print_query_header(IO_CACHE* file, PRINT_EVENT_INFO* print_event_info);
1752
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1753 1754
#endif

1755
  Query_log_event();
1756
  Query_log_event(const char* buf, uint event_len,
1757 1758
                  const Format_description_log_event *description_event,
                  Log_event_type event_type);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1759 1760 1761
  ~Query_log_event()
  {
    if (data_buf)
1762
      my_free(data_buf);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1763 1764
  }
  Log_event_type get_type_code() { return QUERY_EVENT; }
1765
#ifdef MYSQL_SERVER
1766
  bool write(IO_CACHE* file);
1767 1768
  virtual bool write_post_header_for_derived(IO_CACHE* file) { return FALSE; }
#endif
1769
  bool is_valid() const { return query != 0; }
1770 1771 1772 1773 1774 1775 1776

  /*
    Returns number of bytes additionaly written to post header by derived
    events (so far it is only Execute_load_query event).
  */
  virtual ulong get_post_header_size_for_derived() { return 0; }
  /* Writes derived event-specific part of post header. */
1777 1778

public:        /* !!! Public in this patch to allow old usage */
1779
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
1780
  virtual enum_skip_reason do_shall_skip(Relay_log_info *rli);
1781 1782
  virtual int do_apply_event(Relay_log_info const *rli);
  virtual int do_update_pos(Relay_log_info *rli);
1783

1784
  int do_apply_event(Relay_log_info const *rli,
1785 1786 1787
                       const char *query_arg,
                       uint32 q_len_arg);
#endif /* HAVE_REPLICATION */
1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809
  /*
    If true, the event always be applied by slave SQL thread or be printed by
    mysqlbinlog
   */
  bool is_trans_keyword()
  {
    /*
      Before the patch for bug#50407, The 'SAVEPOINT and ROLLBACK TO'
      queries input by user was written into log events directly.
      So the keywords can be written in both upper case and lower case
      together, strncasecmp is used to check both cases. they also could be
      binlogged with comments in the front of these keywords. for examples:
        / * bla bla * / SAVEPOINT a;
        / * bla bla * / ROLLBACK TO a;
      but we don't handle these cases and after the patch, both quiries are
      binlogged in upper case with no comments.
     */
    return !strncmp(query, "BEGIN", q_len) ||
      !strncmp(query, "COMMIT", q_len) ||
      !strncasecmp(query, "SAVEPOINT", 9) ||
      !strncasecmp(query, "ROLLBACK", 8);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1810 1811
};

1812

hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
1813
#ifdef HAVE_REPLICATION
1814

1815 1816
/**
  @class Slave_log_event
1817

1818
  Note that this class is currently not used at all; no code writes a
1819
  @c Slave_log_event (though some code in @c repl_failsafe.cc reads @c
1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832
  Slave_log_event).  So it's not a problem if this code is not
  maintained.

  @section Slave_log_event_binary_format Binary Format

  This event type has no Post-Header. The Body has the following
  four components.

  <table>
  <caption>Body for Slave_log_event</caption>

  <tr>
    <th>Name</th>
1833
    <th>Format</th>
1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862
    <th>Description</th>
  </tr>

  <tr>
    <td>master_pos</td>
    <td>8 byte integer</td>
    <td>???TODO
    </td>
  </tr>

  <tr>
    <td>master_port</td>
    <td>2 byte integer</td>
    <td>???TODO</td>
  </tr>

  <tr>
    <td>master_host</td>
    <td>null-terminated string</td>
    <td>???TODO</td>
  </tr>

  <tr>
    <td>master_log</td>
    <td>null-terminated string</td>
    <td>???TODO</td>
  </tr>
  </table>
*/
1863 1864 1865 1866 1867 1868
class Slave_log_event: public Log_event
{
protected:
  char* mem_pool;
  void init_from_mem_pool(int data_size);
public:
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1869
  my_off_t master_pos;
1870 1871
  char* master_host;
  char* master_log;
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1872
  int master_host_len;
1873
  int master_log_len;
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1874
  uint16 master_port;
1875

1876
#ifdef MYSQL_SERVER
1877
  Slave_log_event(THD* thd_arg, Relay_log_info* rli);
1878
  void pack_info(Protocol* protocol);
1879
#else
1880
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
1881
#endif
1882

1883 1884 1885
  Slave_log_event(const char* buf,
                  uint event_len,
                  const Format_description_log_event *description_event);
1886 1887
  ~Slave_log_event();
  int get_data_size();
1888
  bool is_valid() const { return master_host != 0; }
1889
  Log_event_type get_type_code() { return SLAVE_EVENT; }
1890
#ifdef MYSQL_SERVER
1891
  bool write(IO_CACHE* file);
1892
#endif
1893 1894

private:
1895
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
1896
  virtual int do_apply_event(Relay_log_info const* rli);
1897
#endif
1898 1899
};

hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
1900
#endif /* HAVE_REPLICATION */
1901

1902

1903 1904 1905 1906 1907 1908 1909 1910
/**
  @class Load_log_event

  This log event corresponds to a "LOAD DATA INFILE" SQL query on the
  following form:

  @verbatim
   (1)    USE db;
1911
   (2)    LOAD DATA [CONCURRENT] [LOCAL] INFILE 'file_name'
1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934
   (3)    [REPLACE | IGNORE]
   (4)    INTO TABLE 'table_name'
   (5)    [FIELDS
   (6)      [TERMINATED BY 'field_term']
   (7)      [[OPTIONALLY] ENCLOSED BY 'enclosed']
   (8)      [ESCAPED BY 'escaped']
   (9)    ]
  (10)    [LINES
  (11)      [TERMINATED BY 'line_term']
  (12)      [LINES STARTING BY 'line_start']
  (13)    ]
  (14)    [IGNORE skip_lines LINES]
  (15)    (field_1, field_2, ..., field_n)@endverbatim

  @section Load_log_event_binary_format Binary Format

  The Post-Header consists of the following six components.

  <table>
  <caption>Post-Header for Load_log_event</caption>

  <tr>
    <th>Name</th>
1935
    <th>Format</th>
1936 1937 1938 1939 1940 1941
    <th>Description</th>
  </tr>

  <tr>
    <td>slave_proxy_id</td>
    <td>4 byte unsigned integer</td>
1942 1943 1944 1945 1946 1947
    <td>An integer identifying the client thread that issued the
    query.  The id is unique per server.  (Note, however, that two
    threads on different servers may have the same slave_proxy_id.)
    This is used when a client thread creates a temporary table local
    to the client.  The slave_proxy_id is used to distinguish
    temporary tables that belong to different clients.
1948 1949 1950 1951 1952 1953
    </td>
  </tr>

  <tr>
    <td>exec_time</td>
    <td>4 byte unsigned integer</td>
1954 1955
    <td>The time from when the query started to when it was logged in
    the binlog, in seconds.</td>
1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991
  </tr>

  <tr>
    <td>skip_lines</td>
    <td>4 byte unsigned integer</td>
    <td>The number on line (14) above, if present, or 0 if line (14)
    is left out.
    </td>
  </tr>

  <tr>
    <td>table_name_len</td>
    <td>1 byte unsigned integer</td>
    <td>The length of 'table_name' on line (4) above.</td>
  </tr>

  <tr>
    <td>db_len</td>
    <td>1 byte unsigned integer</td>
    <td>The length of 'db' on line (1) above.</td>
  </tr>

  <tr>
    <td>num_fields</td>
    <td>4 byte unsigned integer</td>
    <td>The number n of fields on line (15) above.</td>
  </tr>
  </table>    

  The Body contains the following components.

  <table>
  <caption>Body of Load_log_event</caption>

  <tr>
    <th>Name</th>
1992
    <th>Format</th>
1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031
    <th>Description</th>
  </tr>

  <tr>
    <td>sql_ex</td>
    <td>variable length</td>

    <td>Describes the part of the query on lines (3) and
    (5)&ndash;(13) above.  More precisely, it stores the five strings
    (on lines) field_term (6), enclosed (7), escaped (8), line_term
    (11), and line_start (12); as well as a bitfield indicating the
    presence of the keywords REPLACE (3), IGNORE (3), and OPTIONALLY
    (7).

    The data is stored in one of two formats, called "old" and "new".
    The type field of Common-Header determines which of these two
    formats is used: type LOAD_EVENT means that the old format is
    used, and type NEW_LOAD_EVENT means that the new format is used.
    When MySQL writes a Load_log_event, it uses the new format if at
    least one of the five strings is two or more bytes long.
    Otherwise (i.e., if all strings are 0 or 1 bytes long), the old
    format is used.

    The new and old format differ in the way the five strings are
    stored.

    <ul>
    <li> In the new format, the strings are stored in the order
    field_term, enclosed, escaped, line_term, line_start. Each string
    consists of a length (1 byte), followed by a sequence of
    characters (0-255 bytes).  Finally, a boolean combination of the
    following flags is stored in 1 byte: REPLACE_FLAG==0x4,
    IGNORE_FLAG==0x8, and OPT_ENCLOSED_FLAG==0x2.  If a flag is set,
    it indicates the presence of the corresponding keyword in the SQL
    query.

    <li> In the old format, we know that each string has length 0 or
    1.  Therefore, only the first byte of each string is stored.  The
    order of the strings is the same as in the new format.  These five
2032
    bytes are followed by the same 1 byte bitfield as in the new
2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049
    format.  Finally, a 1 byte bitfield called empty_flags is stored.
    The low 5 bits of empty_flags indicate which of the five strings
    have length 0.  For each of the following flags that is set, the
    corresponding string has length 0; for the flags that are not set,
    the string has length 1: FIELD_TERM_EMPTY==0x1,
    ENCLOSED_EMPTY==0x2, LINE_TERM_EMPTY==0x4, LINE_START_EMPTY==0x8,
    ESCAPED_EMPTY==0x10.
    </ul>

    Thus, the size of the new format is 6 bytes + the sum of the sizes
    of the five strings.  The size of the old format is always 7
    bytes.
    </td>
  </tr>

  <tr>
    <td>field_lens</td>
2050
    <td>num_fields 1 byte unsigned integers</td>
2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097
    <td>An array of num_fields integers representing the length of
    each field in the query.  (num_fields is from the Post-Header).
    </td>
  </tr>

  <tr>
    <td>fields</td>
    <td>num_fields null-terminated strings</td>
    <td>An array of num_fields null-terminated strings, each
    representing a field in the query.  (The trailing zero is
    redundant, since the length are stored in the num_fields array.)
    The total length of all strings equals to the sum of all
    field_lens, plus num_fields bytes for all the trailing zeros.
    </td>
  </tr>

  <tr>
    <td>table_name</td>
    <td>null-terminated string of length table_len+1 bytes</td>
    <td>The 'table_name' from the query, as a null-terminated string.
    (The trailing zero is actually redundant since the table_len is
    known from Post-Header.)
    </td>
  </tr>

  <tr>
    <td>db</td>
    <td>null-terminated string of length db_len+1 bytes</td>
    <td>The 'db' from the query, as a null-terminated string.
    (The trailing zero is actually redundant since the db_len is known
    from Post-Header.)
    </td>
  </tr>

  <tr>
    <td>file_name</td>
    <td>variable length string without trailing zero, extending to the
    end of the event (determined by the length field of the
    Common-Header)
    </td>
    <td>The 'file_name' from the query.
    </td>
  </tr>

  </table>

  @subsection Load_log_event_notes_on_previous_versions Notes on Previous Versions
2098

2099 2100
  This event type is understood by current versions, but only
  generated by MySQL 3.23 and earlier.
2101
*/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2102 2103
class Load_log_event: public Log_event
{
2104
private:
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2105
protected:
2106
  int copy_log_event(const char *buf, ulong event_len,
2107 2108
                     int body_offset,
                     const Format_description_log_event* description_event);
2109

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2110
public:
2111 2112 2113
  uint get_query_buffer_length();
  void print_query(bool need_db, const char *cs, char *buf, char **end,
                   char **fn_start, char **fn_end);
2114
  ulong thread_id;
guilhem@mysql.com's avatar
guilhem@mysql.com committed
2115
  ulong slave_proxy_id;
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
2116
  uint32 table_name_len;
2117 2118 2119 2120 2121
  /*
    No need to have a catalog, as these events can only come from 4.x.
    TODO: this may become false if Dmitri pushes his new LOAD DATA INFILE in
    5.0 only (not in 4.x).
  */
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
2122 2123 2124
  uint32 db_len;
  uint32 fname_len;
  uint32 num_fields;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2125 2126
  const char* fields;
  const uchar* field_lens;
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
2127
  uint32 field_block_len;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2128 2129 2130 2131

  const char* table_name;
  const char* db;
  const char* fname;
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
2132
  uint32 skip_lines;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2133
  sql_ex_info sql_ex;
2134
  bool local_fname;
2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145
  /**
    Indicates that this event corresponds to LOAD DATA CONCURRENT,

    @note Since Load_log_event event coming from the binary log
          lacks information whether LOAD DATA on master was concurrent
          or not, this flag is only set to TRUE for an auxiliary
          Load_log_event object which is used in mysql_load() to
          re-construct LOAD DATA statement from function parameters,
          for logging.
  */
  bool is_concurrent;
2146

2147 2148
  /* fname doesn't point to memory inside Log_event::temp_buf  */
  void set_fname_outside_temp_buf(const char *afname, uint alen)
2149 2150 2151
  {
    fname= afname;
    fname_len= alen;
monty@mishka.local's avatar
monty@mishka.local committed
2152
    local_fname= TRUE;
2153
  }
2154 2155
  /* fname doesn't point to memory inside Log_event::temp_buf  */
  int  check_fname_outside_temp_buf()
2156
  {
2157
    return local_fname;
2158
  }
2159

2160
#ifdef MYSQL_SERVER
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2161 2162
  String field_lens_buf;
  String fields_buf;
2163

2164
  Load_log_event(THD* thd, sql_exchange* ex, const char* db_arg,
2165
		 const char* table_name_arg,
2166 2167 2168
		 List<Item>& fields_arg,
                 bool is_concurrent_arg,
                 enum enum_duplicates handle_dup, bool ignore,
2169
		 bool using_trans);
2170 2171
  void set_fields(const char* db, List<Item> &fields_arg,
                  Name_resolution_context *context);
2172
  const char* get_db() { return db; }
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2173
#ifdef HAVE_REPLICATION
hf@deer.mysql.r18.ru's avatar
Merging  
hf@deer.mysql.r18.ru committed
2174
  void pack_info(Protocol* protocol);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2175
#endif /* HAVE_REPLICATION */
2176
#else
2177
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
2178
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info, bool commented);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2179 2180
#endif

2181 2182 2183 2184 2185 2186 2187
  /*
    Note that for all the events related to LOAD DATA (Load_log_event,
    Create_file/Append/Exec/Delete, we pass description_event; however as
    logging of LOAD DATA is going to be changed in 4.1 or 5.0, this is only used
    for the common_header_len (post_header_len will not be changed).
  */
  Load_log_event(const char* buf, uint event_len,
2188
                 const Format_description_log_event* description_event);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2189
  ~Load_log_event()
2190
  {}
2191 2192 2193 2194
  Log_event_type get_type_code()
  {
    return sql_ex.new_format() ? NEW_LOAD_EVENT: LOAD_EVENT;
  }
2195
#ifdef MYSQL_SERVER
2196 2197
  bool write_data_header(IO_CACHE* file);
  bool write_data_body(IO_CACHE* file);
2198
#endif
2199
  bool is_valid() const { return table_name != 0; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2200 2201
  int get_data_size()
  {
2202 2203
    return (table_name_len + db_len + 2 + fname_len
	    + LOAD_HEADER_LEN
2204
	    + sql_ex.data_size() + field_block_len + num_fields);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2205
  }
2206 2207

public:        /* !!! Public in this patch to allow old usage */
2208
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2209
  virtual int do_apply_event(Relay_log_info const* rli)
2210
  {
2211
    return do_apply_event(thd->slave_net,rli,0);
2212 2213
  }

2214
  int do_apply_event(NET *net, Relay_log_info const *rli,
2215
                     bool use_rli_only_for_errors);
2216
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2217 2218
};

2219
extern char server_version[SERVER_VERSION_LENGTH];
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2220

2221 2222
/**
  @class Start_log_event_v3
2223

2224 2225
  Start_log_event_v3 is the Start_log_event of binlog format 3 (MySQL 3.23 and
  4.x).
2226 2227 2228 2229 2230 2231 2232

  Format_description_log_event derives from Start_log_event_v3; it is
  the Start_log_event of binlog format 4 (MySQL 5.0), that is, the
  event that describes the other events' Common-Header/Post-Header
  lengths. This event is sent by MySQL 5.0 whenever it starts sending
  a new binlog if the requested position is >4 (otherwise if ==4 the
  event will be sent naturally).
2233

2234 2235
  @section Start_log_event_v3_binary_format Binary Format
*/
2236
class Start_log_event_v3: public Log_event
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2237 2238
{
public:
2239
  /*
2240 2241 2242 2243 2244
    If this event is at the start of the first binary log since server
    startup 'created' should be the timestamp when the event (and the
    binary log) was created.  In the other case (i.e. this event is at
    the start of a binary log created by FLUSH LOGS or automatic
    rotation), 'created' should be 0.  This "trick" is used by MySQL
2245 2246
    >=4.0.14 slaves to know whether they must drop stale temporary
    tables and whether they should abort unfinished transaction.
2247 2248 2249 2250 2251 2252 2253 2254

    Note that when 'created'!=0, it is always equal to the event's
    timestamp; indeed Start_log_event is written only in log.cc where
    the first constructor below is called, in which 'created' is set
    to 'when'.  So in fact 'created' is a useless variable. When it is
    0 we can read the actual value from timestamp ('when') and when it
    is non-zero we can read the same value from timestamp
    ('when'). Conclusion:
2255 2256 2257 2258 2259
     - we use timestamp to print when the binlog was created.
     - we use 'created' only to know if this is a first binlog or not.
     In 3.23.57 we did not pay attention to this identity, so mysqlbinlog in
     3.23.57 does not print 'created the_date' if created was zero. This is now
     fixed.
2260
  */
2261
  time_t created;
2262
  uint16 binlog_version;
2263
  char server_version[ST_SERVER_VER_LEN];
2264 2265 2266 2267 2268
  /*
    We set this to 1 if we don't want to have the created time in the log,
    which is the case when we rollover to a new log.
  */
  bool dont_set_created;
2269

2270
#ifdef MYSQL_SERVER
2271
  Start_log_event_v3();
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2272
#ifdef HAVE_REPLICATION
2273
  void pack_info(Protocol* protocol);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2274
#endif /* HAVE_REPLICATION */
2275
#else
2276
  Start_log_event_v3() {}
2277
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
2278
#endif
2279

2280 2281 2282 2283
  Start_log_event_v3(const char* buf,
                     const Format_description_log_event* description_event);
  ~Start_log_event_v3() {}
  Log_event_type get_type_code() { return START_EVENT_V3;}
2284
#ifdef MYSQL_SERVER
2285
  bool write(IO_CACHE* file);
2286
#endif
2287
  bool is_valid() const { return 1; }
2288 2289
  int get_data_size()
  {
2290 2291
    return START_V3_HEADER_LEN; //no variable-sized part
  }
2292

2293
protected:
2294
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2295 2296
  virtual int do_apply_event(Relay_log_info const *rli);
  virtual enum_skip_reason do_shall_skip(Relay_log_info*)
2297 2298 2299 2300 2301 2302 2303 2304 2305 2306
  {
    /*
      Events from ourself should be skipped, but they should not
      decrease the slave skip counter.
     */
    if (this->server_id == ::server_id)
      return Log_event::EVENT_SKIP_IGNORE;
    else
      return Log_event::EVENT_SKIP_NOT;
  }
2307
#endif
2308 2309
};

2310

2311 2312 2313 2314 2315 2316 2317 2318
/**
  @class Format_description_log_event

  For binlog version 4.
  This event is saved by threads which read it, as they need it for future
  use (to decode the ordinary events).

  @section Format_description_log_event_binary_format Binary Format
2319 2320 2321 2322 2323
*/

class Format_description_log_event: public Start_log_event_v3
{
public:
2324
  /*
2325 2326 2327 2328 2329 2330 2331 2332 2333
     The size of the fixed header which _all_ events have
     (for binlogs written by this version, this is equal to
     LOG_EVENT_HEADER_LEN), except FORMAT_DESCRIPTION_EVENT and ROTATE_EVENT
     (those have a header of size LOG_EVENT_MINIMAL_HEADER_LEN).
  */
  uint8 common_header_len;
  uint8 number_of_event_types;
  /* The list of post-headers' lengthes */
  uint8 *post_header_len;
guilhem@gbichot3.local's avatar
guilhem@gbichot3.local committed
2334
  uchar server_version_split[3];
2335
  const uint8 *event_type_permutation;
2336 2337 2338

  Format_description_log_event(uint8 binlog_ver, const char* server_ver=0);
  Format_description_log_event(const char* buf, uint event_len,
2339 2340
                               const Format_description_log_event
                               *description_event);
2341 2342
  ~Format_description_log_event()
  {
2343
    my_free(post_header_len);
2344
  }
2345
  Log_event_type get_type_code() { return FORMAT_DESCRIPTION_EVENT;}
2346
#ifdef MYSQL_SERVER
2347
  bool write(IO_CACHE* file);
2348
#endif
Libing Song's avatar
Libing Song committed
2349
  bool header_is_valid() const
2350
  {
2351 2352 2353
    return ((common_header_len >= ((binlog_version==1) ? OLD_HEADER_LEN :
                                   LOG_EVENT_MINIMAL_HEADER_LEN)) &&
            (post_header_len != NULL));
2354
  }
Libing Song's avatar
Libing Song committed
2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368

  bool version_is_valid() const
  {
    /* It is invalid only when all version numbers are 0 */
    return !(server_version_split[0] == 0 &&
             server_version_split[1] == 0 &&
             server_version_split[2] == 0);
  }

  bool is_valid() const
  {
    return header_is_valid() && version_is_valid();
  }

2369 2370 2371 2372 2373 2374 2375 2376
  int get_data_size()
  {
    /*
      The vector of post-header lengths is considered as part of the
      post-header, because in a given version it never changes (contrary to the
      query in a Query_log_event).
    */
    return FORMAT_DESCRIPTION_HEADER_LEN;
2377
  }
2378

guilhem@gbichot3.local's avatar
guilhem@gbichot3.local committed
2379
  void calc_server_version_split();
2380

2381
protected:
2382
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2383 2384 2385
  virtual int do_apply_event(Relay_log_info const *rli);
  virtual int do_update_pos(Relay_log_info *rli);
  virtual enum_skip_reason do_shall_skip(Relay_log_info *rli);
2386
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2387 2388
};

2389

2390 2391
/**
  @class Intvar_log_event
2392

2393 2394 2395
  An Intvar_log_event will be created just before a Query_log_event,
  if the query uses one of the variables LAST_INSERT_ID or INSERT_ID.
  Each Intvar_log_event holds the value of one of these variables.
2396

2397
  @section Intvar_log_event_binary_format Binary Format
2398

2399 2400
  The Post-Header for this event type is empty.  The Body has two
  components:
2401 2402

  <table>
2403
  <caption>Body for Intvar_log_event</caption>
2404 2405 2406

  <tr>
    <th>Name</th>
2407
    <th>Format</th>
2408 2409 2410 2411
    <th>Description</th>
  </tr>

  <tr>
2412
    <td>type</td>
2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427
    <td>1 byte enumeration</td>
    <td>One byte identifying the type of variable stored.  Currently,
    two identifiers are supported:  LAST_INSERT_ID_EVENT==1 and
    INSERT_ID_EVENT==2.
    </td>
  </tr>

  <tr>
    <td>value</td>
    <td>8 byte unsigned integer</td>
    <td>The value of the variable.</td>
  </tr>

  </table>
*/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2428 2429 2430 2431 2432
class Intvar_log_event: public Log_event
{
public:
  ulonglong val;
  uchar type;
2433

2434
#ifdef MYSQL_SERVER
2435
  Intvar_log_event(THD* thd_arg,uchar type_arg, ulonglong val_arg)
2436
    :Log_event(thd_arg,0,0),val(val_arg),type(type_arg)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2437
  {}
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2438
#ifdef HAVE_REPLICATION
2439
  void pack_info(Protocol* protocol);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2440
#endif /* HAVE_REPLICATION */
2441
#else
2442
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
2443
#endif
2444

2445 2446
  Intvar_log_event(const char* buf,
                   const Format_description_log_event *description_event);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2447 2448
  ~Intvar_log_event() {}
  Log_event_type get_type_code() { return INTVAR_EVENT;}
2449
  const char* get_var_type_name();
2450
  int get_data_size() { return  9; /* sizeof(type) + sizeof(val) */;}
2451
#ifdef MYSQL_SERVER
2452
  bool write(IO_CACHE* file);
2453
#endif
2454
  bool is_valid() const { return 1; }
2455 2456

private:
2457
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2458 2459 2460
  virtual int do_apply_event(Relay_log_info const *rli);
  virtual int do_update_pos(Relay_log_info *rli);
  virtual enum_skip_reason do_shall_skip(Relay_log_info *rli);
2461
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2462 2463
};

2464

2465 2466
/**
  @class Rand_log_event
2467

2468
  Logs random seed used by the next RAND(), and by PASSWORD() in 4.1.0.
2469 2470 2471
  4.1.1 does not need it (it's repeatable again) so this event needn't be
  written in 4.1.1 for PASSWORD() (but the fact that it is written is just a
  waste, it does not cause bugs).
2472

2473 2474 2475
  The state of the random number generation consists of 128 bits,
  which are stored internally as two 64-bit numbers.

2476
  @section Rand_log_event_binary_format Binary Format  
2477 2478 2479

  The Post-Header for this event type is empty.  The Body has two
  components:
2480

2481
  <table>
2482
  <caption>Body for Rand_log_event</caption>
2483

2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501
  <tr>
    <th>Name</th>
    <th>Format</th>
    <th>Description</th>
  </tr>

  <tr>
    <td>seed1</td>
    <td>8 byte unsigned integer</td>
    <td>64 bit random seed1.</td>
  </tr>

  <tr>
    <td>seed2</td>
    <td>8 byte unsigned integer</td>
    <td>64 bit random seed2.</td>
  </tr>
  </table>
2502
*/
2503

nick@mysql.com's avatar
nick@mysql.com committed
2504 2505 2506 2507 2508 2509
class Rand_log_event: public Log_event
{
 public:
  ulonglong seed1;
  ulonglong seed2;

2510
#ifdef MYSQL_SERVER
nick@mysql.com's avatar
nick@mysql.com committed
2511
  Rand_log_event(THD* thd_arg, ulonglong seed1_arg, ulonglong seed2_arg)
2512
    :Log_event(thd_arg,0,0),seed1(seed1_arg),seed2(seed2_arg)
nick@mysql.com's avatar
nick@mysql.com committed
2513
  {}
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2514
#ifdef HAVE_REPLICATION
2515
  void pack_info(Protocol* protocol);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2516
#endif /* HAVE_REPLICATION */
nick@mysql.com's avatar
nick@mysql.com committed
2517
#else
2518
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
nick@mysql.com's avatar
nick@mysql.com committed
2519 2520
#endif

2521 2522
  Rand_log_event(const char* buf,
                 const Format_description_log_event *description_event);
nick@mysql.com's avatar
nick@mysql.com committed
2523 2524
  ~Rand_log_event() {}
  Log_event_type get_type_code() { return RAND_EVENT;}
2525
  int get_data_size() { return 16; /* sizeof(ulonglong) * 2*/ }
2526
#ifdef MYSQL_SERVER
2527
  bool write(IO_CACHE* file);
2528
#endif
2529
  bool is_valid() const { return 1; }
2530 2531

private:
2532
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2533 2534 2535
  virtual int do_apply_event(Relay_log_info const *rli);
  virtual int do_update_pos(Relay_log_info *rli);
  virtual enum_skip_reason do_shall_skip(Relay_log_info *rli);
2536
#endif
nick@mysql.com's avatar
nick@mysql.com committed
2537 2538
};

2539 2540
/**
  @class Xid_log_event
2541 2542 2543 2544

  Logs xid of the transaction-to-be-committed in the 2pc protocol.
  Has no meaning in replication, slaves ignore it.

2545 2546
  @section Xid_log_event_binary_format Binary Format  
*/
2547
#ifdef MYSQL_CLIENT
2548
typedef ulonglong my_xid; // this line is the same as in handler.h
2549 2550 2551 2552 2553 2554 2555
#endif

class Xid_log_event: public Log_event
{
 public:
   my_xid xid;

2556
#ifdef MYSQL_SERVER
2557
  Xid_log_event(THD* thd_arg, my_xid x): Log_event(thd_arg, 0, TRUE), xid(x) {}
2558 2559 2560 2561
#ifdef HAVE_REPLICATION
  void pack_info(Protocol* protocol);
#endif /* HAVE_REPLICATION */
#else
2562
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
2563 2564
#endif

2565 2566
  Xid_log_event(const char* buf,
                const Format_description_log_event *description_event);
2567 2568 2569
  ~Xid_log_event() {}
  Log_event_type get_type_code() { return XID_EVENT;}
  int get_data_size() { return sizeof(xid); }
2570
#ifdef MYSQL_SERVER
2571
  bool write(IO_CACHE* file);
2572
#endif
2573
  bool is_valid() const { return 1; }
2574 2575

private:
2576
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2577
  virtual int do_apply_event(Relay_log_info const *rli);
2578
  enum_skip_reason do_shall_skip(Relay_log_info *rli);
2579
#endif
2580
};
2581

2582 2583
/**
  @class User_var_log_event
2584

2585 2586 2587
  Every time a query uses the value of a user variable, a User_var_log_event is
  written before the Query_log_event, to set the user variable.

2588 2589
  @section User_var_log_event_binary_format Binary Format  
*/
2590

2591 2592 2593
class User_var_log_event: public Log_event
{
public:
2594 2595 2596 2597
  enum {
    UNDEF_F= 0,
    UNSIGNED_F= 1
  };
2598 2599 2600 2601 2602 2603
  char *name;
  uint name_len;
  char *val;
  ulong val_len;
  Item_result type;
  uint charset_number;
2604
  bool is_null;
2605
  uchar flags;
2606
#ifdef MYSQL_SERVER
Andrei Elkin's avatar
Andrei Elkin committed
2607
  bool deferred;
2608 2609
  User_var_log_event(THD* thd_arg, char *name_arg, uint name_len_arg,
                     char *val_arg, ulong val_len_arg, Item_result type_arg,
2610
		     uint charset_number_arg, uchar flags_arg)
2611
    :Log_event(thd_arg,0,0), name(name_arg), name_len(name_len_arg), val(val_arg),
2612
    val_len(val_len_arg), type(type_arg), charset_number(charset_number_arg),
2613
    flags(flags_arg), deferred(false)
2614 2615 2616
    { is_null= !val; }
  void pack_info(Protocol* protocol);
#else
2617
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
2618 2619
#endif

2620
  User_var_log_event(const char* buf, uint event_len,
2621
                     const Format_description_log_event *description_event);
2622 2623
  ~User_var_log_event() {}
  Log_event_type get_type_code() { return USER_VAR_EVENT;}
2624
#ifdef MYSQL_SERVER
2625
  bool write(IO_CACHE* file);
Andrei Elkin's avatar
Andrei Elkin committed
2626 2627 2628 2629 2630 2631
  /* 
     Getter and setter for deferred User-event. 
     Returns true if the event is not applied directly 
     and which case the applier adjusts execution path.
  */
  bool is_deferred() { return deferred; }
2632
  void set_deferred() { deferred= true; }
2633
#endif
2634
  bool is_valid() const { return name != 0; }
2635 2636

private:
2637
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2638 2639 2640
  virtual int do_apply_event(Relay_log_info const *rli);
  virtual int do_update_pos(Relay_log_info *rli);
  virtual enum_skip_reason do_shall_skip(Relay_log_info *rli);
2641
#endif
2642
};
2643

2644

2645 2646
/**
  @class Stop_log_event
2647

2648
  @section Stop_log_event_binary_format Binary Format
2649

2650 2651 2652
  The Post-Header and Body for this event type are empty; it only has
  the Common-Header.
*/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2653 2654 2655
class Stop_log_event: public Log_event
{
public:
2656
#ifdef MYSQL_SERVER
2657
  Stop_log_event() :Log_event()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2658
  {}
2659
#else
2660
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
2661
#endif
2662

2663 2664
  Stop_log_event(const char* buf,
                 const Format_description_log_event *description_event):
2665
    Log_event(buf, description_event)
2666
  {}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2667 2668
  ~Stop_log_event() {}
  Log_event_type get_type_code() { return STOP_EVENT;}
2669
  bool is_valid() const { return 1; }
2670 2671

private:
2672
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2673 2674
  virtual int do_update_pos(Relay_log_info *rli);
  virtual enum_skip_reason do_shall_skip(Relay_log_info *rli)
2675 2676 2677 2678 2679 2680 2681 2682 2683 2684
  {
    /*
      Events from ourself should be skipped, but they should not
      decrease the slave skip counter.
     */
    if (this->server_id == ::server_id)
      return Log_event::EVENT_SKIP_IGNORE;
    else
      return Log_event::EVENT_SKIP_NOT;
  }
2685
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2686 2687
};

2688 2689
/**
  @class Rotate_log_event
2690

2691
  This will be deprecated when we move to using sequence ids.
2692

2693 2694 2695 2696 2697 2698 2699 2700 2701
  @section Rotate_log_event_binary_format Binary Format

  The Post-Header has one component:

  <table>
  <caption>Post-Header for Rotate_log_event</caption>

  <tr>
    <th>Name</th>
2702
    <th>Format</th>
2703 2704 2705 2706
    <th>Description</th>
  </tr>

  <tr>
2707
    <td>position</td>
2708
    <td>8 byte integer</td>
2709
    <td>The position within the binlog to rotate to.</td>
2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720
  </tr>

  </table>

  The Body has one component:

  <table>
  <caption>Body for Rotate_log_event</caption>

  <tr>
    <th>Name</th>
2721
    <th>Format</th>
2722 2723 2724 2725
    <th>Description</th>
  </tr>

  <tr>
2726
    <td>new_log</td>
2727 2728 2729 2730
    <td>variable length string without trailing zero, extending to the
    end of the event (determined by the length field of the
    Common-Header)
    </td>
2731
    <td>Name of the binlog to rotate to.</td>
2732 2733 2734 2735
  </tr>

  </table>
*/
2736

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2737 2738 2739
class Rotate_log_event: public Log_event
{
public:
2740
  enum {
2741 2742
    DUP_NAME= 2, // if constructor should dup the string argument
    RELAY_LOG=4  // rotate event for relay log
2743
  };
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2744
  const char* new_log_ident;
2745
  ulonglong pos;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
2746
  uint ident_len;
2747
  uint flags;
2748
#ifdef MYSQL_SERVER
2749
  Rotate_log_event(const char* new_log_ident_arg,
2750 2751
		   uint ident_len_arg,
		   ulonglong pos_arg, uint flags);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2752
#ifdef HAVE_REPLICATION
2753
  void pack_info(Protocol* protocol);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2754
#endif /* HAVE_REPLICATION */
2755
#else
2756
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
2757 2758
#endif

2759 2760
  Rotate_log_event(const char* buf, uint event_len,
                   const Format_description_log_event* description_event);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2761 2762
  ~Rotate_log_event()
  {
2763
    if (flags & DUP_NAME)
2764
      my_free((void*) new_log_ident);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2765 2766
  }
  Log_event_type get_type_code() { return ROTATE_EVENT;}
2767
  int get_data_size() { return  ident_len + ROTATE_HEADER_LEN;}
2768
  bool is_valid() const { return new_log_ident != 0; }
2769
#ifdef MYSQL_SERVER
2770
  bool write(IO_CACHE* file);
2771
#endif
2772 2773

private:
2774
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2775 2776
  virtual int do_update_pos(Relay_log_info *rli);
  virtual enum_skip_reason do_shall_skip(Relay_log_info *rli);
2777
#endif
2778 2779
};

2780

2781 2782
/* the classes below are for the new LOAD DATA INFILE logging */

2783 2784 2785 2786 2787
/**
  @class Create_file_log_event

  @section Create_file_log_event_binary_format Binary Format
*/
2788

2789
class Create_file_log_event: public Load_log_event
2790
{
2791
protected:
2792 2793 2794 2795 2796
  /*
    Pretend we are Load event, so we can write out just
    our Load part - used on the slave when writing event out to
    SQL_LOAD-*.info file
  */
2797
  bool fake_base;
2798
public:
2799
  uchar* block;
2800
  const char *event_buf;
2801 2802
  uint block_len;
  uint file_id;
2803
  bool inited_from_old;
2804

2805
#ifdef MYSQL_SERVER
2806
  Create_file_log_event(THD* thd, sql_exchange* ex, const char* db_arg,
2807 2808
			const char* table_name_arg,
			List<Item>& fields_arg,
2809
                        bool is_concurrent_arg,
2810
			enum enum_duplicates handle_dup, bool ignore,
2811
			uchar* block_arg, uint block_len_arg,
2812
			bool using_trans);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2813
#ifdef HAVE_REPLICATION
2814
  void pack_info(Protocol* protocol);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2815
#endif /* HAVE_REPLICATION */
2816
#else
2817
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
2818 2819
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info,
             bool enable_local);
2820 2821
#endif

2822 2823
  Create_file_log_event(const char* buf, uint event_len,
                        const Format_description_log_event* description_event);
2824 2825
  ~Create_file_log_event()
  {
2826
    my_free((void*) event_buf);
2827
  }
2828 2829

  Log_event_type get_type_code()
2830
  {
2831 2832 2833 2834 2835 2836 2837 2838
    return fake_base ? Load_log_event::get_type_code() : CREATE_FILE_EVENT;
  }
  int get_data_size()
  {
    return (fake_base ? Load_log_event::get_data_size() :
	    Load_log_event::get_data_size() +
	    4 + 1 + block_len);
  }
2839
  bool is_valid() const { return inited_from_old || block != 0; }
2840
#ifdef MYSQL_SERVER
2841 2842
  bool write_data_header(IO_CACHE* file);
  bool write_data_body(IO_CACHE* file);
2843 2844 2845 2846
  /*
    Cut out Create_file extentions and
    write it as Load event - used on the slave
  */
2847
  bool write_base(IO_CACHE* file);
2848
#endif
2849 2850

private:
2851
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2852
  virtual int do_apply_event(Relay_log_info const *rli);
2853
#endif
2854 2855
};

2856

2857 2858
/**
  @class Append_block_log_event
2859

2860 2861
  @section Append_block_log_event_binary_format Binary Format
*/
2862

2863 2864 2865
class Append_block_log_event: public Log_event
{
public:
2866
  uchar* block;
2867 2868
  uint block_len;
  uint file_id;
2869
  /*
2870 2871 2872 2873 2874 2875 2876 2877 2878
    'db' is filled when the event is created in mysql_load() (the
    event needs to have a 'db' member to be well filtered by
    binlog-*-db rules). 'db' is not written to the binlog (it's not
    used by Append_block_log_event::write()), so it can't be read in
    the Append_block_log_event(const char* buf, int event_len)
    constructor.  In other words, 'db' is used only for filtering by
    binlog-*-db rules.  Create_file_log_event is different: it's 'db'
    (which is inherited from Load_log_event) is written to the binlog
    and can be re-read.
2879 2880 2881
  */
  const char* db;

2882
#ifdef MYSQL_SERVER
2883
  Append_block_log_event(THD* thd, const char* db_arg, uchar* block_arg,
2884
			 uint block_len_arg, bool using_trans);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2885
#ifdef HAVE_REPLICATION
2886
  void pack_info(Protocol* protocol);
2887
  virtual int get_create_or_append() const;
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2888
#endif /* HAVE_REPLICATION */
2889
#else
2890
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
2891
#endif
2892 2893

  Append_block_log_event(const char* buf, uint event_len,
2894 2895
                         const Format_description_log_event
                         *description_event);
2896
  ~Append_block_log_event() {}
2897 2898
  Log_event_type get_type_code() { return APPEND_BLOCK_EVENT;}
  int get_data_size() { return  block_len + APPEND_BLOCK_HEADER_LEN ;}
2899
  bool is_valid() const { return block != 0; }
2900
#ifdef MYSQL_SERVER
2901
  bool write(IO_CACHE* file);
2902
  const char* get_db() { return db; }
2903
#endif
2904 2905

private:
2906
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2907
  virtual int do_apply_event(Relay_log_info const *rli);
2908
#endif
2909 2910
};

2911

2912 2913
/**
  @class Delete_file_log_event
2914

2915 2916
  @section Delete_file_log_event_binary_format Binary Format
*/
2917

2918 2919 2920 2921
class Delete_file_log_event: public Log_event
{
public:
  uint file_id;
2922
  const char* db; /* see comment in Append_block_log_event */
2923

2924
#ifdef MYSQL_SERVER
2925
  Delete_file_log_event(THD* thd, const char* db_arg, bool using_trans);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2926
#ifdef HAVE_REPLICATION
2927
  void pack_info(Protocol* protocol);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2928
#endif /* HAVE_REPLICATION */
2929
#else
2930
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
2931 2932
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info,
             bool enable_local);
2933 2934
#endif

2935 2936
  Delete_file_log_event(const char* buf, uint event_len,
                        const Format_description_log_event* description_event);
2937
  ~Delete_file_log_event() {}
2938 2939
  Log_event_type get_type_code() { return DELETE_FILE_EVENT;}
  int get_data_size() { return DELETE_FILE_HEADER_LEN ;}
2940
  bool is_valid() const { return file_id != 0; }
2941
#ifdef MYSQL_SERVER
2942
  bool write(IO_CACHE* file);
2943
  const char* get_db() { return db; }
2944
#endif
2945 2946

private:
2947
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2948
  virtual int do_apply_event(Relay_log_info const *rli);
2949
#endif
2950 2951
};

2952

2953 2954
/**
  @class Execute_load_log_event
2955

2956 2957
  @section Delete_file_log_event_binary_format Binary Format
*/
2958

2959 2960 2961 2962
class Execute_load_log_event: public Log_event
{
public:
  uint file_id;
2963
  const char* db; /* see comment in Append_block_log_event */
2964

2965
#ifdef MYSQL_SERVER
2966
  Execute_load_log_event(THD* thd, const char* db_arg, bool using_trans);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2967
#ifdef HAVE_REPLICATION
2968
  void pack_info(Protocol* protocol);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
2969
#endif /* HAVE_REPLICATION */
2970
#else
2971
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
2972 2973 2974
#endif

  Execute_load_log_event(const char* buf, uint event_len,
2975 2976
                         const Format_description_log_event
                         *description_event);
2977
  ~Execute_load_log_event() {}
2978 2979
  Log_event_type get_type_code() { return EXEC_LOAD_EVENT;}
  int get_data_size() { return  EXEC_LOAD_HEADER_LEN ;}
2980
  bool is_valid() const { return file_id != 0; }
2981
#ifdef MYSQL_SERVER
2982
  bool write(IO_CACHE* file);
2983
  const char* get_db() { return db; }
2984
#endif
2985 2986

private:
2987
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
2988
  virtual int do_apply_event(Relay_log_info const *rli);
2989
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2990 2991
};

2992

2993 2994
/**
  @class Begin_load_query_log_event
2995 2996 2997 2998 2999

  Event for the first block of file to be loaded, its only difference from
  Append_block event is that this event creates or truncates existing file
  before writing data.

3000 3001
  @section Begin_load_query_log_event_binary_format Binary Format
*/
3002 3003 3004
class Begin_load_query_log_event: public Append_block_log_event
{
public:
3005
#ifdef MYSQL_SERVER
3006
  Begin_load_query_log_event(THD* thd_arg, const char *db_arg,
3007
                             uchar* block_arg, uint block_len_arg,
3008 3009 3010
                             bool using_trans);
#ifdef HAVE_REPLICATION
  Begin_load_query_log_event(THD* thd);
3011
  int get_create_or_append() const;
3012 3013 3014
#endif /* HAVE_REPLICATION */
#endif
  Begin_load_query_log_event(const char* buf, uint event_len,
3015 3016
                             const Format_description_log_event
                             *description_event);
3017 3018
  ~Begin_load_query_log_event() {}
  Log_event_type get_type_code() { return BEGIN_LOAD_QUERY_EVENT; }
3019
private:
3020
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
3021 3022
  virtual enum_skip_reason do_shall_skip(Relay_log_info *rli);
#endif
3023 3024 3025 3026 3027 3028 3029 3030 3031
};


/*
  Elements of this enum describe how LOAD DATA handles duplicates.
*/
enum enum_load_dup_handling { LOAD_DUP_ERROR= 0, LOAD_DUP_IGNORE,
                              LOAD_DUP_REPLACE };

3032 3033
/**
  @class Execute_load_query_log_event
3034 3035 3036 3037 3038

  Event responsible for LOAD DATA execution, it similar to Query_log_event
  but before executing the query it substitutes original filename in LOAD DATA
  query with name of temporary file.

3039 3040
  @section Execute_load_query_log_event_binary_format Binary Format
*/
3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055
class Execute_load_query_log_event: public Query_log_event
{
public:
  uint file_id;       // file_id of temporary file
  uint fn_pos_start;  // pointer to the part of the query that should
                      // be substituted
  uint fn_pos_end;    // pointer to the end of this part of query
  /*
    We have to store type of duplicate handling explicitly, because
    for LOAD DATA it also depends on LOCAL option. And this part
    of query will be rewritten during replication so this information
    may be lost...
  */
  enum_load_dup_handling dup_handling;

3056
#ifdef MYSQL_SERVER
3057
  Execute_load_query_log_event(THD* thd, const char* query_arg,
3058 3059 3060
                               ulong query_length, uint fn_pos_start_arg,
                               uint fn_pos_end_arg,
                               enum_load_dup_handling dup_handling_arg,
3061 3062
                               bool using_trans, bool direct,
                               bool suppress_use, int errcode);
3063 3064 3065 3066
#ifdef HAVE_REPLICATION
  void pack_info(Protocol* protocol);
#endif /* HAVE_REPLICATION */
#else
3067
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
3068
  /* Prints the query as LOAD DATA LOCAL and with rewritten filename */
3069
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info,
lars@mysql.com's avatar
lars@mysql.com committed
3070
	     const char *local_fname);
3071 3072
#endif
  Execute_load_query_log_event(const char* buf, uint event_len,
3073 3074
                               const Format_description_log_event
                               *description_event);
3075 3076 3077 3078 3079 3080
  ~Execute_load_query_log_event() {}

  Log_event_type get_type_code() { return EXECUTE_LOAD_QUERY_EVENT; }
  bool is_valid() const { return Query_log_event::is_valid() && file_id != 0; }

  ulong get_post_header_size_for_derived();
3081
#ifdef MYSQL_SERVER
3082
  bool write_post_header_for_derived(IO_CACHE* file);
3083
#endif
3084 3085

private:
3086
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
3087
  virtual int do_apply_event(Relay_log_info const *rli);
3088 3089
#endif
};
3090 3091


3092
#ifdef MYSQL_CLIENT
3093 3094 3095 3096 3097
/**
  @class Unknown_log_event

  @section Unknown_log_event_binary_format Binary Format
*/
3098 3099 3100
class Unknown_log_event: public Log_event
{
public:
3101 3102 3103 3104 3105
  /*
    Even if this is an unknown event, we still pass description_event to
    Log_event's ctor, this way we can extract maximum information from the
    event's header (the unique ID for example).
  */
3106 3107
  Unknown_log_event(const char* buf,
                    const Format_description_log_event *description_event):
3108
    Log_event(buf, description_event)
3109 3110
  {}
  ~Unknown_log_event() {}
3111
  void print(FILE* file, PRINT_EVENT_INFO* print_event_info);
3112
  Log_event_type get_type_code() { return UNKNOWN_EVENT;}
3113
  bool is_valid() const { return 1; }
3114
};
3115
#endif
3116
char *str_to_hex(char *to, const char *from, uint len);
3117

3118 3119
/**
  @class Table_map_log_event
3120

3121 3122 3123 3124
  In row-based mode, every row operation event is preceded by a
  Table_map_log_event which maps a table definition to a number.  The
  table definition consists of database name, table name, and column
  definitions.
3125

3126
  @section Table_map_log_event_binary_format Binary Format
3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430

  The Post-Header has the following components:

  <table>
  <caption>Post-Header for Table_map_log_event</caption>

  <tr>
    <th>Name</th>
    <th>Format</th>
    <th>Description</th>
  </tr>

  <tr>
    <td>table_id</td>
    <td>6 bytes unsigned integer</td>
    <td>The number that identifies the table.</td>
  </tr>

  <tr>
    <td>flags</td>
    <td>2 byte bitfield</td>
    <td>Reserved for future use; currently always 0.</td>
  </tr>

  </table>

  The Body has the following components:

  <table>
  <caption>Body for Table_map_log_event</caption>

  <tr>
    <th>Name</th>
    <th>Format</th>
    <th>Description</th>
  </tr>

  <tr>
    <td>database_name</td>
    <td>one byte string length, followed by null-terminated string</td>
    <td>The name of the database in which the table resides.  The name
    is represented as a one byte unsigned integer representing the
    number of bytes in the name, followed by length bytes containing
    the database name, followed by a terminating 0 byte.  (Note the
    redundancy in the representation of the length.)  </td>
  </tr>

  <tr>
    <td>table_name</td>
    <td>one byte string length, followed by null-terminated string</td>
    <td>The name of the table, encoded the same way as the database
    name above.</td>
  </tr>

  <tr>
    <td>column_count</td>
    <td>@ref packed_integer "Packed Integer"</td>
    <td>The number of columns in the table, represented as a packed
    variable-length integer.</td>
  </tr>

  <tr>
    <td>column_type</td>
    <td>List of column_count 1 byte enumeration values</td>
    <td>The type of each column in the table, listed from left to
    right.  Each byte is mapped to a column type according to the
    enumeration type enum_field_types defined in mysql_com.h.  The
    mapping of types to numbers is listed in the table @ref
    Table_table_map_log_event_column_types "below" (along with
    description of the associated metadata field).  </td>
  </tr>

  <tr>
    <td>metadata_length</td>
    <td>@ref packed_integer "Packed Integer"</td>
    <td>The length of the following metadata block</td>
  </tr>

  <tr>
    <td>metadata</td>
    <td>list of metadata for each column</td>
    <td>For each column from left to right, a chunk of data who's
    length and semantics depends on the type of the column.  The
    length and semantics for the metadata for each column are listed
    in the table @ref Table_table_map_log_event_column_types
    "below".</td>
  </tr>

  <tr>
    <td>null_bits</td>
    <td>column_count bits, rounded up to nearest byte</td>
    <td>For each column, a bit indicating whether data in the column
    can be NULL or not.  The number of bytes needed for this is
    int((column_count+7)/8).  The flag for the first column from the
    left is in the least-significant bit of the first byte, the second
    is in the second least significant bit of the first byte, the
    ninth is in the least significant bit of the second byte, and so
    on.  </td>
  </tr>

  </table>

  The table below lists all column types, along with the numerical
  identifier for it and the size and interpretation of meta-data used
  to describe the type.

  @anchor Table_table_map_log_event_column_types
  <table>
  <caption>Table_map_log_event column types: numerical identifier and
  metadata</caption>
  <tr>
    <th>Name</th>
    <th>Identifier</th>
    <th>Size of metadata in bytes</th>
    <th>Description of metadata</th>
  </tr>

  <tr>
    <td>MYSQL_TYPE_DECIMAL</td><td>0</td>
    <td>0</td>
    <td>No column metadata.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_TINY</td><td>1</td>
    <td>0</td>
    <td>No column metadata.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_SHORT</td><td>2</td>
    <td>0</td>
    <td>No column metadata.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_LONG</td><td>3</td>
    <td>0</td>
    <td>No column metadata.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_FLOAT</td><td>4</td>
    <td>1 byte</td>
    <td>1 byte unsigned integer, representing the "pack_length", which
    is equal to sizeof(float) on the server from which the event
    originates.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_DOUBLE</td><td>5</td>
    <td>1 byte</td>
    <td>1 byte unsigned integer, representing the "pack_length", which
    is equal to sizeof(double) on the server from which the event
    originates.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_NULL</td><td>6</td>
    <td>0</td>
    <td>No column metadata.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_TIMESTAMP</td><td>7</td>
    <td>0</td>
    <td>No column metadata.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_LONGLONG</td><td>8</td>
    <td>0</td>
    <td>No column metadata.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_INT24</td><td>9</td>
    <td>0</td>
    <td>No column metadata.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_DATE</td><td>10</td>
    <td>0</td>
    <td>No column metadata.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_TIME</td><td>11</td>
    <td>0</td>
    <td>No column metadata.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_DATETIME</td><td>12</td>
    <td>0</td>
    <td>No column metadata.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_YEAR</td><td>13</td>
    <td>0</td>
    <td>No column metadata.</td>
  </tr>

  <tr>
    <td><i>MYSQL_TYPE_NEWDATE</i></td><td><i>14</i></td>
    <td>&ndash;</td>
    <td><i>This enumeration value is only used internally and cannot
    exist in a binlog.</i></td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_VARCHAR</td><td>15</td>
    <td>2 bytes</td>
    <td>2 byte unsigned integer representing the maximum length of
    the string.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_BIT</td><td>16</td>
    <td>2 bytes</td>
    <td>A 1 byte unsigned int representing the length in bits of the
    bitfield (0 to 64), followed by a 1 byte unsigned int
    representing the number of bytes occupied by the bitfield.  The
    number of bytes is either int((length+7)/8) or int(length/8).</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_NEWDECIMAL</td><td>246</td>
    <td>2 bytes</td>
    <td>A 1 byte unsigned int representing the precision, followed
    by a 1 byte unsigned int representing the number of decimals.</td>
  </tr>

  <tr>
    <td><i>MYSQL_TYPE_ENUM</i></td><td><i>247</i></td>
    <td>&ndash;</td>
    <td><i>This enumeration value is only used internally and cannot
    exist in a binlog.</i></td>
  </tr>

  <tr>
    <td><i>MYSQL_TYPE_SET</i></td><td><i>248</i></td>
    <td>&ndash;</td>
    <td><i>This enumeration value is only used internally and cannot
    exist in a binlog.</i></td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_TINY_BLOB</td><td>249</td>
    <td>&ndash;</td>
    <td><i>This enumeration value is only used internally and cannot
    exist in a binlog.</i></td>
  </tr>

  <tr>
    <td><i>MYSQL_TYPE_MEDIUM_BLOB</i></td><td><i>250</i></td>
    <td>&ndash;</td>
    <td><i>This enumeration value is only used internally and cannot
    exist in a binlog.</i></td>
  </tr>

  <tr>
    <td><i>MYSQL_TYPE_LONG_BLOB</i></td><td><i>251</i></td>
    <td>&ndash;</td>
    <td><i>This enumeration value is only used internally and cannot
    exist in a binlog.</i></td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_BLOB</td><td>252</td>
    <td>1 byte</td>
    <td>The pack length, i.e., the number of bytes needed to represent
    the length of the blob: 1, 2, 3, or 4.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_VAR_STRING</td><td>253</td>
    <td>2 bytes</td>
    <td>This is used to store both strings and enumeration values.
    The first byte is a enumeration value storing the <i>real
    type</i>, which may be either MYSQL_TYPE_VAR_STRING or
    MYSQL_TYPE_ENUM.  The second byte is a 1 byte unsigned integer
    representing the field size, i.e., the number of bytes needed to
    store the length of the string.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_STRING</td><td>254</td>
    <td>2 bytes</td>
    <td>The first byte is always MYSQL_TYPE_VAR_STRING (i.e., 253).
    The second byte is the field size, i.e., the number of bytes in
    the representation of size of the string: 3 or 4.</td>
  </tr>

  <tr>
    <td>MYSQL_TYPE_GEOMETRY</td><td>255</td>
    <td>1 byte</td>
    <td>The pack length, i.e., the number of bytes needed to represent
    the length of the geometry: 1, 2, 3, or 4.</td>
  </tr>

  </table>
3431
*/
3432 3433 3434 3435 3436 3437 3438 3439 3440
class Table_map_log_event : public Log_event
{
public:
  /* Constants */
  enum
  {
    TYPE_CODE = TABLE_MAP_EVENT
  };

3441 3442 3443
  /**
     Enumeration of the errors that can be returned.
   */
3444 3445
  enum enum_error
  {
3446 3447 3448 3449 3450 3451
    ERR_OPEN_FAILURE = -1,               /**< Failure to open table */
    ERR_OK = 0,                                 /**< No error */
    ERR_TABLE_LIMIT_EXCEEDED = 1,      /**< No more room for tables */
    ERR_OUT_OF_MEM = 2,                         /**< Out of memory */
    ERR_BAD_TABLE_DEF = 3,     /**< Table definition does not match */
    ERR_RBR_TO_SBR = 4  /**< daisy-chanining RBR to SBR not allowed */
3452 3453 3454 3455 3456 3457
  };

  enum enum_flag
  {
    /* 
       Nothing here right now, but the flags support is there in
3458 3459 3460
       preparation for changes that are coming.  Need to add a
       constant to make it compile under HP-UX: aCC does not like
       empty enumerations.
3461
    */
3462
    ENUM_FLAG_COUNT
3463 3464 3465 3466 3467 3468 3469
  };

  typedef uint16 flag_set;

  /* Special constants representing sets of flags */
  enum 
  {
3470 3471
    TM_NO_FLAGS = 0U,
    TM_BIT_LEN_EXACT_F = (1U << 0)
3472 3473 3474 3475
  };

  flag_set get_flags(flag_set flag) const { return m_flags & flag; }

3476
#ifdef MYSQL_SERVER
3477
  Table_map_log_event(THD *thd, TABLE *tbl, ulong tid, bool is_transactional);
3478 3479 3480 3481 3482 3483 3484 3485
#endif
#ifdef HAVE_REPLICATION
  Table_map_log_event(const char *buf, uint event_len, 
                      const Format_description_log_event *description_event);
#endif

  ~Table_map_log_event();

3486 3487 3488 3489
#ifdef MYSQL_CLIENT
  table_def *create_table_def()
  {
    return new table_def(m_coltype, m_colcnt, m_field_metadata,
3490
                         m_field_metadata_size, m_null_bits, m_flags);
3491
  }
3492
#endif
3493 3494 3495 3496
  ulong get_table_id() const        { return m_table_id; }
  const char *get_table_name() const { return m_tblnam; }
  const char *get_db_name() const    { return m_dbnam; }

3497
  virtual Log_event_type get_type_code() { return TABLE_MAP_EVENT; }
3498
  virtual bool is_valid() const { return m_memory != NULL; /* we check malloc */ }
3499

3500
  virtual int get_data_size() { return (uint) m_data_size; } 
3501
#ifdef MYSQL_SERVER
3502
  virtual int save_field_metadata();
3503 3504 3505 3506 3507
  virtual bool write_data_header(IO_CACHE *file);
  virtual bool write_data_body(IO_CACHE *file);
  virtual const char *get_db() { return m_dbnam; }
#endif

3508
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
3509 3510 3511 3512 3513 3514 3515 3516 3517
  virtual void pack_info(Protocol *protocol);
#endif

#ifdef MYSQL_CLIENT
  virtual void print(FILE *file, PRINT_EVENT_INFO *print_event_info);
#endif


private:
3518
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
3519 3520 3521
  virtual int do_apply_event(Relay_log_info const *rli);
  virtual int do_update_pos(Relay_log_info *rli);
  virtual enum_skip_reason do_shall_skip(Relay_log_info *rli);
3522 3523
#endif

3524
#ifdef MYSQL_SERVER
3525
  TABLE         *m_table;
3526 3527
#endif
  char const    *m_dbnam;
3528
  size_t         m_dblen;
3529
  char const    *m_tblnam;
3530
  size_t         m_tbllen;
3531
  ulong          m_colcnt;
3532
  uchar         *m_coltype;
3533

3534
  uchar         *m_memory;
3535 3536 3537
  ulong          m_table_id;
  flag_set       m_flags;

3538
  size_t         m_data_size;
3539 3540 3541

  uchar          *m_field_metadata;        // buffer for field metadata
  /*
3542
    The size of field metadata buffer set by calling save_field_metadata()
3543 3544 3545 3546
  */
  ulong          m_field_metadata_size;   
  uchar         *m_null_bits;
  uchar         *m_meta_memory;
3547 3548 3549
};


3550 3551
/**
  @class Rows_log_event
3552

3553
 Common base class for all row-containing log events.
3554 3555 3556 3557 3558 3559 3560

 RESPONSIBILITIES

   Encode the common parts of all events containing rows, which are:
   - Write data header and data body to an IO_CACHE.
   - Provide an interface for adding an individual row to the event.

3561 3562
  @section Rows_log_event_binary_format Binary Format
*/
3563

3564

3565 3566 3567
class Rows_log_event : public Log_event
{
public:
3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580
  /**
     Enumeration of the errors that can be returned.
   */
  enum enum_error
  {
    ERR_OPEN_FAILURE = -1,               /**< Failure to open table */
    ERR_OK = 0,                                 /**< No error */
    ERR_TABLE_LIMIT_EXCEEDED = 1,      /**< No more room for tables */
    ERR_OUT_OF_MEM = 2,                         /**< Out of memory */
    ERR_BAD_TABLE_DEF = 3,     /**< Table definition does not match */
    ERR_RBR_TO_SBR = 4  /**< daisy-chanining RBR to SBR not allowed */
  };

3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596
  /*
    These definitions allow you to combine the flags into an
    appropriate flag set using the normal bitwise operators.  The
    implicit conversion from an enum-constant to an integer is
    accepted by the compiler, which is then used to set the real set
    of flags.
  */
  enum enum_flag
  {
    /* Last event of a statement */
    STMT_END_F = (1U << 0),

    /* Value of the OPTION_NO_FOREIGN_KEY_CHECKS flag in thd->options */
    NO_FOREIGN_KEY_CHECKS_F = (1U << 1),

    /* Value of the OPTION_RELAXED_UNIQUE_CHECKS flag in thd->options */
3597 3598 3599 3600 3601 3602 3603
    RELAXED_UNIQUE_CHECKS_F = (1U << 2),

    /** 
      Indicates that rows in this event are complete, that is contain
      values for all columns of the table.
     */
    COMPLETE_ROWS_F = (1U << 3)
3604 3605 3606 3607 3608 3609 3610
  };

  typedef uint16 flag_set;

  /* Special constants representing sets of flags */
  enum 
  {
3611
      RLE_NO_FLAGS = 0U
3612 3613 3614 3615
  };

  virtual ~Rows_log_event();

3616 3617 3618
  void set_flags(flag_set flags_arg) { m_flags |= flags_arg; }
  void clear_flags(flag_set flags_arg) { m_flags &= ~flags_arg; }
  flag_set get_flags(flag_set flags_arg) const { return m_flags & flags_arg; }
3619

3620
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
3621 3622 3623 3624 3625 3626
  virtual void pack_info(Protocol *protocol);
#endif

#ifdef MYSQL_CLIENT
  /* not for direct call, each derived has its own ::print() */
  virtual void print(FILE *file, PRINT_EVENT_INFO *print_event_info)= 0;
3627 3628 3629 3630 3631 3632
  void print_verbose(IO_CACHE *file,
                     PRINT_EVENT_INFO *print_event_info);
  size_t print_verbose_one_row(IO_CACHE *file, table_def *td,
                               PRINT_EVENT_INFO *print_event_info,
                               MY_BITMAP *cols_bitmap,
                               const uchar *ptr, const uchar *prefix);
3633 3634
#endif

3635
#ifdef MYSQL_SERVER
3636
  int add_row_data(uchar *data, size_t length)
3637 3638 3639 3640 3641 3642
  {
    return do_add_row_data(data,length); 
  }
#endif

  /* Member functions to implement superclass interface */
3643
  virtual int get_data_size();
3644 3645

  MY_BITMAP const *get_cols() const { return &m_cols; }
3646
  size_t get_width() const          { return m_width; }
3647 3648
  ulong get_table_id() const        { return m_table_id; }

3649
#ifdef MYSQL_SERVER
3650 3651 3652 3653
  virtual bool write_data_header(IO_CACHE *file);
  virtual bool write_data_body(IO_CACHE *file);
  virtual const char *get_db() { return m_table->s->db.str; }
#endif
3654 3655 3656 3657 3658 3659
  /*
    Check that malloc() succeeded in allocating memory for the rows
    buffer and the COLS vector. Checking that an Update_rows_log_event
    is valid is done in the Update_rows_log_event::is_valid()
    function.
  */
3660 3661 3662 3663 3664
  virtual bool is_valid() const
  {
    return m_rows_buf && m_cols.bitmap;
  }

3665
  uint     m_row_count;         /* The number of rows added to the event */
3666 3667 3668 3669 3670 3671

protected:
  /* 
     The constructors are protected since you're supposed to inherit
     this class, not create instances of this class.
  */
3672
#ifdef MYSQL_SERVER
3673 3674 3675 3676 3677 3678 3679
  Rows_log_event(THD*, TABLE*, ulong table_id, 
		 MY_BITMAP const *cols, bool is_transactional);
#endif
  Rows_log_event(const char *row_data, uint event_len, 
		 Log_event_type event_type,
		 const Format_description_log_event *description_event);

3680 3681 3682 3683
#ifdef MYSQL_CLIENT
  void print_helper(FILE *, PRINT_EVENT_INFO *, char const *const name);
#endif

3684
#ifdef MYSQL_SERVER
3685
  virtual int do_add_row_data(uchar *data, size_t length);
3686 3687
#endif

3688
#ifdef MYSQL_SERVER
3689 3690 3691 3692 3693
  TABLE *m_table;		/* The table the rows belong to */
#endif
  ulong       m_table_id;	/* Table ID */
  MY_BITMAP   m_cols;		/* Bitmap denoting columns available */
  ulong       m_width;          /* The width of the columns bitmap */
3694 3695 3696 3697 3698 3699 3700 3701 3702
  /*
    Bitmap for columns available in the after image, if present. These
    fields are only available for Update_rows events. Observe that the
    width of both the before image COLS vector and the after image
    COLS vector is the same: the number of columns of the table on the
    master.
  */
  MY_BITMAP   m_cols_ai;

3703
  ulong       m_master_reclength; /* Length of record on master side */
3704

3705
  /* Bit buffers in the same memory as the class */
3706
  uint32    m_bitbuf[128/(sizeof(uint32)*8)];
3707
  uint32    m_bitbuf_ai[128/(sizeof(uint32)*8)];
3708

3709 3710 3711
  uchar    *m_rows_buf;		/* The rows in packed format */
  uchar    *m_rows_cur;		/* One-after the end of the data */
  uchar    *m_rows_end;		/* One-after the end of the allocated space */
3712 3713

  flag_set m_flags;		/* Flags for row-level events */
3714 3715 3716

  /* helper functions */

3717
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
rafal@quant.(none)'s avatar
rafal@quant.(none) committed
3718 3719 3720 3721 3722 3723
  const uchar *m_curr_row;     /* Start of the row being processed */
  const uchar *m_curr_row_end; /* One-after the end of the current row */
  uchar    *m_key;      /* Buffer to keep key value during searches */

  int find_row(const Relay_log_info *const);
  int write_row(const Relay_log_info *const, const bool);
3724 3725

  // Unpack the current row into m_table->record[0]
3726 3727
  int unpack_current_row(const Relay_log_info *const rli)
  {
3728
    DBUG_ASSERT(m_table);
3729

3730 3731
    ASSERT_OR_RETURN_ERROR(m_curr_row < m_rows_end, HA_ERR_CORRUPT_EVENT);
    int const result= ::unpack_row(rli, m_table, m_width, m_curr_row, &m_cols,
3732
                                   &m_curr_row_end, &m_master_reclength);
3733 3734
    if (m_curr_row_end > m_rows_end)
      my_error(ER_SLAVE_CORRUPT_EVENT, MYF(0));
3735 3736
    ASSERT_OR_RETURN_ERROR(m_curr_row_end <= m_rows_end, HA_ERR_CORRUPT_EVENT);
    return result;
3737 3738
  }
#endif
3739 3740 3741

private:

3742
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
3743 3744 3745
  virtual int do_apply_event(Relay_log_info const *rli);
  virtual int do_update_pos(Relay_log_info *rli);
  virtual enum_skip_reason do_shall_skip(Relay_log_info *rli);
3746

3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762
  /*
    Primitive to prepare for a sequence of row executions.

    DESCRIPTION

      Before doing a sequence of do_prepare_row() and do_exec_row()
      calls, this member function should be called to prepare for the
      entire sequence. Typically, this member function will allocate
      space for any buffers that are needed for the two member
      functions mentioned above.

    RETURN VALUE

      The member function will return 0 if all went OK, or a non-zero
      error code otherwise.
  */
3763 3764
  virtual 
  int do_before_row_operations(const Slave_reporting_capability *const log) = 0;
3765 3766 3767 3768 3769 3770 3771 3772 3773

  /*
    Primitive to clean up after a sequence of row executions.

    DESCRIPTION
    
      After doing a sequence of do_prepare_row() and do_exec_row(),
      this member function should be called to clean up and release
      any allocated buffers.
3774 3775 3776 3777
      
      The error argument, if non-zero, indicates an error which happened during
      row processing before this function was called. In this case, even if 
      function is successful, it should return the error code given in the argument.
3778
  */
3779 3780 3781
  virtual 
  int do_after_row_operations(const Slave_reporting_capability *const log,
                              int error) = 0;
3782 3783 3784 3785 3786 3787

  /*
    Primitive to do the actual execution necessary for a row.

    DESCRIPTION
      The member function will do the actual execution needed to handle a row.
3788 3789 3790
      The row is located at m_curr_row. When the function returns, 
      m_curr_row_end should point at the next row (one byte after the end
      of the current row).    
3791 3792 3793 3794 3795

    RETURN VALUE
      0 if execution succeeded, 1 if execution failed.
      
  */
rafal@quant.(none)'s avatar
rafal@quant.(none) committed
3796
  virtual int do_exec_row(const Relay_log_info *const rli) = 0;
3797
#endif /* defined(MYSQL_SERVER) && defined(HAVE_REPLICATION) */
3798

3799 3800
  friend class Old_rows_log_event;
};
3801

3802 3803
/**
  @class Write_rows_log_event
3804 3805 3806 3807 3808

  Log row insertions and updates. The event contain several
  insert/update rows for a table. Note that each event contains only
  rows for one table.

3809 3810
  @section Write_rows_log_event_binary_format Binary Format
*/
3811 3812 3813 3814 3815 3816 3817 3818 3819
class Write_rows_log_event : public Rows_log_event
{
public:
  enum 
  {
    /* Support interface to THD::binlog_prepare_pending_rows_event */
    TYPE_CODE = WRITE_ROWS_EVENT
  };

3820
#if defined(MYSQL_SERVER)
3821 3822 3823 3824 3825 3826 3827
  Write_rows_log_event(THD*, TABLE*, ulong table_id, 
		       MY_BITMAP const *cols, bool is_transactional);
#endif
#ifdef HAVE_REPLICATION
  Write_rows_log_event(const char *buf, uint event_len, 
                       const Format_description_log_event *description_event);
#endif
3828
#if defined(MYSQL_SERVER) 
3829 3830 3831 3832
  static bool binlog_row_logging_function(THD *thd, TABLE *table,
                                          bool is_transactional,
                                          MY_BITMAP *cols,
                                          uint fields,
3833
                                          const uchar *before_record
3834
                                          __attribute__((unused)),
3835
                                          const uchar *after_record)
3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848
  {
    return thd->binlog_write_row(table, is_transactional,
                                 cols, fields, after_record);
  }
#endif

private:
  virtual Log_event_type get_type_code() { return (Log_event_type)TYPE_CODE; }

#ifdef MYSQL_CLIENT
  void print(FILE *file, PRINT_EVENT_INFO *print_event_info);
#endif

3849
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
3850 3851
  virtual int do_before_row_operations(const Slave_reporting_capability *const);
  virtual int do_after_row_operations(const Slave_reporting_capability *const,int);
rafal@quant.(none)'s avatar
rafal@quant.(none) committed
3852
  virtual int do_exec_row(const Relay_log_info *const);
3853 3854 3855 3856
#endif
};


3857 3858
/**
  @class Update_rows_log_event
3859 3860 3861 3862 3863 3864 3865 3866

  Log row updates with a before image. The event contain several
  update rows for a table. Note that each event contains only rows for
  one table.

  Also note that the row data consists of pairs of row data: one row
  for the old data and one row for the new data.

3867 3868
  @section Update_rows_log_event_binary_format Binary Format
*/
3869 3870 3871 3872 3873 3874 3875 3876 3877
class Update_rows_log_event : public Rows_log_event
{
public:
  enum 
  {
    /* Support interface to THD::binlog_prepare_pending_rows_event */
    TYPE_CODE = UPDATE_ROWS_EVENT
  };

3878
#ifdef MYSQL_SERVER
3879 3880 3881 3882 3883 3884 3885 3886 3887 3888
  Update_rows_log_event(THD*, TABLE*, ulong table_id,
			MY_BITMAP const *cols_bi,
			MY_BITMAP const *cols_ai,
                        bool is_transactional);

  Update_rows_log_event(THD*, TABLE*, ulong table_id,
			MY_BITMAP const *cols,
                        bool is_transactional);

  void init(MY_BITMAP const *cols);
3889 3890
#endif

3891 3892
  virtual ~Update_rows_log_event();

3893 3894 3895 3896 3897
#ifdef HAVE_REPLICATION
  Update_rows_log_event(const char *buf, uint event_len, 
			const Format_description_log_event *description_event);
#endif

3898
#ifdef MYSQL_SERVER
3899 3900 3901 3902
  static bool binlog_row_logging_function(THD *thd, TABLE *table,
                                          bool is_transactional,
                                          MY_BITMAP *cols,
                                          uint fields,
3903 3904
                                          const uchar *before_record,
                                          const uchar *after_record)
3905 3906 3907 3908 3909 3910
  {
    return thd->binlog_update_row(table, is_transactional,
                                  cols, fields, before_record, after_record);
  }
#endif

3911 3912 3913 3914 3915
  virtual bool is_valid() const
  {
    return Rows_log_event::is_valid() && m_cols_ai.bitmap;
  }

3916
protected:
3917 3918 3919 3920 3921 3922
  virtual Log_event_type get_type_code() { return (Log_event_type)TYPE_CODE; }

#ifdef MYSQL_CLIENT
  void print(FILE *file, PRINT_EVENT_INFO *print_event_info);
#endif

3923
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
3924 3925
  virtual int do_before_row_operations(const Slave_reporting_capability *const);
  virtual int do_after_row_operations(const Slave_reporting_capability *const,int);
rafal@quant.(none)'s avatar
rafal@quant.(none) committed
3926
  virtual int do_exec_row(const Relay_log_info *const);
3927
#endif /* defined(MYSQL_SERVER) && defined(HAVE_REPLICATION) */
3928 3929
};

3930 3931
/**
  @class Delete_rows_log_event
3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947

  Log row deletions. The event contain several delete rows for a
  table. Note that each event contains only rows for one table.

  RESPONSIBILITIES

    - Act as a container for rows that has been deleted on the master
      and should be deleted on the slave. 

  COLLABORATION

    Row_writer
      Create the event and add rows to the event.
    Row_reader
      Extract the rows from the event.

3948 3949
  @section Delete_rows_log_event_binary_format Binary Format
*/
3950 3951 3952 3953 3954 3955 3956 3957 3958
class Delete_rows_log_event : public Rows_log_event
{
public:
  enum 
  {
    /* Support interface to THD::binlog_prepare_pending_rows_event */
    TYPE_CODE = DELETE_ROWS_EVENT
  };

3959
#ifdef MYSQL_SERVER
3960 3961 3962 3963 3964 3965 3966
  Delete_rows_log_event(THD*, TABLE*, ulong, 
			MY_BITMAP const *cols, bool is_transactional);
#endif
#ifdef HAVE_REPLICATION
  Delete_rows_log_event(const char *buf, uint event_len, 
			const Format_description_log_event *description_event);
#endif
3967
#ifdef MYSQL_SERVER
3968 3969 3970 3971
  static bool binlog_row_logging_function(THD *thd, TABLE *table,
                                          bool is_transactional,
                                          MY_BITMAP *cols,
                                          uint fields,
3972 3973
                                          const uchar *before_record,
                                          const uchar *after_record
3974 3975 3976 3977 3978 3979 3980
                                          __attribute__((unused)))
  {
    return thd->binlog_delete_row(table, is_transactional,
                                  cols, fields, before_record);
  }
#endif
  
3981
protected:
3982 3983 3984 3985 3986 3987
  virtual Log_event_type get_type_code() { return (Log_event_type)TYPE_CODE; }

#ifdef MYSQL_CLIENT
  void print(FILE *file, PRINT_EVENT_INFO *print_event_info);
#endif

3988
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
3989 3990
  virtual int do_before_row_operations(const Slave_reporting_capability *const);
  virtual int do_after_row_operations(const Slave_reporting_capability *const,int);
rafal@quant.(none)'s avatar
rafal@quant.(none) committed
3991
  virtual int do_exec_row(const Relay_log_info *const);
3992 3993 3994
#endif
};

3995

3996 3997
#include "log_event_old.h"

3998
/**
3999 4000
  @class Incident_log_event

4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011
   Class representing an incident, an occurance out of the ordinary,
   that happened on the master.

   The event is used to inform the slave that something out of the
   ordinary happened on the master that might cause the database to be
   in an inconsistent state.

   <table id="IncidentFormat">
   <caption>Incident event format</caption>
   <tr>
     <th>Symbol</th>
4012
     <th>Format</th>
4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030
     <th>Description</th>
   </tr>
   <tr>
     <td>INCIDENT</td>
     <td align="right">2</td>
     <td>Incident number as an unsigned integer</td>
   </tr>
   <tr>
     <td>MSGLEN</td>
     <td align="right">1</td>
     <td>Message length as an unsigned integer</td>
   </tr>
   <tr>
     <td>MESSAGE</td>
     <td align="right">MSGLEN</td>
     <td>The message, if present. Not null terminated.</td>
   </tr>
   </table>
4031 4032 4033

  @section Delete_rows_log_event_binary_format Binary Format
*/
4034 4035
class Incident_log_event : public Log_event {
public:
4036
#ifdef MYSQL_SERVER
4037 4038 4039 4040 4041 4042 4043
  Incident_log_event(THD *thd_arg, Incident incident)
    : Log_event(thd_arg, 0, FALSE), m_incident(incident)
  {
    DBUG_ENTER("Incident_log_event::Incident_log_event");
    DBUG_PRINT("enter", ("m_incident: %d", m_incident));
    m_message.str= NULL;                    /* Just as a precaution */
    m_message.length= 0;
4044
    set_direct_logging();
4045 4046 4047 4048 4049 4050 4051 4052 4053
    DBUG_VOID_RETURN;
  }

  Incident_log_event(THD *thd_arg, Incident incident, LEX_STRING const msg)
    : Log_event(thd_arg, 0, FALSE), m_incident(incident)
  {
    DBUG_ENTER("Incident_log_event::Incident_log_event");
    DBUG_PRINT("enter", ("m_incident: %d", m_incident));
    m_message= msg;
4054
    set_direct_logging();
4055 4056 4057 4058
    DBUG_VOID_RETURN;
  }
#endif

4059
#ifdef MYSQL_SERVER
4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071
  void pack_info(Protocol*);
#endif

  Incident_log_event(const char *buf, uint event_len,
                     const Format_description_log_event *descr_event);

  virtual ~Incident_log_event();

#ifdef MYSQL_CLIENT
  virtual void print(FILE *file, PRINT_EVENT_INFO *print_event_info);
#endif

4072
#if defined(MYSQL_SERVER) && defined(HAVE_REPLICATION)
4073
  virtual int do_apply_event(Relay_log_info const *rli);
4074 4075 4076 4077 4078 4079 4080
#endif

  virtual bool write_data_header(IO_CACHE *file);
  virtual bool write_data_body(IO_CACHE *file);

  virtual Log_event_type get_type_code() { return INCIDENT_EVENT; }

4081 4082 4083 4084
  virtual bool is_valid() const
  {
    return m_incident > INCIDENT_NONE && m_incident < INCIDENT_COUNT;
  }
4085
  virtual int get_data_size() {
4086
    return INCIDENT_HEADER_LEN + 1 + (uint) m_message.length;
4087 4088 4089 4090 4091 4092 4093 4094 4095
  }

private:
  const char *description() const;

  Incident m_incident;
  LEX_STRING m_message;
};

4096 4097 4098 4099 4100 4101 4102 4103
static inline bool copy_event_cache_to_file_and_reinit(IO_CACHE *cache,
                                                       FILE *file)
{
  return         
    my_b_copy_to_file(cache, file) ||
    reinit_io_cache(cache, WRITE_CACHE, 0, FALSE, TRUE);
}

4104
#ifdef MYSQL_SERVER
Andrei Elkin's avatar
Andrei Elkin committed
4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137
/*****************************************************************************

  Heartbeat Log Event class

  Replication event to ensure to slave that master is alive.
  The event is originated by master's dump thread and sent straight to
  slave without being logged. Slave itself does not store it in relay log
  but rather uses a data for immediate checks and throws away the event.

  Two members of the class log_ident and Log_event::log_pos comprise 
  @see the event_coordinates instance. The coordinates that a heartbeat
  instance carries correspond to the last event master has sent from
  its binlog.

 ****************************************************************************/
class Heartbeat_log_event: public Log_event
{
public:
  Heartbeat_log_event(const char* buf, uint event_len,
                      const Format_description_log_event* description_event);
  Log_event_type get_type_code() { return HEARTBEAT_LOG_EVENT; }
  bool is_valid() const
    {
      return (log_ident != NULL &&
              log_pos >= BIN_LOG_HEADER_SIZE);
    }
  const char * get_log_ident() { return log_ident; }
  uint get_ident_len() { return ident_len; }
  
private:
  const char* log_ident;
  uint ident_len;
};
4138

4139 4140 4141 4142 4143 4144 4145
/**
   The function is called by slave applier in case there are
   active table filtering rules to force gathering events associated
   with Query-log-event into an array to execute
   them once the fate of the Query is determined for execution.
*/
bool slave_execute_deferred_events(THD *thd);
Andrei Elkin's avatar
Andrei Elkin committed
4146 4147
#endif

Praveenkumar Hulakund's avatar
Praveenkumar Hulakund committed
4148
int append_query_string(THD *thd, CHARSET_INFO *csinfo,
4149
                        String const *from, String *to);
Rohit Kalhans's avatar
Rohit Kalhans committed
4150

4151
#ifdef MYSQL_SERVER
Rohit Kalhans's avatar
Rohit Kalhans committed
4152
/*
4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166
  This is an utility function that adds a quoted identifier into the a buffer.
  This also escapes any existance of the quote string inside the identifier.
 */
size_t my_strmov_quoted_identifier(THD *thd, char *buffer,
                                   const char* identifier,
                                   uint length);
#else
size_t my_strmov_quoted_identifier(char *buffer, const char* identifier);
#endif
size_t my_strmov_quoted_identifier_helper(int q, char *buffer,
                                          const char* identifier,
                                          uint length);


4167 4168 4169 4170
/**
  @} (end of group Replication)
*/

4171
#endif /* _log_event_h */