#if MYSQL_6_9 // Copyright © 2014, Oracle and/or its affiliates. All rights reserved. // // MySQL Connector/NET is licensed under the terms of the GPLv2 // , like most // MySQL Connectors. There are special exceptions to the terms and // conditions of the GPLv2 as it is applied to this software, see the // FLOSS License Exception // . // // 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; version 2 of the License. // // 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., // 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA using Externals.MySql.Data.MySqlClient.Properties; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; using Externals.MySql.Data.MySqlClient; namespace Externals.MySql.Data.MySqlClient.Replication { /// /// Manager for Replication and Load Balancing features /// internal static class ReplicationManager { private static List groups = new List(); private static Object thisLock = new Object(); //private static Dictionary selectors = new Dictionary(); static ReplicationManager() { Groups = groups; // load up our selectors if (MySqlConfiguration.Settings == null) return; foreach (var group in MySqlConfiguration.Settings.Replication.ServerGroups) { ReplicationServerGroup g = AddGroup(group.Name, group.GroupType, group.RetryTime); foreach (var server in group.Servers) g.AddServer(server.Name, server.IsMaster, server.ConnectionString); } } /// /// Returns Replication Server Group List /// internal static IList Groups { get; private set; } /// /// Adds a Default Server Group to the list /// /// Group name /// Time between reconnections for failed servers /// Replication Server Group added internal static ReplicationServerGroup AddGroup(string name, int retryTime) { return AddGroup( name, null, retryTime); } /// /// Adds a Server Group to the list /// /// Group name /// ServerGroup type reference /// Time between reconnections for failed servers /// Server Group added internal static ReplicationServerGroup AddGroup(string name, string groupType, int retryTime) { if (string.IsNullOrEmpty(groupType)) groupType = "Externals.MySql.Data.MySqlClient.Replication.ReplicationRoundRobinServerGroup"; Type t = Type.GetType(groupType); ReplicationServerGroup g = (ReplicationServerGroup)Activator.CreateInstance(t, name, retryTime) as ReplicationServerGroup; groups.Add(g); return g; } /// /// Gets the next server from a replication group /// /// Group name /// True if the server to return must be a master /// Replication Server defined by the Load Balancing plugin internal static ReplicationServer GetServer(string groupName, bool isMaster) { ReplicationServerGroup group = GetGroup(groupName); return group.GetServer(isMaster); } /// /// Gets a Server Group by name /// /// Group name /// Server Group if found, otherwise throws an MySqlException internal static ReplicationServerGroup GetGroup(string groupName) { ReplicationServerGroup group = null; foreach (ReplicationServerGroup g in groups) { if (String.Compare(g.Name, groupName, StringComparison.OrdinalIgnoreCase) != 0) continue; group = g; break; } if (group == null) throw new MySqlException(String.Format(Resources.ReplicationGroupNotFound, groupName)); return group; } /// /// Validates if the replication group name exists /// /// Group name to validate /// True if replication group name is found, otherwise false internal static bool IsReplicationGroup(string groupName) { foreach (ReplicationServerGroup g in groups) if (String.Compare(g.Name, groupName, StringComparison.OrdinalIgnoreCase) == 0) return true; return false; } /// /// Assigns a new server driver to the connection object /// /// Group name /// True if the server connection to assign must be a master /// MySqlConnection object where the new driver will be assigned internal static void GetNewConnection(string groupName, bool master, MySqlConnection connection) { do { lock (thisLock) { if (!IsReplicationGroup(groupName)) return; ReplicationServerGroup group = GetGroup(groupName); ReplicationServer server = group.GetServer(master, connection.Settings); if (server == null) throw new MySqlException(Properties.Resources.Replication_NoAvailableServer); try { bool isNewServer = false; if (connection.driver == null || !connection.driver.IsOpen) { isNewServer = true; } else { MySqlConnectionStringBuilder msb = new MySqlConnectionStringBuilder(server.ConnectionString); if (!msb.Equals(connection.driver.Settings)) { isNewServer = true; } } if (isNewServer) { Driver driver = Driver.Create(new MySqlConnectionStringBuilder(server.ConnectionString)); connection.driver = driver; } return; } catch (MySqlException ex) { connection.driver = null; server.IsAvailable = false; MySqlTrace.LogError(ex.Number, ex.ToString()); if (ex.Number == 1042) { // retry to open a failed connection and update its status group.HandleFailover(server, ex); } else throw; } } } while (true); } } } #endif