com.dasasian.chok.util.DefaultNameSpaceImpl Maven / Gradle / Ivy
/**
* Copyright (C) 2014 Dasasian ([email protected])
*
* Licensed 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 com.dasasian.chok.util;
import com.dasasian.chok.util.ZkConfiguration.PathDef;
import org.I0Itec.zkclient.IDefaultNameSpace;
import org.I0Itec.zkclient.ZkClient;
import org.I0Itec.zkclient.exception.ZkNodeExistsException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Implements the default name space in zookeeper for this chok instance.
*/
public class DefaultNameSpaceImpl implements IDefaultNameSpace {
private static final Logger LOG = LoggerFactory.getLogger(DefaultNameSpaceImpl.class);
private final ZkConfiguration _conf;
public DefaultNameSpaceImpl(ZkConfiguration conf) {
_conf = conf;
}
@Override
public void createDefaultNameSpace(ZkClient zkClient) {
LOG.debug("Creating default File structure if required....");
safeCreate(zkClient, _conf.getRootPath());
PathDef[] values = PathDef.values();
for (PathDef pathDef : values) {
if (pathDef != PathDef.MASTER && pathDef != PathDef.VERSION) {
safeCreate(zkClient, _conf.getPath(pathDef));
}
}
}
private void safeCreate(ZkClient zkClient, String path) {
try {
// first create parent directories
String parent = ZkConfiguration.getParent(path);
if (parent != null && !zkClient.exists(parent)) {
safeCreate(zkClient, parent);
}
zkClient.createPersistent(path);
} catch (ZkNodeExistsException e) {
// Ignore if the node already exists.
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy