Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into silver_beast.(none):/home/cps/mysql/devel/im/default_patch/mysql-5.0
This commit is contained in:
commit
ca41ecffc6
@ -31,6 +31,7 @@ bk@mysql.r18.ru
|
|||||||
brian@avenger.(none)
|
brian@avenger.(none)
|
||||||
brian@brian-akers-computer.local
|
brian@brian-akers-computer.local
|
||||||
carsten@tsort.bitbybit.dk
|
carsten@tsort.bitbybit.dk
|
||||||
|
cps@silver_beast.(none)
|
||||||
davida@isil.mysql.com
|
davida@isil.mysql.com
|
||||||
dlenev@brandersnatch.localdomain
|
dlenev@brandersnatch.localdomain
|
||||||
dlenev@build.mysql.com
|
dlenev@build.mysql.com
|
||||||
|
@ -506,6 +506,10 @@ my_off_t my_b_safe_tell(IO_CACHE* info); /* picks the correct tell() */
|
|||||||
|
|
||||||
typedef uint32 ha_checksum;
|
typedef uint32 ha_checksum;
|
||||||
|
|
||||||
|
/* Define the type of function to be passed to process_default_option_files */
|
||||||
|
typedef int (*Process_option_func)(void *ctx, const char *group_name,
|
||||||
|
const char *option);
|
||||||
|
|
||||||
#include <my_alloc.h>
|
#include <my_alloc.h>
|
||||||
|
|
||||||
/* Prototypes for mysys and my_func functions */
|
/* Prototypes for mysys and my_func functions */
|
||||||
@ -740,6 +744,9 @@ extern char *strmake_root(MEM_ROOT *root,const char *str,uint len);
|
|||||||
extern char *memdup_root(MEM_ROOT *root,const char *str,uint len);
|
extern char *memdup_root(MEM_ROOT *root,const char *str,uint len);
|
||||||
extern int load_defaults(const char *conf_file, const char **groups,
|
extern int load_defaults(const char *conf_file, const char **groups,
|
||||||
int *argc, char ***argv);
|
int *argc, char ***argv);
|
||||||
|
extern int process_default_option_files(const char *conf_file,
|
||||||
|
Process_option_func func,
|
||||||
|
void *func_ctx);
|
||||||
extern void free_defaults(char **argv);
|
extern void free_defaults(char **argv);
|
||||||
extern void print_defaults(const char *conf_file, const char **groups);
|
extern void print_defaults(const char *conf_file, const char **groups);
|
||||||
extern my_bool my_compress(byte *, ulong *, ulong *);
|
extern my_bool my_compress(byte *, ulong *, ulong *);
|
||||||
|
316
mysys/default.c
316
mysys/default.c
@ -66,13 +66,209 @@ NullS,
|
|||||||
#define windows_ext ".ini"
|
#define windows_ext ".ini"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static int search_default_file(DYNAMIC_ARRAY *args,MEM_ROOT *alloc,
|
/*
|
||||||
|
This structure defines the context that we pass to callback
|
||||||
|
function 'handle_default_option' used in search_default_file
|
||||||
|
to process each option. This context is used if search_default_file
|
||||||
|
was called from load_defaults.
|
||||||
|
*/
|
||||||
|
|
||||||
|
struct handle_option_ctx
|
||||||
|
{
|
||||||
|
MEM_ROOT *alloc;
|
||||||
|
DYNAMIC_ARRAY *args;
|
||||||
|
TYPELIB *group;
|
||||||
|
};
|
||||||
|
|
||||||
|
static int search_default_file(Process_option_func func, void *func_ctx,
|
||||||
const char *dir, const char *config_file,
|
const char *dir, const char *config_file,
|
||||||
const char *ext, TYPELIB *group);
|
const char *ext);
|
||||||
|
|
||||||
static char *remove_end_comment(char *ptr);
|
static char *remove_end_comment(char *ptr);
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
Process config files in default directories.
|
||||||
|
|
||||||
|
SYNOPSIS
|
||||||
|
search_files()
|
||||||
|
conf_file Basename for configuration file to search for.
|
||||||
|
If this is a path, then only this file is read.
|
||||||
|
argc Pointer to argc of original program
|
||||||
|
argv Pointer to argv of original program
|
||||||
|
args_used Pointer to variable for storing the number of
|
||||||
|
arguments used.
|
||||||
|
func Pointer to the function to process options
|
||||||
|
func_ctx It's context. Usually it is the structure to
|
||||||
|
store additional options.
|
||||||
|
DESCRIPTION
|
||||||
|
|
||||||
|
This function looks for config files in default directories. Then it
|
||||||
|
travesrses each of the files and calls func to process each option.
|
||||||
|
|
||||||
|
RETURN
|
||||||
|
0 ok
|
||||||
|
1 given cinf_file doesn't exist
|
||||||
|
*/
|
||||||
|
|
||||||
|
static int search_files(const char *conf_file, int *argc, char ***argv,
|
||||||
|
uint *args_used, Process_option_func func,
|
||||||
|
void *func_ctx)
|
||||||
|
{
|
||||||
|
const char **dirs, *forced_default_file;
|
||||||
|
int error= 0;
|
||||||
|
DBUG_ENTER("search_files");
|
||||||
|
|
||||||
|
args_used= 0;
|
||||||
|
|
||||||
|
/* Check if we want to force the use a specific default file */
|
||||||
|
forced_default_file= 0;
|
||||||
|
if (*argc >= 2)
|
||||||
|
{
|
||||||
|
if (is_prefix(argv[0][1],"--defaults-file="))
|
||||||
|
{
|
||||||
|
forced_default_file= strchr(argv[0][1],'=') + 1;
|
||||||
|
*args_used++;
|
||||||
|
}
|
||||||
|
else if (is_prefix(argv[0][1],"--defaults-extra-file="))
|
||||||
|
{
|
||||||
|
defaults_extra_file= strchr(argv[0][1],'=') + 1;
|
||||||
|
*args_used++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (forced_default_file)
|
||||||
|
{
|
||||||
|
if ((error= search_default_file(func, func_ctx, "",
|
||||||
|
forced_default_file, "")) < 0)
|
||||||
|
goto err;
|
||||||
|
if (error > 0)
|
||||||
|
{
|
||||||
|
fprintf(stderr, "Could not open required defaults file: %s\n",
|
||||||
|
forced_default_file);
|
||||||
|
goto err;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (dirname_length(conf_file))
|
||||||
|
{
|
||||||
|
if ((error= search_default_file(func, func_ctx, NullS, conf_file,
|
||||||
|
default_ext)) < 0)
|
||||||
|
goto err;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
#ifdef __WIN__
|
||||||
|
char system_dir[FN_REFLEN];
|
||||||
|
GetWindowsDirectory(system_dir,sizeof(system_dir));
|
||||||
|
if ((search_default_file(func, func_ctx, system_dir, conf_file,
|
||||||
|
windows_ext)))
|
||||||
|
goto err;
|
||||||
|
#endif
|
||||||
|
#if defined(__EMX__) || defined(OS2)
|
||||||
|
if (getenv("ETC") &&
|
||||||
|
(search_default_file(func, func_ctx, getenv("ETC"), conf_file,
|
||||||
|
default_ext)) < 0)
|
||||||
|
goto err;
|
||||||
|
#endif
|
||||||
|
for (dirs= default_directories ; *dirs; dirs++)
|
||||||
|
{
|
||||||
|
if (**dirs)
|
||||||
|
{
|
||||||
|
if (search_default_file(func, func_ctx, *dirs, conf_file, default_ext) < 0)
|
||||||
|
goto err;
|
||||||
|
}
|
||||||
|
else if (defaults_extra_file)
|
||||||
|
{
|
||||||
|
if (search_default_file(func, func_ctx, NullS, defaults_extra_file,
|
||||||
|
default_ext) < 0)
|
||||||
|
goto err; /* Fatal error */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DBUG_RETURN(error);
|
||||||
|
|
||||||
|
err:
|
||||||
|
fprintf(stderr,"Fatal error in defaults handling. Program aborted\n");
|
||||||
|
exit(1);
|
||||||
|
return 0; /* Keep compiler happy */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
Simplified version of search_files (no argv, argc to process).
|
||||||
|
|
||||||
|
SYNOPSIS
|
||||||
|
process_default_option_files()
|
||||||
|
conf_file Basename for configuration file to search for.
|
||||||
|
If this is a path, then only this file is read.
|
||||||
|
func Pointer to the function to process options
|
||||||
|
func_ctx It's context. Usually it is the structure to
|
||||||
|
store additional options.
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
|
||||||
|
Often we want only to get options from default config files. In this case we
|
||||||
|
don't want to provide any argc and argv parameters. This function is a
|
||||||
|
simplified variant of search_files which allows us to forget about
|
||||||
|
argc, argv.
|
||||||
|
|
||||||
|
RETURN
|
||||||
|
0 ok
|
||||||
|
1 given cinf_file doesn't exist
|
||||||
|
*/
|
||||||
|
|
||||||
|
int process_default_option_files(const char *conf_file,
|
||||||
|
Process_option_func func, void *func_ctx)
|
||||||
|
{
|
||||||
|
int argc= 1;
|
||||||
|
/* this is a dummy variable for search_files() */
|
||||||
|
uint args_used;
|
||||||
|
|
||||||
|
return search_files(conf_file, &argc, NULL, &args_used, func, func_ctx);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
The option handler for load_defaults.
|
||||||
|
|
||||||
|
SYNOPSIS
|
||||||
|
handle_deault_option()
|
||||||
|
in_ctx Handler context. In this case it is a
|
||||||
|
handle_option_ctx structure.
|
||||||
|
group_name The name of the group the option belongs to.
|
||||||
|
option The very option to be processed. It is already
|
||||||
|
prepared to be used in argv (has -- prefix)
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
|
||||||
|
This handler checks whether a group is one of the listed and adds an option
|
||||||
|
to the array if yes. Some other handler can record, for instance, all groups
|
||||||
|
and their options, not knowing in advance the names and amount of groups.
|
||||||
|
|
||||||
|
RETURN
|
||||||
|
0 - ok
|
||||||
|
1 - error occured
|
||||||
|
*/
|
||||||
|
|
||||||
|
static int handle_default_option(void *in_ctx, const char *group_name,
|
||||||
|
const char *option)
|
||||||
|
{
|
||||||
|
char *tmp;
|
||||||
|
struct handle_option_ctx *ctx;
|
||||||
|
ctx= (struct handle_option_ctx *) in_ctx;
|
||||||
|
if(find_type((char *)group_name, ctx->group, 3))
|
||||||
|
{
|
||||||
|
if (!(tmp= alloc_root(ctx->alloc, (uint) strlen(option) + 1)))
|
||||||
|
return 1;
|
||||||
|
if (insert_dynamic(ctx->args, (gptr) &tmp))
|
||||||
|
return 1;
|
||||||
|
strmov(tmp, option);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Read options from configurations files
|
Read options from configurations files
|
||||||
|
|
||||||
@ -101,7 +297,6 @@ static char *remove_end_comment(char *ptr);
|
|||||||
RETURN
|
RETURN
|
||||||
0 ok
|
0 ok
|
||||||
1 The given conf_file didn't exists
|
1 The given conf_file didn't exists
|
||||||
2 The given conf_file was not a normal readable file
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@ -109,13 +304,13 @@ int load_defaults(const char *conf_file, const char **groups,
|
|||||||
int *argc, char ***argv)
|
int *argc, char ***argv)
|
||||||
{
|
{
|
||||||
DYNAMIC_ARRAY args;
|
DYNAMIC_ARRAY args;
|
||||||
const char **dirs, *forced_default_file;
|
|
||||||
TYPELIB group;
|
TYPELIB group;
|
||||||
my_bool found_print_defaults=0;
|
my_bool found_print_defaults=0;
|
||||||
uint args_used=0;
|
uint args_used=0;
|
||||||
int error= 0;
|
int error= 0;
|
||||||
MEM_ROOT alloc;
|
MEM_ROOT alloc;
|
||||||
char *ptr,**res;
|
char *ptr,**res;
|
||||||
|
struct handle_option_ctx ctx;
|
||||||
DBUG_ENTER("load_defaults");
|
DBUG_ENTER("load_defaults");
|
||||||
|
|
||||||
init_alloc_root(&alloc,512,0);
|
init_alloc_root(&alloc,512,0);
|
||||||
@ -137,79 +332,22 @@ int load_defaults(const char *conf_file, const char **groups,
|
|||||||
DBUG_RETURN(0);
|
DBUG_RETURN(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Check if we want to force the use a specific default file */
|
|
||||||
forced_default_file=0;
|
|
||||||
if (*argc >= 2)
|
|
||||||
{
|
|
||||||
if (is_prefix(argv[0][1],"--defaults-file="))
|
|
||||||
{
|
|
||||||
forced_default_file=strchr(argv[0][1],'=')+1;
|
|
||||||
args_used++;
|
|
||||||
}
|
|
||||||
else if (is_prefix(argv[0][1],"--defaults-extra-file="))
|
|
||||||
{
|
|
||||||
defaults_extra_file=strchr(argv[0][1],'=')+1;
|
|
||||||
args_used++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
group.count=0;
|
group.count=0;
|
||||||
group.name= "defaults";
|
group.name= "defaults";
|
||||||
group.type_names= groups;
|
group.type_names= groups;
|
||||||
|
|
||||||
for (; *groups ; groups++)
|
for (; *groups ; groups++)
|
||||||
group.count++;
|
group.count++;
|
||||||
|
|
||||||
if (my_init_dynamic_array(&args, sizeof(char*),*argc, 32))
|
if (my_init_dynamic_array(&args, sizeof(char*),*argc, 32))
|
||||||
goto err;
|
goto err;
|
||||||
if (forced_default_file)
|
|
||||||
{
|
ctx.alloc= &alloc;
|
||||||
if ((error= search_default_file(&args, &alloc, "",
|
ctx.args= &args;
|
||||||
forced_default_file, "", &group)) < 0)
|
ctx.group= &group;
|
||||||
goto err;
|
|
||||||
if (error > 0)
|
error= search_files(conf_file, argc, argv, &args_used,
|
||||||
{
|
handle_default_option, (void *) &ctx);
|
||||||
fprintf(stderr, "Could not open required defaults file: %s\n",
|
|
||||||
forced_default_file);
|
|
||||||
goto err;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (dirname_length(conf_file))
|
|
||||||
{
|
|
||||||
if ((error= search_default_file(&args, &alloc, NullS, conf_file,
|
|
||||||
default_ext, &group)) < 0)
|
|
||||||
goto err;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
#ifdef __WIN__
|
|
||||||
char system_dir[FN_REFLEN];
|
|
||||||
GetWindowsDirectory(system_dir,sizeof(system_dir));
|
|
||||||
if ((search_default_file(&args, &alloc, system_dir, conf_file,
|
|
||||||
windows_ext, &group)))
|
|
||||||
goto err;
|
|
||||||
#endif
|
|
||||||
#if defined(__EMX__) || defined(OS2)
|
|
||||||
if (getenv("ETC") &&
|
|
||||||
(search_default_file(&args, &alloc, getenv("ETC"), conf_file,
|
|
||||||
default_ext, &group)) < 0)
|
|
||||||
goto err;
|
|
||||||
#endif
|
|
||||||
for (dirs=default_directories ; *dirs; dirs++)
|
|
||||||
{
|
|
||||||
if (**dirs)
|
|
||||||
{
|
|
||||||
if (search_default_file(&args, &alloc, *dirs, conf_file,
|
|
||||||
default_ext, &group) < 0)
|
|
||||||
goto err;
|
|
||||||
}
|
|
||||||
else if (defaults_extra_file)
|
|
||||||
{
|
|
||||||
if (search_default_file(&args, &alloc, NullS, defaults_extra_file,
|
|
||||||
default_ext, &group) < 0)
|
|
||||||
goto err; /* Fatal error */
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/*
|
/*
|
||||||
Here error contains <> 0 only if we have a fully specified conf_file
|
Here error contains <> 0 only if we have a fully specified conf_file
|
||||||
or a forced default file
|
or a forced default file
|
||||||
@ -274,8 +412,10 @@ void free_defaults(char **argv)
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
search_default_file()
|
search_default_file()
|
||||||
args Store pointer to found options here
|
opt_handler Option handler function. It is used to process
|
||||||
alloc Allocate strings in this object
|
every separate option.
|
||||||
|
handler_ctx Pointer to the structure to store actual
|
||||||
|
parameters of the function.
|
||||||
dir directory to read
|
dir directory to read
|
||||||
config_file Name of configuration file
|
config_file Name of configuration file
|
||||||
ext Extension for configuration file
|
ext Extension for configuration file
|
||||||
@ -285,17 +425,17 @@ void free_defaults(char **argv)
|
|||||||
0 Success
|
0 Success
|
||||||
-1 Fatal error, abort
|
-1 Fatal error, abort
|
||||||
1 File not found (Warning)
|
1 File not found (Warning)
|
||||||
2 File is not a regular file (Warning)
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static int search_default_file(DYNAMIC_ARRAY *args, MEM_ROOT *alloc,
|
static int search_default_file(Process_option_func opt_handler, void *handler_ctx,
|
||||||
const char *dir, const char *config_file,
|
const char *dir, const char *config_file,
|
||||||
const char *ext, TYPELIB *group)
|
const char *ext)
|
||||||
{
|
{
|
||||||
char name[FN_REFLEN+10],buff[4096],*ptr,*end,*value,*tmp;
|
char name[FN_REFLEN+10], buff[4096], curr_gr[4096], *ptr, *end;
|
||||||
|
char *value, option[4096];
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
uint line=0;
|
uint line=0;
|
||||||
my_bool read_values=0,found_group=0;
|
my_bool found_group=0;
|
||||||
|
|
||||||
if ((dir ? strlen(dir) : 0 )+strlen(config_file) >= FN_REFLEN-3)
|
if ((dir ? strlen(dir) : 0 )+strlen(config_file) >= FN_REFLEN-3)
|
||||||
return 0; /* Ignore wrong paths */
|
return 0; /* Ignore wrong paths */
|
||||||
@ -352,7 +492,8 @@ static int search_default_file(DYNAMIC_ARRAY *args, MEM_ROOT *alloc,
|
|||||||
}
|
}
|
||||||
for ( ; my_isspace(&my_charset_latin1,end[-1]) ; end--) ;/* Remove end space */
|
for ( ; my_isspace(&my_charset_latin1,end[-1]) ; end--) ;/* Remove end space */
|
||||||
end[0]=0;
|
end[0]=0;
|
||||||
read_values=find_type(ptr,group,3) > 0;
|
|
||||||
|
strnmov(curr_gr, ptr, min((uint) (end-ptr)+1, 4096));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (!found_group)
|
if (!found_group)
|
||||||
@ -362,19 +503,17 @@ static int search_default_file(DYNAMIC_ARRAY *args, MEM_ROOT *alloc,
|
|||||||
name,line);
|
name,line);
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
if (!read_values)
|
|
||||||
continue;
|
|
||||||
end= remove_end_comment(ptr);
|
end= remove_end_comment(ptr);
|
||||||
if ((value= strchr(ptr, '=')))
|
if ((value= strchr(ptr, '=')))
|
||||||
end= value; /* Option without argument */
|
end= value; /* Option without argument */
|
||||||
for ( ; my_isspace(&my_charset_latin1,end[-1]) ; end--) ;
|
for ( ; my_isspace(&my_charset_latin1,end[-1]) ; end--) ;
|
||||||
if (!value)
|
if (!value)
|
||||||
{
|
{
|
||||||
if (!(tmp=alloc_root(alloc,(uint) (end-ptr)+3)))
|
strmake(strmov(option,"--"),ptr,(uint) (end-ptr));
|
||||||
goto err;
|
if (opt_handler(handler_ctx, curr_gr, option))
|
||||||
strmake(strmov(tmp,"--"),ptr,(uint) (end-ptr));
|
goto err;
|
||||||
if (insert_dynamic(args,(gptr) &tmp))
|
|
||||||
goto err;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -396,12 +535,7 @@ static int search_default_file(DYNAMIC_ARRAY *args, MEM_ROOT *alloc,
|
|||||||
value++;
|
value++;
|
||||||
value_end--;
|
value_end--;
|
||||||
}
|
}
|
||||||
if (!(tmp=alloc_root(alloc,(uint) (end-ptr)+3 +
|
ptr=strnmov(strmov(option,"--"),ptr,(uint) (end-ptr));
|
||||||
(uint) (value_end-value)+1)))
|
|
||||||
goto err;
|
|
||||||
if (insert_dynamic(args,(gptr) &tmp))
|
|
||||||
goto err;
|
|
||||||
ptr=strnmov(strmov(tmp,"--"),ptr,(uint) (end-ptr));
|
|
||||||
*ptr++= '=';
|
*ptr++= '=';
|
||||||
|
|
||||||
for ( ; value != value_end; value++)
|
for ( ; value != value_end; value++)
|
||||||
@ -443,6 +577,8 @@ static int search_default_file(DYNAMIC_ARRAY *args, MEM_ROOT *alloc,
|
|||||||
*ptr++= *value;
|
*ptr++= *value;
|
||||||
}
|
}
|
||||||
*ptr=0;
|
*ptr=0;
|
||||||
|
if (opt_handler(handler_ctx, curr_gr, option))
|
||||||
|
goto err;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
my_fclose(fp,MYF(0));
|
my_fclose(fp,MYF(0));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user