#region Apache License Version 2.0 /*---------------------------------------------------------------- Copyright 2019 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md ----------------------------------------------------------------*/ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- Copyright (C) 2019 Senparc 文件名:WeixinContainer.cs 文件功能描述:微信容器(如Ticket、AccessToken) 创建标识:Senparc - 20151003 修改标识:Senparc - 20160321 修改描述:v4.5.18 完善 ItemCollection 中项目删除的方法 修改标识:Senparc - 20160808 修改描述:v4.7.0 删除 ItemCollection 属性,直接使用ContainerBag加入到缓存 修改标识:Senparc - 20160813 修改描述:v4.7.5 添加TryReRegister()方法,处理分布式缓存重启(丢失)的情况 修改标识:Senparc - 20170204 修改描述:v4.10.3 添加RemoveFromCache方法 修改标识:Senparc - 20180606 修改描述:缓存工厂重命名为 ContainerCacheStrategyFactory 修改标识:Senparc - 20180614 修改描述:CO2NET v0.1.0 ContainerBag 取消属性变动通知机制,使用手动更新缓存 修改标识:Senparc - 20180707 修改描述:Update() 方法中记录缓存时间 bag.CacheTime = DateTime.Now; 修改标识:Senparc - 20180917 修改描述:BaseContainer.GetFirstOrDefaultAppId() 方法添加 PlatformType 属性 修改标识:Senparc - 20170522 修改描述:v6.3.2 修改 DateTime 为 DateTimeOffset ----------------------------------------------------------------*/ using System; using System.Collections.Generic; using System.Linq; using Senparc.CO2NET.Cache; using Senparc.Weixin.Cache; using Senparc.Weixin.Exceptions; using Senparc.Weixin.Helpers; namespace Senparc.Weixin.Containers { /// /// IBaseContainer /// public interface IBaseContainer { } /// /// 带IBaseContainerBag泛型的IBaseContainer /// /// public interface IBaseContainer : IBaseContainer where TBag : IBaseContainerBag, new() { } /// /// 微信容器接口(如Ticket、AccessToken) /// /// [Serializable] public abstract class BaseContainer : IBaseContainer where TBag : class, IBaseContainerBag, new() { private static IBaseObjectCacheStrategy _baseCache = null; private static IContainerCacheStrategy _containerCache = null; /// /// 获取符合当前缓存策略配置的缓存的操作对象实例 /// protected static IBaseObjectCacheStrategy /*IBaseCacheStrategy>*/ Cache { get { //使用工厂模式或者配置进行动态加载 //return CacheStrategyFactory.GetContainerCacheStrategyInstance(); //以下代码可以实现缓存“热切换”,损失的效率有限。如果需要追求极致效率,可以禁用type的判断 var containerCacheStrategy = ContainerCacheStrategyFactory.GetContainerCacheStrategyInstance()/*.ContainerCacheStrategy*/; if (_containerCache == null || _containerCache.GetType() != containerCacheStrategy.GetType()) { _containerCache = containerCacheStrategy; } if (_baseCache == null) { _baseCache = _baseCache ?? containerCacheStrategy.BaseCacheStrategy(); } return _baseCache; } } //2016.8.8注释掉 /// /// 获取当前容器的数据项集合 /// /// //protected static IContainerItemCollection ItemCollection //{ // get // { // var cacheKey = GetContainerCacheKey(); // IContainerItemCollection itemCollection; // if (!Cache.CheckExisted(cacheKey)) // { // itemCollection = new ContainerItemCollection(); // //CollectionList[cacheKey] = newItemCollection; // //直接执行 // //{ // //} // //var containerCacheStrategy = CacheStrategyFactory.GetContainerCacheStrategyInstance(); // //containerCacheStrategy.InsertToCache(cacheKey, itemCollection);//插入到缓存 // //保存到缓存队列,等待执行 // SenparcMessageQueue mq = new SenparcMessageQueue(); // var mqKey = SenparcMessageQueue.GenerateKey("ContainerItemCollection", typeof(BaseContainer), cacheKey, "InsertItemCollection"); // mq.Add(mqKey, () => // { // var containerCacheStrategy = CacheStrategyFactory.GetContainerCacheStrategyInstance(); // containerCacheStrategy.InsertToCache(cacheKey, itemCollection);//插入到缓存 // }); // } // else // { // itemCollection = Cache.Get(cacheKey); // } // return itemCollection; // } //} ///// ///// 获取Container缓存Key ///// ///// //public static string GetContainerCacheKey() //{ // return ContainerHelper.GetCacheKey(typeof(TBag)); //} /// /// 进行注册过程的委托 /// protected static Func RegisterFunc { get; set; } /// /// 如果注册不成功,测尝试重新注册(前提是已经进行过注册),这种情况适用于分布式缓存被清空(重启)的情况。 /// private static TBag TryReRegister() { return RegisterFunc(); //TODO:如果需要校验ContainerBag的正确性,可以从返回值进行判断 } /// /// 返回已经注册的第一个AppId /// /// public static string GetFirstOrDefaultAppId(PlatformType platformType) { string appId = null; switch (platformType) { case PlatformType.MP: appId = Senparc.Weixin.Config.SenparcWeixinSetting.WeixinAppId; break; case PlatformType.Open: appId = Senparc.Weixin.Config.SenparcWeixinSetting.WeixinAppId; break; case PlatformType.WxOpen: appId = Senparc.Weixin.Config.SenparcWeixinSetting.WxOpenAppId; break; case PlatformType.QY: break; case PlatformType.Work: break; default: break; } if (appId == null) { var firstBag = GetAllItems().FirstOrDefault() as IBaseContainerBag_AppId; appId = firstBag == null ? null : firstBag.AppId; } return appId; } /// /// 获取ItemCollection缓存Key /// /// 最简短的Key,比如AppId,不需要考虑容器前缀 /// public static string GetBagCacheKey(string shortKey) { return ContainerHelper.GetItemCacheKey(typeof(TBag), shortKey); } ///// ///// 获取完整的数据集合的列表,包括所有的Container数据在内(建议不要进行任何修改操作) ///// ///// //public static IDictionary GetCollectionList() //{ // return CollectionList; //} /// /// 获取所有容器内已经注册的项目 /// (此方法将会遍历Dictionary,当数据项很多的时候效率会明显降低) /// /// public static List GetAllItems() { //return Cache.GetAll().Values return _containerCache.GetAll().Values //如果需要做进一步的筛选,则使用Select或Where,但需要注意效率问题 //.Select(z => z) .ToList(); } /// /// 尝试获取某一项Bag /// /// /// public static TBag TryGetItem(string shortKey) { var cacheKey = GetBagCacheKey(shortKey); if (Cache.CheckExisted(cacheKey)) { return Cache.Get(cacheKey); } return default(TBag); } /// /// 尝试获取某一项Bag中的具体某个属性 /// /// /// 具体某个属性 /// public static TK TryGetItem(string shortKey, Func property) { var cacheKey = GetBagCacheKey(shortKey); if (Cache.CheckExisted(cacheKey)) { var item = Cache.Get(cacheKey); return property(item); } return default(TK); } /// /// 更新数据项 /// /// 即bag.Key /// 为null时删除该项 /// public static void Update(string shortKey, TBag bag, TimeSpan? expiry) { var cacheKey = GetBagCacheKey(shortKey); if (bag == null) { Cache.RemoveFromCache(cacheKey); } else { if (string.IsNullOrEmpty(bag.Key)) { bag.Key = shortKey;//确保Key有值,形如:wx669ef95216eef885,最底层的Key } //else //{ // cacheKey = bag.Key;//统一key //} //if (string.IsNullOrEmpty(cacheKey)) //{ // throw new WeixinException("key和value,Key不可以同时为null或空字符串!"); //} //var c1 = ItemCollection.GetCount(); //ItemCollection[key] = bag; //var c2 = ItemCollection.GetCount(); } //var containerCacheKey = GetContainerCacheKey(); bag.CacheTime = SystemTime.Now; Cache.Update(cacheKey, bag, expiry);//更新到缓存,TODO:有的缓存框架可一直更新Hash中的某个键值对 } /// /// 更新已经添加过的数据项 /// /// 为null时删除该项 /// public static void Update(TBag bag, TimeSpan? expiry) { if (string.IsNullOrEmpty(bag.Key)) { throw new WeixinException("ContainerBag 更新时,ey 不能为空!类型:" + bag.GetType()); } Update(bag.Key, bag, expiry); } /// /// 更新数据项(本地缓存不会改变原有值的 HashCode) /// /// /// 为null时删除该项 /// public static void Update(string shortKey, Action partialUpdate, TimeSpan? expiry) { var cacheKey = GetBagCacheKey(shortKey); if (partialUpdate == null) { Cache.RemoveFromCache(cacheKey);//移除对象 } else { if (!Cache.CheckExisted(cacheKey)) { var newBag = new TBag() { Key = cacheKey//确保这一项Key已经被记录 }; Cache.Set(cacheKey, newBag, expiry); } partialUpdate(TryGetItem(shortKey));//更新对象 } } /// /// 检查Key是否已经注册 /// /// /// public static bool CheckRegistered(string shortKey) { var cacheKey = GetBagCacheKey(shortKey); var registered = Cache.CheckExisted(cacheKey); if (!registered && RegisterFunc != null) { //如果注册不成功,测尝试重新注册(前提是已经进行过注册),这种情况适用于分布式缓存被清空(重启)的情况。 TryReRegister(); } return Cache.CheckExisted(cacheKey); } /// /// 从缓存中删除指定项 /// /// public static void RemoveFromCache(string shortKey) { var cacheKey = GetBagCacheKey(shortKey); Cache.RemoveFromCache(cacheKey); } } }