2004-10-23 11:32:52 +04:00
|
|
|
/* Copyright (C) 2004 MySQL AB
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
2005-09-23 21:28:56 +03:00
|
|
|
#if defined(__GNUC__) && defined(USE_PRAGMA_IMPLEMENTATION)
|
2004-10-23 11:32:52 +04:00
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "instance_map.h"
|
2005-03-22 02:04:14 +03:00
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
#include "buffer.h"
|
|
|
|
#include "instance.h"
|
2005-07-21 14:21:23 +04:00
|
|
|
#include "log.h"
|
|
|
|
#include "options.h"
|
2005-03-22 02:04:14 +03:00
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
#include <m_ctype.h>
|
|
|
|
#include <mysql_com.h>
|
|
|
|
#include <m_string.h>
|
|
|
|
|
|
|
|
/*
|
2004-11-06 02:14:56 +03:00
|
|
|
Note: As we are going to suppost different types of connections,
|
|
|
|
we shouldn't have connection-specific functions. To avoid it we could
|
|
|
|
put such functions to the Command-derived class instead.
|
2004-10-23 11:32:52 +04:00
|
|
|
The command could be easily constructed for a specific connection if
|
|
|
|
we would provide a special factory for each connection.
|
|
|
|
*/
|
|
|
|
|
|
|
|
C_MODE_START
|
|
|
|
|
|
|
|
/* Procedure needed for HASH initialization */
|
|
|
|
|
|
|
|
static byte* get_instance_key(const byte* u, uint* len,
|
|
|
|
my_bool __attribute__((unused)) t)
|
|
|
|
{
|
|
|
|
const Instance *instance= (const Instance *) u;
|
|
|
|
*len= instance->options.instance_name_len;
|
|
|
|
return (byte *) instance->options.instance_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void delete_instance(void *u)
|
|
|
|
{
|
|
|
|
Instance *instance= (Instance *) u;
|
|
|
|
delete instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
The option handler to pass to the process_default_option_files finction.
|
|
|
|
|
|
|
|
SYNOPSYS
|
|
|
|
process_option()
|
|
|
|
ctx Handler context. Here it is an instance_map 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 an instance group and adds
|
|
|
|
an option to the appropriate instance class. If this is the first
|
|
|
|
occurence of an instance name, we'll also create the instance
|
|
|
|
with such name and add it to the instance map.
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
0 - ok
|
|
|
|
1 - error occured
|
|
|
|
*/
|
|
|
|
|
2005-02-15 04:38:33 +03:00
|
|
|
static int process_option(void *ctx, const char *group, const char *option)
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
Instance_map *map= NULL;
|
2006-02-21 15:57:56 +03:00
|
|
|
|
|
|
|
map = (Instance_map*) ctx;
|
|
|
|
return map->process_one_option(group, option);
|
|
|
|
}
|
|
|
|
|
|
|
|
C_MODE_END
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Process one option from the configuration file.
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
Instance_map::process_one_option()
|
|
|
|
group group name
|
|
|
|
option option string (e.g. "--name=value")
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
This is an auxiliary function and should not be used externally.
|
|
|
|
It is used only by flush_instances(), which pass it to
|
|
|
|
process_option(). The caller ensures proper locking
|
|
|
|
of the instance map object.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int Instance_map::process_one_option(const char *group, const char *option)
|
|
|
|
{
|
2004-10-23 11:32:52 +04:00
|
|
|
Instance *instance= NULL;
|
|
|
|
static const char prefix[]= { 'm', 'y', 's', 'q', 'l', 'd' };
|
|
|
|
|
|
|
|
if (strncmp(group, prefix, sizeof prefix) == 0 &&
|
more fixes for IM to substitude mysqld_safe in startup scripts
BitKeeper/deleted/.del-thread_repository.cc~bba09f64f8cb4037:
Delete: server-tools/instance-manager/thread_repository.cc
BitKeeper/deleted/.del-thread_repository.h~e6a3b9cab7a6612a:
Delete: server-tools/instance-manager/thread_repository.h
server-tools/instance-manager/commands.cc:
All instances are guarded by default now, so we need to perform check on whether the instance is nonguarded,
rather then guarded when adding it to the list of guarded instnces.
server-tools/instance-manager/guardian.cc:
Guardian rewritten to start instances by default, and shut them down, when exiting. Behaviour of the guardian
in case of the instance crash has changed. Now it tries to restart an instance constantly in the first 2
seconds after the crash was noticed, and then it tries restart an instance once in the MONITORING_INTERVAL.
If it failed to restart instance for "restart_retry" (compiled-in value) times, guardian stops trying to
restart it.
server-tools/instance-manager/guardian.h:
Several new functions and variables declared.
server-tools/instance-manager/instance.cc:
now start doesn't call stop(), but rather tries to remove the pidfile itself
server-tools/instance-manager/instance.h:
cleanup
server-tools/instance-manager/instance_map.cc:
no more "admin" options
server-tools/instance-manager/instance_map.h:
User and password purged from instance_map options, as IM shouldn't know them
server-tools/instance-manager/instance_options.cc:
new option added -- shutdown_delay, guarded option now called nonguaded and has the opposite meaning
server-tools/instance-manager/instance_options.h:
appropriate changes, reflecting options addition/removal
server-tools/instance-manager/manager.cc:
shutdown process is complicated a bit -- at first signal thread should stop guardian, and only then the IM
itself
server-tools/instance-manager/messages.cc:
update error message
server-tools/instance-manager/options.cc:
admin user/password purged from mysqlmanager options
2005-01-31 23:54:08 +03:00
|
|
|
((my_isdigit(default_charset_info, group[sizeof prefix]))
|
|
|
|
|| group[sizeof(prefix)] == '\0'))
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
2006-02-21 15:57:56 +03:00
|
|
|
if (!(instance= (Instance *) hash_search(&hash, (byte *) group,
|
|
|
|
strlen(group))))
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
2006-02-21 15:57:56 +03:00
|
|
|
if (!(instance= new Instance))
|
2004-10-23 11:32:52 +04:00
|
|
|
goto err;
|
2006-02-21 15:57:56 +03:00
|
|
|
if (instance->init(group) || my_hash_insert(&hash, (byte *) instance))
|
2005-08-29 23:29:35 +04:00
|
|
|
goto err_instance;
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (instance->options.add_option(option))
|
2005-08-29 23:29:35 +04:00
|
|
|
goto err; /* the instance'll be deleted when we destroy the map */
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2005-08-29 23:29:35 +04:00
|
|
|
err_instance:
|
2004-10-23 11:32:52 +04:00
|
|
|
delete instance;
|
2005-08-29 23:29:35 +04:00
|
|
|
err:
|
2004-10-23 11:32:52 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-21 22:40:53 +04:00
|
|
|
Instance_map::Instance_map(const char *default_mysqld_path_arg):
|
|
|
|
mysqld_path(default_mysqld_path_arg)
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
pthread_mutex_init(&LOCK_instance_map, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-11-02 10:11:03 +03:00
|
|
|
int Instance_map::init()
|
|
|
|
{
|
2005-08-29 23:29:35 +04:00
|
|
|
return hash_init(&hash, default_charset_info, START_HASH_SIZE, 0, 0,
|
|
|
|
get_instance_key, delete_instance, 0);
|
2004-11-02 10:11:03 +03:00
|
|
|
}
|
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
Instance_map::~Instance_map()
|
|
|
|
{
|
|
|
|
pthread_mutex_lock(&LOCK_instance_map);
|
|
|
|
hash_free(&hash);
|
|
|
|
pthread_mutex_unlock(&LOCK_instance_map);
|
|
|
|
pthread_mutex_destroy(&LOCK_instance_map);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-08-05 14:35:30 +04:00
|
|
|
void Instance_map::lock()
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
2005-07-20 10:55:40 -05:00
|
|
|
pthread_mutex_lock(&LOCK_instance_map);
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-08-05 14:35:30 +04:00
|
|
|
void Instance_map::unlock()
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
2005-07-20 10:55:40 -05:00
|
|
|
pthread_mutex_unlock(&LOCK_instance_map);
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
|
|
|
|
2006-02-21 15:57:56 +03:00
|
|
|
/*
|
|
|
|
Re-read instance configuration file.
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
Instance_map::flush_instances()
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
This function will:
|
|
|
|
- clear the current list of instances. This removes both
|
|
|
|
running and stopped instances.
|
|
|
|
- load a new instance configuration from the file.
|
|
|
|
- pass on the new map to the guardian thread: it will start
|
|
|
|
all instances that are marked `guarded' and not yet started.
|
|
|
|
Note, as the check whether an instance is started is currently
|
|
|
|
very simple (returns true if there is a MySQL server running
|
|
|
|
at the given port), this function has some peculiar
|
|
|
|
side-effects:
|
|
|
|
* if the port number of a running instance was changed, the
|
|
|
|
old instance is forgotten, even if it was running. The new
|
|
|
|
instance will be started at the new port.
|
|
|
|
* if the configuration was changed in a way that two
|
|
|
|
instances swapped their port numbers, the guardian thread
|
|
|
|
will not notice that and simply report that both instances
|
|
|
|
are configured successfully and running.
|
|
|
|
In order to avoid such side effects one should never call
|
|
|
|
FLUSH INSTANCES without prior stop of all running instances.
|
|
|
|
|
|
|
|
TODO
|
|
|
|
FLUSH INSTANCES should return an error if it's called
|
|
|
|
while there is a running instance.
|
|
|
|
*/
|
2004-10-23 11:32:52 +04:00
|
|
|
|
2004-10-26 23:22:12 +04:00
|
|
|
int Instance_map::flush_instances()
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
2004-10-26 23:22:12 +04:00
|
|
|
int rc;
|
2004-10-23 11:32:52 +04:00
|
|
|
|
2006-02-21 15:57:56 +03:00
|
|
|
/*
|
|
|
|
Guardian thread relies on the instance map repository for guarding
|
|
|
|
instances. This is why refreshing instance map, we need (1) to stop
|
|
|
|
guardian (2) reload the instance map (3) reinitialize the guardian
|
|
|
|
with new instances.
|
|
|
|
*/
|
2005-02-27 18:41:34 +03:00
|
|
|
guardian->lock();
|
2004-10-26 23:22:12 +04:00
|
|
|
pthread_mutex_lock(&LOCK_instance_map);
|
|
|
|
hash_free(&hash);
|
|
|
|
hash_init(&hash, default_charset_info, START_HASH_SIZE, 0, 0,
|
|
|
|
get_instance_key, delete_instance, 0);
|
2004-11-15 14:53:30 +03:00
|
|
|
rc= load();
|
2006-06-19 14:16:10 +04:00
|
|
|
guardian->init(); // TODO: check error status.
|
2006-02-21 15:57:56 +03:00
|
|
|
pthread_mutex_unlock(&LOCK_instance_map);
|
2005-02-27 18:41:34 +03:00
|
|
|
guardian->unlock();
|
2004-10-26 23:22:12 +04:00
|
|
|
return rc;
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Instance *
|
|
|
|
Instance_map::find(const char *name, uint name_len)
|
|
|
|
{
|
|
|
|
Instance *instance;
|
|
|
|
pthread_mutex_lock(&LOCK_instance_map);
|
|
|
|
instance= (Instance *) hash_search(&hash, (byte *) name, name_len);
|
|
|
|
pthread_mutex_unlock(&LOCK_instance_map);
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-15 04:38:33 +03:00
|
|
|
int Instance_map::complete_initialization()
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
Instance *instance;
|
|
|
|
uint i= 0;
|
|
|
|
|
2005-02-27 18:41:34 +03:00
|
|
|
|
2005-02-15 04:38:33 +03:00
|
|
|
if (hash.records == 0) /* no instances found */
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
2005-02-15 04:38:33 +03:00
|
|
|
if ((instance= new Instance) == 0)
|
|
|
|
goto err;
|
|
|
|
|
2006-02-21 15:57:56 +03:00
|
|
|
if (instance->init("mysqld") || my_hash_insert(&hash, (byte *) instance))
|
2005-02-15 04:38:33 +03:00
|
|
|
goto err_instance;
|
|
|
|
|
|
|
|
/*
|
|
|
|
After an instance have been added to the instance_map,
|
2005-02-18 14:58:30 +03:00
|
|
|
hash_free should handle it's deletion => goto err, not
|
|
|
|
err_instance.
|
2005-02-15 04:38:33 +03:00
|
|
|
*/
|
2005-07-21 14:21:23 +04:00
|
|
|
if (instance->complete_initialization(this, mysqld_path,
|
|
|
|
DEFAULT_SINGLE_INSTANCE))
|
2005-02-15 04:38:33 +03:00
|
|
|
goto err;
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
2005-02-15 04:38:33 +03:00
|
|
|
else
|
|
|
|
while (i < hash.records)
|
|
|
|
{
|
|
|
|
instance= (Instance *) hash_element(&hash, i);
|
2005-06-07 15:47:02 +04:00
|
|
|
if (instance->complete_initialization(this, mysqld_path, USUAL_INSTANCE))
|
2005-02-15 04:38:33 +03:00
|
|
|
goto err;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err_instance:
|
|
|
|
delete instance;
|
2005-08-29 23:29:35 +04:00
|
|
|
err:
|
2005-02-15 04:38:33 +03:00
|
|
|
return 1;
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* load options from config files and create appropriate instance structures */
|
|
|
|
|
|
|
|
int Instance_map::load()
|
|
|
|
{
|
2005-02-18 14:58:30 +03:00
|
|
|
int argc= 1;
|
|
|
|
/* this is a dummy variable for search_option_files() */
|
|
|
|
uint args_used= 0;
|
|
|
|
const char *argv_options[3];
|
|
|
|
char **argv= (char **) &argv_options;
|
2006-02-10 02:15:55 +03:00
|
|
|
char defaults_file_arg[FN_REFLEN];
|
2005-02-27 18:41:34 +03:00
|
|
|
|
2005-02-18 14:58:30 +03:00
|
|
|
/* the name of the program may be orbitrary here in fact */
|
|
|
|
argv_options[0]= "mysqlmanager";
|
2006-02-10 02:15:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
If the option file was forced by the user when starting
|
|
|
|
the IM with --defaults-file=xxxx, make sure it is also
|
|
|
|
passed as --defaults-file, not only as Options::config_file.
|
|
|
|
This is important for option files given with relative path:
|
|
|
|
e.g. --defaults-file=my.cnf.
|
|
|
|
Otherwise my_search_option_files will treat "my.cnf" as a group
|
|
|
|
name and start looking for files named "my.cnf.cnf" in all
|
|
|
|
default dirs. Which is not what we want.
|
|
|
|
*/
|
|
|
|
if (Options::is_forced_default_file)
|
|
|
|
{
|
|
|
|
snprintf(defaults_file_arg, FN_REFLEN, "--defaults-file=%s",
|
|
|
|
Options::config_file);
|
|
|
|
|
|
|
|
argv_options[1]= defaults_file_arg;
|
|
|
|
argv_options[2]= '\0';
|
|
|
|
|
|
|
|
argc= 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
argv_options[1]= '\0';
|
2005-02-18 14:58:30 +03:00
|
|
|
|
2005-07-21 14:21:23 +04:00
|
|
|
/*
|
|
|
|
If the routine failed, we'll simply fallback to defaults in
|
|
|
|
complete_initialization().
|
|
|
|
*/
|
2005-07-21 22:40:53 +04:00
|
|
|
if (my_search_option_files(Options::config_file, &argc,
|
2005-07-21 14:21:23 +04:00
|
|
|
(char ***) &argv, &args_used,
|
|
|
|
process_option, (void*) this))
|
|
|
|
log_info("Falling back to compiled-in defaults");
|
|
|
|
|
|
|
|
if (complete_initialization())
|
2005-02-15 04:38:33 +03:00
|
|
|
return 1;
|
2004-10-23 11:32:52 +04:00
|
|
|
|
2005-02-15 04:38:33 +03:00
|
|
|
return 0;
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
2004-10-26 23:22:12 +04:00
|
|
|
|
|
|
|
|
2004-10-27 10:21:48 +04:00
|
|
|
/*--- Implementaton of the Instance map iterator class ---*/
|
2004-10-26 23:22:12 +04:00
|
|
|
|
|
|
|
|
2004-10-27 10:21:48 +04:00
|
|
|
void Instance_map::Iterator::go_to_first()
|
2004-10-26 23:22:12 +04:00
|
|
|
{
|
|
|
|
current_instance=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-27 10:21:48 +04:00
|
|
|
Instance *Instance_map::Iterator::next()
|
2004-10-26 23:22:12 +04:00
|
|
|
{
|
2004-10-27 10:21:48 +04:00
|
|
|
if (current_instance < instance_map->hash.records)
|
|
|
|
return (Instance *) hash_element(&instance_map->hash, current_instance++);
|
2004-12-12 20:59:15 +03:00
|
|
|
|
|
|
|
return NULL;
|
2004-10-26 23:22:12 +04:00
|
|
|
}
|
|
|
|
|