NIO之坑:完全理解NIO Selector


Selector是什么


如何创建一个Selector对象


如何将selectable channel注册到selector中

   SelectionKey key = channel.register(selector,Selectionkey.XXX); 
  • 通过channelregister方法,将channel注册到给定的selector中,并返回一个表示注册关系的SelectionKey 对象。

selector如何维护selection keys

一个selector维护着三个selection keys集合:

  • key set 包含着所有selectionKeys,当前所有注册到selector中的channel返回的注册关系SelectionKey都包含在内,这个集合可以通过selector.keys() 方法返回。
  • selected-key set 包含着一部分selectionKeys,其中的每个selectionKey所关联的channelselection operation期间被检测出至少 准备好 了一个可以在兴趣集中匹配到的操作。这个集合可以通过调用selector.selectedKeys()方法返回。selected-key set 一定是 key set 的子集。
  • cancelled-key set 也包含着一部分selectionKeys,其中的每个selectionKey都已经被取消,但是所关联channel还没有被撤销登记cancelled-key set 不能够被直接返回,但也一定是 key set 的子集。

对于一个新创建的selector其中这三个集合都是空着的。

通过channelregister方法,一个selectionKey被增加到selectorkey set 中。

无论通过channel.close()还是通过selectionKey.cancel()取消一个selectionKey ,这个selectionKey都会被立即添加到selectorcancelled-key set 中,但是所关联的channel并没有立即被撤销登记,直到发生下次 selection operations, 这些channel才被从selector撤销登记,与此同时这些Cancelled keys才会被从这个selector的所有selectionKey set(可能是_key set_、selected-key setcancelled-key set)中移除,但是不会影响这些集合本身。

selection operations 期间,一些selectionKey会被选中添加到 selected-key set 中。其中的每个key可以通过selectiedKeys.remove()selectiedKeys.iterator().remove()直接从 selected-key set 中移除,除此之外不能够通过任何方式被直接移除。特殊的,selected-key set 中的keys还可以在 selection operations 期间被间接移除。但是是不可以直接向 selected-key set 添加key的。


selector如何选择就绪channel

  • 每次 selection operation 期间, keys都可以添加到或从selector’s selected-key set 被移除,同时也可以从它的 keycancelled-key sets 被移除。 selection operation 可以被触发通过执行selector.select()selector.select(long),和selector.selectNow() 方法,并且这些方法涉及到以下三个步骤:
  1. 首先每个位于 cancelled-key set 中的key会从每个包含它的key集合中被移除,并且对应的channel会被撤销登记。这个步骤使得 cancelled-key set 变为空。

  2. 查询底层操作系统来获得关于selector中剩余channel就续事件selection operation 开始截止到此刻的更新情况,只要哪个channel就续事件的更新部分有至少一个与兴趣集中的操作匹配上,那么将会执行以下两个动作:

    1. 如果这个channel's key 没有存在selected-key set 那么将它添加到这个集合中,并将它的就绪操作集(ready-operation set)修改成 只包含使得channel被报告就绪的操作,任何先前记录在就绪操作集中的就绪信息都会被丢弃。

    2. 否则,如果这个channel's key 存在selected-key set ,那么就保留就绪操作集中先前的就绪信息,并将这些 使得channel被报告就绪的操作 写入进去;总而言之,系统底层会通过按位与&操作更新当前就绪集。

    如果这些Key兴趣集为空,那么 selected-key set 和 keys’的就续集(ready-operation sets)都不会被更新。

  3. 如果在步骤(2)正在进行时将任何key添加到 cancelled-key set,则按步骤(1)处理它们。

  • selection operations 是否会阻塞等待一个或多个通道准备就绪,以及等待多长时间,这是三种选择方法之间唯一的本质区别。

selector线程安全吗

多线程并发情况下Selectors本身是线程安全的,但是他们所持有的key sets不是线程安全的。

selection operations 按顺序在selector本身,key setselected-key set 上同步。 它们还在上面的步骤(1)和(3)期间在 canceled-key set 上同步。

selection operations 期间改变key兴趣集,对于本次操作将不会产生任何影响;它们的影响将会在下次 selection operations 期间发生。

selectionKey可能会被取消,channel可能随时关闭。 因此,在一个或多个选择器的key集中存在并不意味着selectionKey有效或其channel是开放的。有可能另一个线程取消selectionKey或关闭一个channel,应用程序代码应该小心地同步并检查这些条件。

一个线程通过selector.select()selector.select(long)方法产生的阻塞可以被其他线程用以下三种方式的任意一种来中断:

  • By invoking the selector’s wakeup() method,

  • By invoking the selector’s close() method, or

  • By invoking the blocked thread’s interrupt() method, in which case its interrupt status will be set and the selector’s wakeup() method will be invoked.

selector.close()selection operations 期间会顺序的同步selectorand all three key sets

一个selectorkey setselected-key set 通常情况下是线程不安全的。如果一个线程想要修改这个集合,需要同步控制它。通过key集合iterator()方法返回的Iterators提供了快速失败fail-fast):如果在创建迭代器之后修改了set,除了通过调用迭代器自己的remove() 方法之外,将抛出ConcurrentModificationException


原文

  • A multiplexor of SelectableChannel objects.

    A selector may be created by invoking the open method of this class, which will use the system’s default selector provider to create a new selector. A selector may also be created by invoking the openSelector method of a custom selector provider. A selector remains open until it is closed via its close method.

    A selectable channel’s registration with a selector is represented by a SelectionKey object. A selector maintains three sets of selection keys:

    • The key set contains the keys representing the current channel registrations of this selector. This set is returned by the keys method.

    • The selected-key set is the set of keys such that each key’s channel was detected to be ready for at least one of the operations identified in the key’s interest set during a prior selection operation. This set is returned by the selectedKeys method. The selected-key set is always a subset of the key set.

    • The cancelled-key set is the set of keys that have been cancelled but whose channels have not yet been deregistered. This set is not directly accessible. The cancelled-key set is always a subset of the key set.

    All three sets are empty in a newly-created selector.

    A key is added to a selector’s key set as a side effect of registering a channel via the channel’s register method. Cancelled keys are removed from the key set during selection operations. The key set itself is not directly modifiable.

    A key is added to its selector’s cancelled-key set when it is cancelled, whether by closing its channel or by invoking its cancel method. Cancelling a key will cause its channel to be deregistered during the next selection operation, at which time the key will removed from all of the selector’s key sets.

    Keys are added to the selected-key set by selection operations. A key may be removed directly from the selected-key set by invoking the set’s remove method or by invoking the remove method of an iterator obtained from the set. Keys are never removed from the selected-key set in any other way; they are not, in particular, removed as a side effect of selection operations. Keys may not be added directly to the selected-key set.

    Selection

    During each selection operation, keys may be added to and removed from a selector’s selected-key set and may be removed from its key and cancelled-key sets. Selection is performed by the select(), select(long), and selectNow() methods, and involves three steps:

    1. Each key in the cancelled-key set is removed from each key set of which it is a member, and its channel is deregistered. This step leaves the cancelled-key set empty.

    2. The underlying operating system is queried for an update as to the readiness of each remaining channel to perform any of the operations identified by its key’s interest set as of the moment that the selection operation began. For a channel that is ready for at least one such operation, one of the following two actions is performed:

      1. If the channel’s key is not already in the selected-key set then it is added to that set and its ready-operation set is modified to identify exactly those operations for which the channel is now reported to be ready. Any readiness information previously recorded in the ready set is discarded.

      2. Otherwise the channel’s key is already in the selected-key set, so its ready-operation set is modified to identify any new operations for which the channel is reported to be ready. Any readiness information previously recorded in the ready set is preserved; in other words, the ready set returned by the underlying system is bitwise-disjoined into the key’s current ready set.

    If all of the keys in the key set at the start of this step have empty interest sets then neither the selected-key set nor any of the keys’ ready-operation sets will be updated.
    3. If any keys were added to the cancelled-key set while step (2) was in progress then they are processed as in step (1).

    Whether or not a selection operation blocks to wait for one or more channels to become ready, and if so for how long, is the only essential difference between the three selection methods.

    Concurrency

    Selectors are themselves safe for use by multiple concurrent threads; their key sets, however, are not.

    The selection operations synchronize on the selector itself, on the key set, and on the selected-key set, in that order. They also synchronize on the cancelled-key set during steps (1) and (3) above.

    Changes made to the interest sets of a selector’s keys while a selection operation is in progress have no effect upon that operation; they will be seen by the next selection operation.

    Keys may be cancelled and channels may be closed at any time. Hence the presence of a key in one or more of a selector’s key sets does not imply that the key is valid or that its channel is open. Application code should be careful to synchronize and check these conditions as necessary if there is any possibility that another thread will cancel a key or close a channel.

    A thread blocked in one of the select() or select(long) methods may be interrupted by some other thread in one of three ways:

    • By invoking the selector’s wakeup method,

    • By invoking the selector’s close method, or

    • By invoking the blocked thread’s interrupt method, in which case its interrupt status will be set and the selector’s wakeup method will be invoked.

    The close method synchronizes on the selector and all three key sets in the same order as in a selection operation.

    A selector’s key and selected-key sets are not, in general, safe for use by multiple concurrent threads. If such a thread might modify one of these sets directly then access should be controlled by synchronizing on the set itself. The iterators returned by these sets’ iterator methods are fail-fast: If the set is modified after the iterator is created, in any way except by invoking the iterator’s own remove method, then a ConcurrentModificationException will be thrown.

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章