/** * <summary> * Copy constructor.</summary> * * <param name="cfg">Configuration to be copied.</param> */ public GridClientConfiguration(IGridClientConfiguration cfg) { // Preserve alphabetical order for maintenance; Balancer = cfg.Balancer; ConnectionIdleTimeout = cfg.ConnectionIdleTimeout; ConnectTimeout = cfg.ConnectTimeout; Credentials = cfg.Credentials; DataConfigurations = new List<IGridClientDataConfiguration>(cfg.DataConfigurations); IsTopologyCacheEnabled = cfg.IsTopologyCacheEnabled; Protocol = cfg.Protocol; Servers = new HashSet<String>(cfg.Servers); SslContext = cfg.SslContext; TopologyRefreshFrequency = cfg.TopologyRefreshFrequency; }
/** * <summary> * Copy constructor.</summary> * * <param name="cfg">Configuration to be copied.</param> */ public GridClientConfiguration(IGridClientConfiguration cfg) { // Preserve alphabetical order for maintenance; Balancer = cfg.Balancer; ConnectionIdleTimeout = cfg.ConnectionIdleTimeout; ConnectTimeout = cfg.ConnectTimeout; Credentials = cfg.Credentials; DataConfigurations = new List <IGridClientDataConfiguration>(cfg.DataConfigurations); IsTopologyCacheEnabled = cfg.IsTopologyCacheEnabled; Protocol = cfg.Protocol; Servers = new HashSet <String>(cfg.Servers); Routers = new HashSet <String>(cfg.Routers); SslContext = cfg.SslContext; TopologyRefreshFrequency = cfg.TopologyRefreshFrequency; }
/** * <summary> * Starts a client with given configuration. Starting client will be assigned a randomly generated * Guid which can be obtained by <see ctype="GridClient#id()"/> method.</summary> * * <param name="cfg">Client configuration.</param> * <returns>Started client.</returns> * <exception cref="GridClientException">If client could not be created.</exception> */ public static IGridClient Start(IGridClientConfiguration cfg) { Guid clientId = Guid.NewGuid(); GridClientImpl client = new GridClientImpl(clientId, cfg); try { lock (openClients) { openClients.Add(clientId, client); } } // If such clientId already exists in the collection. catch (ArgumentException e) { StopSilent(client, false); throw new InvalidOperationException("System generates duplicated guid for client: " + clientId, e); } return client; }
/** * <summary> * Starts a client with given configuration. Starting client will be assigned a randomly generated * Guid which can be obtained by <see cref="IGridClient.Id"/> method.</summary> * * <param name="cfg">Client configuration.</param> * <returns>Started client.</returns> * <exception cref="GridClientException">If client could not be created.</exception> */ public static IGridClient Start(IGridClientConfiguration cfg) { Guid clientId = Guid.NewGuid(); GridClientImpl client = new GridClientImpl(clientId, cfg); try { lock (openClients) { openClients.Add(clientId, client); } } // If such clientId already exists in the collection. catch (ArgumentException e) { StopSilent(client, false); throw new InvalidOperationException("System generates duplicated guid for client: " + clientId, e); } return(client); }
/** * <summary> * Creates a new client based on a given configuration.</summary> * * <param name="id">Client identifier.</param> * <param name="cfg0">Client configuration.</param> * <exception cref="GridClientException">If client configuration is incorrect.</exception> * <exception cref="GridClientServerUnreachableException">If none of the servers specified in configuration can be reached.</exception> */ public GridClientImpl(Guid id, IGridClientConfiguration cfg0) { Id = id; cfg = new GridClientConfiguration(cfg0); ICollection<IPEndPoint> srvs = new List<IPEndPoint>(cfg.Servers.Count); foreach (String srvStr in cfg.Servers) { String[] split = srvStr.Split(":".ToCharArray()); if (split.Length != 2) throw new GridClientException("Failed to create client (invalid endpoint format, expected 'IPv4:Port'): " + srvStr); IPAddress addr; if (!IPAddress.TryParse(split[0], out addr)) throw new GridClientException("Failed to create client (invalid address format): " + srvStr); int port; if (!int.TryParse(split[1], out port)) throw new GridClientException("Failed to create client (invalid port format): " + srvStr); srvs.Add(new IPEndPoint(addr, port)); } top = new GridClientTopology(id, cfg.IsTopologyCacheEnabled); Action<Object> addTopLsnr = o => { var lsnr = o as IGridClientTopologyListener; if (lsnr != null) top.AddTopologyListener(lsnr); }; // Add to topology as listeners. foreach (IGridClientDataConfiguration dataCfg in cfg.DataConfigurations) addTopLsnr(dataCfg.Affinity); addTopLsnr(cfg.Balancer); addTopLsnr(topUpdateBalancer); connMgr = new GridClientConnectionManager(Id, top, cfg.Credentials, cfg.Protocol, cfg.SslContext, cfg.ConnectTimeout); int retries = 3; while (true) { IGridClientConnection conn = null; try { // Create connection to a server from the list of endpoints. conn = connMgr.connection(srvs); // Request topology at start to determine which node we connected to. // Also this request validates TCP connection is alive. conn.Topology(false, false).WaitDone(); break; } catch (GridClientAuthenticationException) { if (conn != null) conn.Close(false); top.Dispose(); throw; } catch (GridClientException e) { if (conn != null) conn.Close(false); if (retries-- <= 0) { top.Dispose(); throw new GridClientException("Failed to update grid topology.", e); } } } IDictionary<String, GridClientCacheMode> overallCaches = new GridClientNullDictionary<String, GridClientCacheMode>(); // Topology is now updated, so we can identify current connection. foreach (GridClientNodeImpl node in top.Nodes()) foreach (KeyValuePair<String, GridClientCacheMode> pair in node.Caches) overallCaches[pair.Key] = pair.Value; foreach (KeyValuePair<String, GridClientCacheMode> entry in overallCaches) if (Affinity(entry.Key) is GridClientPartitionedAffinity && entry.Value != GridClientCacheMode.Partitioned) Dbg.WriteLine(typeof(GridClientPartitionedAffinity) + " is used for a cache configured " + "for non-partitioned mode [cacheName=" + entry.Key + ", cacheMode=" + entry.Value + ']'); idleCheckThread = new Thread(checkIdle); idleCheckThread.Name = "grid-check-idle-worker--client#" + id; //Dbg.WriteLine("Start thread: " + idleCheckThread.Name); idleCheckThread.Start(); topUpdateThread = new Thread(updateTopology); topUpdateThread.Name = "grid-topology-update-worker--client#" + id; //Dbg.WriteLine("Start thread: " + topUpdateThread.Name); topUpdateThread.Start(); _compute = new GridClientComputeImpl(this, null, null, cfg.Balancer); }
/** * <summary> * Creates a new client based on a given configuration.</summary> * * <param name="id">Client identifier.</param> * <param name="cfg0">Client configuration.</param> * <exception cref="GridClientException">If client configuration is incorrect.</exception> * <exception cref="GridClientServerUnreachableException">If none of the servers specified in configuration can be reached.</exception> */ public GridClientImpl(Guid id, IGridClientConfiguration cfg0) { Id = id; cfg = new GridClientConfiguration(cfg0); ICollection <IPEndPoint> srvs = ParseServers(cfg.Servers); ICollection <IPEndPoint> routers = ParseServers(cfg.Routers); top = new GridClientTopology(id, cfg.IsTopologyCacheEnabled); Action <Object> addTopLsnr = o => { var lsnr = o as IGridClientTopologyListener; if (lsnr != null) { top.AddTopologyListener(lsnr); } }; // Add to topology as listeners. foreach (IGridClientDataConfiguration dataCfg in cfg.DataConfigurations) { addTopLsnr(dataCfg.Affinity); } addTopLsnr(cfg.Balancer); addTopLsnr(topUpdateBalancer); if (srvs.Count == 0) { // Use routers for initial connection. srvs = routers; } else { // Disable routers for connection manager. routers = new HashSet <IPEndPoint>(); } connMgr = new GridClientConnectionManager(Id, top, routers, cfg.Credentials, cfg.Protocol, cfg.SslContext, cfg.ConnectTimeout); int retries = 3; while (true) { IGridClientConnection conn = null; try { // Create connection to a server from the list of endpoints. conn = connMgr.connection(srvs); // Request topology at start to determine which node we connected to. // Also this request validates TCP connection is alive. conn.Topology(false, false, Guid.Empty).WaitDone(); break; } catch (GridClientAuthenticationException) { if (conn != null) { conn.Close(false); } top.Dispose(); throw; } catch (GridClientException e) { if (conn != null) { conn.Close(false); } if (retries-- <= 0) { top.Dispose(); throw new GridClientException("Failed to update grid topology.", e); } } } IDictionary <String, GridClientCacheMode> overallCaches = new GridClientNullDictionary <String, GridClientCacheMode>(); // Topology is now updated, so we can identify current connection. foreach (GridClientNodeImpl node in top.Nodes()) { foreach (KeyValuePair <String, GridClientCacheMode> pair in node.Caches) { overallCaches[pair.Key] = pair.Value; } } foreach (KeyValuePair <String, GridClientCacheMode> entry in overallCaches) { if (Affinity(entry.Key) is GridClientPartitionAffinity && entry.Value != GridClientCacheMode.Partitioned) { Dbg.WriteLine(typeof(GridClientPartitionAffinity) + " is used for a cache configured " + "for non-partitioned mode [cacheName=" + entry.Key + ", cacheMode=" + entry.Value + ']'); } } idleCheckThread = new Thread(checkIdle); idleCheckThread.Name = "grid-check-idle-worker--client#" + id; idleCheckThread.Start(); topUpdateThread = new Thread(updateTopology); topUpdateThread.Name = "grid-topology-update-worker--client#" + id; topUpdateThread.Start(); _compute = new GridClientComputeImpl(this, null, null, cfg.Balancer); Dbg.WriteLine("Client started. Id: " + Id); }
/** * <summary> * Creates a new client based on a given configuration.</summary> * * <param name="id">Client identifier.</param> * <param name="cfg0">Client configuration.</param> * <exception cref="GridClientException">If client configuration is incorrect.</exception> * <exception cref="GridClientServerUnreachableException">If none of the servers specified in configuration can be reached.</exception> */ public GridClientImpl(Guid id, IGridClientConfiguration cfg0) { Id = id; cfg = new GridClientConfiguration(cfg0); ICollection<IPEndPoint> srvs = ParseServers(cfg.Servers); ICollection<IPEndPoint> routers = ParseServers(cfg.Routers); top = new GridClientTopology(id, cfg.IsTopologyCacheEnabled); Action<Object> addTopLsnr = o => { var lsnr = o as IGridClientTopologyListener; if (lsnr != null) top.AddTopologyListener(lsnr); }; // Add to topology as listeners. foreach (IGridClientDataConfiguration dataCfg in cfg.DataConfigurations) addTopLsnr(dataCfg.Affinity); addTopLsnr(cfg.Balancer); addTopLsnr(topUpdateBalancer); if (srvs.Count == 0) // Use routers for initial connection. srvs = routers; else // Disable routers for connection manager. routers = new HashSet<IPEndPoint>(); connMgr = new GridClientConnectionManager(Id, top, routers, cfg.Credentials, cfg.Protocol, cfg.SslContext, cfg.ConnectTimeout); int retries = 3; while (true) { IGridClientConnection conn = null; try { // Create connection to a server from the list of endpoints. conn = connMgr.connection(srvs); // Request topology at start to determine which node we connected to. // Also this request validates TCP connection is alive. conn.Topology(false, false, Guid.Empty).WaitDone(); break; } catch (GridClientAuthenticationException) { if (conn != null) conn.Close(false); top.Dispose(); throw; } catch (GridClientException e) { if (conn != null) conn.Close(false); if (retries-- <= 0) { top.Dispose(); throw new GridClientException("Failed to update grid topology.", e); } } } IDictionary<String, GridClientCacheMode> overallCaches = new GridClientNullDictionary<String, GridClientCacheMode>(); // Topology is now updated, so we can identify current connection. foreach (GridClientNodeImpl node in top.Nodes()) foreach (KeyValuePair<String, GridClientCacheMode> pair in node.Caches) overallCaches[pair.Key] = pair.Value; foreach (KeyValuePair<String, GridClientCacheMode> entry in overallCaches) if (Affinity(entry.Key) is GridClientPartitionAffinity && entry.Value != GridClientCacheMode.Partitioned) Dbg.WriteLine(typeof(GridClientPartitionAffinity) + " is used for a cache configured " + "for non-partitioned mode [cacheName=" + entry.Key + ", cacheMode=" + entry.Value + ']'); idleCheckThread = new Thread(checkIdle); idleCheckThread.Name = "grid-check-idle-worker--client#" + id; idleCheckThread.Start(); topUpdateThread = new Thread(updateTopology); topUpdateThread.Name = "grid-topology-update-worker--client#" + id; topUpdateThread.Start(); _compute = new GridClientComputeImpl(this, null, null, cfg.Balancer); Dbg.WriteLine("Client started. Id: " + Id); }