當前位置: 首頁>>代碼示例>>Java>>正文


Java KeeperException.getPath方法代碼示例

本文整理匯總了Java中org.apache.zookeeper.KeeperException.getPath方法的典型用法代碼示例。如果您正苦於以下問題:Java KeeperException.getPath方法的具體用法?Java KeeperException.getPath怎麽用?Java KeeperException.getPath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.zookeeper.KeeperException的用法示例。


在下文中一共展示了KeeperException.getPath方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getMessage

import org.apache.zookeeper.KeeperException; //導入方法依賴的package包/類
private static String getMessage(Throwable cause) {
    if (cause instanceof  KeeperException) {
        KeeperException keeperException = (KeeperException) cause;
        if (keeperException instanceof KeeperException.NoNodeException) {
            return "Node does not exist: " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.NoChildrenForEphemeralsException) {
            return "Ephemerals cannot have children: " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.NodeExistsException) {
            return "Node already exists: " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.NotEmptyException) {
            return "Node not empty: " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.NotReadOnlyException) {
            return "Not a read-only call: " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.InvalidACLException) {
            return "Acl is not valid : " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.NoAuthException) {
            return "Authentication is not valid : " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.BadArgumentsException) {
            return "Arguments are not valid : " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.BadVersionException) {
            return "version No is not valid : " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.ReconfigInProgress) {
            return "Another reconfiguration is in progress -- concurrent " +
                    "reconfigs not supported (yet)";
        } else if (keeperException instanceof KeeperException.NewConfigNoQuorum) {
            return "No quorum of new config is connected and " +
                    "up-to-date with the leader of last commmitted config - try invoking reconfiguration after " +
                    "new servers are connected and synced";
        }
    }
    return cause.getMessage();
}
 
開發者ID:didichuxing2,項目名稱:https-github.com-apache-zookeeper,代碼行數:33,代碼來源:CliWrapperException.java

示例2: reportError

import org.apache.zookeeper.KeeperException; //導入方法依賴的package包/類
public static void reportError(Throwable t) {
    Throwable cause = t.getCause();
    if (cause != null && cause != t) {
        reportError(cause);
        return;
    }

    boolean showCustomErrorMessageDialog = false;
    int style = StatusManager.LOG;
    String title = "Error";
    String message = t.getLocalizedMessage();
    if (t instanceof KeeperException) {

        KeeperException ke = (KeeperException) t;

        title = "ZooKeeper Error";
        showCustomErrorMessageDialog = true;

        if (ke instanceof InvalidACLException) {
            title = "Invalid ACL";
            message = "ACL is invalid for '" + ke.getPath() + "'.";
        }
        else if (ke instanceof NodeExistsException) {
            title = "Znode Exists";
            message = "Znode '" + ke.getPath() + "' already exists.";
        }
        else if (ke instanceof NoAuthException) {
            title = "Not Authorized";
            message = "Not authorized to perform this action on '" + ke.getPath() + "'.";
        }
        else if (ke instanceof NoNodeException) {
            title = "No Znode";
            message = "Znode '" + ke.getPath() + "' does not exist.";
        }
        else if (ke instanceof NotEmptyException) {
            title = "Not Empty";
            message = "Znode '" + ke.getPath() + "' has children.";
        }

    }

    if (showCustomErrorMessageDialog) {
        MessageDialog.openError(Display.getCurrent().getActiveShell(), title, message);
    }
    else {
        style = style | StatusManager.BLOCK;
    }

    Status status = new Status(IStatus.ERROR, PLUGIN_ID, message, t);
    StatusManager.getManager().handle(status, style);
}
 
開發者ID:baloise,項目名稱:eZooKeeper,代碼行數:52,代碼來源:ZooKeeperActivator.java

示例3: toResponse

import org.apache.zookeeper.KeeperException; //導入方法依賴的package包/類
public Response toResponse(KeeperException e) {
    Response.Status status;
    String message;

    String path = e.getPath();

    switch(e.code()) {
    case AUTHFAILED:
        status = Response.Status.UNAUTHORIZED;
        message = path + " not authorized";
        break;
    case BADARGUMENTS:
        status = Response.Status.BAD_REQUEST;
        message = path + " bad arguments";
        break;
    case BADVERSION:
        status = Response.Status.PRECONDITION_FAILED;
        message = path + " bad version";
        break;
    case INVALIDACL:
        status = Response.Status.BAD_REQUEST;
        message = path + " invalid acl";
        break;
    case NODEEXISTS:
        status = Response.Status.CONFLICT;
        message = path + " already exists";
        break;
    case NONODE:
        status = Response.Status.NOT_FOUND;
        message = path + " not found";
        break;
    case NOTEMPTY:
        status = Response.Status.CONFLICT;
        message = path + " not empty";
        break;
    default:
        status = Response.Status.fromStatusCode(502); // bad gateway
        message = "Error processing request for " + path
            + " : " + e.getMessage();
    }

    return Response.status(status).entity(
            new ZError(ui.getRequestUri().toString(), message)).build();
}
 
開發者ID:maoling,項目名稱:fuck_zookeeper,代碼行數:45,代碼來源:KeeperExceptionMapper.java


注:本文中的org.apache.zookeeper.KeeperException.getPath方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。