ZhiYeJianKang_PeiXun/cyqdata-master/DistributedCache/CacheImplement/MemRedis/ClientBase.cs

164 lines
6.1 KiB
C#
Raw Normal View History

2025-02-20 15:41:53 +08:00
using System;
using System.Collections.Generic;
using System.Text;
using CYQ.Data.Json;
using CYQ.Data.Table;
using CYQ.Data.Tool;
namespace CYQ.Data.Cache
{
internal abstract partial class ClientBase
{
protected HostServer hostServer;
/// <summary>
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
/// </summary>
public HostServer HostServer { get { return hostServer; } set { hostServer = value; } }
/// <summary>
/// ָ<><D6B8><EFBFBD><EFBFBD><EFBFBD>ݳ<EFBFBD><DDB3>ȳ<EFBFBD><C8B3><EFBFBD>ֵʱ<D6B5><CAB1><EFBFBD><EFBFBD>ѹ<EFBFBD><D1B9><EFBFBD><EFBFBD>Ĭ<EFBFBD><C4AC>128K
/// </summary>
protected uint compressionThreshold = 1024 * 128; //128kb
/// <summary>
/// Private key hashing method that uses the modified FNV hash.
/// </summary>
/// <param name="key">The key to hash.</param>
/// <returns>The hashed key.</returns>
protected uint hash(string key)
{
checkKey(key);
return HashCreator.CreateCode(key);
}
/// <summary>
/// Private key-checking method.
/// Throws an exception if the key does not conform to memcached protocol requirements:
/// It may not contain whitespace, it may not be null or empty, and it may not be longer than 250 characters.
/// </summary>
/// <param name="key">The key to check.</param>
protected void checkKey(string key)
{
if (string.IsNullOrEmpty(key))
{
throw new ArgumentNullException("Key may not be empty.");
}
if (key.Length > 250)
{
throw new ArgumentException("Key may not be longer than 250 characters.");
}
foreach (char c in key)
{
if (c <= 32)
{
throw new ArgumentException("Key may not contain whitespace or control characters.");
}
}
}
//Private Unix-time converter
private static DateTime epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
protected static int getUnixTime(DateTime datetime)
{
return (int)(datetime.ToUniversalTime() - epoch).TotalSeconds;
}
#region Status
public string WorkInfo
{
get
{
var status = GetAllHostNodeStatus();//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>OK<4F><4B>Dead<61><64><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
JsonHelper js = new JsonHelper(false, false);
js.Add("OK", OkServer.ToString());
js.Add("Dead", ErrorServer.ToString());
js.Add("Servers", JsonHelper.ToJson(status));
return js.ToString();
}
}
//private MDataTable WorkTable
//{
// get
// {
// MDataTable cacheTable = new MDataTable();
// #region Create Table
// Dictionary<string, Dictionary<string, string>> status = GetAllHostNodeStatus();
// if (status != null)
// {
// foreach (KeyValuePair<string, Dictionary<string, string>> item in status)
// {
// if (item.Value.Count > 0)
// {
// MDataTable dt = MDataTable.CreateFrom(item.Value);
// if (cacheTable.Columns.Count == 0)//<2F><>һ<EFBFBD><D2BB>
// {
// cacheTable = dt;
// }
// else
// {
// cacheTable.JoinOnName = "Key";
// cacheTable = cacheTable.Join(dt, "Value");
// }
// cacheTable.Columns["Value"].ColumnName = item.Key;
// }
// }
// }
// cacheTable.TableName = "WorkTable";
// #endregion
// return cacheTable;
// }
//}
private int OkServer = 0, ErrorServer = 0;
/// <summary>
/// <20><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD><DAB5>Ļ<EFBFBD><C4BB><EFBFBD><EFBFBD><EFBFBD>Ϣ
/// </summary>
private Dictionary<string, Dictionary<string, string>> GetAllHostNodeStatus()
{
OkServer = 0;
ErrorServer = 0;
Dictionary<string, Dictionary<string, string>> results = new Dictionary<string, Dictionary<string, string>>();
foreach (KeyValuePair<string, HostNode> item in hostServer.HostList)
{
Dictionary<string, string> result = GetInfoByHost(item.Value, false);
results.Add(item.Key, result);
}
return results;
}
private Dictionary<string, string> GetInfoByHost(HostNode host, bool isBackup)
{
Dictionary<string, string> result = new Dictionary<string, string>();
if (!host.IsEndPointDead)
{
if (!isBackup) OkServer++;
result.Add("Status", "OK");
result.Add("Acquired sockets", host.Acquired.ToString());
result.Add("Acquired timeout from socket pool", host.TimeoutFromSocketPool.ToString());
result.Add("New sockets created", host.NewSockets.ToString());
result.Add("New sockets failed", host.FailedNewSockets.ToString());
result.Add("Sockets in pool", host.Poolsize.ToString());
result.Add("Sockets reused", host.ReusedSockets.ToString());
result.Add("Sockets died in pool", host.DeadSocketsInPool.ToString());
result.Add("Sockets died on return", host.DeadSocketsOnReturn.ToString());
result.Add("Sockets close", host.CloseSockets.ToString());
}
else
{
if (!isBackup) ErrorServer++;
result.Add("Status", "Dead , next retry at : " + host.DeadEndPointRetryTime);
result.Add("Error", host.Error);
//if (host.HostNodeBak != null)
//{
// result.Add("Backup - " + host.HostNodeBak.Host, JsonHelper.ToJson(GetInfoByHost(host.HostNodeBak, true)));
//}
}
return result;
}
#endregion
}
}