Example #1
0
  @Override
  public void close() throws IOException {
    if (!state.compareAndSet(State.STARTED, State.CLOSED)) {
      return;
    }

    client.getConnectionStateListenable().removeListener(connectionStateListener);

    try {
      deleteNode();
    } catch (Exception e) {
      ThreadUtils.checkInterrupted(e);
      throw new IOException(e);
    }
  }
Example #2
0
  private void createNode() {
    if (!isActive()) {
      return;
    }

    try {
      String existingPath = nodePath.get();
      String createPath = (existingPath != null && !useProtection) ? existingPath : basePath;
      createMethod
          .withMode(getCreateMode(existingPath != null))
          .inBackground(backgroundCallback)
          .forPath(createPath, data.get());
    } catch (Exception e) {
      ThreadUtils.checkInterrupted(e);
      throw new RuntimeException(
          "Creating node. BasePath: " + basePath,
          e); // should never happen unless there's a programming error - so throw RuntimeException
    }
  }
 /**
  * Allocate a new builder. {@link ServiceProviderBuilder#providerStrategy} is set to {@link
  * RoundRobinStrategy}
  *
  * @return the builder
  */
 @Override
 public ServiceProviderBuilder<T> serviceProviderBuilder() {
   return new ServiceProviderBuilderImpl<T>(this)
       .providerStrategy(new RoundRobinStrategy<T>())
       .threadFactory(ThreadUtils.newThreadFactory("ServiceProvider"));
 }
 /**
  * Allocate a new service cache builder. The refresh padding is defaulted to 1 second.
  *
  * @return new cache builder
  */
 @Override
 public ServiceCacheBuilder<T> serviceCacheBuilder() {
   return new ServiceCacheBuilderImpl<T>(this)
       .threadFactory(ThreadUtils.newThreadFactory("ServiceCache"));
 }
public class TestLeaderSelectorWithExecutor extends BaseClassForTests {
  private static final ThreadFactory threadFactory = ThreadUtils.newThreadFactory("FeedGenerator");

  @Test
  public void test() throws Exception {
    Timing timing = new Timing();
    LeaderSelector leaderSelector = null;
    CuratorFramework client =
        CuratorFrameworkFactory.builder()
            .retryPolicy(new ExponentialBackoffRetry(100, 3))
            .connectString(server.getConnectString())
            .sessionTimeoutMs(timing.session())
            .connectionTimeoutMs(timing.connection())
            .build();
    try {
      client.start();

      MyLeaderSelectorListener listener = new MyLeaderSelectorListener();
      ExecutorService executorPool = Executors.newFixedThreadPool(20);
      leaderSelector = new LeaderSelector(client, "/test", threadFactory, executorPool, listener);

      leaderSelector.autoRequeue();
      leaderSelector.start();

      timing.sleepABit();

      Assert.assertEquals(listener.getLeaderCount(), 1);
    } finally {
      CloseableUtils.closeQuietly(leaderSelector);
      CloseableUtils.closeQuietly(client);
    }
  }

  private class MyLeaderSelectorListener implements LeaderSelectorListener {
    private volatile Thread ourThread;
    private final AtomicInteger leaderCount = new AtomicInteger(0);

    public int getLeaderCount() {
      return leaderCount.get();
    }

    @Override
    public void takeLeadership(CuratorFramework curatorFramework) throws Exception {
      ourThread = Thread.currentThread();
      try {
        leaderCount.incrementAndGet();
        while (!Thread.currentThread().isInterrupted()) {
          Thread.sleep(1000);
        }
      } catch (InterruptedException e) {
        Thread.currentThread().interrupt();
      } finally {
        leaderCount.decrementAndGet();
      }
    }

    @Override
    public void stateChanged(CuratorFramework curatorFramework, ConnectionState newState) {
      if ((newState == ConnectionState.LOST) || (newState == ConnectionState.SUSPENDED)) {
        if (ourThread != null) {
          ourThread.interrupt();
        }
      }
    }
  }
}