MySQL 8.0.37
Source Code Documentation
my_default.h
Go to the documentation of this file.
1/* Copyright (c) 2012, 2024, 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_DEFAULT_INCLUDED
25#define MY_DEFAULT_INCLUDED
26
27/**
28 @file include/my_default.h
29*/
30
31#include <sys/types.h>
32
33#include "my_inttypes.h"
34#include "my_macros.h"
35
36struct MEM_ROOT;
37
38extern const char *my_defaults_extra_file;
39extern const char *my_defaults_group_suffix;
40extern const char *my_defaults_file;
43extern bool no_defaults;
44extern char datadir_buffer[];
45
46/* Define the type of function to be passed to process_default_option_files */
47typedef int (*Process_option_func)(void *ctx, const char *group_name,
48 const char *option, const char *cnf_file);
49void set_persist_args_separator(char **arg);
50bool my_getopt_is_args_separator(const char *arg);
51bool my_getopt_is_ro_persist_args_separator(const char *arg);
52int get_defaults_options(int argc, char **argv, char **defaults,
53 char **extra_defaults, char **group_suffix,
54 char **login_path, bool found_no_defaults);
55
56// extern "C" since it is an (undocumented) part of the libmysql ABI.
57extern "C" int my_load_defaults(const char *conf_file, const char **groups,
58 int *argc, char ***argv, MEM_ROOT *alloc,
59 const char ***);
60int check_file_permissions(const char *file_name, bool is_login_file,
61 myf MyFlags = 0);
62int load_defaults(const char *conf_file, const char **groups, int *argc,
63 char ***argv, MEM_ROOT *alloc);
64int my_search_option_files(const char *conf_file, int *argc, char ***argv,
65 uint *args_used, Process_option_func func,
66 void *func_ctx, const char **default_directories,
67 bool is_login_file, bool found_no_defaults);
68void my_print_default_files(const char *conf_file);
69void print_defaults(const char *conf_file, const char **groups);
71void update_variable_source(const char *opt_name, const char *config_file);
72void set_variable_source(const char *opt_name, void *value);
73
74#endif // MY_DEFAULT_INCLUDED
static const char ** default_directories
Definition: my_default.cc:210
int load_defaults(const char *conf_file, const char **groups, int *argc, char ***argv, MEM_ROOT *alloc)
Definition: my_default.cc:630
bool no_defaults
Definition: my_default.cc:204
char datadir_buffer[]
Holds a reference to the directory where the persisted configuration file is located.
Definition: my_default.cc:127
void set_variable_source(const char *opt_name, void *value)
This function will set value for my_option::arg_source by doing a lookup into variables_hash based on...
Definition: my_default.cc:1536
int(* Process_option_func)(void *ctx, const char *group_name, const char *option, const char *cnf_file)
Definition: my_default.h:47
bool my_getopt_is_ro_persist_args_separator(const char *arg)
Definition: my_default.cc:177
bool my_getopt_use_args_separator
Definition: my_default.cc:187
bool my_defaults_read_login_file
A global to turn off or on reading the mylogin file.
Definition: my_default.cc:637
void set_persist_args_separator(char **arg)
Definition: my_default.cc:174
int my_search_option_files(const char *conf_file, int *argc, char ***argv, uint *args_used, Process_option_func func, void *func_ctx, const char **default_directories, bool is_login_file, bool found_no_defaults)
Definition: my_default.cc:342
int my_load_defaults(const char *conf_file, const char **groups, int *argc, char ***argv, MEM_ROOT *alloc, const char ***)
Definition: my_default.cc:676
const char * my_defaults_group_suffix
Definition: my_default.cc:193
const char * my_defaults_extra_file
Definition: my_default.cc:194
void update_variable_source(const char *opt_name, const char *config_file)
Track all options loaded from config files and command line options along with the path from where op...
Definition: my_default.cc:1452
void my_print_default_files(const char *conf_file)
Definition: my_default.cc:1277
int get_defaults_options(int argc, char **argv, char **defaults, char **extra_defaults, char **group_suffix, char **login_path, bool found_no_defaults)
Definition: my_default.cc:562
bool my_getopt_is_args_separator(const char *arg)
Definition: my_default.cc:188
const char * my_defaults_file
Definition: my_default.cc:192
int check_file_permissions(const char *file_name, bool is_login_file, myf MyFlags=0)
Check file permissions of the option file.
Definition: my_default.cc:1722
void init_variable_default_paths()
Initialize all the mappings between default config file paths/ command line options/persistent config...
Definition: my_default.cc:1360
void print_defaults(const char *conf_file, const char **groups)
Definition: my_default.cc:1325
Some integer typedefs for easier portability.
int myf
Definition: my_inttypes.h:94
Some common macros.
std::string file_name(Log_file_id file_id)
Provides name of the log file with the given file id, e.g.
Definition: log0pre_8_0_30.cc:94
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:83
unsigned int uint
Definition: uca9-dump.cc:75