using System; using System.Collections.Generic; using System.Linq; using System.Text; using Foresight.Cache; using Foresight.Cache.AspNet; using Foresight.Cache.Redis; namespace IronIntel.Contractor { public static class CacheManager { public static void Dispose() { if (_Client != null) { _Client.Dispose(); _Client = null; } } private static CacheClient _Client = null; private static object _sycobj = new object(); private static FIRedisCacheClient CreateRedisClient() { string[] servers = FleetServiceClientHelper.CreateClient().GetRedisServers(); if ((servers == null) || (servers.Length == 0)) { return null; } List ls = new List(); foreach (string srv in servers) { try { RedisNode node = CreateRedisNode(srv); ls.Add(node); } catch (Exception ex) { SystemParams.WriteLog("Error", typeof(CacheManager).FullName + ".CreateRedisClient", "Create RedisNode failed: " + srv, ex.ToString()); } } if (ls.Count == 0) { return null; } else { return new FIRedisCacheClient("IRONINTEL_" + SystemParams.CompanyID.ToUpper(), ls); } } private static RedisNode CreateRedisNode(string server) { string[] address = server.Split(new char[] { ':' }); int port = -1; if (!int.TryParse(address[1], out port)) { port = -1; } int weight = 100; if (!int.TryParse(address[2], out weight)) { weight = 100; } RedisNode node = new RedisNode(address[0], port, weight); return node; } private static void InitCacheClient() { FIRedisCacheClient fc = null; try { fc = CreateRedisClient(); } catch (Exception ex) { SystemParams.WriteLog("Error", typeof(CacheManager).FullName + ".InitCacheClient", "Create Redis client failed", ex.ToString()); } if (fc != null) { _Client = fc; return; } else { _Client = new AspNetCacheManager("IRONINTEL_" + SystemParams.CompanyID.ToUpper()); } } private static CacheClient Client { get { if (_Client == null) { lock (_sycobj) { if (_Client == null) { InitCacheClient(); } } } return _Client; } } public static void Remove(string key) { if (Client != null) { try { Client.Remove(key); } catch { } } } public static void SetValue(string key, byte[] buffer, TimeSpan expire) { if (buffer == null) { Remove(key); } else if (Client != null) { try { Client.SetValue(key, buffer, expire); } catch { } } } public static byte[] GetValue(string key) { if (Client != null) { try { return Client.GetValue(key); } catch { return null; } } else { return null; } } } }