View Javadoc
1   /*
2    * Copyright 2016 The Netty Project
3    *
4    * The Netty Project licenses this file to you under the Apache License,
5    * version 2.0 (the "License"); you may not use this file except in compliance
6    * with the License. You may obtain a copy of the License at:
7    *
8    *   https://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13   * License for the specific language governing permissions and limitations
14   * under the License.
15   */
16  package io.netty.util.concurrent;
17  
18  import java.util.concurrent.atomic.AtomicInteger;
19  import java.util.concurrent.atomic.AtomicLong;
20  
21  /**
22   * Default implementation which uses simple round-robin to choose next {@link EventExecutor}.
23   */
24  public final class DefaultEventExecutorChooserFactory implements EventExecutorChooserFactory {
25  
26      public static final DefaultEventExecutorChooserFactory INSTANCE = new DefaultEventExecutorChooserFactory();
27  
28      private DefaultEventExecutorChooserFactory() { }
29  
30      @Override
31      public EventExecutorChooser newChooser(EventExecutor[] executors) {
32          if (isPowerOfTwo(executors.length)) {
33              return new PowerOfTwoEventExecutorChooser(executors);
34          } else {
35              return new GenericEventExecutorChooser(executors);
36          }
37      }
38  
39      private static boolean isPowerOfTwo(int val) {
40          return (val & -val) == val;
41      }
42  
43      private static final class PowerOfTwoEventExecutorChooser implements EventExecutorChooser {
44          private final AtomicInteger idx = new AtomicInteger();
45          private final EventExecutor[] executors;
46  
47          PowerOfTwoEventExecutorChooser(EventExecutor[] executors) {
48              this.executors = executors;
49          }
50  
51          @Override
52          public EventExecutor next() {
53              return executors[idx.getAndIncrement() & executors.length - 1];
54          }
55      }
56  
57      private static final class GenericEventExecutorChooser implements EventExecutorChooser {
58          // Use a 'long' counter to avoid non-round-robin behaviour at the 32-bit overflow boundary.
59          // The 64-bit long solves this by placing the overflow so far into the future, that no system
60          // will encounter this in practice.
61          private final AtomicLong idx = new AtomicLong();
62          private final EventExecutor[] executors;
63  
64          GenericEventExecutorChooser(EventExecutor[] executors) {
65              this.executors = executors;
66          }
67  
68          @Override
69          public EventExecutor next() {
70              return executors[(int) Math.abs(idx.getAndIncrement() % executors.length)];
71          }
72      }
73  }