MySQL 8.4.5
Source Code Documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
my_sys.h
Go to the documentation of this file.
1/* Copyright (c) 2000, 2025, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef _my_sys_h
25#define _my_sys_h
26
27/**
28 @defgroup MYSYS Mysys - low level utilities for MySQL
29 @ingroup Runtime_Environment
30 @{
31 @file include/my_sys.h Common header for many mysys elements.
32 @note Many mysys implementation files now have their own header file.
33*/
34
35#include "my_config.h"
36
37#ifdef HAVE_ALLOCA_H
38#include <alloca.h>
39#endif
40#include <limits.h>
41#ifdef _WIN32
42#include <malloc.h>
43#endif
44#ifdef HAVE_UNISTD_H
45#include <unistd.h>
46#endif
47#include <stdarg.h>
48#include <stdio.h>
49#ifdef HAVE_SYS_SELECT_H
50#include <sys/select.h>
51#endif
52#include <sys/types.h>
53#include <time.h>
54
55#include <atomic> // error_handler_hook
56#include <cstring>
57
58#include "my_compiler.h"
59#include "my_compress.h"
60#include "my_inttypes.h"
61#include "mysql/my_loglevel.h"
62
63/* HAVE_PSI_*_INTERFACE */
64#include "my_psi_config.h" /* IWYU pragma: keep */
65
66#include "my_sharedlib.h"
75#include "sql/stream_cipher.h"
76#include "string_with_len.h"
77
79
80struct CHARSET_INFO;
82
101struct MEM_ROOT;
102
103#define MY_INIT(name) \
104 { \
105 my_progname = name; \
106 my_init(); \
107 }
108
109/**
110 Max length of an error message generated by mysys utilities.
111 Some mysys functions produce error messages. These mostly go
112 to stderr.
113 This constant defines the size of the buffer used to format
114 the message. It should be kept in sync with MYSQL_ERRMSG_SIZE,
115 since sometimes mysys errors are stored in the server diagnostics
116 area, and we would like to avoid unexpected truncation.
117*/
118#define MYSYS_ERRMSG_SIZE (512)
119#define MYSYS_STRERROR_SIZE (128)
120
121#define MY_FILE_ERROR ((size_t)-1)
122
123/* General bitmaps for my_func's */
124// 1 used to be MY_FFNF which has been removed
125#define MY_FNABP 2 /* Fatal if not all bytes read/written */
126#define MY_NABP 4 /* Error if not all bytes read/written */
127#define MY_FAE 8 /* Fatal if any error */
128#define MY_WME 16 /* Write message on error */
129#define MY_WAIT_IF_FULL 32 /* Wait and try again if disk full error */
130#define MY_IGNORE_BADFD 32 /* my_sync: ignore 'bad descriptor' errors */
131#define MY_REPORT_WAITING_IF_FULL 64 /* my_write: set status as waiting */
132#define MY_FULL_IO 512 /* For my_read - loop intil I/O is complete */
133#define MY_DONT_CHECK_FILESIZE 128 /* Option to init_io_cache() */
134#define MY_LINK_WARNING 32 /* my_redel() gives warning if links */
135#define MY_COPYTIME 64 /* my_redel() copies time */
136#define MY_DELETE_OLD 256 /* my_create_with_symlink() */
137#define MY_RESOLVE_LINK 128 /* my_realpath(); Only resolve links */
138#define MY_HOLD_ORIGINAL_MODES 128 /* my_copy() holds to file modes */
139#define MY_SEEK_NOT_DONE 32 /* my_lock may have to do a seek */
140#define MY_DONT_WAIT 64 /* my_lock() don't wait if can't lock */
141#define MY_ZEROFILL 32 /* my_malloc(), fill array with zero */
142#define MY_ALLOW_ZERO_PTR 64 /* my_realloc() ; zero ptr -> malloc */
143#define MY_FREE_ON_ERROR 128 /* my_realloc() ; Free old ptr on error */
144#define MY_HOLD_ON_ERROR 256 /* my_realloc() ; Return old ptr on error */
145#define MY_DONT_OVERWRITE_FILE 1024 /* my_copy: Don't overwrite file */
146#define MY_SYNC 4096 /* my_copy(): sync dst file */
147
148#define MYF_RW MYF(MY_WME + MY_NABP) /* For my_read & my_write */
149
150#define MY_CHECK_ERROR 1 /* Params to my_end; Check open-close */
151#define MY_GIVE_INFO 2 /* Give time info about process*/
152#define MY_DONT_FREE_DBUG 4 /* Do not call DBUG_END() in my_end() */
153#define MY_END_PROXY_MAIN_THD 8 /* Free resources for main thread */
154
155/* Flags for my_error() */
156#define ME_BELL 4 /* DEPRECATED: Ring bell then printing message */
157#define ME_ERRORLOG 64 /* Write the error message to error log */
158#define ME_FATALERROR 1024 /* Fatal statement error */
159
160/* Bits in last argument to fn_format */
161#define MY_REPLACE_DIR 1 /* replace dir in name with 'dir' */
162#define MY_REPLACE_EXT 2 /* replace extension with 'ext' */
163#define MY_UNPACK_FILENAME 4 /* Unpack name (~ -> home) */
164/* 8 Unused. Previously used for MY_PACK_FILENAME. */
165#define MY_RESOLVE_SYMLINKS 16 /* Resolve all symbolic links */
166#define MY_RETURN_REAL_PATH 32 /* return full path for file */
167#define MY_SAFE_PATH 64 /* Return NULL if too long path */
168#define MY_RELATIVE_PATH 128 /* name is relative to 'dir' */
169#define MY_APPEND_EXT 256 /* add 'ext' as additional extension*/
170
171/* My seek flags */
172#define MY_SEEK_SET 0
173#define MY_SEEK_CUR 1
174#define MY_SEEK_END 2
175
176/* Some constants */
177#define MY_WAIT_FOR_USER_TO_FIX_PANIC 60 /* in seconds */
178#define MY_WAIT_GIVE_USER_A_MESSAGE 10 /* Every 10 times of prev */
179#define MIN_COMPRESS_LENGTH 50 /* Don't compress small bl. */
180#define DFLT_INIT_HITS 3
181
182/* Internal error numbers (for assembler functions) */
183#define MY_ERRNO_EDOM 33
184#define MY_ERRNO_ERANGE 34
185
186/* defines when allocating data */
187extern void *my_multi_malloc(PSI_memory_key key, myf flags, ...);
188
189/*
190 Switch to my_malloc() if the memory block to be allocated is bigger than
191 max_alloca_sz.
192*/
194#define my_safe_alloca(size, max_alloca_sz) \
195 ((size <= max_alloca_sz) ? my_alloca(size) \
196 : my_malloc(key_memory_max_alloca, size, MYF(0)))
197#define my_safe_afree(ptr, size, max_alloca_sz) \
198 if (size > max_alloca_sz) my_free(ptr)
199
200#if defined(ENABLED_DEBUG_SYNC)
201using DebugSyncCallbackFp = void (*)(const char *, size_t);
202extern DebugSyncCallbackFp debug_sync_C_callback_ptr;
203
204#define DEBUG_SYNC_C(_sync_point_name_) \
205 do { \
206 if (debug_sync_C_callback_ptr != NULL) \
207 (*debug_sync_C_callback_ptr)(STRING_WITH_LEN(_sync_point_name_)); \
208 } while (0)
209#define DEBUG_SYNC_C_IF_THD(thd, _sync_point_name_) \
210 do { \
211 if (debug_sync_C_callback_ptr != NULL && thd) \
212 (*debug_sync_C_callback_ptr)(STRING_WITH_LEN(_sync_point_name_)); \
213 } while (0)
214#else
215#define DEBUG_SYNC_C(_sync_point_name_)
216#define DEBUG_SYNC_C_IF_THD(thd, _sync_point_name_)
217#endif /* defined(ENABLED_DEBUG_SYNC) */
218
219#ifdef HAVE_LINUX_LARGE_PAGES
220extern uint my_get_large_page_size(void);
221#else
222#define my_get_large_page_size() (0)
223#endif /* HAVE_LINUX_LARGE_PAGES */
224
225#define my_alloca(SZ) alloca((size_t)(SZ))
226
227extern char *home_dir; /* Home directory for user */
228extern const char *my_progname; /* program-name (printed in errors) */
229
230using ErrorHandlerFunctionPointer = void (*)(uint, const char *, myf);
231extern std::atomic<ErrorHandlerFunctionPointer> error_handler_hook;
232extern void (*local_message_hook)(enum loglevel ll, uint ecode, va_list args);
233
235
236/*
237 Hooks for reporting execution stage information. The server implementation
238 of these will also set THD::current_cond/current_mutex.
239 By having hooks, we avoid direct dependencies on server code.
240*/
241extern void (*enter_cond_hook)(void *opaque_thd, mysql_cond_t *cond,
242 mysql_mutex_t *mutex,
243 const PSI_stage_info *stage,
244 PSI_stage_info *old_stage,
245 const char *src_function, const char *src_file,
246 int src_line);
247
248extern void (*exit_cond_hook)(void *opaque_thd, const PSI_stage_info *stage,
249 const char *src_function, const char *src_file,
250 int src_line);
251
252extern void (*enter_stage_hook)(void *opaque_thd,
253 const PSI_stage_info *new_stage,
254 PSI_stage_info *old_stage,
255 const char *src_function, const char *src_file,
256 int src_line);
257
258/*
259 Hook for setting THD waiting_for_disk_space flag.
260*/
261extern void (*set_waiting_for_disk_space_hook)(void *opaque_thd, bool waiting);
262/*
263 Hook for checking if the thread has been killed.
264*/
265extern int (*is_killed_hook)(const void *opaque_thd);
266
267/* charsets */
268#define MY_ALL_CHARSETS_SIZE 2048
272
273/* statistics */
274extern ulong my_tmp_file_created;
275extern ulong my_file_opened;
276extern ulong my_stream_opened;
277extern ulong my_file_total_opened;
278extern bool my_init_done;
279
280extern MYSQL_PLUGIN_IMPORT int my_umask; /* Default creation mask */
281extern int my_umask_dir;
282
285
286extern const char *charsets_dir;
287
292 SEQ_READ_APPEND /* sequential read or append */,
297
299 FLUSH_KEEP, /* flush block and keep it in the cache */
300 FLUSH_RELEASE, /* flush block and remove it from the cache */
301 FLUSH_IGNORE_CHANGED, /* remove block from the cache */
302 /*
303 As my_disable_flush_pagecache_blocks is always 0, the following option
304 is strictly equivalent to FLUSH_KEEP
305 */
308
310 uchar *buffer{nullptr};
315};
316
317struct MY_TMPDIR {
318 char **list{nullptr};
319 uint cur{0}, max{0};
321};
322
324 char *str;
326};
327
328struct IO_CACHE;
329typedef int (*IO_CACHE_CALLBACK)(IO_CACHE *);
330
332 mysql_mutex_t mutex; /* To sync on reads into buffer. */
333 mysql_cond_t cond; /* To wait for signals. */
334 mysql_cond_t cond_writer; /* For a synchronized writer. */
335 /* Offset in file corresponding to the first byte of buffer. */
337 /* If a synchronized write cache is the source of the data. */
339 uchar *buffer; /* The read buffer. */
340 uchar *read_end; /* Behind last valid byte of buffer. */
341 int running_threads; /* threads not in lock. */
342 int total_threads; /* threads sharing the cache. */
343 int error; /* Last error. */
344};
345
346struct IO_CACHE /* Used when caching files */
347{
348 /* Offset in file corresponding to the first byte of uchar* buffer. */
350 /*
351 The offset of end of file for READ_CACHE and WRITE_CACHE.
352 For SEQ_READ_APPEND it the maximum of the actual end of file and
353 the position represented by read_end.
354 */
356 /* Points to current read position in the buffer */
357 uchar *read_pos{nullptr};
358 /* the non-inclusive boundary in the buffer for the currently valid read */
359 uchar *read_end{nullptr};
360 uchar *buffer{nullptr}; /* The read buffer */
361 /* Used in ASYNC_IO */
363
364 /* Only used in WRITE caches and in SEQ_READ_APPEND to buffer writes */
366 /*
367 Only used in SEQ_READ_APPEND, and points to the current read position
368 in the write buffer. Note that reads in SEQ_READ_APPEND caches can
369 happen from both read buffer (uchar* buffer) and write buffer
370 (uchar* write_buffer).
371 */
373 /* Points to current write position in the write buffer */
374 uchar *write_pos{nullptr};
375 /* The non-inclusive boundary of the valid write area */
376 uchar *write_end{nullptr};
377
378 /*
379 Current_pos and current_end are convenience variables used by
380 my_b_tell() and other routines that need to know the current offset
381 current_pos points to &write_pos, and current_end to &write_end in a
382 WRITE_CACHE, and &read_pos and &read_end respectively otherwise
383 */
384 uchar **current_pos{nullptr}, **current_end{nullptr};
385
386 /*
387 The lock is for append buffer used in SEQ_READ_APPEND cache
388 need mutex copying from append buffer to read buffer.
389 */
391 /*
392 The following is used when several threads are reading the
393 same file in parallel. They are synchronized on disk
394 accesses reading the cached part of the file asynchronously.
395 It should be set to NULL to disable the feature. Only
396 READ_CACHE mode is supported.
397 */
399
400 /*
401 A caller will use my_b_read() macro to read from the cache
402 if the data is already in cache, it will be simply copied with
403 memcpy() and internal variables will be accordinging updated with
404 no functions invoked. However, if the data is not fully in the cache,
405 my_b_read() will call read_function to fetch the data. read_function
406 must never be invoked directly.
407 */
408 int (*read_function)(IO_CACHE *, uchar *, size_t){nullptr};
409 /*
410 Same idea as in the case of read_function, except my_b_write() needs to
411 be replaced with my_b_append() for a SEQ_READ_APPEND cache
412 */
413 int (*write_function)(IO_CACHE *, const uchar *, size_t){nullptr};
414 /*
415 Specifies the type of the cache. Depending on the type of the cache
416 certain operations might not be available and yield unpredictable
417 results. Details to be documented later
418 */
420 /*
421 Callbacks when the actual read I/O happens. These were added and
422 are currently used for binary logging of LOAD DATA INFILE - when a
423 block is read from the file, we create a block create/append event, and
424 when IO_CACHE is closed, we create an end event. These functions could,
425 of course be used for other things
426 */
430 /*
431 Counts the number of times, when we were forced to use disk. We use it to
432 increase the binlog_cache_disk_use and binlog_stmt_cache_disk_use status
433 variables.
434 */
435 ulong disk_writes{0};
436 void *arg{nullptr}; /* for use by pre/post_read */
437 char *file_name{nullptr}; /* if used with 'open_cached_file' */
438 char *dir{nullptr}, *prefix{nullptr};
439 File file{-1}; /* file descriptor */
440 PSI_file_key file_key{PSI_NOT_INSTRUMENTED}; /* instrumented file key */
441
442 /*
443 seek_not_done is set by my_b_seek() to inform the upcoming read/write
444 operation that a seek needs to be performed prior to the actual I/O
445 error is 0 if the cache operation was successful, -1 if there was a
446 "hard" error, and the actual number of I/O-ed bytes if the read/write was
447 partial.
448 */
449 bool seek_not_done{false};
450 int error{0};
451 /* buffer_length is memory size allocated for buffer or write_buffer */
452 size_t buffer_length{0};
453 /* read_length is the same as buffer_length except when we use async io */
454 size_t read_length{0};
455 myf myflags{0}; /* Flags used to my_read/my_write */
456 /*
457 alloced_buffer is 1 if the buffer was allocated by init_io_cache() and
458 0 if it was supplied by the user.
459 Currently READ_NET is the only one that will use a buffer allocated
460 somewhere else
461 */
462 bool alloced_buffer{false};
463 // This is an encryptor for encrypting the temporary file of the IO cache.
465 // This is a decryptor for decrypting the temporary file of the IO cache.
467 // Synchronize flushed buffer with disk.
468 bool disk_sync{false};
469 // Delay in milliseconds after disk synchronization of the flushed buffer.
470 // Requires disk_sync = true.
472};
473
474typedef int (*qsort2_cmp)(const void *, const void *, const void *);
475
476/*
477 Subset of struct stat fields filled by stat/lstat/fstat that uniquely
478 identify a file
479*/
481 dev_t st_dev;
482 ino_t st_ino;
483};
484
485typedef void (*my_error_reporter)(enum loglevel level, uint ecode, ...);
486typedef void (*my_error_vreporter)(enum loglevel level, uint ecode, va_list);
487
489
490/* defines for mf_iocache */
492
493/* Test if buffer is inited */
494inline void my_b_clear(IO_CACHE *info) { info->buffer = nullptr; }
495
496inline bool my_b_inited(const IO_CACHE *info) {
497 return info->buffer != nullptr;
498}
499
500constexpr int my_b_EOF = INT_MIN;
501
502inline int my_b_read(IO_CACHE *info, uchar *buffer, size_t count) {
503 assert(info->type != WRITE_CACHE);
504 if (info->read_pos + count <= info->read_end) {
505 memcpy(buffer, info->read_pos, count);
506 info->read_pos += count;
507 return 0;
508 }
509 return (*info->read_function)(info, buffer, count);
510}
511
512inline int my_b_write(IO_CACHE *info, const uchar *buffer, size_t count) {
513 assert(info->type != READ_CACHE);
514 if (info->write_pos + count <= info->write_end) {
515 memcpy(info->write_pos, buffer, count);
516 info->write_pos += count;
517 return 0;
518 }
519 return (*info->write_function)(info, buffer, count);
520}
521
522extern int _my_b_get(IO_CACHE *info);
523
524inline int my_b_get(IO_CACHE *info) {
525 if (info->read_pos != info->read_end) {
526 info->read_pos++;
527 return info->read_pos[-1];
528 }
529 return _my_b_get(info);
530}
531
532inline my_off_t my_b_tell(const IO_CACHE *info) {
533 return info->pos_in_file + *info->current_pos - info->request_pos;
534}
535
537 return info->request_pos;
538}
539
540inline size_t my_b_get_bytes_in_buffer(const IO_CACHE *info) {
541 return info->read_end - my_b_get_buffer_start(info);
542}
543
545 return info->pos_in_file;
546}
547
548/* tell write offset in the SEQ_APPEND cache */
549int my_b_copy_to_file(IO_CACHE *cache, FILE *file);
550
551inline size_t my_b_bytes_in_cache(const IO_CACHE *info) {
552 return *info->current_end - *info->current_pos;
553}
554
555/*
556 How much overhead does malloc have. The code often allocates
557 something like 1024-MALLOC_OVERHEAD bytes
558*/
559#define MALLOC_OVERHEAD 8
560
561/* Typical record cache */
562#define RECORD_CACHE_SIZE (uint)(64 * 1024 - MALLOC_OVERHEAD)
563
564/** struct for once_alloc (block) */
565struct USED_MEM {
566 USED_MEM *next; /**< Next block in use */
567 unsigned int left; /**< memory left in block */
568 unsigned int size; /**< size of block */
569};
570
571/* Prototypes for mysys and my_func functions */
572
573extern int my_copy(const char *from, const char *to, myf MyFlags);
574extern int my_delete(const char *name, myf MyFlags);
575extern int my_getwd(char *buf, size_t size, myf MyFlags);
576extern int my_setwd(const char *dir, myf MyFlags);
577extern void *my_once_alloc(size_t Size, myf MyFlags);
578extern void my_once_free(void);
579extern char *my_once_strdup(const char *src, myf myflags);
580extern void *my_once_memdup(const void *src, size_t len, myf myflags);
581extern File my_open(const char *filename, int Flags, myf MyFlags);
582
583extern File my_create(const char *FileName, int CreateFlags, int AccessFlags,
584 myf MyFlags);
585extern int my_close(File fd, myf MyFlags);
586extern int my_mkdir(const char *dir, int Flags, myf MyFlags);
587extern int my_readlink(char *to, const char *filename, myf MyFlags);
588extern int my_is_symlink(const char *filename, ST_FILE_ID *file_id);
589extern int my_realpath(char *to, const char *filename, myf MyFlags);
590extern int my_is_same_file(File file, const ST_FILE_ID *file_id);
591extern File my_create_with_symlink(const char *linkname, const char *filename,
592 int createflags, int access_flags,
593 myf MyFlags);
594extern int my_delete_with_symlink(const char *name, myf MyFlags);
595extern int my_rename_with_symlink(const char *from, const char *to,
596 myf MyFlags);
597#ifndef _WIN32
598extern int my_symlink(const char *content, const char *linkname, myf MyFlags);
599#endif
600extern size_t my_read(File Filedes, uchar *Buffer, size_t Count, myf MyFlags);
601extern size_t my_pread(File Filedes, uchar *Buffer, size_t Count,
602 my_off_t offset, myf MyFlags);
603extern int my_rename(const char *from, const char *to, myf MyFlags);
604extern my_off_t my_seek(File fd, my_off_t pos, int whence, myf MyFlags);
605extern my_off_t my_tell(File fd, myf MyFlags);
606extern size_t my_write(File Filedes, const uchar *Buffer, size_t Count,
607 myf MyFlags);
608extern size_t my_pwrite(File Filedes, const uchar *Buffer, size_t Count,
609 my_off_t offset, myf MyFlags);
610extern size_t my_fread(FILE *stream, uchar *Buffer, size_t Count, myf MyFlags);
611extern size_t my_fwrite(FILE *stream, const uchar *Buffer, size_t Count,
612 myf MyFlags);
613extern my_off_t my_fseek(FILE *stream, my_off_t pos, int whence);
614extern my_off_t my_ftell(FILE *stream);
615
616/* implemented in my_syslog.c */
617
618// Maximum size of message that will be logged.
619#define MAX_SYSLOG_MESSAGE_SIZE 1024
620
621/* Platform-independent SysLog support */
623
624extern int my_openlog(const char *eventSourceName, int option, int facility);
625extern int my_closelog();
626extern int my_syslog(const CHARSET_INFO *cs, enum loglevel level,
627 const char *msg);
628
629#ifdef _WIN32
630extern int my_access(const char *path, int amode);
631#else
632#define my_access access
633#endif
634
635extern int check_if_legal_filename(const char *path);
636extern int check_if_legal_tablename(const char *path);
637
638#ifdef _WIN32
639extern bool is_filename_allowed(const char *name, size_t length,
640 bool allow_current_dir);
641#else /* _WIN32 */
642#define is_filename_allowed(name, length, allow_cwd) (true)
643#endif /* _WIN32 */
644
645#ifdef _WIN32
646extern int nt_share_delete(const char *name, myf MyFlags);
647#define my_delete_allow_opened(fname, flags) nt_share_delete((fname), (flags))
648#else
649#define my_delete_allow_opened(fname, flags) my_delete((fname), (flags))
650#endif
651
652#ifdef _WIN32
653/* Windows-only functions (CRT equivalents)*/
654extern HANDLE my_get_osfhandle(File fd);
655extern void my_osmaperr(unsigned long last_error);
656#endif
657
658extern const char *get_global_errmsg(int nr);
659extern void wait_for_free_space(const char *filename, int errors);
660extern FILE *my_fopen(const char *filename, int Flags, myf MyFlags);
661extern FILE *my_fdopen(File fd, const char *filename, int Flags, myf MyFlags);
662extern FILE *my_freopen(const char *filename, const char *mode, FILE *stream);
663extern int my_fclose(FILE *stream, myf MyFlags);
664extern File my_fileno(FILE *stream);
665extern int my_chsize(File fd, my_off_t newlength, int filler, myf MyFlags);
666extern int my_fallocator(File fd, my_off_t newlength, int filler, myf MyFlags);
667extern void thr_set_sync_wait_callback(void (*before_sync)(void),
668 void (*after_sync)(void));
669extern int my_sync(File fd, myf my_flags);
670extern char *my_strerror(char *buf, size_t len, int errnum);
671extern const char *my_get_err_msg(int nr);
672extern void my_error(int nr, myf MyFlags, ...);
673extern void my_printf_error(uint my_err, const char *format, myf MyFlags, ...)
674 MY_ATTRIBUTE((format(printf, 2, 4)));
675extern void my_printv_error(uint error, const char *format, myf MyFlags,
676 va_list ap) MY_ATTRIBUTE((format(printf, 2, 0)));
677extern int my_error_register(const char *(*get_errmsg)(int), int first,
678 int last);
679extern bool my_error_unregister(int first, int last);
680extern void my_message(uint my_err, const char *str, myf MyFlags);
681extern void my_message_stderr(uint my_err, const char *str, myf MyFlags);
682void my_message_local_stderr(enum loglevel, uint ecode, va_list args);
683extern void my_message_local(enum loglevel ll, uint ecode, ...);
684
685/**
686 Convenience wrapper for OS error messages which report
687 errno/my_errno with %d followed by strerror as %s, as the last
688 conversions in the error message.
689
690 The OS error message (my_errno) is formatted in a stack buffer and
691 the errno value and a pointer to the buffer is added to the end of
692 the parameter pack passed to my_error().
693
694 @param errno_val errno/my_errno number.
695 @param ppck parameter pack of additional arguments to pass to my_error().
696 */
697template <class... Ts>
698inline void MyOsError(int errno_val, Ts... ppck) {
699 char errbuf[MYSYS_STRERROR_SIZE];
700 my_error(ppck..., errno_val, my_strerror(errbuf, sizeof(errbuf), errno_val));
701}
702
703extern bool my_init(void);
704extern void my_end(int infoflag);
705extern const char *my_filename(File fd);
706extern MY_MODE get_file_perm(ulong perm_flags);
707extern bool my_chmod(const char *filename, ulong perm_flags, myf my_flags);
708
709extern bool init_tmpdir(MY_TMPDIR *tmpdir, const char *pathlist);
710extern char *my_tmpdir(MY_TMPDIR *tmpdir);
711extern void free_tmpdir(MY_TMPDIR *tmpdir);
712
713extern size_t dirname_part(char *to, const char *name, size_t *to_res_length);
714extern size_t dirname_length(const char *name);
715#define base_name(A) (A + dirname_length(A))
716extern int test_if_hard_path(const char *dir_name);
717extern bool has_path(const char *name);
718extern char *convert_dirname(char *to, const char *from, const char *from_end);
719extern void to_unix_path(char *name);
720extern char *fn_ext(char *name);
721extern const char *fn_ext(const char *name);
722extern char *fn_same(char *toname, const char *name, int flag);
723extern char *fn_format(char *to, const char *name, const char *dir,
724 const char *form, uint flag);
725extern size_t strlength(const char *str);
726extern size_t normalize_dirname(char *to, const char *from);
727extern size_t unpack_dirname(char *to, const char *from);
728extern size_t cleanup_dirname(char *to, const char *from);
729extern size_t system_filename(char *to, const char *from);
730extern size_t unpack_filename(char *to, const char *from);
731extern char *intern_filename(char *to, const char *from);
732extern char *my_path(char *to, const char *progname,
733 const char *own_pathname_part);
734extern char *my_load_path(char *to, const char *path,
735 const char *own_path_prefix);
736extern bool array_append_string_unique(const char *str, const char **array,
737 size_t size);
738
739void my_store_ptr(uchar *buff, size_t pack_length, my_off_t pos);
740my_off_t my_get_ptr(uchar *ptr, size_t pack_length);
741extern int init_io_cache_ext(IO_CACHE *info, File file, size_t cachesize,
742 enum cache_type type, my_off_t seek_offset,
743 bool use_async_io, myf cache_myflags,
744 PSI_file_key file_key);
745extern int init_io_cache(IO_CACHE *info, File file, size_t cachesize,
746 enum cache_type type, my_off_t seek_offset,
747 bool use_async_io, myf cache_myflags);
748extern bool reinit_io_cache(IO_CACHE *info, enum cache_type type,
749 my_off_t seek_offset, bool use_async_io,
750 bool clear_cache);
751extern void setup_io_cache(IO_CACHE *info);
752extern int _my_b_read(IO_CACHE *info, uchar *Buffer, size_t Count);
753extern int _my_b_read_r(IO_CACHE *info, uchar *Buffer, size_t Count);
754extern void init_io_cache_share(IO_CACHE *read_cache, IO_CACHE_SHARE *cshare,
755 IO_CACHE *write_cache, uint num_threads);
756extern void remove_io_thread(IO_CACHE *info);
757extern int _my_b_seq_read(IO_CACHE *info, uchar *Buffer, size_t Count);
758extern int _my_b_net_read(IO_CACHE *info, uchar *Buffer, size_t Count);
759extern int _my_b_write(IO_CACHE *info, const uchar *Buffer, size_t Count);
760extern int my_b_append(IO_CACHE *info, const uchar *Buffer, size_t Count);
761extern int my_b_safe_write(IO_CACHE *info, const uchar *Buffer, size_t Count);
762
763extern int my_block_write(IO_CACHE *info, const uchar *Buffer, size_t Count,
764 my_off_t pos);
765extern int my_b_flush_io_cache(IO_CACHE *info, int need_append_buffer_lock);
766
767#define flush_io_cache(info) my_b_flush_io_cache((info), 1)
768
769extern int end_io_cache(IO_CACHE *info);
770extern size_t my_b_fill(IO_CACHE *info);
771extern void my_b_seek(IO_CACHE *info, my_off_t pos);
772extern size_t my_b_gets(IO_CACHE *info, char *to, size_t max_length);
773extern my_off_t my_b_filelength(IO_CACHE *info);
774extern size_t my_b_printf(IO_CACHE *info, const char *fmt, ...)
775 MY_ATTRIBUTE((format(printf, 2, 3)));
776extern size_t my_b_vprintf(IO_CACHE *info, const char *fmt, va_list ap);
777extern bool open_cached_file(IO_CACHE *cache, const char *dir,
778 const char *prefix, size_t cache_size,
779 myf cache_myflags);
780extern bool real_open_cached_file(IO_CACHE *cache);
781extern void close_cached_file(IO_CACHE *cache);
782
784#ifdef WIN32
785// Maximum temporary filename length is 3 chars for prefix + 16 chars for base
786// 32 encoded UUID (excluding MAC address)
787const size_t MY_MAX_TEMP_FILENAME_LEN = 19;
788#endif
789File create_temp_file(char *to, const char *dir, const char *pfx, int mode,
790 UnlinkOrKeepFile unlink_or_keep, myf MyFlags);
791
792// Use Prealloced_array or std::vector or something similar in C++
794 uint element_size, void *init_buffer,
795 uint init_alloc, uint alloc_increment);
796/* init_dynamic_array() function is deprecated */
797
798#define dynamic_element(array, array_index, type) \
799 ((type)((array)->buffer) + (array_index))
800
801/* Some functions are still in use in C++, because HASH uses DYNAMIC_ARRAY */
802extern bool insert_dynamic(DYNAMIC_ARRAY *array, const void *element);
803extern void *alloc_dynamic(DYNAMIC_ARRAY *array);
804extern void delete_dynamic(DYNAMIC_ARRAY *array);
805
806extern bool init_dynamic_string(DYNAMIC_STRING *str, const char *init_str,
807 size_t init_alloc);
808extern bool dynstr_append(DYNAMIC_STRING *str, const char *append);
809bool dynstr_append_mem(DYNAMIC_STRING *str, const char *append, size_t length);
810extern bool dynstr_append_os_quoted(DYNAMIC_STRING *str, const char *append,
811 ...);
812extern bool dynstr_append_quoted(DYNAMIC_STRING *str, const char *quote_str,
813 const uint quote_len, const char *append, ...);
814extern bool dynstr_set(DYNAMIC_STRING *str, const char *init_str);
815extern bool dynstr_realloc(DYNAMIC_STRING *str, size_t additional_size);
816extern bool dynstr_trunc(DYNAMIC_STRING *str, size_t n);
817extern void dynstr_free(DYNAMIC_STRING *str);
818#define alloc_root_inited(A) ((A)->inited())
819extern void *multi_alloc_root(MEM_ROOT *mem_root, ...);
820extern char *strdup_root(MEM_ROOT *root, const char *str);
821extern char *safe_strdup_root(MEM_ROOT *root, const char *str);
822extern char *strmake_root(MEM_ROOT *root, const char *str, size_t len);
823extern void *memdup_root(MEM_ROOT *root, const void *str, size_t len);
824extern bool my_compress(mysql_compress_context *, uchar *, size_t *, size_t *);
825extern bool my_uncompress(mysql_compress_context *, uchar *, size_t, size_t *);
827 const uchar *packet, size_t *len,
828 size_t *complen);
829
830extern uint my_set_max_open_files(uint files);
831
832extern bool my_gethwaddr(uchar *to);
833
834#ifdef HAVE_SYS_MMAN_H
835#include <sys/mman.h>
836
837#ifndef MAP_NOSYNC
838#define MAP_NOSYNC 0
839#endif
840
841/*
842 Not defined in FreeBSD 11.
843 Was never implemented in FreeBSD, so we just set it to 0.
844*/
845#ifndef MAP_NORESERVE
846#define MAP_NORESERVE 0
847#endif
848
849#ifdef HAVE_MMAP64
850#define my_mmap(a, b, c, d, e, f) mmap64(a, b, c, d, e, f)
851#else
852#define my_mmap(a, b, c, d, e, f) mmap(a, b, c, d, e, f)
853#endif
854#define my_munmap(a, b) munmap((a), (b))
855
856#else
857/* not a complete set of mmap() flags, but only those that nesessary */
858#define PROT_READ 1
859#define PROT_WRITE 2
860#define MAP_NORESERVE 0
861#define MAP_SHARED 0x0001
862#define MAP_PRIVATE 0x0002
863#define MAP_NOSYNC 0x0800
864#define MAP_FAILED ((void *)-1)
865#define MS_SYNC 0x0000
866
867void *my_mmap(void *, size_t, int, int, int, my_off_t);
868int my_munmap(void *, size_t);
869#endif
870
871/* my_getpagesize */
872static inline int my_getpagesize() {
873#ifndef _WIN32
874 return getpagesize();
875#else
876 SYSTEM_INFO si;
877 GetSystemInfo(&si);
878 return (int)si.dwPageSize;
879#endif
880}
881
882int my_msync(int, void *, size_t, int);
883
884/* character sets */
885extern uint get_charset_number(const char *cs_name, uint cs_flags);
886extern uint get_collation_number(const char *name);
887extern const char *get_collation_name(uint charset_number);
888
889extern CHARSET_INFO *get_charset(uint cs_number, myf flags);
890extern CHARSET_INFO *get_charset_by_name(const char *cs_name, myf flags);
893extern CHARSET_INFO *get_charset_by_csname(const char *cs_name, uint cs_flags,
894 myf my_flags);
895extern CHARSET_INFO *my_charset_get_by_name(const char *name, uint cs_flags,
896 myf my_flags, MY_CHARSET_ERRMSG *);
897extern bool resolve_charset(const char *cs_name, const CHARSET_INFO *default_cs,
898 const CHARSET_INFO **cs);
899extern bool resolve_collation(const char *cl_name,
900 const CHARSET_INFO *default_cl,
901 const CHARSET_INFO **cl);
902extern char *get_charsets_dir(char *buf);
903
905 char *to, size_t to_length,
906 const char *from, size_t length);
907extern void charset_uninit();
908#ifdef _WIN32
909/* File system character set */
910extern CHARSET_INFO *fs_character_set(void);
911#endif
912extern size_t escape_quotes_for_mysql(CHARSET_INFO *charset_info, char *to,
913 size_t to_length, const char *from,
914 size_t length, char quote);
915#ifdef _WIN32
916extern bool have_tcpip; /* Is set if tcpip is used */
917
918/* implemented in my_windac.c */
919
920int my_security_attr_create(SECURITY_ATTRIBUTES **psa, const char **perror,
921 DWORD owner_rights, DWORD everybody_rights);
922
923void my_security_attr_free(SECURITY_ATTRIBUTES *sa);
924
925/* implemented in my_conio.c */
926bool my_win_is_console(FILE *file);
927char *my_win_console_readline(const CHARSET_INFO *cs, char *mbbuf,
928 size_t mbbufsize, size_t *nread);
929void my_win_console_write(const CHARSET_INFO *cs, const char *data,
930 size_t datalen);
931void my_win_console_fputs(const CHARSET_INFO *cs, const char *data);
932void my_win_console_putc(const CHARSET_INFO *cs, int c);
933void my_win_console_vfprintf(const CHARSET_INFO *cs, const char *fmt,
934 va_list args);
935int my_win_translate_command_line_args(const CHARSET_INFO *cs, int *ac,
936 char ***av);
937#endif /* _WIN32 */
938
939#ifdef HAVE_PSI_INTERFACE
940void my_init_mysys_psi_keys(void);
941
943extern void set_psi_cond_service(void *psi);
945extern void set_psi_data_lock_service(void *psi);
947extern void set_psi_error_service(void *psi);
949extern void set_psi_file_service(void *psi);
951extern void set_psi_idle_service(void *psi);
953extern void set_psi_mdl_service(void *psi);
955extern void set_psi_memory_service(void *psi);
957extern void set_psi_metric_service(void *psi);
959extern void set_psi_mutex_service(void *psi);
961extern void set_psi_rwlock_service(void *psi);
963extern void set_psi_socket_service(void *psi);
965extern void set_psi_stage_service(void *psi);
967extern void set_psi_statement_service(void *psi);
969extern void set_psi_system_service(void *psi);
971extern void set_psi_table_service(void *psi);
973extern void set_psi_thread_service(void *psi);
975extern void set_psi_transaction_service(void *psi);
977extern void set_psi_tls_channel_service(void *psi);
978#endif /* HAVE_PSI_INTERFACE */
979
980/* Total physical memory available */
981[[nodiscard]] extern unsigned long long my_physical_memory();
982
983/* Compares versions and determine if clone is allowed */
984[[nodiscard]] extern bool are_versions_clone_compatible(std::string ver1,
985 std::string ver2);
986
987/**
988 @} (end of group MYSYS)
989*/
990
991// True if the temporary file of binlog cache is encrypted.
992#ifndef NDEBUG
994#endif
995
996/**
997 This is a wrapper around mysql_file_seek. Seek to a position in the
998 temporary file of a binlog cache, and set the encryption/decryption
999 stream offset if binlog_encryption is on.
1000
1001 @param cache The handler of a binlog cache to seek.
1002 @param pos The expected position (absolute or relative)
1003 @param whence A direction parameter and one of
1004 {SEEK_SET, SEEK_CUR, SEEK_END}
1005 @param flags The bitmap of different flags
1006 MY_WME | MY_FAE | MY_NABP | MY_FNABP |
1007 MY_DONT_CHECK_FILESIZE and so on.
1008
1009 @retval The new position in the file, or MY_FILEPOS_ERROR on error.
1010*/
1012 myf flags);
1013/**
1014 This is a wrapper around mysql_file_read. Read data from the temporary
1015 file of a binlog cache, and take care of decrypting the data if
1016 binlog_encryption is on.
1017
1018
1019 @param cache The handler of a binlog cache to read.
1020 @param[out] buffer The memory buffer to write to.
1021 @param count The length of data in the temporary file to be read in bytes.
1022 @param flags The bitmap of different flags
1023 MY_WME | MY_FAE | MY_NABP | MY_FNABP |
1024 MY_DONT_CHECK_FILESIZE and so on.
1025
1026 @retval The length of bytes to be read, or MY_FILE_ERROR on error.
1027*/
1028size_t mysql_encryption_file_read(IO_CACHE *cache, uchar *buffer, size_t count,
1029 myf flags);
1030/**
1031 This is a wrapper around mysql_file_write. Write data in buffer to the
1032 temporary file of a binlog cache, and take care of encrypting the data
1033 if binlog_encryption is on.
1034
1035 @param cache The handler of a binlog cache to write.
1036 @param buffer The memory buffer to write from.
1037 @param count The length of data in buffer to be written in bytes.
1038 @param flags The bitmap of different flags
1039 MY_WME | MY_FAE | MY_NABP | MY_FNABP |
1040 MY_DONT_CHECK_FILESIZE and so on
1041
1042 @return The number of bytes written
1043*/
1044size_t mysql_encryption_file_write(IO_CACHE *cache, const uchar *buffer,
1045 size_t count, myf flags);
1046#endif /* _my_sys_h */
User-specified callback interface for collation parser/initializer.
Definition: m_ctype.h:190
This abstract class represents the interface of a replication logs encryption cipher that can be used...
Definition: stream_cipher.h:81
static MEM_ROOT mem_root
Definition: client_plugin.cc:114
my_off_t my_b_tell(const IO_CACHE *info)
Definition: my_sys.h:532
char * my_strerror(char *buf, size_t len, int errnum)
Get a string describing a system or handler error.
Definition: my_error.cc:110
void set_psi_file_service(void *psi)
Definition: psi_noop.cc:444
PSI_file_key key_file_io_cache
Definition: mf_iocache.cc:92
void(* my_error_vreporter)(enum loglevel level, uint ecode, va_list)
Definition: my_sys.h:486
MYSQL_PLUGIN_IMPORT PSI_thread_bootstrap * psi_thread_hook
Definition: psi_noop.cc:247
int my_sync(File fd, myf my_flags)
Definition: my_sync.cc:85
int _my_b_read_r(IO_CACHE *info, uchar *Buffer, size_t Count)
Definition: mf_iocache.cc:923
size_t normalize_dirname(char *to, const char *from)
Convert a directory name to a format which can be compared as strings.
Definition: mf_pack.cc:203
void my_message_local_stderr(enum loglevel, uint ecode, va_list args)
Issue a message locally (i.e.
Definition: my_error.cc:444
ulong my_tmp_file_created
Definition: my_static.cc:86
void charset_uninit()
Definition: charset.cc:582
my_error_vreporter my_charset_error_reporter
Definition: charset.cc:123
cache_type
Definition: my_sys.h:288
int check_if_legal_filename(const char *path)
void my_message(uint my_err, const char *str, myf MyFlags)
Print an error message.
Definition: my_error.cc:311
uchar * my_compress_alloc(mysql_compress_context *comp_ctx, const uchar *packet, size_t *len, size_t *complen)
Definition: my_compress.cc:295
void set_psi_mdl_service(void *psi)
Definition: psi_noop.cc:588
int my_chsize(File fd, my_off_t newlength, int filler, myf MyFlags)
Change size of file.
Definition: my_chsize.cc:66
MYSQL_PLUGIN_IMPORT const CHARSET_INFO * all_charsets[MY_ALL_CHARSETS_SIZE]
Definition: charset.cc:180
void remove_io_thread(IO_CACHE *info)
Definition: mf_iocache.cc:671
PSI_memory_key key_memory_max_alloca
Definition: my_static.cc:66
void my_error(int nr, myf MyFlags,...)
Fill in and print a previously registered error message.
Definition: my_error.cc:216
int my_delete_with_symlink(const char *name, myf MyFlags)
Definition: my_symlink2.cc:127
std::atomic< ErrorHandlerFunctionPointer > error_handler_hook
Definition: my_static.cc:168
#define my_access
Definition: my_sys.h:632
const char * my_get_err_msg(int nr)
Get an error format string from one of the my_error_register()ed sets.
Definition: my_error.cc:184
size_t my_b_get_bytes_in_buffer(const IO_CACHE *info)
Definition: my_sys.h:540
my_off_t my_b_get_pos_in_file(const IO_CACHE *info)
Definition: my_sys.h:544
void set_psi_tls_channel_service(void *psi)
Definition: psi_noop.cc:1012
void set_psi_mutex_service(void *psi)
Definition: psi_noop.cc:281
void * my_multi_malloc(PSI_memory_key key, myf flags,...)
Definition: mulalloc.cc:59
void my_printf_error(uint my_err, const char *format, myf MyFlags,...)
Print an error message.
Definition: my_error.cc:265
size_t my_b_gets(IO_CACHE *info, char *to, size_t max_length)
Definition: mf_iocache2.cc:190
bool my_compress(mysql_compress_context *, uchar *, size_t *, size_t *)
This replaces the packet with a compressed packet.
Definition: my_compress.cc:280
char * strmake_root(MEM_ROOT *root, const char *str, size_t len)
Definition: my_alloc.cc:287
#define MYSYS_STRERROR_SIZE
Definition: my_sys.h:119
void * alloc_dynamic(DYNAMIC_ARRAY *array)
Definition: array.cc:141
ulong my_default_record_cache_size
Definition: my_static.cc:162
MYSQL_PLUGIN_IMPORT PSI_stage_bootstrap * psi_stage_hook
Definition: psi_noop.cc:629
MYSQL_PLUGIN_IMPORT PSI_metric_bootstrap * psi_metric_hook
Definition: psi_noop.cc:1035
int _my_b_net_read(IO_CACHE *info, uchar *Buffer, size_t Count)
Read buffered from the net.
Definition: mf_iocache.cc:61
unsigned long long my_physical_memory()
Definition: my_system.cc:46
my_off_t my_get_ptr(uchar *ptr, size_t pack_length)
Definition: ptr_cmp.cc:76
void set_psi_system_service(void *psi)
Definition: psi_noop.cc:993
size_t dirname_part(char *to, const char *name, size_t *to_res_length)
Gives directory part of filename.
Definition: mf_dirname.cc:164
bool dynstr_append_mem(DYNAMIC_STRING *str, const char *append, size_t length)
Definition: my_string.cc:99
bool init_dynamic_string(DYNAMIC_STRING *str, const char *init_str, size_t init_alloc)
Definition: my_string.cc:46
int my_rename(const char *from, const char *to, myf MyFlags)
Definition: my_rename.cc:47
CHARSET_INFO * get_charset_by_name(const char *cs_name, myf flags)
Definition: charset.cc:277
void(* exit_cond_hook)(void *opaque_thd, const PSI_stage_info *stage, const char *src_function, const char *src_file, int src_line)
Definition: my_static.cc:206
int test_if_hard_path(const char *dir_name)
Definition: my_getwd.cc:137
void init_io_cache_share(IO_CACHE *read_cache, IO_CACHE_SHARE *cshare, IO_CACHE *write_cache, uint num_threads)
Definition: mf_iocache.cc:620
int my_block_write(IO_CACHE *info, const uchar *Buffer, size_t Count, my_off_t pos)
Definition: mf_iocache.cc:1376
int my_fallocator(File fd, my_off_t newlength, int filler, myf MyFlags)
Change size of the specified file.
Definition: my_fallocator.cc:71
MYSQL_PLUGIN_IMPORT PSI_transaction_bootstrap * psi_transaction_hook
Definition: psi_noop.cc:905
MYSQL_PLUGIN_IMPORT ulong my_thread_stack_size
Definition: my_init.cc:98
CHARSET_INFO * get_charset(uint cs_number, myf flags)
Definition: charset.cc:231
File my_create(const char *FileName, int CreateFlags, int AccessFlags, myf MyFlags)
Create a new file.
Definition: my_create.cc:64
void set_psi_memory_service(void *psi)
Definition: psi_noop.cc:960
int my_setwd(const char *dir, myf MyFlags)
Definition: my_getwd.cc:106
int my_b_append(IO_CACHE *info, const uchar *Buffer, size_t Count)
Definition: mf_iocache.cc:1320
size_t my_read(File Filedes, uchar *Buffer, size_t Count, myf MyFlags)
Read a chunk of bytes from a file with retry's if needed If flag MY_FULL_IO is set then keep reading ...
Definition: my_read.cc:73
void close_cached_file(IO_CACHE *cache)
Definition: mf_cache.cc:87
int my_error_register(const char *(*get_errmsg)(int), int first, int last)
Register error messages for use with my_error().
Definition: my_error.cc:333
File my_fileno(FILE *stream)
Portable fileno() wrapper.
Definition: my_fstream.cc:181
char * my_once_strdup(const char *src, myf myflags)
Definition: my_once.cc:100
MYSQL_PLUGIN_IMPORT PSI_error_bootstrap * psi_error_hook
Definition: psi_noop.cc:918
bool my_init_dynamic_array(DYNAMIC_ARRAY *array, PSI_memory_key key, uint element_size, void *init_buffer, uint init_alloc, uint alloc_increment)
Definition: array.cc:69
my_off_t my_fseek(FILE *stream, my_off_t pos, int whence)
Seek to position in FILE stream.
Definition: my_fstream.cc:157
my_off_t my_seek(File fd, my_off_t pos, int whence, myf MyFlags)
Seek to a position in a file.
Definition: my_seek.cc:69
File my_open(const char *filename, int Flags, myf MyFlags)
Open a file.
Definition: my_open.cc:66
char * strdup_root(MEM_ROOT *root, const char *str)
Definition: my_alloc.cc:279
size_t my_b_printf(IO_CACHE *info, const char *fmt,...)
Simple printf version.
Definition: mf_iocache2.cc:237
size_t strlength(const char *str)
Calculate the length of str not including any trailing ' '-bytes.
Definition: mf_format.cc:156
File create_temp_file(char *to, const char *dir, const char *pfx, int mode, UnlinkOrKeepFile unlink_or_keep, myf MyFlags)
Definition: mf_tempfile.cc:220
void my_b_seek(IO_CACHE *info, my_off_t pos)
Definition: mf_iocache2.cc:94
my_off_t my_b_filelength(IO_CACHE *info)
Definition: mf_iocache2.cc:219
my_off_t my_ftell(FILE *stream)
Portable ftell() wrapper.
Definition: my_fstream.cc:166
ulong my_file_opened
Definition: my_static.cc:89
int check_if_legal_tablename(const char *path)
Definition: my_access.cc:159
char * convert_dirname(char *to, const char *from, const char *from_end)
Convert directory name to use under this system.
Definition: mf_dirname.cc:207
bool my_error_unregister(int first, int last)
Unregister formerly registered error messages.
Definition: my_error.cc:379
my_off_t my_tell(File fd, myf MyFlags)
Definition: my_seek.cc:94
int init_io_cache_ext(IO_CACHE *info, File file, size_t cachesize, enum cache_type type, my_off_t seek_offset, bool use_async_io, myf cache_myflags, PSI_file_key file_key)
Definition: mf_iocache.cc:176
#define MY_ALL_CHARSETS_SIZE
Definition: my_sys.h:268
bool dynstr_trunc(DYNAMIC_STRING *str, size_t n)
Definition: my_string.cc:116
void(*)(uint, const char *, myf) ErrorHandlerFunctionPointer
Definition: my_sys.h:230
int my_getwd(char *buf, size_t size, myf MyFlags)
Definition: my_getwd.cc:78
char * my_tmpdir(MY_TMPDIR *tmpdir)
Definition: mf_tempdir.cc:105
int _my_b_seq_read(IO_CACHE *info, uchar *Buffer, size_t Count)
Definition: mf_iocache.cc:1084
char * fn_same(char *toname, const char *name, int flag)
Definition: mf_same.cc:46
void to_unix_path(char *name)
Convert filename to unix style filename.
Definition: mf_unixpath.cc:44
void * memdup_root(MEM_ROOT *root, const void *str, size_t len)
Definition: my_alloc.cc:296
void set_psi_socket_service(void *psi)
Definition: psi_noop.cc:490
void set_psi_table_service(void *psi)
Definition: psi_noop.cc:548
void dynstr_free(DYNAMIC_STRING *str)
Definition: my_string.cc:188
int(* qsort2_cmp)(const void *, const void *, const void *)
Definition: my_sys.h:474
#define my_mmap(a, b, c, d, e, f)
Definition: my_sys.h:850
char * get_charsets_dir(char *buf)
Definition: charset.cc:161
uint my_get_large_page_size(void)
Definition: my_largepage.cc:49
int my_closelog()
Closes/de-registers the system logging handle.
Definition: my_syslog.cc:328
void my_b_clear(IO_CACHE *info)
Definition: my_sys.h:494
MYSQL_PLUGIN_IMPORT PSI_tls_channel_bootstrap * psi_tls_channel_hook
Definition: psi_noop.cc:1009
bool dynstr_set(DYNAMIC_STRING *str, const char *init_str)
Definition: my_string.cc:62
bool my_b_inited(const IO_CACHE *info)
Definition: my_sys.h:496
void set_psi_error_service(void *psi)
Definition: psi_noop.cc:921
size_t my_pread(File Filedes, uchar *Buffer, size_t Count, my_off_t offset, myf MyFlags)
Read a chunk of bytes from a file from a given position.
Definition: my_pread.cc:79
size_t unpack_filename(char *to, const char *from)
Fix filename so it can be used by open, create.
Definition: mf_pack.cc:325
MYSQL_PLUGIN_IMPORT PSI_memory_bootstrap * psi_memory_hook
Definition: psi_noop.cc:957
MYSQL_PLUGIN_IMPORT CHARSET_INFO * default_charset_info
Definition: charset.cc:181
size_t system_filename(char *to, const char *from)
Convert filename (unix standard) to system standard Used before system command's like open(),...
Definition: mf_pack.cc:357
int my_delete(const char *name, myf MyFlags)
Definition: my_delete.cc:46
#define is_filename_allowed(name, length, allow_cwd)
Definition: my_sys.h:642
const char * get_global_errmsg(int nr)
Definition: errors.cc:177
bool resolve_collation(const char *cl_name, const CHARSET_INFO *default_cl, const CHARSET_INFO **cl)
Resolve collation by the collation name (utf8_general_ci, ...).
Definition: charset.cc:376
const char * my_filename(File fd)
Get filename of file.
Definition: my_file.cc:247
bool my_enable_symlinks
Definition: my_sys.h:284
MYSQL_PLUGIN_IMPORT PSI_table_bootstrap * psi_table_hook
Definition: psi_noop.cc:545
void my_printv_error(uint error, const char *format, myf MyFlags, va_list ap)
Print an error message.
Definition: my_error.cc:290
int my_symlink(const char *content, const char *linkname, myf MyFlags)
Definition: my_symlink.cc:99
void free_tmpdir(MY_TMPDIR *tmpdir)
Definition: mf_tempdir.cc:115
int my_b_get(IO_CACHE *info)
Definition: my_sys.h:524
bool dynstr_append(DYNAMIC_STRING *str, const char *append)
Definition: my_string.cc:95
int my_is_symlink(const char *filename, ST_FILE_ID *file_id)
Definition: my_symlink.cc:116
bool resolve_charset(const char *cs_name, const CHARSET_INFO *default_cs, const CHARSET_INFO **cs)
Resolve character set by the character set name (utf8, latin1, ...).
Definition: charset.cc:348
void MyOsError(int errno_val, Ts... ppck)
Convenience wrapper for OS error messages which report errno/my_errno with d followed by strerror as ...
Definition: my_sys.h:698
int my_b_safe_write(IO_CACHE *info, const uchar *Buffer, size_t Count)
Definition: mf_iocache.cc:1359
bool my_init(void)
Initialize my_sys functions, resources and variables.
Definition: my_init.cc:136
void my_message_local(enum loglevel ll, uint ecode,...)
Issue a message locally (i.e.
Definition: my_error.cc:474
size_t cleanup_dirname(char *to, const char *from)
Remove unwanted chars from dirname.
Definition: mf_pack.cc:79
size_t my_b_vprintf(IO_CACHE *info, const char *fmt, va_list ap)
Implementation of my_b_printf.
Definition: mf_iocache2.cc:255
bool array_append_string_unique(const char *str, const char **array, size_t size)
Append str to array, or move to the end if it already exists.
Definition: mf_arr_appstr.cc:51
void(* local_message_hook)(enum loglevel ll, uint ecode, va_list args)
Definition: my_static.cc:170
void set_psi_idle_service(void *psi)
Definition: psi_noop.cc:607
bool insert_dynamic(DYNAMIC_ARRAY *array, const void *element)
Definition: array.cc:112
int my_rename_with_symlink(const char *from, const char *to, myf MyFlags)
Definition: my_symlink2.cc:154
void * my_once_alloc(size_t Size, myf MyFlags)
Definition: my_once.cc:62
int my_b_write(IO_CACHE *info, const uchar *buffer, size_t count)
Definition: my_sys.h:512
void * my_once_memdup(const void *src, size_t len, myf myflags)
Definition: my_once.cc:107
bool are_versions_clone_compatible(std::string ver1, std::string ver2)
Compares versions and determine if clone is allowed.
Definition: my_version.cc:112
int(* IO_CACHE_CALLBACK)(IO_CACHE *)
Definition: my_sys.h:329
size_t my_b_bytes_in_cache(const IO_CACHE *info)
Definition: my_sys.h:551
FILE * my_fdopen(File fd, const char *filename, int Flags, myf MyFlags)
Make a stream out of a file handle.
Definition: my_fopen.cc:217
uint my_set_max_open_files(uint files)
Sets the OS limit on the number of open files (if supported).
Definition: my_file.cc:269
File my_create_with_symlink(const char *linkname, const char *filename, int createflags, int access_flags, myf MyFlags)
Definition: my_symlink2.cc:54
char * fn_format(char *to, const char *name, const char *dir, const char *form, uint flag)
Formats a filename with possible replace of directory of extension Function can handle the case where...
Definition: mf_format.cc:73
const char * my_progname
Definition: my_static.cc:83
MYSQL_PLUGIN_IMPORT PSI_statement_bootstrap * psi_statement_hook
Definition: psi_noop.cc:838
int my_is_same_file(File file, const ST_FILE_ID *file_id)
Return non-zero if the file descriptor and a previously lstat-ed file identified by file_id point to ...
Definition: my_symlink.cc:186
size_t my_fwrite(FILE *stream, const uchar *Buffer, size_t Count, myf MyFlags)
Write a chunk of bytes to a FILE stream.
Definition: my_fstream.cc:103
uint get_charset_number(const char *cs_name, uint cs_flags)
Definition: charset.cc:205
bool dynstr_append_quoted(DYNAMIC_STRING *str, const char *quote_str, const uint quote_len, const char *append,...)
Definition: my_string.cc:179
void setup_io_cache(IO_CACHE *info)
Definition: mf_iocache.cc:117
size_t my_write(File Filedes, const uchar *Buffer, size_t Count, myf MyFlags)
Write a chunk of bytes to a file.
Definition: my_write.cc:79
int my_copy(const char *from, const char *to, myf MyFlags)
Definition: my_copy.cc:79
int my_close(File fd, myf MyFlags)
Close a file.
Definition: my_open.cc:99
MYSQL_PLUGIN_IMPORT PSI_idle_bootstrap * psi_idle_hook
Definition: psi_noop.cc:604
bool my_uncompress(mysql_compress_context *, uchar *, size_t, size_t *)
Uncompress packet.
Definition: my_compress.cc:324
UnlinkOrKeepFile
Definition: my_sys.h:783
int my_umask_dir
Definition: my_static.cc:159
ulong my_stream_opened
Definition: my_static.cc:88
void my_init_mysys_psi_keys(void)
Definition: my_init.cc:582
MY_MODE get_file_perm(ulong perm_flags)
Definition: my_chmod.cc:53
#define my_munmap(a, b)
Definition: my_sys.h:854
int _my_b_read(IO_CACHE *info, uchar *Buffer, size_t Count)
Definition: mf_iocache.cc:424
bool dynstr_append_os_quoted(DYNAMIC_STRING *str, const char *append,...)
Definition: my_string.cc:164
MYSQL_PLUGIN_IMPORT PSI_file_bootstrap * psi_file_hook
Definition: psi_noop.cc:441
MYSQL_PLUGIN_IMPORT PSI_data_lock_bootstrap * psi_data_lock_hook
Definition: psi_noop.cc:977
int my_msync(int, void *, size_t, int)
Definition: my_mmap.cc:51
size_t escape_quotes_for_mysql(CHARSET_INFO *charset_info, char *to, size_t to_length, const char *from, size_t length, char quote)
Definition: charset.cc:539
size_t my_fread(FILE *stream, uchar *Buffer, size_t Count, myf MyFlags)
Read a chunk of bytes from a FILE stream.
Definition: my_fstream.cc:73
int my_b_read(IO_CACHE *info, uchar *buffer, size_t count)
Definition: my_sys.h:502
int my_b_copy_to_file(IO_CACHE *cache, FILE *file)
Definition: mf_iocache2.cc:72
size_t unpack_dirname(char *to, const char *from)
Fixes a directory name so that can be used by open().
Definition: mf_pack.cc:253
ulong my_file_total_opened
Definition: my_static.cc:90
int my_openlog(const char *eventSourceName, int option, int facility)
Opens/Registers a new handle for system logging.
Definition: my_syslog.cc:286
void(* set_waiting_for_disk_space_hook)(void *opaque_thd, bool waiting)
Definition: my_static.cc:212
CHARSET_INFO * get_charset_by_csname(const char *cs_name, uint cs_flags, myf my_flags)
Definition: charset.cc:326
MYSQL_PLUGIN_IMPORT PSI_rwlock_bootstrap * psi_rwlock_hook
Definition: psi_noop.cc:322
int end_io_cache(IO_CACHE *info)
Definition: mf_iocache.cc:1520
size_t dirname_length(const char *name)
Get the string length of the directory part of name, including the last FN_LIBCHAR.
Definition: mf_dirname.cc:62
void delete_dynamic(DYNAMIC_ARRAY *array)
Definition: array.cc:176
void set_psi_data_lock_service(void *psi)
Definition: psi_noop.cc:980
my_syslog_options
Definition: my_sys.h:622
MYSQL_PLUGIN_IMPORT PSI_cond_bootstrap * psi_cond_hook
Definition: psi_noop.cc:354
bool has_path(const char *name)
Definition: my_getwd.cc:160
size_t escape_string_for_mysql(const CHARSET_INFO *charset_info, char *to, size_t to_length, const char *from, size_t length)
Definition: charset.cc:413
CHARSET_INFO * my_collation_get_by_name(const char *collation_name, myf flags, MY_CHARSET_ERRMSG *)
Find collation by name: extended version of get_charset_by_name() to return error messages to the cal...
Definition: charset.cc:263
void set_psi_cond_service(void *psi)
Definition: psi_noop.cc:357
void * multi_alloc_root(MEM_ROOT *mem_root,...)
Definition: my_alloc.cc:251
char * intern_filename(char *to, const char *from)
Fix a filename to intern (UNIX format).
Definition: mf_pack.cc:377
int _my_b_get(IO_CACHE *info)
Definition: mf_iocache.cc:1220
void my_store_ptr(uchar *buff, size_t pack_length, my_off_t pos)
Definition: ptr_cmp.cc:44
bool my_init_done
Definition: my_init.cc:97
void set_psi_rwlock_service(void *psi)
Definition: psi_noop.cc:325
const char * get_collation_name(uint charset_number)
Definition: charset.cc:218
constexpr int my_b_EOF
Definition: my_sys.h:500
int init_io_cache(IO_CACHE *info, File file, size_t cachesize, enum cache_type type, my_off_t seek_offset, bool use_async_io, myf cache_myflags)
Definition: mf_iocache.cc:312
void(* enter_cond_hook)(void *opaque_thd, mysql_cond_t *cond, mysql_mutex_t *mutex, const PSI_stage_info *stage, PSI_stage_info *old_stage, const char *src_function, const char *src_file, int src_line)
Definition: my_static.cc:202
MYSQL_PLUGIN_IMPORT int my_umask
Definition: my_static.cc:159
bool init_tmpdir(MY_TMPDIR *tmpdir, const char *pathlist)
Definition: mf_tempdir.cc:51
bool my_gethwaddr(uchar *to)
Definition: my_gethwaddr.cc:238
uint get_collation_number(const char *name)
Definition: charset.cc:199
int my_b_flush_io_cache(IO_CACHE *info, int need_append_buffer_lock)
Definition: mf_iocache.cc:1431
int _my_b_write(IO_CACHE *info, const uchar *Buffer, size_t Count)
Definition: mf_iocache.cc:1239
char * safe_strdup_root(MEM_ROOT *root, const char *str)
Definition: my_alloc.cc:283
int my_realpath(char *to, const char *filename, myf MyFlags)
Definition: my_symlink.cc:139
bool my_disable_locking
Definition: my_static.cc:226
CHARSET_INFO * my_charset_get_by_name(const char *name, uint cs_flags, myf my_flags, MY_CHARSET_ERRMSG *)
Find character set by name: extended version of get_charset_by_csname() to return error messages to t...
Definition: charset.cc:292
bool real_open_cached_file(IO_CACHE *cache)
Definition: mf_cache.cc:75
int(* is_killed_hook)(const void *opaque_thd)
Definition: my_static.cc:215
int my_syslog(const CHARSET_INFO *cs, enum loglevel level, const char *msg)
Sends message to the system logger.
Definition: my_syslog.cc:97
void set_psi_thread_service(void *psi)
Definition: psi_noop.cc:250
MYSQL_PLUGIN_IMPORT PSI_socket_bootstrap * psi_socket_hook
Definition: psi_noop.cc:487
void my_end(int infoflag)
Definition: my_init.cc:179
bool dynstr_realloc(DYNAMIC_STRING *str, size_t additional_size)
Definition: my_string.cc:81
char * home_dir
Definition: my_static.cc:82
bool reinit_io_cache(IO_CACHE *info, enum cache_type type, my_off_t seek_offset, bool use_async_io, bool clear_cache)
Definition: mf_iocache.cc:328
void my_message_stderr(uint my_err, const char *str, myf MyFlags)
Print an error message on stderr.
Definition: my_mess.cc:60
FILE * my_freopen(const char *filename, const char *mode, FILE *stream)
Change the file associated with a file stream.
Definition: my_fopen.cc:156
FILE * my_fopen(const char *filename, int Flags, myf MyFlags)
Open a file as stream.
Definition: my_fopen.cc:109
uchar * my_b_get_buffer_start(const IO_CACHE *info)
Definition: my_sys.h:536
bool my_chmod(const char *filename, ulong perm_flags, myf my_flags)
Definition: my_chmod.cc:89
int my_mkdir(const char *dir, int Flags, myf MyFlags)
Definition: my_mkdir.cc:45
size_t my_pwrite(File Filedes, const uchar *Buffer, size_t Count, my_off_t offset, myf MyFlags)
Write a chunk of bytes to a file at a given position.
Definition: my_pread.cc:141
void set_psi_stage_service(void *psi)
Definition: psi_noop.cc:632
void set_psi_metric_service(void *psi)
Definition: psi_noop.cc:1038
MYSQL_PLUGIN_IMPORT PSI_system_bootstrap * psi_system_hook
Definition: psi_noop.cc:990
MYSQL_PLUGIN_IMPORT PSI_mdl_bootstrap * psi_mdl_hook
Definition: psi_noop.cc:585
bool open_cached_file(IO_CACHE *cache, const char *dir, const char *prefix, size_t cache_size, myf cache_myflags)
Definition: mf_cache.cc:53
int my_fclose(FILE *stream, myf MyFlags)
Close a stream.
Definition: my_fopen.cc:175
void set_psi_statement_service(void *psi)
Definition: psi_noop.cc:841
void set_psi_transaction_service(void *psi)
Definition: psi_noop.cc:908
void my_once_free(void)
Definition: my_once.cc:120
size_t my_b_fill(IO_CACHE *info)
Definition: mf_iocache2.cc:148
const char * charsets_dir
Definition: charset.cc:127
char * my_path(char *to, const char *progname, const char *own_pathname_part)
Definition: mf_path.cc:64
MYSQL_PLUGIN_IMPORT PSI_mutex_bootstrap * psi_mutex_hook
Definition: psi_noop.cc:278
void(* my_error_reporter)(enum loglevel level, uint ecode,...)
Definition: my_sys.h:485
char * my_load_path(char *to, const char *path, const char *own_path_prefix)
Returns full load-path for a file.
Definition: mf_loadpath.cc:64
void wait_for_free_space(const char *filename, int errors)
Definition: errors.cc:154
void thr_set_sync_wait_callback(void(*before_sync)(void), void(*after_sync)(void))
Definition: my_sync.cc:56
int my_readlink(char *to, const char *filename, myf MyFlags)
Definition: my_symlink.cc:67
static int my_getpagesize()
Definition: my_sys.h:872
char * fn_ext(char *name)
Definition: mf_fn_ext.cc:72
void(* enter_stage_hook)(void *opaque_thd, const PSI_stage_info *new_stage, PSI_stage_info *old_stage, const char *src_function, const char *src_file, int src_line)
Definition: my_static.cc:209
flush_type
Definition: my_sys.h:298
@ SEQ_READ_APPEND
Definition: my_sys.h:292
@ TYPE_NOT_SET
Definition: my_sys.h:289
@ READ_NET
Definition: my_sys.h:294
@ WRITE_CACHE
Definition: my_sys.h:291
@ WRITE_NET
Definition: my_sys.h:295
@ READ_CACHE
Definition: my_sys.h:290
@ READ_FIFO
Definition: my_sys.h:293
@ UNLINK_FILE
Definition: my_sys.h:783
@ KEEP_FILE
Definition: my_sys.h:783
@ MY_SYSLOG_PIDS
Definition: my_sys.h:622
@ FLUSH_KEEP
Definition: my_sys.h:299
@ FLUSH_RELEASE
Definition: my_sys.h:300
@ FLUSH_FORCE_WRITE
Definition: my_sys.h:306
@ FLUSH_IGNORE_CHANGED
Definition: my_sys.h:301
unsigned int PSI_file_key
Instrumented file key.
Definition: psi_file_bits.h:48
unsigned int PSI_memory_key
Instrumented memory key.
Definition: psi_memory_bits.h:49
static int flags[50]
Definition: hp_test1.cc:40
static int flag
Definition: hp_test1.cc:40
static const char * whence(const Item_field *cached_field)
Get the name of the cached field of an Item_cache_json instance.
Definition: item.cc:10161
Header for compiler-dependent features.
Some integer typedefs for easier portability.
int myf
Definition: my_inttypes.h:94
ulonglong my_off_t
Definition: my_inttypes.h:72
unsigned char uchar
Definition: my_inttypes.h:52
Types to make file and socket I/O compatible.
mode_t MY_MODE
Definition: my_io_bits.h:59
int File
Definition: my_io_bits.h:51
Definition of the global "loglevel" enumeration.
loglevel
Definition: my_loglevel.h:41
Defines various enable/disable and HAVE_ macros related to the performance schema instrumentation sys...
Functions related to handling of plugins and other dynamically loaded libraries.
#define MYSQL_PLUGIN_IMPORT
Definition: my_sharedlib.h:71
size_t mysql_encryption_file_write(IO_CACHE *cache, const uchar *buffer, size_t count, myf flags)
This is a wrapper around mysql_file_write.
Definition: mf_iocache.cc:1656
my_off_t mysql_encryption_file_seek(IO_CACHE *cache, my_off_t pos, int whence, myf flags)
This is a wrapper around mysql_file_seek.
Definition: mf_iocache.cc:1641
bool binlog_cache_temporary_file_is_encrypted
(end of group MYSYS)
Definition: mf_iocache.cc:94
size_t mysql_encryption_file_read(IO_CACHE *cache, uchar *buffer, size_t count, myf flags)
This is a wrapper around mysql_file_read.
Definition: mf_iocache.cc:1648
void my_osmaperr(unsigned long oserrno)
Definition: my_winerr.cc:124
HANDLE my_get_osfhandle(File fd)
Return the Windows HANDLE for a file descriptor obtained from RegisterHandle().
Definition: my_winfile.cc:410
static int count
Definition: myisam_ftdump.cc:45
static const CHARSET_INFO * charset_info
Definition: mysql.cc:247
Instrumentation helpers for conditions.
ABI for instrumented mutexes.
void error(const char *format,...)
static char * path
Definition: mysqldump.cc:149
char * collation_name
Definition: audit_api_message_emit.cc:185
std::string str(const mysqlrouter::ConfigGenerator::Options::Endpoint &ep)
Definition: config_generator.cc:1086
Definition: buf0block_hint.cc:30
const std::string FILE("FILE")
Definition: commit_order_queue.h:34
std::string dir
Double write files location.
Definition: buf0dblwr.cc:77
Definition: os0file.h:89
bool length(const dd::Spatial_reference_system *srs, const Geometry *g1, double *length, bool *null) noexcept
Computes the length of linestrings and multilinestrings.
Definition: length.cc:76
size_t size(const char *const c)
Definition: base64.h:46
int last_error()
get last socket error.
Definition: socket_error.h:82
mutable_buffer buffer(void *p, size_t n) noexcept
Definition: buffer.h:418
mode
Definition: file_handle.h:61
const char * filename
Definition: pfs_example_component_population.cc:67
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
required string key
Definition: replication_asynchronous_connection_failover.proto:60
required string type
Definition: replication_group_member_actions.proto:34
case opt name
Definition: sslopt-case.h:29
This file includes core components for encrypting/decrypting binary log files.
Definition: m_ctype.h:423
Definition: my_sys.h:309
uchar * buffer
Definition: my_sys.h:310
uint elements
Definition: my_sys.h:311
uint size_of_element
Definition: my_sys.h:313
uint alloc_increment
Definition: my_sys.h:312
uint max_element
Definition: my_sys.h:311
PSI_memory_key m_psi_key
Definition: my_sys.h:314
Definition: my_sys.h:323
char * str
Definition: my_sys.h:324
size_t length
Definition: my_sys.h:325
size_t max_length
Definition: my_sys.h:325
Definition: my_sys.h:331
int running_threads
Definition: my_sys.h:341
int error
Definition: my_sys.h:343
mysql_mutex_t mutex
Definition: my_sys.h:332
uchar * read_end
Definition: my_sys.h:340
my_off_t pos_in_file
Definition: my_sys.h:336
int total_threads
Definition: my_sys.h:342
mysql_cond_t cond_writer
Definition: my_sys.h:334
mysql_cond_t cond
Definition: my_sys.h:333
IO_CACHE * source_cache
Definition: my_sys.h:338
uchar * buffer
Definition: my_sys.h:339
Definition: my_sys.h:347
uchar * write_buffer
Definition: my_sys.h:365
uchar * read_pos
Definition: my_sys.h:357
my_off_t pos_in_file
Definition: my_sys.h:349
my_off_t end_of_file
Definition: my_sys.h:355
uchar * read_end
Definition: my_sys.h:359
uchar ** current_end
Definition: my_sys.h:384
ulong disk_writes
Definition: my_sys.h:435
IO_CACHE_CALLBACK post_read
Definition: my_sys.h:428
myf myflags
Definition: my_sys.h:455
void * arg
Definition: my_sys.h:436
uchar * buffer
Definition: my_sys.h:360
bool seek_not_done
Definition: my_sys.h:449
uchar * write_pos
Definition: my_sys.h:374
uchar ** current_pos
Definition: my_sys.h:384
PSI_file_key file_key
Definition: my_sys.h:440
int(* write_function)(IO_CACHE *, const uchar *, size_t)
Definition: my_sys.h:413
char * file_name
Definition: my_sys.h:437
uchar * append_read_pos
Definition: my_sys.h:372
uint disk_sync_delay
Definition: my_sys.h:471
uchar * request_pos
Definition: my_sys.h:362
size_t buffer_length
Definition: my_sys.h:452
int(* read_function)(IO_CACHE *, uchar *, size_t)
Definition: my_sys.h:408
char * dir
Definition: my_sys.h:438
bool alloced_buffer
Definition: my_sys.h:462
uchar * write_end
Definition: my_sys.h:376
Stream_cipher * m_encryptor
Definition: my_sys.h:464
char * prefix
Definition: my_sys.h:438
Stream_cipher * m_decryptor
Definition: my_sys.h:466
IO_CACHE_CALLBACK pre_close
Definition: my_sys.h:429
int error
Definition: my_sys.h:450
IO_CACHE_SHARE * share
Definition: my_sys.h:398
cache_type type
Definition: my_sys.h:419
size_t read_length
Definition: my_sys.h:454
IO_CACHE_CALLBACK pre_read
Definition: my_sys.h:427
mysql_mutex_t append_buffer_lock
Definition: my_sys.h:390
bool disk_sync
Definition: my_sys.h:468
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:83
Helper structure to return error messages from collation parser/initializer.
Definition: m_ctype.h:181
Definition: my_sys.h:317
char ** list
Definition: my_sys.h:318
uint max
Definition: my_sys.h:319
uint cur
Definition: my_sys.h:319
mysql_mutex_t mutex
Definition: my_sys.h:320
Entry point for the performance schema interface.
Definition: psi_cond.h:46
Entry point for the performance schema interface.
Definition: psi_data_lock.h:82
Entry point for the performance schema interface.
Definition: psi_error.h:59
Entry point for the performance schema interface.
Definition: psi_file.h:66
Entry point for the performance schema interface.
Definition: psi_idle.h:60
Entry point for the performance schema interface.
Definition: psi_mdl.h:76
Entry point for the performance schema interface.
Definition: psi_memory.h:85
Entry point for the performance schema interface.
Definition: psi_metric.h:46
Entry point for the performance schema interface.
Definition: psi_mutex.h:46
Entry point for the performance schema interface.
Definition: psi_rwlock.h:53
Entry point for the performance schema interface.
Definition: psi_socket.h:52
Entry point for the performance schema interface.
Definition: psi_stage.h:46
Stage instrument information.
Definition: psi_stage_bits.h:74
Entry point for the performance schema interface.
Definition: psi_statement.h:46
Entry point for the performance schema interface.
Definition: psi_system.h:60
Entry point for the performance schema interface.
Definition: psi_table.h:60
Entry point for the performance schema interface.
Definition: psi_thread.h:102
Entry point for the performance schema interface.
Definition: psi_tls_channel.h:46
Entry point for the performance schema interface.
Definition: psi_transaction.h:60
Definition: my_sys.h:480
dev_t st_dev
Definition: my_sys.h:481
ino_t st_ino
Definition: my_sys.h:482
struct for once_alloc (block)
Definition: my_sys.h:565
unsigned int size
size of block
Definition: my_sys.h:568
unsigned int left
memory left in block
Definition: my_sys.h:567
USED_MEM * next
Next block in use.
Definition: my_sys.h:566
Compression context information.
Definition: my_compress.h:74
An instrumented cond structure.
Definition: mysql_cond_bits.h:50
An instrumented mutex structure.
Definition: mysql_mutex_bits.h:50
Include file for Sun RPC to compile out of the box.
#define PSI_NOT_INSTRUMENTED
Definition: validate_password_imp.cc:42
#define HANDLE
Definition: violite.h:159
int n
Definition: xcom_base.cc:509
static uint64_t cache_size
Definition: xcom_cache.cc:362