rem0rec.ic 41.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/************************************************************************
Record manager

(c) 1994-1996 Innobase Oy

Created 5/30/1994 Heikki Tuuri
*************************************************************************/

#include "mach0data.h"
#include "ut0byte.h"
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
11
#include "dict0dict.h"
12

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
13 14 15 16 17 18 19 20 21 22 23
/* Compact flag ORed to the extra size returned by rec_get_offsets() */
#define REC_OFFS_COMPACT	((ulint) 1 << 31)
/* SQL NULL flag in offsets returned by rec_get_offsets() */
#define REC_OFFS_SQL_NULL	((ulint) 1 << 31)
/* External flag in offsets returned by rec_get_offsets() */
#define REC_OFFS_EXTERNAL	((ulint) 1 << 30)
/* Mask for offsets returned by rec_get_offsets() */
#define REC_OFFS_MASK		(REC_OFFS_EXTERNAL - 1)

/* Offsets of the bit-fields in an old-style record. NOTE! In the table the
most significant bytes and bits are written below less significant.
24 25 26 27 28 29 30 31 32 33 34 35 36 37

	(1) byte offset		(2) bit usage within byte
	downward from
	origin ->	1	8 bits pointer to next record
			2	8 bits pointer to next record
			3  	1 bit short flag
				7 bits number of fields
			4	3 bits number of fields
				5 bits heap number
			5	8 bits heap number
			6	4 bits n_owned
				4 bits info bits
*/

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
38 39 40 41 42
/* Offsets of the bit-fields in a new-style record. NOTE! In the table the
most significant bytes and bits are written below less significant.

	(1) byte offset		(2) bit usage within byte
	downward from
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
43 44 45 46 47 48 49 50 51 52 53 54
	origin ->	1	8 bits relative offset of next record
			2	8 bits relative offset of next record
				  the relative offset is an unsigned 16-bit
				  integer:
				  (offset_of_next_record
				   - offset_of_this_record) mod 64Ki,
				  where mod is the modulo as a non-negative
				  number;
				  we can calculate the the offset of the next
				  record with the formula:
				  relative_offset + offset_of_this_record
				  mod UNIV_PAGE_SIZE
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
55 56 57 58 59 60 61 62 63 64 65 66
			3	3 bits status:
					000=conventional record
					001=node pointer record (inside B-tree)
					010=infimum record
					011=supremum record
					1xx=reserved
				5 bits heap number
			4	8 bits heap number
			5	4 bits n_owned
				4 bits info bits
*/

67 68 69 70
/* We list the byte offsets from the origin of the record, the mask,
and the shift needed to obtain each bit-field of the record. */

#define REC_NEXT		2
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
71
#define REC_NEXT_MASK		0xFFFFUL
72 73
#define REC_NEXT_SHIFT		0

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
74 75 76 77 78 79 80
#define REC_OLD_SHORT		3	/* This is single byte bit-field */
#define REC_OLD_SHORT_MASK	0x1UL
#define REC_OLD_SHORT_SHIFT	0

#define REC_OLD_N_FIELDS	4
#define REC_OLD_N_FIELDS_MASK	0x7FEUL
#define REC_OLD_N_FIELDS_SHIFT	1
81

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
82 83 84
#define REC_NEW_STATUS		3	/* This is single byte bit-field */
#define REC_NEW_STATUS_MASK	0x7UL
#define REC_NEW_STATUS_SHIFT	0
85

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
86 87
#define REC_OLD_HEAP_NO		5
#define REC_NEW_HEAP_NO		4
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
88
#define REC_HEAP_NO_MASK	0xFFF8UL
89 90
#define	REC_HEAP_NO_SHIFT	3

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
91 92
#define REC_OLD_N_OWNED		6	/* This is single byte bit-field */
#define REC_NEW_N_OWNED		5	/* This is single byte bit-field */
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
93
#define	REC_N_OWNED_MASK	0xFUL
94 95
#define REC_N_OWNED_SHIFT	0

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
96 97
#define REC_OLD_INFO_BITS	6	/* This is single byte bit-field */
#define REC_NEW_INFO_BITS	5	/* This is single byte bit-field */
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
98
#define	REC_INFO_BITS_MASK	0xF0UL
99 100 101
#define REC_INFO_BITS_SHIFT	0

/* The deleted flag in info bits */
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
102
#define REC_INFO_DELETED_FLAG 	0x20UL	/* when bit is set to 1, it means the
103 104 105 106
					record has been delete marked */
/* The following masks are used to filter the SQL null bit from
one-byte and two-byte offsets */

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
107 108
#define REC_1BYTE_SQL_NULL_MASK	0x80UL
#define REC_2BYTE_SQL_NULL_MASK	0x8000UL
109

110 111 112
/* In a 2-byte offset the second most significant bit denotes
a field stored to another page: */

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
113
#define REC_2BYTE_EXTERN_MASK	0x4000UL
114

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
#if REC_OLD_SHORT_MASK << (8 * (REC_OLD_SHORT - 3)) \
		^ REC_OLD_N_FIELDS_MASK << (8 * (REC_OLD_N_FIELDS - 4)) \
		^ REC_HEAP_NO_MASK << (8 * (REC_OLD_HEAP_NO - 4)) \
		^ REC_N_OWNED_MASK << (8 * (REC_OLD_N_OWNED - 3)) \
		^ REC_INFO_BITS_MASK << (8 * (REC_OLD_INFO_BITS - 3)) \
		^ 0xFFFFFFFFUL
# error "sum of old-style masks != 0xFFFFFFFFUL"
#endif
#if REC_NEW_STATUS_MASK << (8 * (REC_NEW_STATUS - 3)) \
		^ REC_HEAP_NO_MASK << (8 * (REC_NEW_HEAP_NO - 4)) \
		^ REC_N_OWNED_MASK << (8 * (REC_NEW_N_OWNED - 3)) \
		^ REC_INFO_BITS_MASK << (8 * (REC_NEW_INFO_BITS - 3)) \
		^ 0xFFFFFFUL
# error "sum of new-style masks != 0xFFFFFFUL"
#endif
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
130

131
/***************************************************************
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
132
Sets the value of the ith field SQL null bit of an old-style record. */
133 134 135 136 137 138 139 140

void
rec_set_nth_field_null_bit(
/*=======================*/
	rec_t*	rec,	/* in: record */
	ulint	i,	/* in: ith field */
	ibool	val);	/* in: value to set */
/*************************************************************** 
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
141 142
Sets an old-style record field to SQL null.
The physical size of the field is not changed. */
143 144 145 146 147 148 149

void
rec_set_nth_field_sql_null(
/*=======================*/
	rec_t*	rec, 	/* in: record */
	ulint	n);	/* in: index of the field */

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
/***************************************************************
Sets the value of the ith field extern storage bit of an old-style record. */

void
rec_set_nth_field_extern_bit_old(
/*=============================*/
	rec_t*	rec,	/* in: old-style record */
	ulint	i,	/* in: ith field */
	ibool	val,	/* in: value to set */
	mtr_t*	mtr);	/* in: mtr holding an X-latch to the page where
			rec is, or NULL; in the NULL case we do not
			write to log about the change */
/***************************************************************
Sets the value of the ith field extern storage bit of a new-style record. */

void
rec_set_nth_field_extern_bit_new(
/*=============================*/
	rec_t*		rec,	/* in: record */
	dict_index_t*	index,	/* in: record descriptor */
	ulint		ith,	/* in: ith field */
	ibool		val,	/* in: value to set */
	mtr_t*		mtr);	/* in: mtr holding an X-latch to the page
				where rec is, or NULL; in the NULL case
				we do not write to log about the change */

176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
/**********************************************************
Gets a bit field from within 1 byte. */
UNIV_INLINE
ulint
rec_get_bit_field_1(
/*================*/
	rec_t*	rec,	/* in: pointer to record origin */
	ulint	offs,	/* in: offset from the origin down */
	ulint	mask,	/* in: mask used to filter bits */
	ulint	shift)	/* in: shift right applied after masking */
{
	ut_ad(rec);

	return((mach_read_from_1(rec - offs) & mask) >> shift);
}

/**********************************************************
Sets a bit field within 1 byte. */
UNIV_INLINE
void
rec_set_bit_field_1(
/*================*/
	rec_t*	rec,	/* in: pointer to record origin */
	ulint	val,	/* in: value to set */
	ulint	offs,	/* in: offset from the origin down */
	ulint	mask,	/* in: mask used to filter bits */
	ulint	shift)	/* in: shift right applied after masking */
{
	ut_ad(rec);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
205
	ut_ad(offs <= REC_N_OLD_EXTRA_BYTES);
206
	ut_ad(mask);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
207
	ut_ad(mask <= 0xFFUL);
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
	ut_ad(((mask >> shift) << shift) == mask);
	ut_ad(((val << shift) & mask) == (val << shift));
	
	mach_write_to_1(rec - offs, 
			(mach_read_from_1(rec - offs) & ~mask) 
			| (val << shift));
}

/**********************************************************
Gets a bit field from within 2 bytes. */
UNIV_INLINE
ulint
rec_get_bit_field_2(
/*================*/
	rec_t*	rec,	/* in: pointer to record origin */
	ulint	offs,	/* in: offset from the origin down */
	ulint	mask,	/* in: mask used to filter bits */
	ulint	shift)	/* in: shift right applied after masking */
{
	ut_ad(rec);

	return((mach_read_from_2(rec - offs) & mask) >> shift);
}

/**********************************************************
Sets a bit field within 2 bytes. */
UNIV_INLINE
void
rec_set_bit_field_2(
/*================*/
	rec_t*	rec,	/* in: pointer to record origin */
	ulint	val,	/* in: value to set */
	ulint	offs,	/* in: offset from the origin down */
	ulint	mask,	/* in: mask used to filter bits */
	ulint	shift)	/* in: shift right applied after masking */
{
	ut_ad(rec);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
245
	ut_ad(offs <= REC_N_OLD_EXTRA_BYTES);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
246 247
	ut_ad(mask > 0xFFUL);
	ut_ad(mask <= 0xFFFFUL);
248 249 250 251
	ut_ad((mask >> shift) & 1);
	ut_ad(0 == ((mask >> shift) & ((mask >> shift) + 1)));
	ut_ad(((mask >> shift) << shift) == mask);
	ut_ad(((val << shift) & mask) == (val << shift));
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
252

253 254 255 256 257 258 259 260 261 262 263 264
	mach_write_to_2(rec - offs, 
			(mach_read_from_2(rec - offs) & ~mask) 
			| (val << shift));
}

/**********************************************************
The following function is used to get the offset of the next chained record
on the same page. */
UNIV_INLINE
ulint 
rec_get_next_offs(
/*==============*/
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
265 266
			/* out: the page offset of the next chained record, or
			0 if none */
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
267 268
	rec_t*	rec,	/* in: physical record */
	ibool	comp)	/* in: TRUE=compact page format */
269
{	
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
270 271 272 273 274 275 276
	ulint	field_value;
		
	ut_ad(REC_NEXT_MASK == 0xFFFFUL);
	ut_ad(REC_NEXT_SHIFT == 0);

	field_value = mach_read_from_2(rec - REC_NEXT);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
277 278
	if (comp) {
#if UNIV_PAGE_SIZE <= 32768
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
279 280 281
		/* Note that for 64 KiB pages, field_value can 'wrap around'
		and the debug assertion is not valid */

282 283 284 285 286 287 288 289 290
		/* In the following assertion, field_value is interpreted
		as signed 16-bit integer in 2's complement arithmetics.
		If all platforms defined int16_t in the standard headers,
		the expression could be written simpler as
		(int16_t) field_value + ut_align_offset(...) < UNIV_PAGE_SIZE
		*/
		ut_ad((field_value >= 32768
			? field_value - 65536
			: field_value)
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
291 292
		       + ut_align_offset(rec, UNIV_PAGE_SIZE)
		      < UNIV_PAGE_SIZE);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
293
#endif
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
294 295 296 297 298 299 300 301 302 303
		if (field_value == 0) {

			return(0);
		}
		
		return(ut_align_offset(rec + field_value, UNIV_PAGE_SIZE));
	} else {
		ut_ad(field_value < UNIV_PAGE_SIZE);

		return(field_value);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
304
	}
305 306 307 308 309 310 311 312 313 314
}

/**********************************************************
The following function is used to set the next record offset field of the
record. */
UNIV_INLINE
void
rec_set_next_offs(
/*==============*/
	rec_t*	rec,	/* in: physical record */
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
315
	ibool	comp,	/* in: TRUE=compact page format */
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
316
	ulint	next)	/* in: offset of the next record, or 0 if none */
317 318 319
{
	ut_ad(rec);
	ut_ad(UNIV_PAGE_SIZE > next);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
320 321
	ut_ad(REC_NEXT_MASK == 0xFFFFUL);
	ut_ad(REC_NEXT_SHIFT == 0);
322

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
323
	if (comp) {
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
		ulint field_value;

		if (next) {
			/* The following two statements calculate
			next - offset_of_rec mod 64Ki, where mod is the modulo
			as a non-negative number */
		
			field_value = (ulint)((lint)next 
				- (lint)ut_align_offset(rec, UNIV_PAGE_SIZE));
			field_value &= REC_NEXT_MASK;
		} else {
			field_value = 0;
		}

		mach_write_to_2(rec - REC_NEXT, field_value);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
339
	} else {
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
340
		mach_write_to_2(rec - REC_NEXT, next);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
341
	}
342 343 344
}

/**********************************************************
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
345 346
The following function is used to get the number of fields
in an old-style record. */
347 348
UNIV_INLINE
ulint
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
349 350
rec_get_n_fields_old(
/*=================*/
351 352 353 354 355 356 357
			/* out: number of data fields */
	rec_t*	rec)	/* in: physical record */
{
	ulint	ret;

	ut_ad(rec);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
358 359
	ret = rec_get_bit_field_2(rec, REC_OLD_N_FIELDS,
				REC_OLD_N_FIELDS_MASK, REC_OLD_N_FIELDS_SHIFT);
360 361 362 363 364 365 366
	ut_ad(ret <= REC_MAX_N_FIELDS);
	ut_ad(ret > 0);

	return(ret);
}	

/**********************************************************
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
367 368
The following function is used to set the number of fields
in an old-style record. */
369 370
UNIV_INLINE
void
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
371 372
rec_set_n_fields_old(
/*=================*/
373 374 375 376 377 378 379
	rec_t*	rec,		/* in: physical record */
	ulint	n_fields)	/* in: the number of fields */
{
	ut_ad(rec);
	ut_ad(n_fields <= REC_MAX_N_FIELDS);
	ut_ad(n_fields > 0);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
380 381 382 383
	rec_set_bit_field_2(rec, n_fields, REC_OLD_N_FIELDS,
		REC_OLD_N_FIELDS_MASK, REC_OLD_N_FIELDS_SHIFT);
}

384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
/**********************************************************
The following function retrieves the status bits of a new-style record. */
UNIV_INLINE
ulint
rec_get_status(
/*===========*/
			/* out: status bits */
	rec_t*	rec)	/* in: physical record */
{
	ulint	ret;

	ut_ad(rec);

	ret = rec_get_bit_field_1(rec, REC_NEW_STATUS,
				REC_NEW_STATUS_MASK, REC_NEW_STATUS_SHIFT);
	ut_ad((ret & ~REC_NEW_STATUS_MASK) == 0);

	return(ret);
}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
/**********************************************************
The following function is used to get the number of fields
in a record. */
UNIV_INLINE
ulint
rec_get_n_fields(
/*=============*/
				/* out: number of data fields */
	rec_t*		rec,	/* in: physical record */
	dict_index_t*	index)	/* in: record descriptor */
{
	ut_ad(rec);
	ut_ad(index);
	if (!index->table->comp) {
		return(rec_get_n_fields_old(rec));
	}
	switch (rec_get_status(rec)) {
	case REC_STATUS_ORDINARY:
		return(dict_index_get_n_fields(index));
	case REC_STATUS_NODE_PTR:
		return(dict_index_get_n_unique_in_tree(index) + 1);
	case REC_STATUS_INFIMUM:
	case REC_STATUS_SUPREMUM:
		return(1);
	default:
		ut_error;
		return(ULINT_UNDEFINED);
	}
432 433 434 435 436 437 438 439 440 441
}

/**********************************************************
The following function is used to get the number of records owned by the
previous directory record. */
UNIV_INLINE
ulint
rec_get_n_owned(
/*============*/
			/* out: number of owned records */
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
442 443
	rec_t*	rec,	/* in: physical record */
	ibool	comp)	/* in: TRUE=compact page format */
444 445 446 447 448
{
	ulint	ret;

	ut_ad(rec);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
449 450 451
	ret = rec_get_bit_field_1(rec,
				comp ? REC_NEW_N_OWNED : REC_OLD_N_OWNED,
				REC_N_OWNED_MASK, REC_N_OWNED_SHIFT);
452 453 454 455 456 457 458 459 460 461 462 463
	ut_ad(ret <= REC_MAX_N_OWNED); 

	return(ret);
}	

/**********************************************************
The following function is used to set the number of owned records. */
UNIV_INLINE
void
rec_set_n_owned(
/*============*/
	rec_t*	rec,		/* in: physical record */
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
464
	ibool	comp,		/* in: TRUE=compact page format */
465 466 467 468 469
	ulint	n_owned)	/* in: the number of owned */
{
	ut_ad(rec);
	ut_ad(n_owned <= REC_MAX_N_OWNED);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
470 471 472
	rec_set_bit_field_1(rec, n_owned,
				comp ? REC_NEW_N_OWNED : REC_OLD_N_OWNED,
				REC_N_OWNED_MASK, REC_N_OWNED_SHIFT);
473 474 475 476 477 478 479 480 481
}

/**********************************************************
The following function is used to retrieve the info bits of a record. */
UNIV_INLINE
ulint
rec_get_info_bits(
/*==============*/
			/* out: info bits */
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
482 483
	rec_t*	rec,	/* in: physical record */
	ibool	comp)	/* in: TRUE=compact page format */
484 485 486 487 488
{
	ulint	ret;

	ut_ad(rec);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
489 490 491
	ret = rec_get_bit_field_1(rec,
				comp ? REC_NEW_INFO_BITS : REC_OLD_INFO_BITS,
				REC_INFO_BITS_MASK, REC_INFO_BITS_SHIFT);
492 493 494 495 496 497 498 499 500 501 502 503
	ut_ad((ret & ~REC_INFO_BITS_MASK) == 0);

	return(ret);
}	

/**********************************************************
The following function is used to set the info bits of a record. */
UNIV_INLINE
void
rec_set_info_bits(
/*==============*/
	rec_t*	rec,	/* in: physical record */
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
504
	ibool	comp,	/* in: TRUE=compact page format */
505 506 507 508 509
	ulint	bits)	/* in: info bits */
{
	ut_ad(rec);
	ut_ad((bits & ~REC_INFO_BITS_MASK) == 0);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
510 511 512
	rec_set_bit_field_1(rec, bits,
				comp ? REC_NEW_INFO_BITS : REC_OLD_INFO_BITS,
				REC_INFO_BITS_MASK, REC_INFO_BITS_SHIFT);
513 514
}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
515 516 517 518 519 520 521 522 523 524 525 526 527 528
/**********************************************************
The following function is used to set the status bits of a new-style record. */
UNIV_INLINE
void
rec_set_status(
/*===========*/
	rec_t*	rec,	/* in: physical record */
	ulint	bits)	/* in: info bits */
{
	ut_ad(rec);
	ut_ad((bits & ~REC_NEW_STATUS_MASK) == 0);

	rec_set_bit_field_1(rec, bits, REC_NEW_STATUS,
				REC_NEW_STATUS_MASK, REC_NEW_STATUS_SHIFT);
529 530
}

531 532 533 534 535 536
/**********************************************************
The following function is used to retrieve the info and status
bits of a record.  (Only compact records have status bits.) */
UNIV_INLINE
ulint
rec_get_info_and_status_bits(
537
/*=========================*/
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
			/* out: info bits */
	rec_t*	rec,	/* in: physical record */
	ibool	comp)	/* in: TRUE=compact page format */
{
	ulint	bits;
#if (REC_NEW_STATUS_MASK >> REC_NEW_STATUS_SHIFT) \
& (REC_INFO_BITS_MASK >> REC_INFO_BITS_SHIFT)
# error "REC_NEW_STATUS_MASK and REC_INFO_BITS_MASK overlap"
#endif
	if (comp) {
		bits = rec_get_info_bits(rec, TRUE) | rec_get_status(rec);
	} else {
		bits = rec_get_info_bits(rec, FALSE);
		ut_ad(!(bits & ~(REC_INFO_BITS_MASK >> REC_INFO_BITS_SHIFT)));
	}
	return(bits);
}
/**********************************************************
The following function is used to set the info and status
bits of a record.  (Only compact records have status bits.) */
UNIV_INLINE
void
rec_set_info_and_status_bits(
561
/*=========================*/
562 563 564 565 566 567 568 569 570 571 572 573 574
	rec_t*	rec,	/* in: physical record */
	ibool	comp,	/* in: TRUE=compact page format */
	ulint	bits)	/* in: info bits */
{
#if (REC_NEW_STATUS_MASK >> REC_NEW_STATUS_SHIFT) \
& (REC_INFO_BITS_MASK >> REC_INFO_BITS_SHIFT)
# error "REC_NEW_STATUS_MASK and REC_INFO_BITS_MASK overlap"
#endif
	if (comp) {
		rec_set_status(rec, bits & REC_NEW_STATUS_MASK);
	} else {
		ut_ad(!(bits & ~(REC_INFO_BITS_MASK >> REC_INFO_BITS_SHIFT)));
	}
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
575
	rec_set_info_bits(rec, comp, bits & ~REC_NEW_STATUS_MASK);
576 577
}

578 579 580 581 582 583 584
/**********************************************************
The following function tells if record is delete marked. */
UNIV_INLINE
ibool
rec_get_deleted_flag(
/*=================*/
			/* out: TRUE if delete marked */
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
585 586
	rec_t*	rec,	/* in: physical record */
	ibool	comp)	/* in: TRUE=compact page format */
587
{
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
588
	if (REC_INFO_DELETED_FLAG & rec_get_info_bits(rec, comp)) {
589 590 591 592 593 594 595 596 597 598 599 600 601 602

		return(TRUE);
	}

	return(FALSE);
}

/**********************************************************
The following function is used to set the deleted bit. */
UNIV_INLINE
void
rec_set_deleted_flag(
/*=================*/
	rec_t*	rec,	/* in: physical record */
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
603
	ibool	comp,	/* in: TRUE=compact page format */
604 605 606 607 608 609 610 611
	ibool	flag)	/* in: TRUE if delete marked */
{
	ulint	old_val;
	ulint	new_val;

	ut_ad(TRUE == 1);
	ut_ad(flag <= TRUE);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
612
	old_val = rec_get_info_bits(rec, comp);
613 614 615 616 617 618 619
	
	if (flag) {
		new_val = REC_INFO_DELETED_FLAG | old_val;
	} else {
		new_val = ~REC_INFO_DELETED_FLAG & old_val;
	}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
	rec_set_info_bits(rec, comp, new_val);
}

/**********************************************************
The following function tells if a new-style record is a node pointer. */
UNIV_INLINE
ibool
rec_get_node_ptr_flag(
/*=================*/
			/* out: TRUE if node pointer */
	rec_t*	rec)	/* in: physical record */
{
	return(REC_STATUS_NODE_PTR == rec_get_status(rec));
}

/**********************************************************
The following function is used to flag a record as a node pointer. */
UNIV_INLINE
void
rec_set_node_ptr_flag(
/*=================*/
	rec_t*	rec,	/* in: physical record */
	ibool	flag)	/* in: TRUE if the record is a node pointer */
{
	ulint	status;
	ut_ad(flag <= TRUE);
	ut_ad(REC_STATUS_NODE_PTR >= rec_get_status(rec));
	if (flag) {
		status = REC_STATUS_NODE_PTR;
	} else {
		status = REC_STATUS_ORDINARY;
	}
	rec_set_status(rec, status);
653 654 655 656 657 658 659 660 661 662
}

/**********************************************************
The following function is used to get the order number of the record in the
heap of the index page. */
UNIV_INLINE
ulint
rec_get_heap_no(
/*=============*/
			/* out: heap order number */
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
663 664
	rec_t*	rec,	/* in: physical record */
	ibool	comp)	/* in: TRUE=compact page format */
665 666 667 668 669
{
	ulint	ret;

	ut_ad(rec);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
670 671 672
	ret = rec_get_bit_field_2(rec,
				comp ? REC_NEW_HEAP_NO : REC_OLD_HEAP_NO,
				REC_HEAP_NO_MASK, REC_HEAP_NO_SHIFT);
673 674 675 676 677 678 679 680 681 682 683 684
	ut_ad(ret <= REC_MAX_HEAP_NO);

	return(ret);
}	

/**********************************************************
The following function is used to set the heap number field in the record. */
UNIV_INLINE
void
rec_set_heap_no(
/*=============*/
	rec_t*	rec,	/* in: physical record */
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
685
	ibool	comp,	/* in: TRUE=compact page format */
686 687 688 689
	ulint	heap_no)/* in: the heap number */
{
	ut_ad(heap_no <= REC_MAX_HEAP_NO);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
690 691 692
	rec_set_bit_field_2(rec, heap_no,
				comp ? REC_NEW_HEAP_NO : REC_OLD_HEAP_NO,
				REC_HEAP_NO_MASK, REC_HEAP_NO_SHIFT);
693 694 695 696 697 698 699 700 701 702 703 704
}

/**********************************************************
The following function is used to test whether the data offsets in the record
are stored in one-byte or two-byte format. */
UNIV_INLINE
ibool
rec_get_1byte_offs_flag(
/*====================*/
			/* out: TRUE if 1-byte form */
	rec_t*	rec)	/* in: physical record */
{
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
705 706 707
#if TRUE != 1
#error "TRUE != 1"
#endif
708

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
709 710
	return(rec_get_bit_field_1(rec, REC_OLD_SHORT, REC_OLD_SHORT_MASK,
							REC_OLD_SHORT_SHIFT));
711 712 713 714 715 716 717 718 719 720 721
}

/**********************************************************
The following function is used to set the 1-byte offsets flag. */
UNIV_INLINE
void
rec_set_1byte_offs_flag(
/*====================*/
	rec_t*	rec,	/* in: physical record */
	ibool	flag)	/* in: TRUE if 1byte form */
{
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
722 723 724
#if TRUE != 1
#error "TRUE != 1"
#endif
725 726
	ut_ad(flag <= TRUE);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
727 728
	rec_set_bit_field_1(rec, flag, REC_OLD_SHORT, REC_OLD_SHORT_MASK,
							REC_OLD_SHORT_SHIFT);
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
}

/**********************************************************
Returns the offset of nth field end if the record is stored in the 1-byte
offsets form. If the field is SQL null, the flag is ORed in the returned
value. */
UNIV_INLINE
ulint
rec_1_get_field_end_info(
/*=====================*/
 			/* out: offset of the start of the field, SQL null
 			flag ORed */
 	rec_t*	rec, 	/* in: record */
 	ulint	n)	/* in: field index */
{
	ut_ad(rec_get_1byte_offs_flag(rec));
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
745
	ut_ad(n < rec_get_n_fields_old(rec));
746

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
747
	return(mach_read_from_1(rec - (REC_N_OLD_EXTRA_BYTES + n + 1)));
748 749 750 751 752 753 754 755 756 757 758
}
						
/**********************************************************
Returns the offset of nth field end if the record is stored in the 2-byte
offsets form. If the field is SQL null, the flag is ORed in the returned
value. */
UNIV_INLINE
ulint
rec_2_get_field_end_info(
/*=====================*/
 			/* out: offset of the start of the field, SQL null
759
 			flag and extern storage flag ORed */
760 761 762 763
 	rec_t*	rec, 	/* in: record */
 	ulint	n)	/* in: field index */
{
	ut_ad(!rec_get_1byte_offs_flag(rec));
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
764
	ut_ad(n < rec_get_n_fields_old(rec));
765

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
766
	return(mach_read_from_2(rec - (REC_N_OLD_EXTRA_BYTES + 2 * n + 2)));
767 768
}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
769
#ifdef UNIV_DEBUG
770 771
/* Length of the rec_get_offsets() header */
# define REC_OFFS_HEADER_SIZE	4
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
772
#else /* UNIV_DEBUG */
773 774
/* Length of the rec_get_offsets() header */
# define REC_OFFS_HEADER_SIZE	2
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
775 776 777 778 779 780 781
#endif /* UNIV_DEBUG */

/* Get the base address of offsets.  The extra_size is stored at
this position, and following positions hold the end offsets of
the fields. */
#define rec_offs_base(offsets) (offsets + REC_OFFS_HEADER_SIZE)

782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
/************************************************************** 
The following function returns the number of allocated elements
for an array of offsets. */
UNIV_INLINE
ulint
rec_offs_get_n_alloc(
/*=================*/
				/* out: number of elements */
	const ulint*	offsets)/* in: array for rec_get_offsets() */
{
	ulint	n_alloc;
	ut_ad(offsets);
	n_alloc = offsets[0];
	ut_ad(n_alloc > 0);
	return(n_alloc);
}

/************************************************************** 
The following function sets the number of allocated elements
for an array of offsets. */
UNIV_INLINE
void
rec_offs_set_n_alloc(
/*=================*/
	ulint*	offsets,	/* in: array for rec_get_offsets() */
	ulint	n_alloc)	/* in: number of elements */
{
	ut_ad(offsets);
	ut_ad(n_alloc > 0);
	offsets[0] = n_alloc;
}

814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
/************************************************************** 
The following function returns the number of fields in a record. */
UNIV_INLINE
ulint
rec_offs_n_fields(
/*===============*/
				/* out: number of fields */
	const ulint*	offsets)/* in: array returned by rec_get_offsets() */
{
	ulint	n_fields;
	ut_ad(offsets);
	n_fields = offsets[1];
	ut_ad(n_fields > 0);
	ut_ad(n_fields <= REC_MAX_N_FIELDS);
	ut_ad(n_fields + REC_OFFS_HEADER_SIZE
		<= rec_offs_get_n_alloc(offsets));
	return(n_fields);
}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
833
/****************************************************************
834
Validates offsets returned by rec_get_offsets(). */
835 836
UNIV_INLINE
ibool
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
837 838 839 840 841 842 843 844 845 846
rec_offs_validate(
/*==============*/
				/* out: TRUE if valid */
	rec_t*		rec,	/* in: record or NULL */
	dict_index_t*	index,	/* in: record descriptor or NULL */
	const ulint*	offsets)/* in: array returned by rec_get_offsets() */
{
	ulint	i	= rec_offs_n_fields(offsets);
	ulint	last	= ULINT_MAX;
	ibool	comp	= (*rec_offs_base(offsets) & REC_OFFS_COMPACT) != 0;
847

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
848
	if (rec) {
849
		ut_ad((ulint) rec == offsets[2]);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
850 851 852 853 854
		if (!comp) {
			ut_a(rec_get_n_fields_old(rec) >= i);
		}
	}
	if (index) {
serg@serg.mylan's avatar
serg@serg.mylan committed
855
		ulint max_n_fields;
856
		ut_ad((ulint) index == offsets[3]);
serg@serg.mylan's avatar
serg@serg.mylan committed
857
		max_n_fields = ut_max(
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875
				dict_index_get_n_fields(index),
				dict_index_get_n_unique_in_tree(index) + 1);
		if (comp && rec) {
			switch (rec_get_status(rec)) {
			case REC_STATUS_ORDINARY:
				break;
			case REC_STATUS_NODE_PTR:
				max_n_fields =
				dict_index_get_n_unique_in_tree(index) + 1;
				break;
			case REC_STATUS_INFIMUM:
			case REC_STATUS_SUPREMUM:
				max_n_fields = 1;
				break;
			default:
				ut_error;
			}
		}
876 877 878
		/* index->n_def == 0 for dummy indexes if !comp */
		ut_a(!comp || index->n_def);
		ut_a(!index->n_def || i <= max_n_fields);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893
	}
	while (i--) {
		ulint	curr = rec_offs_base(offsets)[1 + i] & REC_OFFS_MASK;
		ut_a(curr <= last);
		last = curr;
	}
	return(TRUE);
}
/****************************************************************
Updates debug data in offsets, in order to avoid bogus
rec_offs_validate() failures. */
UNIV_INLINE
void
rec_offs_make_valid(
/*================*/
894
	rec_t*		rec __attribute__((unused)),
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
895
				/* in: record */
896
	dict_index_t*	index __attribute__((unused)),
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
897 898
				/* in: record descriptor */
	ulint*		offsets __attribute__((unused)))
899
				/* in: array returned by rec_get_offsets() */
900
{
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
901
#ifdef UNIV_DEBUG
902 903 904
	ut_ad(rec_get_n_fields(rec, index) >= rec_offs_n_fields(offsets));
	offsets[2] = (ulint) rec;
	offsets[3] = (ulint) index;
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
905 906
#endif /* UNIV_DEBUG */
}
907

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927
/****************************************************************
The following function is used to get a pointer to the nth
data field in an old-style record. */
UNIV_INLINE
byte*
rec_get_nth_field(
/*==============*/
	 			/* out: pointer to the field */
	rec_t*		rec, 	/* in: record */
	const ulint*	offsets,/* in: array returned by rec_get_offsets() */
	ulint		n,	/* in: index of the field */
	ulint*		len)	/* out: length of the field; UNIV_SQL_NULL
				if SQL null */
{
	byte*	field;
	ulint	length;
	ut_ad(rec);
	ut_ad(rec_offs_validate(rec, NULL, offsets));
	ut_ad(n < rec_offs_n_fields(offsets));
	ut_ad(len);
928

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
929 930 931 932
	if (n == 0) {
		field = rec;
	} else {
		field = rec + (rec_offs_base(offsets)[n] & REC_OFFS_MASK);
933 934
	}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
935
	length = rec_offs_base(offsets)[1 + n];
936

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
937 938 939 940 941
	if (length & REC_OFFS_SQL_NULL) {
		length = UNIV_SQL_NULL;
	} else {
		length &= REC_OFFS_MASK;
		length -= field - rec;
942 943
	}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
944 945
	*len = length;
	return(field);
946 947 948
}

/**********************************************************
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
949 950
Determine if the offsets are for a record in the new
compact format. */
951 952
UNIV_INLINE
ibool
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
953 954 955 956
rec_offs_comp(
/*==========*/
				/* out: TRUE if compact format */
	const ulint*	offsets)/* in: array returned by rec_get_offsets() */
957
{
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
958 959 960
	ut_ad(rec_offs_validate(NULL, NULL, offsets));
	return((*rec_offs_base(offsets) & REC_OFFS_COMPACT) != 0);
}
961

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989
/**********************************************************
Returns TRUE if the nth field of rec is SQL NULL. */
UNIV_INLINE
ibool
rec_offs_nth_null(
/*==============*/
				/* out: TRUE if SQL NULL */
	const ulint*	offsets,/* in: array returned by rec_get_offsets() */
	ulint		n)	/* in: nth field */
{
	ut_ad(rec_offs_validate(NULL, NULL, offsets));
	ut_ad(n < rec_offs_n_fields(offsets));
	return((rec_offs_base(offsets)[1 + n] & REC_OFFS_SQL_NULL) != 0);
}
/**********************************************************
Returns TRUE if the extern bit is set in nth field of rec. */
UNIV_INLINE
ibool
rec_offs_nth_extern(
/*================*/
				/* out: TRUE if externally stored */
	const ulint*	offsets,/* in: array returned by rec_get_offsets() */
	ulint		n)	/* in: nth field */
{
	ut_ad(rec_offs_validate(NULL, NULL, offsets));
	ut_ad(n < rec_offs_n_fields(offsets));
	return((rec_offs_base(offsets)[1 + n] & REC_OFFS_EXTERNAL) != 0);
}
990

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
991 992 993 994 995 996 997 998 999 1000 1001 1002
/**********************************************************
Gets the physical size of a field. */
UNIV_INLINE
ulint
rec_offs_nth_size(
/*==============*/
				/* out: length of field */
	const ulint*	offsets,/* in: array returned by rec_get_offsets() */
	ulint		n)	/* in: nth field */
{
	ut_ad(rec_offs_validate(NULL, NULL, offsets));
	ut_ad(n < rec_offs_n_fields(offsets));
1003 1004
	return((rec_offs_base(offsets)[1 + n] - rec_offs_base(offsets)[n])
			& REC_OFFS_MASK);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1005
}
1006

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
/**********************************************************
Returns TRUE if the extern bit is set in any of the fields
of an old-style record. */
UNIV_INLINE
ibool
rec_offs_any_extern(
/*================*/
				/* out: TRUE if a field is stored externally */
	const ulint*	offsets)/* in: array returned by rec_get_offsets() */
{
	ulint	i;
	for (i = rec_offs_n_fields(offsets); i--; ) {
		if (rec_offs_nth_extern(offsets, i)) {
1020 1021 1022 1023 1024 1025
			return(TRUE);
		}
	}
	return(FALSE);
}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
/***************************************************************
Sets the value of the ith field extern storage bit. */
UNIV_INLINE
void
rec_set_nth_field_extern_bit(
/*=========================*/
	rec_t*		rec,	/* in: record */
	dict_index_t*	index,	/* in: record descriptor */
	ulint		i,	/* in: ith field */
	ibool		val,	/* in: value to set */
	mtr_t*		mtr)	/* in: mtr holding an X-latch to the page
				where rec is, or NULL; in the NULL case
				we do not write to log about the change */
{
	if (index->table->comp) {
		rec_set_nth_field_extern_bit_new(rec, index, i, val, mtr);
	} else {
		rec_set_nth_field_extern_bit_old(rec, i, val, mtr);
	}
}

1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062
/**********************************************************
Returns the offset of n - 1th field end if the record is stored in the 1-byte
offsets form. If the field is SQL null, the flag is ORed in the returned
value. This function and the 2-byte counterpart are defined here because the
C-compilerwas not able to sum negative and positive constant offsets, and
warned of constant arithmetic overflow within the compiler. */
UNIV_INLINE
ulint
rec_1_get_prev_field_end_info(
/*==========================*/
 			/* out: offset of the start of the PREVIOUS field, SQL
			null flag ORed */
 	rec_t*	rec, 	/* in: record */
 	ulint	n)	/* in: field index */
{
	ut_ad(rec_get_1byte_offs_flag(rec));
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1063
	ut_ad(n <= rec_get_n_fields_old(rec));
1064

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1065
	return(mach_read_from_1(rec - (REC_N_OLD_EXTRA_BYTES + n)));
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
}
						
/**********************************************************
Returns the offset of n - 1th field end if the record is stored in the 2-byte
offsets form. If the field is SQL null, the flag is ORed in the returned
value. */
UNIV_INLINE
ulint
rec_2_get_prev_field_end_info(
/*==========================*/
 			/* out: offset of the start of the PREVIOUS field, SQL
			null flag ORed */
 	rec_t*	rec, 	/* in: record */
 	ulint	n)	/* in: field index */
{
	ut_ad(!rec_get_1byte_offs_flag(rec));
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1082
	ut_ad(n <= rec_get_n_fields_old(rec));
1083

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1084
	return(mach_read_from_2(rec - (REC_N_OLD_EXTRA_BYTES + 2 * n)));
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098
}

/**********************************************************
Sets the field end info for the nth field if the record is stored in the
1-byte format. */
UNIV_INLINE
void
rec_1_set_field_end_info(
/*=====================*/
 	rec_t*	rec, 	/* in: record */
 	ulint	n,	/* in: field index */
 	ulint	info)	/* in: value to set */
{
	ut_ad(rec_get_1byte_offs_flag(rec));
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1099
	ut_ad(n < rec_get_n_fields_old(rec));
1100

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1101
	mach_write_to_1(rec - (REC_N_OLD_EXTRA_BYTES + n + 1), info);
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115
}

/**********************************************************
Sets the field end info for the nth field if the record is stored in the
2-byte format. */
UNIV_INLINE
void
rec_2_set_field_end_info(
/*=====================*/
 	rec_t*	rec, 	/* in: record */
 	ulint	n,	/* in: field index */
 	ulint	info)	/* in: value to set */
{
	ut_ad(!rec_get_1byte_offs_flag(rec));
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1116
	ut_ad(n < rec_get_n_fields_old(rec));
1117

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1118
	mach_write_to_2(rec - (REC_N_OLD_EXTRA_BYTES + 2 * n + 2), info);
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
}

/**********************************************************
Returns the offset of nth field start if the record is stored in the 1-byte
offsets form. */
UNIV_INLINE
ulint
rec_1_get_field_start_offs(
/*=======================*/
 			/* out: offset of the start of the field */
 	rec_t*	rec, 	/* in: record */
 	ulint	n)	/* in: field index */
{
	ut_ad(rec_get_1byte_offs_flag(rec));
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1133
	ut_ad(n <= rec_get_n_fields_old(rec));
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155

	if (n == 0) {

		return(0);
	}

	return(rec_1_get_prev_field_end_info(rec, n)
						& ~REC_1BYTE_SQL_NULL_MASK);
}
						
/**********************************************************
Returns the offset of nth field start if the record is stored in the 2-byte
offsets form. */
UNIV_INLINE
ulint
rec_2_get_field_start_offs(
/*=======================*/
 			/* out: offset of the start of the field */
 	rec_t*	rec, 	/* in: record */
 	ulint	n)	/* in: field index */
{
	ut_ad(!rec_get_1byte_offs_flag(rec));
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1156
	ut_ad(n <= rec_get_n_fields_old(rec));
1157 1158 1159 1160 1161 1162 1163

	if (n == 0) {

		return(0);
	}

	return(rec_2_get_prev_field_end_info(rec, n)
1164
		& ~(REC_2BYTE_SQL_NULL_MASK | REC_2BYTE_EXTERN_MASK));
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
}
						
/**********************************************************
The following function is used to read the offset of the start of a data field
in the record. The start of an SQL null field is the end offset of the
previous non-null field, or 0, if none exists. If n is the number of the last
field + 1, then the end offset of the last field is returned. */
UNIV_INLINE
ulint
rec_get_field_start_offs(
/*=====================*/
 			/* out: offset of the start of the field */
 	rec_t*	rec, 	/* in: record */
 	ulint	n)	/* in: field index */
{
	ut_ad(rec);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1181
	ut_ad(n <= rec_get_n_fields_old(rec));
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196

	if (n == 0) {

		return(0);
	}

	if (rec_get_1byte_offs_flag(rec)) {

		return(rec_1_get_field_start_offs(rec, n));
	}

	return(rec_2_get_field_start_offs(rec, n));
}

/****************************************************************
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1197 1198 1199
Gets the physical size of an old-style field.
Also an SQL null may have a field of size > 0,
if the data type is of a fixed size. */
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
UNIV_INLINE
ulint
rec_get_nth_field_size(
/*===================*/
			/* out: field size in bytes */
 	rec_t*	rec, 	/* in: record */
 	ulint	n)	/* in: index of the field */
{
	ulint	os;
	ulint	next_os;

	os = rec_get_field_start_offs(rec, n);
	next_os = rec_get_field_start_offs(rec, n + 1);

	ut_ad(next_os - os < UNIV_PAGE_SIZE);

	return(next_os - os);
}

/*************************************************************** 
This is used to modify the value of an already existing field in a record.
The previous value must have exactly the same size as the new value. If len
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1222 1223
is UNIV_SQL_NULL then the field is treated as an SQL null for old-style
records. For new-style records, len must not be UNIV_SQL_NULL. */
1224 1225 1226 1227
UNIV_INLINE
void
rec_set_nth_field(
/*==============*/
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
	rec_t*		rec,	/* in: record */
	const ulint*	offsets,/* in: array returned by rec_get_offsets() */
	ulint		n,	/* in: index number of the field */
	const void*	data,	/* in: pointer to the data
				if not SQL null */
	ulint		len)	/* in: length of the data or UNIV_SQL_NULL.
				If not SQL null, must have the same
				length as the previous value.
				If SQL null, previous value must be
				SQL null. */
1238 1239 1240 1241
{
	byte*	data2;
	ulint	len2;

1242
	ut_ad(rec);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1243 1244
	ut_ad(rec_offs_validate(rec, NULL, offsets));

1245
	if (len == UNIV_SQL_NULL) {
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1246
		ut_ad(!rec_offs_comp(offsets));
1247 1248 1249 1250 1251
		rec_set_nth_field_sql_null(rec, n);

		return;
	}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1252
	data2 = rec_get_nth_field(rec, offsets, n, &len2);
1253
	if (len2 == UNIV_SQL_NULL) {
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1254
		ut_ad(!rec_offs_comp(offsets));
1255
		rec_set_nth_field_null_bit(rec, n, FALSE);
1256 1257 1258
		ut_ad(len == rec_get_nth_field_size(rec, n));
	} else {
		ut_ad(len2 == len);
1259
	}
1260 1261

	ut_memcpy(data2, data, len);
1262 1263 1264
}

/************************************************************** 
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1265
The following function returns the data size of an old-style physical
1266 1267 1268 1269 1270
record, that is the sum of field lengths. SQL null fields
are counted as length 0 fields. The value returned by the function
is the distance from record origin to record end in bytes. */
UNIV_INLINE
ulint
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1271 1272 1273
rec_get_data_size_old(
/*==================*/
				/* out: size */
1274 1275 1276 1277
	rec_t*	rec)	/* in: physical record */
{
	ut_ad(rec);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1278
	return(rec_get_field_start_offs(rec, rec_get_n_fields_old(rec)));
1279 1280
}

1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
/************************************************************** 
The following function sets the number of fields in offsets. */
UNIV_INLINE
void
rec_offs_set_n_fields(
/*==================*/
	ulint*	offsets,	/* in: array returned by rec_get_offsets() */
	ulint	n_fields)	/* in: number of fields */
{
	ut_ad(offsets);
	ut_ad(n_fields > 0);
	ut_ad(n_fields <= REC_MAX_N_FIELDS);
	ut_ad(n_fields + REC_OFFS_HEADER_SIZE
		<= rec_offs_get_n_alloc(offsets));
	offsets[1] = n_fields;
}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
/**************************************************************
The following function returns the data size of a physical
record, that is the sum of field lengths. SQL null fields
are counted as length 0 fields. The value returned by the function
is the distance from record origin to record end in bytes. */
UNIV_INLINE
ulint
rec_offs_data_size(
/*===============*/
				/* out: size */
	const ulint*	offsets)/* in: array returned by rec_get_offsets() */
{
	ulint	size;
1311

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1312 1313 1314 1315 1316 1317
	ut_ad(rec_offs_validate(NULL, NULL, offsets));
	size = rec_offs_base(offsets)[rec_offs_n_fields(offsets)]
			& REC_OFFS_MASK;
	ut_ad(size < UNIV_PAGE_SIZE);
	return(size);
}
1318

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334
/**************************************************************
Returns the total size of record minus data size of record. The value
returned by the function is the distance from record start to record origin
in bytes. */
UNIV_INLINE
ulint
rec_offs_extra_size(
/*================*/
				/* out: size */
	const ulint*	offsets)/* in: array returned by rec_get_offsets() */
{
	ulint	size;
	ut_ad(rec_offs_validate(NULL, NULL, offsets));
	size = *rec_offs_base(offsets) & ~REC_OFFS_COMPACT;
	ut_ad(size < UNIV_PAGE_SIZE);
	return(size);
1335 1336
}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1337
/**************************************************************
1338 1339 1340
Returns the total size of a physical record.  */
UNIV_INLINE
ulint
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1341 1342 1343 1344
rec_offs_size(
/*==========*/
				/* out: size */
	const ulint*	offsets)/* in: array returned by rec_get_offsets() */
1345
{
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1346
	return(rec_offs_data_size(offsets) + rec_offs_extra_size(offsets));
1347 1348 1349 1350 1351 1352 1353 1354
}
	
/**************************************************************
Returns a pointer to the end of the record. */
UNIV_INLINE
byte*
rec_get_end(
/*========*/
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1355 1356 1357
				/* out: pointer to end */
	rec_t*		rec,	/* in: pointer to record */
	const ulint*	offsets)/* in: array returned by rec_get_offsets() */
1358
{
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1359
	return(rec + rec_offs_data_size(offsets));
1360 1361 1362 1363 1364 1365 1366 1367
}

/**************************************************************
Returns a pointer to the start of the record. */
UNIV_INLINE
byte*
rec_get_start(
/*==========*/
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1368 1369 1370
				/* out: pointer to start */
	rec_t*		rec,	/* in: pointer to record */
	const ulint*	offsets)/* in: array returned by rec_get_offsets() */
1371
{
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1372
	return(rec - rec_offs_extra_size(offsets));
1373 1374 1375 1376 1377 1378 1379 1380
}

/*******************************************************************
Copies a physical record to a buffer. */
UNIV_INLINE
rec_t*
rec_copy(
/*=====*/
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1381 1382 1383 1384
				/* out: pointer to the origin of the copy */
	void*		buf,	/* in: buffer */
	const rec_t*	rec,	/* in: physical record */
	const ulint*	offsets)/* in: array returned by rec_get_offsets() */
1385 1386 1387 1388 1389
{
	ulint	extra_len;
	ulint	data_len;
	
	ut_ad(rec && buf);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1390 1391
	ut_ad(rec_offs_validate((rec_t*) rec, NULL, offsets));
	ut_ad(rec_validate((rec_t*) rec, offsets));
1392

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1393 1394
	extra_len = rec_offs_extra_size(offsets);
	data_len = rec_offs_data_size(offsets);
1395 1396 1397 1398 1399 1400 1401

	ut_memcpy(buf, rec - extra_len, extra_len + data_len);

	return((byte*)buf + extra_len);
}

/**************************************************************
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1402 1403
Returns the extra size of an old-style physical record if we know its
data size and number of fields. */
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
UNIV_INLINE
ulint
rec_get_converted_extra_size(
/*=========================*/
				/* out: extra size */
	ulint	data_size,	/* in: data size */
	ulint	n_fields)	/* in: number of fields */
{
	if (data_size <= REC_1BYTE_OFFS_LIMIT) {

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1414
		return(REC_N_OLD_EXTRA_BYTES + n_fields);
1415 1416
	}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1417
	return(REC_N_OLD_EXTRA_BYTES + 2 * n_fields);
1418 1419
}

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1420 1421 1422 1423 1424 1425 1426 1427 1428 1429
/**************************************************************
The following function returns the size of a data tuple when converted to
a new-style physical record. */

ulint
rec_get_converted_size_new(
/*=======================*/
				/* out: size */
	dict_index_t*	index,	/* in: record descriptor */
	dtuple_t*	dtuple);/* in: data tuple */
1430 1431 1432 1433 1434 1435 1436 1437
/**************************************************************
The following function returns the size of a data tuple when converted to
a physical record. */
UNIV_INLINE
ulint
rec_get_converted_size(
/*===================*/
				/* out: size */
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1438
	dict_index_t*	index,	/* in: record descriptor */
1439 1440 1441 1442
	dtuple_t*	dtuple)	/* in: data tuple */
{
	ulint	data_size;
	ulint	extra_size;
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1443 1444

	ut_ad(index);
1445 1446 1447
	ut_ad(dtuple);
	ut_ad(dtuple_check_typed(dtuple));

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458
	ut_ad(index->type & DICT_UNIVERSAL
		|| dtuple_get_n_fields(dtuple) ==
		(((dtuple_get_info_bits(dtuple) & REC_NEW_STATUS_MASK)
			== REC_STATUS_NODE_PTR)
				? dict_index_get_n_unique_in_tree(index) + 1
				: dict_index_get_n_fields(index)));

	if (index->table->comp) {
		return(rec_get_converted_size_new(index, dtuple));
	}

1459 1460 1461 1462 1463 1464 1465 1466 1467
	data_size = dtuple_get_data_size(dtuple);

	extra_size = rec_get_converted_extra_size(
				data_size, dtuple_get_n_fields(dtuple));

	return(data_size + extra_size);
}

/****************************************************************
heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
1468 1469
Folds a prefix of a physical record to a ulint. Folds only existing fields,
that is, checks that we do not run out of the record. */
1470 1471 1472 1473
UNIV_INLINE
ulint
rec_fold(
/*=====*/
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1474 1475 1476 1477 1478 1479 1480 1481 1482
					/* out: the folded value */
	rec_t*		rec,		/* in: the physical record */
	const ulint*	offsets,	/* in: array returned by
					rec_get_offsets() */
	ulint		n_fields,	/* in: number of complete
					fields to fold */
	ulint		n_bytes,	/* in: number of bytes to fold
					in an incomplete last field */
	dulint		tree_id)	/* in: index tree id */
1483 1484 1485 1486 1487
{
	ulint	i;
	byte*	data;
	ulint	len;
	ulint	fold;
heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
1488
	ulint	n_fields_rec;
1489

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1490 1491
	ut_ad(rec_offs_validate(rec, NULL, offsets));
	ut_ad(rec_validate((rec_t*) rec, offsets));
1492
	ut_ad(n_fields + n_bytes > 0);
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1493 1494 1495 1496

	n_fields_rec = rec_offs_n_fields(offsets);
	ut_ad(n_fields <= n_fields_rec);
	ut_ad(n_fields < n_fields_rec || n_bytes == 0);
heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
1497 1498 1499 1500 1501 1502 1503 1504 1505

	if (n_fields > n_fields_rec) {
	        n_fields = n_fields_rec;
	}

	if (n_fields == n_fields_rec) {
	        n_bytes = 0;
	}

1506 1507 1508
	fold = ut_fold_dulint(tree_id);
	
	for (i = 0; i < n_fields; i++) {
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1509
		data = rec_get_nth_field(rec, offsets, i, &len);
1510 1511 1512 1513 1514 1515 1516 1517

		if (len != UNIV_SQL_NULL) {
			fold = ut_fold_ulint_pair(fold,
						  ut_fold_binary(data, len));
		}
	}

	if (n_bytes > 0) {
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1518
		data = rec_get_nth_field(rec, offsets, i, &len);
1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531

		if (len != UNIV_SQL_NULL) {
			if (len > n_bytes) {
				len = n_bytes;
			}
		
			fold = ut_fold_ulint_pair(fold,
						  ut_fold_binary(data, len));
		}
	}

	return(fold);
}