1
/*****************************************************************************
3
Copyright (C) 1995, 2009, Innobase Oy. All Rights Reserved.
5
This program is free software; you can redistribute it and/or modify it under
6
the terms of the GNU General Public License as published by the Free Software
7
Foundation; version 2 of the License.
9
This program is distributed in the hope that it will be useful, but WITHOUT
10
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
You should have received a copy of the GNU General Public License along with
14
this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
15
St, Fifth Floor, Boston, MA 02110-1301 USA
17
*****************************************************************************/
19
/******************************************************************//**
20
@file include/mach0data.h
21
Utilities for converting data from the database file
22
to the machine format.
24
Created 11/28/1995 Heikki Tuuri
25
***********************************************************************/
33
/* The data and all fields are always stored in a database file
34
in the same format: ascii, big-endian, ... .
35
All data in the files MUST be accessed using the functions in this
38
/*******************************************************//**
39
The following function is used to store data in one byte. */
44
byte* b, /*!< in: pointer to byte where to store */
45
ulint n); /*!< in: ulint integer to be stored, >= 0, < 256 */
46
/********************************************************//**
47
The following function is used to fetch data from one byte.
48
@return ulint integer, >= 0, < 256 */
53
const byte* b) /*!< in: pointer to byte */
54
__attribute__((nonnull, pure));
55
/*******************************************************//**
56
The following function is used to store data in two consecutive
57
bytes. We store the most significant byte to the lower address. */
62
byte* b, /*!< in: pointer to two bytes where to store */
63
ulint n); /*!< in: ulint integer to be stored, >= 0, < 64k */
64
/********************************************************//**
65
The following function is used to fetch data from two consecutive
66
bytes. The most significant byte is at the lowest address.
67
@return ulint integer, >= 0, < 64k */
72
const byte* b) /*!< in: pointer to two bytes */
73
__attribute__((nonnull, pure));
75
/********************************************************//**
76
The following function is used to convert a 16-bit data item
77
to the canonical format, for fast bytewise equality test
79
@return 16-bit integer in canonical format */
84
ulint n) /*!< in: integer in machine-dependent format */
85
__attribute__((const));
86
/********************************************************//**
87
The following function is used to convert a 16-bit data item
88
from the canonical format, for fast bytewise equality test
90
@return integer in machine-dependent format */
95
uint16 n) /*!< in: 16-bit integer in canonical format */
96
__attribute__((const));
97
/*******************************************************//**
98
The following function is used to store data in 3 consecutive
99
bytes. We store the most significant byte to the lowest address. */
104
byte* b, /*!< in: pointer to 3 bytes where to store */
105
ulint n); /*!< in: ulint integer to be stored */
106
/********************************************************//**
107
The following function is used to fetch data from 3 consecutive
108
bytes. The most significant byte is at the lowest address.
109
@return ulint integer */
114
const byte* b) /*!< in: pointer to 3 bytes */
115
__attribute__((nonnull, pure));
116
/*******************************************************//**
117
The following function is used to store data in four consecutive
118
bytes. We store the most significant byte to the lowest address. */
123
byte* b, /*!< in: pointer to four bytes where to store */
124
ulint n); /*!< in: ulint integer to be stored */
125
/********************************************************//**
126
The following function is used to fetch data from 4 consecutive
127
bytes. The most significant byte is at the lowest address.
128
@return ulint integer */
133
const byte* b) /*!< in: pointer to four bytes */
134
__attribute__((nonnull, pure));
135
/*********************************************************//**
136
Writes a ulint in a compressed form (1..5 bytes).
137
@return stored size in bytes */
140
mach_write_compressed(
141
/*==================*/
142
byte* b, /*!< in: pointer to memory where to store */
143
ulint n); /*!< in: ulint integer to be stored */
144
/*********************************************************//**
145
Returns the size of an ulint when written in the compressed form.
146
@return compressed size in bytes */
149
mach_get_compressed_size(
150
/*=====================*/
151
ulint n) /*!< in: ulint integer to be stored */
152
__attribute__((const));
153
/*********************************************************//**
154
Reads a ulint in a compressed form.
155
@return read integer */
158
mach_read_compressed(
159
/*=================*/
160
const byte* b) /*!< in: pointer to memory from where to read */
161
__attribute__((nonnull, pure));
162
/*******************************************************//**
163
The following function is used to store data in 6 consecutive
164
bytes. We store the most significant byte to the lowest address. */
169
byte* b, /*!< in: pointer to 6 bytes where to store */
170
ib_uint64_t id); /*!< in: 48-bit integer */
171
/********************************************************//**
172
The following function is used to fetch data from 6 consecutive
173
bytes. The most significant byte is at the lowest address.
174
@return 48-bit integer */
179
const byte* b) /*!< in: pointer to 6 bytes */
180
__attribute__((nonnull, pure));
181
/*******************************************************//**
182
The following function is used to store data in 7 consecutive
183
bytes. We store the most significant byte to the lowest address. */
188
byte* b, /*!< in: pointer to 7 bytes where to store */
189
ib_uint64_t n); /*!< in: 56-bit integer */
190
/********************************************************//**
191
The following function is used to fetch data from 7 consecutive
192
bytes. The most significant byte is at the lowest address.
193
@return 56-bit integer */
198
const byte* b) /*!< in: pointer to 7 bytes */
199
__attribute__((nonnull, pure));
200
/*******************************************************//**
201
The following function is used to store data in 8 consecutive
202
bytes. We store the most significant byte to the lowest address. */
207
byte* b, /*!< in: pointer to 8 bytes where to store */
208
ib_uint64_t n); /*!< in: 64-bit integer to be stored */
209
/********************************************************//**
210
The following function is used to fetch data from 8 consecutive
211
bytes. The most significant byte is at the lowest address.
212
@return 64-bit integer */
217
const byte* b) /*!< in: pointer to 8 bytes */
218
__attribute__((nonnull, pure));
219
/*********************************************************//**
220
Writes a 64-bit integer in a compressed form (5..9 bytes).
221
@return size in bytes */
224
mach_ull_write_compressed(
225
/*======================*/
226
byte* b, /*!< in: pointer to memory where to store */
227
ib_uint64_t n); /*!< in: 64-bit integer to be stored */
228
/*********************************************************//**
229
Returns the size of a 64-bit integer when written in the compressed form.
230
@return compressed size in bytes */
233
mach_ull_get_compressed_size(
234
/*=========================*/
235
ib_uint64_t n); /*!< in: 64-bit integer to be stored */
236
/*********************************************************//**
237
Reads a 64-bit integer in a compressed form.
238
@return the value read */
241
mach_ull_read_compressed(
242
/*=====================*/
243
const byte* b) /*!< in: pointer to memory from where to read */
244
__attribute__((nonnull, pure));
245
/*********************************************************//**
246
Writes a 64-bit integer in a compressed form (1..11 bytes).
247
@return size in bytes */
250
mach_ull_write_much_compressed(
251
/*===========================*/
252
byte* b, /*!< in: pointer to memory where to store */
253
ib_uint64_t n); /*!< in: 64-bit integer to be stored */
254
/*********************************************************//**
255
Returns the size of a 64-bit integer when written in the compressed form.
256
@return compressed size in bytes */
259
mach_ull_get_much_compressed_size(
260
/*==============================*/
261
ib_uint64_t n) /*!< in: 64-bit integer to be stored */
262
__attribute__((const));
263
/*********************************************************//**
264
Reads a 64-bit integer in a compressed form.
265
@return the value read */
268
mach_ull_read_much_compressed(
269
/*==========================*/
270
const byte* b) /*!< in: pointer to memory from where to read */
271
__attribute__((nonnull, pure));
272
/*********************************************************//**
273
Reads a ulint in a compressed form if the log record fully contains it.
274
@return pointer to end of the stored field, NULL if not complete */
277
mach_parse_compressed(
278
/*==================*/
279
byte* ptr, /*!< in: pointer to buffer from where to read */
280
byte* end_ptr,/*!< in: pointer to end of the buffer */
281
ulint* val); /*!< out: read value */
282
/*********************************************************//**
283
Reads a 64-bit integer in a compressed form
284
if the log record fully contains it.
285
@return pointer to end of the stored field, NULL if not complete */
288
mach_ull_parse_compressed(
289
/*======================*/
290
byte* ptr, /*!< in: pointer to buffer from where to read */
291
byte* end_ptr,/*!< in: pointer to end of the buffer */
292
ib_uint64_t* val); /*!< out: read value */
293
#ifndef UNIV_HOTBACKUP
294
/*********************************************************//**
295
Reads a double. It is stored in a little-endian format.
296
@return double read */
301
const byte* b) /*!< in: pointer to memory from where to read */
302
__attribute__((nonnull, pure));
303
/*********************************************************//**
304
Writes a double. It is stored in a little-endian format. */
309
byte* b, /*!< in: pointer to memory where to write */
310
double d); /*!< in: double */
311
/*********************************************************//**
312
Reads a float. It is stored in a little-endian format.
313
@return float read */
318
const byte* b) /*!< in: pointer to memory from where to read */
319
__attribute__((nonnull, pure));
320
/*********************************************************//**
321
Writes a float. It is stored in a little-endian format. */
326
byte* b, /*!< in: pointer to memory where to write */
327
float d); /*!< in: float */
328
/*********************************************************//**
329
Reads a ulint stored in the little-endian format.
330
@return unsigned long int */
333
mach_read_from_n_little_endian(
334
/*===========================*/
335
const byte* buf, /*!< in: from where to read */
336
ulint buf_size) /*!< in: from how many bytes to read */
337
__attribute__((nonnull, pure));
338
/*********************************************************//**
339
Writes a ulint in the little-endian format. */
342
mach_write_to_n_little_endian(
343
/*==========================*/
344
byte* dest, /*!< in: where to write */
345
ulint dest_size, /*!< in: into how many bytes to write */
346
ulint n); /*!< in: unsigned long int to write */
347
/*********************************************************//**
348
Reads a ulint stored in the little-endian format.
349
@return unsigned long int */
352
mach_read_from_2_little_endian(
353
/*===========================*/
354
const byte* buf) /*!< in: from where to read */
355
__attribute__((nonnull, pure));
356
/*********************************************************//**
357
Writes a ulint in the little-endian format. */
360
mach_write_to_2_little_endian(
361
/*==========================*/
362
byte* dest, /*!< in: where to write */
363
ulint n); /*!< in: unsigned long int to write */
365
/*********************************************************//**
366
Convert integral type from storage byte order (big endian) to
368
@return integer value */
373
const byte* src, /*!< in: where to read from */
374
ulint len, /*!< in: length of src */
375
ibool unsigned_type); /*!< in: signed or unsigned flag */
376
#endif /* !UNIV_HOTBACKUP */
379
#include "mach0data.ic"