欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

浅析C#更改令牌ChangeToken

程序员文章站 2022-06-15 18:38:36
目录cancellationchangetoken示例compositechangetoken示例ichangetoken接口cancellationchangetoken实现changetoken类...

简单实例

要想更好的了解一个新的知识,首先知道它是做啥的,其次要知道它怎么做。所以还是老规矩,咱们先通过简单的示例开始,这样更方便了解。changetoken本身是一个静态类,它的核心入口onchange方法包含两个参数,一个是传递ichangetoken接口实例来获取令牌,另一个是令牌取消之后进行的回调操作。博主本人知道的关于ichangetoken接口的在clr中的实现类有两个,分别是cancellationchangetokencompositechangetoken类,接下来咱们就分别介绍一下这两个类的简单使用。

cancellationchangetoken示例

咱们先来演示cancellationchangetoken类的使用方式,这也是默认情况下可以使用changetoken的最简单方式。首先定义一个testcancellationchangetoken类来包装一下cancellationchangetoken,实现如下

public class testcancellationchangetoken
{
    private cancellationtokensource tokensource;

    /// <summary>
    /// 获取cancellationchangetoken实例方法
    /// </summary>
    public cancellationchangetoken creatchanagetoken()
    {
        tokensource = new cancellationtokensource();
        return new cancellationchangetoken(tokensource.token);
    }

    /// <summary>
    /// 取消cancellationtokensource
    /// </summary>
    public void canceltoken()
    {
        tokensource.cancel();
    }
}

这个类非常简单,包含一个cancellationtokensource类型的属性,一个创建cancellationchangetoken实例的方法和一个取消cancellationtokensource的canceltoken方法。注意看实现的creatchanagetoken方法,这个方法每次调用都需要创建一个新的cancellationtokensource和cancellationchangetoken实例,创建cancellationchangetoken实例需要传递cancellationtoken实例。canceltoken方法里是调用的cancellationtokensource的cancel方法。接下来我们就来看一下如何使用定义的这个类

//声明类的实例
testcancellationchangetoken cancellationchangetoken = new testcancellationchangetoken();
changetoken.onchange(() => cancellationchangetoken.creatchanagetoken(), () =>
{
    system.console.writeline($"{datetime.now:hh:mm:ss}被触发可一次");
});

//模拟多次调用canceltoken
for (int i = 0; i < 3; i++)
{
    thread.sleep(1000);
    cancellationchangetoken.canceltoken();
}

上面的示例演示了通过changetoken类使用我们定义的testcancellationchangetoken类,changetoken的onchange方法传递了创建新cancellationchangetoken实例的方法委托,第二个参数则是取消令牌的回调操作,这样便可以重复的使用取消操作,为了演示效果在循环里重复调用canceltoken方法显示的打印结果是

16:40:15被触发可一次
16:40:16被触发可一次
16:40:17被触发可一次

cancellationchangetoken类是通过changetoken实现重复取消触发调用的简单实现,两者将结合的时候需要自己包装一下,因为changetoken的第一个参数需要每次获取cancellationchangetoken实例的委托,所以需要将它包装到工作类中。

compositechangetoken示例

实际开发中很多时候都需要一些关联的场景,比如我触发了一个取消操作,我想把和这个相关联的其它操作也取消,也就是咱们说的有相关性。compositechangetoken正是可以绑定一个相关性的ichangetoken集合,当这个ichangetoken集合中有任何一个实例进行取消操作的时候,当前compositechangetoken实例也会执行取消操作,咱们就大致演示一下它的使用方式,首先是定义一个使用类testcompositechangetoken来模拟包装compositechangetoken实例

public class testcompositechangetoken
{
    //声明一个cancellationtokensource集合
    private list<cancellationtokensource> _cancellationtokensources;

    /// <summary>
    /// 获取compositechangetoken实例方法
    /// </summary>
    public compositechangetoken creatchanagetoken()
    {
        //初始化三个cancellationtokensource实例
        var firstcancellationtokensource = new cancellationtokensource();
        var secondcancellationtokensource = new cancellationtokensource();
        var threecancellationtokensource = new cancellationtokensource();

        //分别注册一个回调操作用于演示
        firstcancellationtokensource.token.register(() => system.console.writeline("firstcancellationtokensource被取消"));
        secondcancellationtokensource.token.register(() => system.console.writeline("secondcancellationtokensource被取消"));
        threecancellationtokensource.token.register(() => system.console.writeline("threecancellationtokensource被取消"));

        //加入到集合还
        _cancellationtokensources = new list<cancellationtokensource>
        {
            firstcancellationtokensource,
            secondcancellationtokensource,
            threecancellationtokensource
        };

        //生成cancellationchangetoken集合
        var cancellationchangetokens = _cancellationtokensources.select(i => new cancellationchangetoken(i.token)).tolist();
        //传递给compositechangetoken
        var compositechangetoken = new compositechangetoken(cancellationchangetokens);
        //给compositechangetoken实例注册一个取消回调方便演示
        compositechangetoken.registerchangecallback(state => system.console.writeline("compositechangetoken被取消"),null);

        return compositechangetoken;
    }

    /// <summary>
    /// 取消cancellationtokensource
    /// </summary>
    public void canceltoken()
    {
        //方便演示效果在_cancellationtokensources集合随便获取一个取消
        _cancellationtokensources[new random().next(_cancellationtokensources.count)].cancel();
    }
}

这里我定义了一个类,在获取compositechangetoken实例的creatchanagetoken方法中创建了三个cancellationtokensource实例,然后用这三个实例初始化了一个cancellationchangetoken集合,用这个集合初始化了一个compositechangetoken实例,来模拟集合中的cancellationchangetoken实例和compositechangetoken实例的相关性。canceltoken方法中随机获取了一个cancellationtokensource实例进行取消操作,来更好的演示相关性。因为compositechangetoken类也实现了ichangetoken接口,所以用起来都一样,大致如下

//声明类的实例
testcompositechangetoken compositechangetoken = new testcompositechangetoken();
changetoken.onchange(() => compositechangetoken.creatchanagetoken(), () =>
{
    system.console.writeline($"{datetime.now:hh:mm:ss}被触发可一次");
});

//模拟多次调用canceltoken
for (int i = 0; i < 3; i++)
{
    thread.sleep(1000);
    compositechangetoken.canceltoken();
}

为了演示可以重复触发取消操作,这里依然使用循环的方式模拟多次触发。因为存在相关性,所以打印的执行结果如下

12:05:18被触发可一次
compositechangetoken被取消
secondcancellationtokensource被取消

12:05:19被触发可一次
compositechangetoken被取消
firstcancellationtokensource被取消

12:05:20被触发可一次
compositechangetoken被取消
secondcancellationtokensource被取消

从结果上可以看到任何一个相关联cancellationchangetoken实例的cancellationtokensource实例被取消的话,与其相关的compositechangetoken实例也执行了取消操作,在有些场景下还是比较实用的。

源码探究

上面我们通过简单的示例大致了解了changetoken是做啥的,以及它怎么使用。通过名字可以得知,它叫更改令牌,说明可以动态产生令牌的值。它涉及到了几个核心的操作相关分别是ichangetoken接口、cancellationchangetoken、compositechangetoken和changetoken静态类,通过上面咱们的示例和讲解我们大致了解了这几个类型的关系,为了方便阅读和思维带入咱们就按照方便理解的顺序来挨个讲解。

友情提示:本文设计到粘贴出来的相关源码,这些源码是省略掉一部分过程的。因为我们主要是了解它的实现,无关紧要的代码可能会影响阅读效果。而且这次的github源码地址我更换为https://hub.fastgit.org而没有使用官方的https://github.com,主要是github近期很不稳定经常打不开。fastgit是github的镜像网站,展示的内容是完全一致的,最主要的是打开很流畅。

ichangetoken接口

首先便是ichangetoken接口,它是整个changetoken系列的入口操作,changetoken的onchange操作也是通过它的实现类发起的。它的作用就是获取一个可以更改的令牌,也就是可以重复触发的令牌,咱们就先来看一下它的实现[点击查看源码????]

public interface ichangetoken
{
    /// <summary>
    /// 用来标识是否发生过更改
    /// </summary>
    bool haschanged { get; }

    /// <summary>
    /// 指示令牌是否支持回调
    /// </summary>
    bool activechangecallbacks { get; }

    /// <summary>
    /// 当令牌取消时执行的回调
    /// </summary>
    /// <param name="callback">回调执行委托</param>
    /// <param name="state">回调委托的参数</param>
    /// <returns>an <see cref="idisposable"/> that is used to unregister the callback.</returns>
    idisposable registerchangecallback(action<object> callback, object state);
}

它定义的接口成员非常简单,总结起来就是两类,一个是判断是否发生过更改相关即取消操作,一个是发生过更改之后的回调操作。它只是定义一个标准任何实现这个标准的类都具备被changetoken的onchange方法提供可更换令牌的能力。

cancellationchangetoken实现

上面我们了解了ichagetoken接口定义的成员相关,而cancellationchangetoken则是ichagetoken接口最常使用默认的实现,了解了它的实现,我们就可以更好的知道changetoken的onchange方法是如何工作的,所以这里我选择了先讲解cancellationchangetoken相关的实现,这样会让接下来的阅读变得更容易理解。好了直接看它的实现[点击查看源码????]

public class cancellationchangetoken : ichangetoken
{
    /// <summary>
    /// 唯一构造函数通过cancellationchangetoken初始化
    /// </summary>
    public cancellationchangetoken(cancellationtoken cancellationtoken)
    {
        token = cancellationtoken;
    }

    /// <summary>
    /// 因为它是通过cancellationtoken实现具备回调的能力
    /// </summary>
    public bool activechangecallbacks { get; private set; } = true;

    /// <summary>
    /// 根据cancellationtoken的iscancellationrequested属性判断令牌是否已取消
    /// </summary>
    public bool haschanged => token.iscancellationrequested;

    /// <summary>
    /// 接收传递进来的cancellationtoken
    /// </summary>
    private cancellationtoken token { get; }

    /// <summary>
    /// 注册回调操作
    /// </summary>
    /// <returns></returns>
    public idisposable registerchangecallback(action<object> callback, object state)
    {
        try
        {
            //本质还是通过cancellationtoken完成它回调操作的功能
            return token.unsaferegister(callback, state);
        }
        catch (objectdisposedexception)
        {
            activechangecallbacks = false;
        }
        return nulldisposable.instance;
    }

    private class nulldisposable : idisposable
    {
        public static readonly nulldisposable instance = new nulldisposable();

        public void dispose()
        {
        }
    }
}

通过上面的代码我们可以得知,cancellationchangetoken的本质还是cancellationtoken的包装类,因为我们看到了cancellationchangetoken类的核心操作实现都是依赖的cancellationchangetoken类的实现完成的。它的haschanged属性registerchangecallback方法都是直接调用的cancellationchangetoken类的实现。

changetoken类的实现

上面我们讲解了ichangetoken接口的相关实现,也说明了因为changetoken类是依赖ichangetoken接口实现来完成的,所以咱们是从ichangetoken类开始讲解的。了解了上面的实现之后,咱们就可以直接来看changetoken相关的实现了,而我们使用的就是它的onchange方法[点击查看源码????]

public static idisposable onchange(func<ichangetoken> changetokenproducer, action changetokenconsumer)
{
    return new changetokenregistration<action>(changetokenproducer, callback => callback(), changetokenconsumer);
}

public static idisposable onchange<tstate>(func<ichangetoken> changetokenproducer, action<tstate> changetokenconsumer, tstate state)
{
    return new changetokenregistration<tstate>(changetokenproducer, changetokenconsumer, state);
}

它的onchange方法其实是包含两个重载的,一个是无参委托一个是有参委托。无参委托没啥好说的,通过有参回调我们可以给回调传递参数,这个参数是方法传递每次回调委托获取的值取决于state本身的值是什么。最重要的是它们两个都是返回了changetokenregistration<t>类的实例,也就是说onchange方法本身是一个外观用来隐藏changetokenregistration这个类的具体信息,因为changetokenregistration只需要在changetoken内部使用。那我们就直接看一下changetokenregistration内部类的实现[点击查看源码????]

private class changetokenregistration<tstate> : idisposable
{
    //生产ichangetoken实例的委托
    private readonly func<ichangetoken> _changetokenproducer;
    //回调委托
    private readonly action<tstate> _changetokenconsumer;
    //回调参数
    private readonly tstate _state;
    public changetokenregistration(func<ichangetoken> changetokenproducer, action<tstate> changetokenconsumer, tstate state)
    {
        _changetokenproducer = changetokenproducer;
        _changetokenconsumer = changetokenconsumer;
        _state = state;

        //执行changetokenproducer得到ichangetoken实例
        ichangetoken token = changetokenproducer();
        //调用registerchangetokencallback方法传递ichangetoken实例
        registerchangetokencallback(token);
    }
}

通过上面我们了解到changetokenregistration正是实现changetoken效果的核心,而它的构造函数里通过执行传递进来产生ichangetoken新实例的委托得到了新的ichangetoken实例。这里需要注意,每次执行func<ichangetoken> 都会得到新的ichangetoken实例。然后调用了registerchangetokencallback方法,而这个方法只需要传递得到的ichangetoken实例即可。接下来我们只需要看registerchangetokencallback方法实现即可[点击查看源码????]

private void registerchangetokencallback(ichangetoken token)
{
    //给ichangetoken实例注册回调操作
    //回调操作正是执行当前changetokenregistration实例的onchangetokenfired方法
    idisposable registraton = token.registerchangecallback(s => ((changetokenregistration<tstate>)s).onchangetokenfired(), this);
    setdisposable(registraton);
}

从这里我们可以看出changetokenregistration的registerchangetokencallback方法本质还是使用了ichangetoken实例的registerchangecallback方法来实现的,不过这里的回调执行的是当前changetokenregistration实例的onchangetokenfired方法,也就是说令牌取消的时候调用的就是onchangetokenfired方法,咱们直接看一下这个方法的实现[点击查看源码????]

private void onchangetokenfired()
{
    //获取一个新的ichangetoken实例
    ichangetoken token = _changetokenproducer();
    try
    {
        //执行注册的回调操作
        _changetokenconsumer(_state);
    }
    finally
    {
        //又调用了registerchangetokencallback注册当前ichangetoken实例
        registerchangetokencallback(token);
    }
}

看上面的代码我第一反应就是豁然开朗,通过onchangetokenfired方法的实现仿佛一切都透彻了。首先调用_changetokenproducer委托获取新的ichangetoken实例,即我们通过即我们通过changetoken的onchange方法第一个参数传递的委托。然后执行_changetokenconsumer委托,即我们通过changetoken的onchange方法第二个参数传递的委托。最后传递当前通过_changetokenproducer委托产生的新ichangetoken实例调用registerchangetokencallback方法,即咱们上面的那个方法,这样就完成了类似一个递归的操作。执行完之后又将这套流程重新注册了一遍,然后形成了这种可以持续触发的操作。
上面的registerchangetokencallback方法里里调用了setdisposable方法,这个方法主要是判断token有没有被取消。因为我们在使用ichangetoken实例的时候会涉及到多线程共享的问题,而ichangetoken实例本身设计考虑到了线程安全问题,我们可以大致看下setdisposable的实现[点击查看源码????]

private idisposable _disposable;
private static readonly noopdisposable _disposedsentinel = new noopdisposable();
private void setdisposable(idisposable disposable)
{
    //读取_disposable实例
    idisposable current = volatile.read(ref _disposable);
    //如果当前_disposable实例等于_disposedsentinel实例则说明当前changetokenregistration已被释放,
    //则直接释放ichangetoken实例然后返回
    if (current == _disposedsentinel)
    {
        disposable.dispose();
        return;
    }

    //线程安全交换,如果之前_disposable的值等于_disposedsentinel说明被释放过了
    //则释放ichangetoken实例
    idisposable previous = interlocked.compareexchange(ref _disposable, disposable, current);
    if (previous == _disposedsentinel)
    {
        disposable.dispose();
    }
    //说明没有被释放过
    else if (previous == current)
    {
    }
    //说明别的线程操作了dispose则直接异常
    else
    {
        throw new invalidoperationexception("somebody else set the _disposable field");
    }
}

因为changetokenregistration是实现了idisposable接口,所以我们可以先看下dispose方法的实现,这样的话会让大家更好的理解它的这个释放体系[点击查看源码????]

public void dispose()
{
    //因为_disposable初始值是null所以把noopdisposable实例赋值给_disposable并调用dispose方法
    interlocked.exchange(ref _disposable, _disposedsentinel).dispose();
}

因为初始声明_disposable变量的时候初始值是null,这里把noopdisposable实例赋值给_disposable并调用dispose方法。其实dispose方法啥也没做就是为了标记一下,因为changetokenregistration类并未涉及到非托管资源相关的操作。

通过setdisposable方法结合dispose方法,我们可以理解在触回调操作的时候会调setdisposable方法进行判断changetokenregistration有没有被释放过,如果已经被释放则直接释放掉传递的ichangtoken实例。因为changetoken的onchange方法返回的就是changetokenregistration实例,如果这个被释放则意味了onchange传递的ichangetoken实例也必须要释放。

通过上面讲解了changetokenregistration<tstate>类的实现我们了解到了changetoken类工作的本质,其实非常简单,为了怕大家没看明白在这里咱们简单的总结一下changetoken的整体工作过程。

  • changetoken静态类只包装了onchange方法,这个方法传递的核心参数是产生ichangetoken实例的委托和cancellationtokensource实例取消后的回调操作。这里的ichangetoken实例和changetoken静态类没啥关系,就是名字长得像。
  • changetoken静态类的onchange方法本质是包装一个changetokenregistration<tstate>实例。changetokenregistration是changetoken类工作的核心,它的工作方式是,初始化的时候生成ichangetoken实例然后调用registerchangetokencallback方法,在registerchangetokencallback方法方法中给ichangetoken实例的registerchangecallback方法注册了回调操作。
  • registerchangecallback回调操作注册一个调用onchangetokenfired方法的操作,通过上面的源码我们知道registerchangecallback本质是给cancellationtoken注册回调,所以当cancellationtokensource调用cancel的时候回执行onchangetokenfired方法。
  • onchangetokenfired方法是核心操作,它首先是获取一个新的ichangetoken实例,然后执行注册的回调操作。然后又调用了registerchangetokencallback传递了最新获取的ichangetoken实例,这样的话就形成了一个类似递归的操作,而这个递归的终止条件就是changetokenregistration有没有被释放。所以才能实现动态更改令牌的效果。

一句话总结一下就是,registerchangecallback中给cancellationchangetoken的回调注册了调用onchangetokenfired方法的操作,onchangetokenfired方法中有调用了registerchangecallback方法给它传递了生成的ichangetoken实例,而回调操作都是同一个,只是不断被新的ichangetoken实例调用。

compositechangetoken实现

上面我们说过之所以最后来说compositechangetoken的实现,完全是因为它属于增强的操作。如果大家理解了简单的工作方式的流程,然后再去尝试了解复杂的操作可能会更容易理解。所以咱们先说了cancellationchangetoken这个ichangetoken最简单的实现,然后说了changetoken静态类,让大家对整体的工作机制有了解,最后咱们再来讲解compositechangetoken,这样的话大家会很容易就理解这个操作方式的。咱们还是先从入口的构造函数入手吧[点击查看源码????]

public class compositechangetoken : ichangetoken
{
      public ireadonlylist<ichangetoken> changetokens { get; }
      public bool activechangecallbacks { get; }
      public compositechangetoken(ireadonlylist<ichangetoken> changetokens)
      {
          changetokens = changetokens ?? throw new argumentnullexception(nameof(changetokens));
          //遍历传入的ichangetoken集合
          for (int i = 0; i < changetokens.count; i++)
          {
              /**
               * 如果集合中存在任何一个ichangetoken实例activechangecallbacks为true
               * 则compositechangetoken的activechangecallbacks也为true
               * 因为compositechangetoken可以关联ichangetoken集合中的任何一个有效实例
               */
              if (changetokens[i].activechangecallbacks)
              {
                  activechangecallbacks = true;
                  break;
              }
          }
      }
}

从上面的构造函数可以看出ichangetoken集合中存在可用的实例即可,因为compositechangetoken只需要知道集合中存在可用的即可,而不是要求全部的ichangetoken都可以用。通过changetoken静态类的源码我们可以知道,cancellationtokensource的cancel方法执行后调用的是ichangetoken的registerchangecallback方法,也就是说回调触发的操作就是这个方法,我们来看一下这个方法的实现[点击查看源码????]

private cancellationtokensource _cancellationtokensource;
public idisposable registerchangecallback(action<object> callback, object state)
{
    //核心方法
    ensurecallbacksinitialized();
   //这里的cancellationtokensource注册compositechangetoken的回调操作
    return _cancellationtokensource.token.register(callback, state);
}

private static readonly action<object> _onchangedelegate = onchange;
private bool _registeredcallbackproxy;
private list<idisposable> _disposables;
private readonly object _callbacklock = new object();
private void ensurecallbacksinitialized()
{
   //判断是否已使用registerchangecallback注册过回调操作,如果不是第一次则直接返回
    if (_registeredcallbackproxy)
    {
        return;
    }

   //加锁 意味着这个操作要线程安全
    lock (_callbacklock)
    {
        if (_registeredcallbackproxy)
        {
            return;
        }
        //实例化cancellationtokensource,因为registerchangecallback方法里再用
        _cancellationtokensource = new cancellationtokensource();
        _disposables = new list<idisposable>();
        //循环要关联的ichangetoken集合
        for (int i = 0; i < changetokens.count; i++)
        {
            //判断注册进来的ichangetoken实例是否支持回调操作
            if (changetokens[i].activechangecallbacks)
            {
                //给ichangetoken实例注册回调操作执行_onchangedelegate委托
                idisposable disposable = changetokens[i].registerchangecallback(_onchangedelegate, this);
                //返回值加入idisposable集合
                _disposables.add(disposable);
            }
        }
       //标识注册过了,防止重复注册引发的多次触发
        _registeredcallbackproxy = true;
    }
}

上面的代码我们看到了核心的关联回调操作是执行了_onchangedelegate委托,它是被onchange方法初始化的。这一步操作其实就是把关联的ichangetoken实例注册_onchangedelegate委托操作,咱们来看下compositechangetoken的onchange方法实现[点击查看源码????]

private static void onchange(object state)
{
    //获取传递的compositechangetoken实例
    var compositechangetokenstate = (compositechangetoken)state;
    //判断cancellationtokensource是否被初始化过
    if (compositechangetokenstate._cancellationtokensource == null)
    {
        return;
    }

    //加锁 说明这一步是线程安全操作
    lock (compositechangetokenstate._callbacklock)
    {
        try
        {
            /**
             * 取消当前实例的cancellationtokensource
             * 这样才能执行compositechangetoken注册的回调操作
             */
            compositechangetokenstate._cancellationtokensource.cancel();
        }
        catch
        {
        }
    }
    //获取ensurecallbacksinitialized方法中注册的集合,即ichangetoken集合的回调返回值集合
    list<idisposable> disposables = compositechangetokenstate._disposables;
    //不为null则通过循环的方式挨个释放掉
    debug.assert(disposables != null);
    for (int i = 0; i < disposables.count; i++)
    {
        disposables[i].dispose();
    }
}

通过上面的onchange方法我们得知,它主要是实现了在注册进来的任意ichangetoken实例如果发生了取消操作则当前的compositechangetoken实例registerchangecallback进来的回调操作也要执行,而且这一步要释放掉所有注册ichangetoken实例,因为只要有一个ichangetoken实例执行了取消操作,则compositechangetoken实例和其它注册进来相关联的ichangetoken实例都要取消。
ichangetoken还有一个haschange属性来标识当前ichangetoken是否被取消,咱们来看下compositechangetoken是如何实现这个属性的[点击查看源码????]

public bool haschanged
{
    get
    {
        //如果当前实例的cancellationtokensource被取消过则说明当前compositechangetoken已被取消
        if (_cancellationtokensource != null && _cancellationtokensource.token.iscancellationrequested)
        {
            return true;
        }

        //循环注册进来的关联的ichangetoken集合
        for (int i = 0; i < changetokens.count; i++)
        {
            //如果存在关联的ichangetoken实例有被取消的那么也认为当前compositechangetoken已被取消
            if (changetokens[i].haschanged)
            {
                //调用onchange是否关联的ichangetoken实例
                onchange(this);
                return true;
            }
        }
        //否则则没被取消过
        return false;
    }
}

通过上面的代码可以看到haschanged属性的设计思路符合它整体的设计思路。判断是否取消的标识有两个,如果当前实例的cancellationtokensource被取消过则说明当前compositechangetoken已被取消,还有就是如果存在关联的ichangetoken实例有被取消的那么也认为当前compositechangetoken也被取消。好了通过上面这一部分整体的源码,我们可以总结一下compositechangetoken的整体实现思路。

  • compositechangetoken的取消回调操作分为两部分,一个是基于传递的ichangetoken集合中激活更改回调即activechangecallbacks为true的实例,另一个则是它自身维护通过registerchangecallback注册进来的委托,这个委托是它内部维护的cancellationtokensource实现的。
  • 因为compositechangetoken的registerchangecallback方法中给注册进来的ichangetoken集合中的每一个activechangecallbacks的实例注册了取消回调操作,所以当changetoken静态类触发registerchangecallback回调操作的时候回调用compositechangetoken的onchange方法。
  • compositechangetoken的onchange方法中会取消compositechangetoken内部维护的cancellationtokensource,也就是触发compositechangetoken类本身的回调,并且释放注册进来的其他相关联的ichangetoken实例,从而实现了关联取消的操作。

通过源码探究部分,我们分别展示了关于ichangetoken接口,以及它最简单的实现类cancellationchangetoken类的实现,然后根据cancellationchangetoken类的实现讲解了changetoken静态类是如何实现动态令牌更改的,最后又探究了ichangetoken接口的另一个高级的可以关联更改令牌操作的compositechangetoken的用法,通过这样一个流程,博主本人认为是更容易理解的。

自定义ichangetoken实现

上面我们看到了cancellationchangetoken的使用方式非常简单,但是也存在一定的限制,那就是需要外部传递cancellationtokensource的实例。其实很多时候我们只需要知道你是ichangetoken实例就好了能满足被changetoken静态类使用就好了,至于传递cancellationtokensource啥的不需要外部关心,能相应的操作就行了,比如在.net core的configuration体系中的configurationreloadtoken,它是用来实现配置发生变化通知configurationprovider重新加载数据完成自动刷新操作,我们来看一下它的实现方式[点击查看源码????]

public class configurationreloadtoken : ichangetoken
{
    //内部定义了cancellationtokensource实例
    private cancellationtokensource _cts = new cancellationtokensource();

    public bool activechangecallbacks => true;

    public bool haschanged => _cts.iscancellationrequested;

    /// <summary>
    /// 给当前的cancellationtokensource实例注册操作
    public idisposable registerchangecallback(action<object> callback, object state) => _cts.token.register(callback, state);

    /// <summary>
    /// 添加onreload方法,供外部取消使用
    /// </summary>
    public void onreload() => _cts.cancel();
}

它在configurationreloadtoken类的内部声明了cancellationtokensource类型的属性,然后提供了可以取消cancellationtokensource实例的方法onreload,这样的话逻辑可以在内部消化,而不像在外部传递。当重新获取它的实例的时候额外提供一个可获取configurationreloadtoken新实例的方法即可[点击查看源码????]

private configurationreloadtoken _changetoken = new configurationreloadtoken();
private void raisechanged()
{
    //直接交换一个新的configurationreloadtoken实例
    configurationreloadtoken previoustoken = interlocked.exchange(ref _changetoken, new configurationreloadtoken());
    //取消上一个configurationreloadtoken实例实现更改通知操作
    previoustoken.onreload();
}

这样的话获取token的实现就非常简单了,直接返回configurationreloadtoken的属性即可不再需要一堆额外的操作,这样就可以保证每次通过getreloadtoken方法获取的ichangetoken实例都是未失效的。

public ichangetoken getreloadtoken() => _changetoken;

总结

本文我们讲解了changetoken相关的体系,设计到了ichangetoken接口的几个实现类和changetoken静态类是如何实现通过取消令牌重复触发的,其实本质也就是它的名字,可以动态去更改令牌,实现的大致思路就是类似递归的操作,在回调通知里获取新的变更令牌实例,重新注册当前回调操作形成递归。因为ichangetoken实例都是引用类型,而我们传递的cancellationtokensource实例也是引用类型,所以我们在使用的时候没感觉有什么变化,但其实如果你每次打印它的实例都是不一样的,因为内部已经更换了新的实例。好了我们大致总结一下

  • ichangetoken接口是满足changetoken静态类的必须操作,默认提供的cancellationchangetoken类则是ichangetoken接口最简单的实现,它是依赖cancellationtokensource实现注册和取消通知相关操作的。
  • changetoken静态类的工作依赖它的onchange方法注册的参数,一个是获取ichangetoken实例的委托,一个是令牌取消执行的操作。其实现的本质是在cancellationchangetoken的register方法里注册重新注册的操作。也就是通过changetoken静态类的onchange方法第一个参数委托,执行这个委托获取新的ichangetoken实例,当然它包含的cancellationchangetoken实例也是最新的。然后changetoken静态类的onchange方法第二个参数,即回调操作重新注册给这个新的实例,这个更改操作对外部都是无感知的,但其实内部早已经更换了新的实例。
  • compositechangetoken实现关联取消更改操作的本质是,给一堆ichangetoken实例注册相同的onchange操作,如果有一个ichangetoken实例执行了取消则通过onchange方法取消当前compositechangetoken实例和相关联的ichangetoken实例,防止同一个compositechangetoken实例重复被触发。

这个系列我们讲解了取消令牌相关,其核心都是对cancellationtokensource的包装,因为默认的cancellationtokensource的实例默认只能被取消一次,但是很多场景需要能多次甚至无限次触发这种通知,比如.net core的configuration体系,每次配置发生变更都需要执行响应的刷新操作。因此衍生出来了ichangetoken相关,结合辅助的changetoken来实现重复更改令牌的操作,实现无限次的触发通知。虽然博主能力和文笔都十分有限,但依然希望同学们能从中获取收获,这也是作为写作人最大的动力。

到此这篇关于浅析c#更改令牌changetoken的文章就介绍到这了,更多相关c#更改令牌changetoken内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!