Server IP : 172.67.216.182 / Your IP : 172.70.147.89 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/storage/myisam/ |
Upload File : |
/* Copyright (c) 2000, 2023, Oracle and/or its affiliates. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. This program is also distributed with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have included with MySQL. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0, for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /* Static variables for MyISAM library. All definied here for easy making of a shared library */ #ifndef MY_GLOBAL_INCLUDED #include "myisamdef.h" #endif LIST *myisam_open_list=0; uchar myisam_file_magic[]= { (uchar) 254, (uchar) 254,'\007', '\001', }; uchar myisam_pack_file_magic[]= { (uchar) 254, (uchar) 254,'\010', '\002', }; char * myisam_log_filename=(char*) "myisam.log"; File myisam_log_file= -1; uint myisam_quick_table_bits=9; ulong myisam_block_size= MI_KEY_BLOCK_LENGTH; /* Best by test */ my_bool myisam_flush=0, myisam_delay_key_write=0, myisam_single_user=0; /* Assume that we are in a single threaded program by default. */ ulong myisam_concurrent_insert= 0; ulonglong myisam_max_temp_length= MAX_FILE_SIZE; ulong myisam_data_pointer_size=4; ulonglong myisam_mmap_size= SIZE_T_MAX, myisam_mmap_used= 0; /* Keycache thread state for the main thread or single threaded programs. */ st_keycache_thread_var main_thread_keycache_var; /* Key used by myisamchk */ thread_local_key_t keycache_tls_key; static int always_valid(const char *filename MY_ATTRIBUTE((unused))) { return 0; } int (*myisam_test_invalid_symlink)(const char *filename)= always_valid; /* read_vec[] is used for converting between P_READ_KEY.. and SEARCH_ Position is , == , >= , <= , > , < */ uint myisam_read_vec[]= { SEARCH_FIND, SEARCH_FIND | SEARCH_BIGGER, SEARCH_FIND | SEARCH_SMALLER, SEARCH_NO_FIND | SEARCH_BIGGER, SEARCH_NO_FIND | SEARCH_SMALLER, SEARCH_FIND | SEARCH_PREFIX, SEARCH_LAST, SEARCH_LAST | SEARCH_SMALLER, MBR_CONTAIN, MBR_INTERSECT, MBR_WITHIN, MBR_DISJOINT, MBR_EQUAL }; uint myisam_readnext_vec[]= { SEARCH_BIGGER, SEARCH_BIGGER, SEARCH_SMALLER, SEARCH_BIGGER, SEARCH_SMALLER, SEARCH_BIGGER, SEARCH_SMALLER, SEARCH_SMALLER }; PSI_memory_key mi_key_memory_MYISAM_SHARE; PSI_memory_key mi_key_memory_MI_INFO; PSI_memory_key mi_key_memory_MI_INFO_ft1_to_ft2; PSI_memory_key mi_key_memory_MI_INFO_bulk_insert; PSI_memory_key mi_key_memory_record_buffer; PSI_memory_key mi_key_memory_FTB; PSI_memory_key mi_key_memory_FT_INFO; PSI_memory_key mi_key_memory_FTPARSER_PARAM; PSI_memory_key mi_key_memory_ft_memroot; PSI_memory_key mi_key_memory_ft_stopwords; PSI_memory_key mi_key_memory_MI_SORT_PARAM; PSI_memory_key mi_key_memory_MI_SORT_PARAM_wordroot; PSI_memory_key mi_key_memory_SORT_FT_BUF; PSI_memory_key mi_key_memory_SORT_KEY_BLOCKS; PSI_memory_key mi_key_memory_filecopy; PSI_memory_key mi_key_memory_SORT_INFO_buffer; PSI_memory_key mi_key_memory_MI_DECODE_TREE; PSI_memory_key mi_key_memory_MYISAM_SHARE_decode_tables; PSI_memory_key mi_key_memory_preload_buffer; PSI_memory_key mi_key_memory_stPageList_pages; PSI_memory_key mi_key_memory_keycache_thread_var; #ifdef HAVE_PSI_INTERFACE PSI_mutex_key mi_key_mutex_MYISAM_SHARE_intern_lock; static PSI_mutex_info all_myisam_mutexes[] = { { &mi_key_mutex_MYISAM_SHARE_intern_lock, "MYISAM_SHARE::intern_lock", 0} }; PSI_rwlock_key mi_key_rwlock_MYISAM_SHARE_key_root_lock, mi_key_rwlock_MYISAM_SHARE_mmap_lock; static PSI_rwlock_info all_myisam_rwlocks[]= { { &mi_key_rwlock_MYISAM_SHARE_key_root_lock, "MYISAM_SHARE::key_root_lock", 0}, { &mi_key_rwlock_MYISAM_SHARE_mmap_lock, "MYISAM_SHARE::mmap_lock", 0} }; PSI_cond_key mi_keycache_thread_var_suspend; static PSI_cond_info all_myisam_conds[]= { { &mi_keycache_thread_var_suspend, "keycache_thread_var::suspend", 0} }; PSI_file_key mi_key_file_datatmp, mi_key_file_dfile, mi_key_file_kfile, mi_key_file_log; static PSI_file_info all_myisam_files[]= { { & mi_key_file_datatmp, "data_tmp", 0}, { & mi_key_file_dfile, "dfile", 0}, { & mi_key_file_kfile, "kfile", 0}, { & mi_key_file_log, "log", 0} }; PSI_thread_key mi_key_thread_find_all_keys; static PSI_thread_info all_myisam_threads[]= { { &mi_key_thread_find_all_keys, "find_all_keys", 0} }; static PSI_memory_info all_myisam_memory[]= { { &mi_key_memory_MYISAM_SHARE, "MYISAM_SHARE", 0}, { &mi_key_memory_MI_INFO, "MI_INFO", 0}, { &mi_key_memory_MI_INFO_ft1_to_ft2, "MI_INFO::ft1_to_ft2", 0}, { &mi_key_memory_MI_INFO_bulk_insert, "MI_INFO::bulk_insert", 0}, { &mi_key_memory_record_buffer, "record_buffer", 0}, { &mi_key_memory_FTB, "FTB", 0}, { &mi_key_memory_FT_INFO, "FT_INFO", 0}, { &mi_key_memory_FTPARSER_PARAM, "FTPARSER_PARAM", 0}, { &mi_key_memory_ft_memroot, "ft_memroot", 0}, { &mi_key_memory_ft_stopwords, "ft_stopwords", 0}, { &mi_key_memory_MI_SORT_PARAM, "MI_SORT_PARAM", 0}, { &mi_key_memory_MI_SORT_PARAM_wordroot, "MI_SORT_PARAM::wordroot", 0}, { &mi_key_memory_SORT_FT_BUF, "SORT_FT_BUF", 0}, { &mi_key_memory_SORT_KEY_BLOCKS, "SORT_KEY_BLOCKS", 0}, { &mi_key_memory_filecopy, "filecopy", 0}, { &mi_key_memory_SORT_INFO_buffer, "SORT_INFO::buffer", 0}, { &mi_key_memory_MI_DECODE_TREE, "MI_DECODE_TREE", 0}, { &mi_key_memory_MYISAM_SHARE_decode_tables, "MYISAM_SHARE::decode_tables", 0}, { &mi_key_memory_preload_buffer, "preload_buffer", 0}, { &mi_key_memory_stPageList_pages, "stPageList::pages", 0}, { &mi_key_memory_keycache_thread_var, "keycache_thread_var", 0} }; void init_myisam_psi_keys() { const char* category= "myisam"; int count; count= array_elements(all_myisam_mutexes); mysql_mutex_register(category, all_myisam_mutexes, count); count= array_elements(all_myisam_rwlocks); mysql_rwlock_register(category, all_myisam_rwlocks, count); count= array_elements(all_myisam_conds); mysql_cond_register(category, all_myisam_conds, count); count= array_elements(all_myisam_files); mysql_file_register(category, all_myisam_files, count); count= array_elements(all_myisam_threads); mysql_thread_register(category, all_myisam_threads, count); count= array_elements(all_myisam_memory); mysql_memory_register(category, all_myisam_memory, count); } #endif /* HAVE_PSI_INTERFACE */