Package org.apache.accumulo.core.zookeeper

Source Code of org.apache.accumulo.core.zookeeper.ZooReader

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package org.apache.accumulo.core.zookeeper;

import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;

import org.apache.accumulo.core.client.Instance;
import org.apache.zookeeper.AsyncCallback.VoidCallback;
import org.apache.zookeeper.KeeperException;
import org.apache.zookeeper.KeeperException.Code;
import org.apache.zookeeper.Watcher;
import org.apache.zookeeper.ZooKeeper;
import org.apache.zookeeper.data.Stat;

public class ZooReader implements IZooReader {
  protected String keepers;
  protected int timeout;

  protected ZooKeeper getSession(String keepers, int timeout, String auth) {
    return ZooSession.getSession(keepers, timeout, auth);
  }

  protected ZooKeeper getZooKeeper() {
    return getSession(keepers, timeout, null);
  }

  @Override
  public byte[] getData(String zPath, Stat stat) throws KeeperException, InterruptedException {
    return getZooKeeper().getData(zPath, false, stat);
  }

  @Override
  public Stat getStatus(String zPath) throws KeeperException, InterruptedException {
    return getZooKeeper().exists(zPath, false);
  }

  @Override
  public Stat getStatus(String zPath, Watcher watcher) throws KeeperException, InterruptedException {
    return getZooKeeper().exists(zPath, watcher);
  }

  @Override
  public List<String> getChildren(String zPath) throws KeeperException, InterruptedException {
    return getZooKeeper().getChildren(zPath, false);
  }

  @Override
  public List<String> getChildren(String zPath, Watcher watcher) throws KeeperException, InterruptedException {
    return getZooKeeper().getChildren(zPath, watcher);
  }

  @Override
  public boolean exists(String zPath) throws KeeperException, InterruptedException {
    return getZooKeeper().exists(zPath, false) != null;
  }

  @Override
  public boolean exists(String zPath, Watcher watcher) throws KeeperException, InterruptedException {
    return getZooKeeper().exists(zPath, watcher) != null;
  }

  @Override
  public void sync(final String path) throws KeeperException, InterruptedException {
    final AtomicInteger rc = new AtomicInteger();
    final AtomicBoolean waiter = new AtomicBoolean(false);
    getZooKeeper().sync(path, new VoidCallback() {
      @Override
      public void processResult(int code, String arg1, Object arg2) {
        rc.set(code);
        synchronized (waiter) {
          waiter.set(true);
          waiter.notifyAll();
        }
      }
    }, null);
    synchronized (waiter) {
      while (!waiter.get())
        waiter.wait();
    }
    Code code = Code.get(rc.get());
    if (code != KeeperException.Code.OK) {
      throw KeeperException.create(code);
    }
  }

  public ZooReader(String keepers, int timeout) {
    this.keepers = keepers;
    this.timeout = timeout;
  }

  public ZooReader(Instance instance) {
    this(instance.getZooKeepers(), instance.getZooKeepersSessionTimeOut());
  }
}
TOP

Related Classes of org.apache.accumulo.core.zookeeper.ZooReader

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.