#At file:///home/cbell/source/bzr/mysql-wl-5710/ based on revid:chuck.bell@stripped
3424 Chuck Bell 2011-07-01
BUG#1207948 : mysql_plugin fails on Windows
This patch corrects a problem found with Windows paths containing
spaces. The patch contains Windows-specific code for managing
these paths.
modified:
client/mysql_plugin.c
=== modified file 'client/mysql_plugin.c'
--- a/client/mysql_plugin.c 2011-06-30 12:12:58 +0000
+++ b/client/mysql_plugin.c 2011-07-01 15:59:46 +0000
@@ -228,6 +228,69 @@ static int run_command(char* cmd, const
}
+#ifdef __WIN__
+/**
+ Check to see if there are spaces in a path.
+
+ @param[in] path The Windows path to examine.
+
+ @retval int spaces found = 1, no spaces = 0
+*/
+static int has_spaces(const char *path)
+{
+ if (strchr(path, ' ') != NULL)
+ return 1;
+ return 0;
+}
+
+
+/**
+ Convert a Unix path to a Windows path.
+
+ @param[in] path The Windows path to examine.
+
+ @returns string containing path with / changed to \\
+*/
+static char *convert_path(const char *argument)
+{
+ /* Convert / to \\ to make Windows paths */
+ char *winfilename= my_strdup(argument, MYF(MY_FAE));
+ char *pos, *end;
+ int length= strlen(argument);
+
+ for (pos= winfilename, end= pos+length ; pos < end ; pos++)
+ {
+ if (*pos == '/')
+ {
+ *pos= '\\';
+ }
+ }
+ return winfilename;
+}
+
+
+/**
+ Add quotes if the path has spaces in it.
+
+ @param[in] path The Windows path to examine.
+
+ @returns string containing excaped quotes if spaces found in path
+*/
+static char *add_quotes(const char *path)
+{
+ char windows_cmd_friendly[FN_REFLEN];
+
+ if (has_spaces(path))
+ snprintf(windows_cmd_friendly, sizeof(windows_cmd_friendly),
+ "\"%s\"", path);
+ else
+ snprintf(windows_cmd_friendly, sizeof(windows_cmd_friendly),
+ "%s", path);
+ return my_strdup(windows_cmd_friendly, MYF(MY_FAE));
+}
+#endif
+
+
/**
Get the default values from the my.cnf file.
@@ -259,11 +322,26 @@ static int get_default_values()
{
if ((error= make_tempfile(defaults_file, "txt")))
goto exit;
+
+#ifdef __WIN__
+ {
+ char *format_str= 0;
+
+ if (has_spaces(tool_path) || has_spaces(defaults_file))
+ format_str = "\"%s mysqld > %s\"";
+ else
+ format_str = "%s mysqld > %s";
+
+ snprintf(defaults_cmd, sizeof(defaults_cmd), format_str,
+ add_quotes(tool_path), add_quotes(defaults_file));
+ }
+#else
snprintf(defaults_cmd, sizeof(defaults_cmd),
"%s mysqld > %s", tool_path, defaults_file);
+#endif
/* Execute the command */
- if (opt_verbose > 1)
+ if (opt_verbose)
{
printf("# Command: %s\n", defaults_cmd);
}
@@ -517,14 +595,14 @@ static int load_plugin_data(char *plugin
}
if (!file_exists(opt_plugin_ini))
{
- reason= "File does not exist.";
+ reason= (char *)"File does not exist.";
goto error;
}
file_ptr= fopen(opt_plugin_ini, "r");
if (file_ptr == NULL)
{
- reason= "Cannot open file.";
+ reason= (char *)"Cannot open file.";
goto error;
}
@@ -544,7 +622,7 @@ static int load_plugin_data(char *plugin
{
if (i < 1)
{
- reason= "Bad format in plugin configuration file.";
+ reason= (char *)"Bad format in plugin configuration file.";
fclose(file_ptr);
goto error;
}
@@ -737,6 +815,18 @@ static int process_options(int argc, cha
goto exit;
}
+ /* Add a trailing directory separator if not present */
+ if (opt_basedir)
+ {
+ i= (int)strlength(opt_basedir);
+ if (opt_basedir[i-1] != FN_LIBCHAR || opt_basedir[i-1] != FN_LIBCHAR2)
+#ifdef __WIN__
+ strcat(opt_basedir, "//");
+#else
+ strcat(opt_basedir, FN_DIRSEP);
+#endif
+ }
+
/*
If the user did not specify the option to skip loading defaults from a
config file and the required options are not present or there was an error
@@ -760,13 +850,6 @@ static int process_options(int argc, cha
goto exit;
}
- /* Add a trailing directory separator if not present */
- i= (int)strlength(opt_basedir);
- if (opt_basedir[i-1] != FN_LIBCHAR || opt_basedir[i-1] != FN_LIBCHAR2)
- {
- strcat(opt_basedir, FN_DIRSEP);
- }
-
if (opt_verbose)
{
printf("# basedir = %s\n", opt_basedir);
@@ -1031,12 +1114,30 @@ static int bootstrap_server(char *server
int error= 0;
int ret= 0;
+#ifdef __WIN__
+ char *format_str= 0;
+ char *verbose_str= "";
+
+ if (opt_verbose)
+ strcat(verbose_str, "--console");
+ if (has_spaces(opt_datadir) || has_spaces(opt_basedir) ||
+ has_spaces(bootstrap_file))
+ format_str= "\"%s %s --bootstrap --datadir=%s --basedir=%s < %s\"";
+ else
+ format_str= "%s %s --bootstrap --datadir=%s --basedir=%s < %s";
+
+ snprintf(bootstrap_cmd, sizeof(bootstrap_cmd), format_str,
+ add_quotes(convert_path(server_path)), verbose_str,
+ add_quotes(opt_datadir), add_quotes(opt_basedir),
+ add_quotes(bootstrap_file));
+#else
snprintf(bootstrap_cmd, sizeof(bootstrap_cmd),
"%s --no-defaults --bootstrap --datadir=%s --basedir=%s"
" < %s", server_path, opt_datadir, opt_basedir, bootstrap_file);
+#endif
/* Execute the command */
- if (opt_verbose > 1)
+ if (opt_verbose)
{
printf("# Command: %s\n", bootstrap_cmd);
}
Attachment: [text/bzr-bundle] bzr/chuck.bell@oracle.com-20110701155946-d79z088rhgsrzr4y.bundle
| Thread |
|---|
| • bzr commit into mysql-5.5 branch (chuck.bell:3424) Bug#1207948 | Chuck Bell | 4 Jul |