DataNodeStorage.java 2.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
 * Copyright 1999-2015 dangdang.com.
 * <p>
 * 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.
 * </p>
 */

package io.shardingjdbc.orchestration.internal.storage;

import io.shardingjdbc.orchestration.reg.base.CoordinatorRegistryCenter;
import org.apache.curator.framework.recipes.cache.TreeCache;
import org.apache.curator.framework.recipes.cache.TreeCacheListener;

/**
 * Data node storage.
 * 
 * @author caohao
 */
public final class DataNodeStorage {
    
    private final String name;
    
T
terrymanu 已提交
33 34
    private final CoordinatorRegistryCenter regCenter;
    
35 36
    private final DataNodePath nodePath;
    
T
terrymanu 已提交
37
    public DataNodeStorage(final String name, final CoordinatorRegistryCenter regCenter) {
38
        this.name = name;
T
terrymanu 已提交
39
        this.regCenter = regCenter;
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
        nodePath = new DataNodePath(name);
    }
    
    /**
     * Justify if node path exists.
     * 
     * @param node node 
     * @return is node path exists
     */
    public boolean isNodeExisted(final String node) {
        return regCenter.isExisted(nodePath.getFullPath(node));
    }
    
    /**
     * Get node data.
     * 
     * @param node node name
     * @return node data
     */
    public String getNodeData(final String node) {
        return regCenter.get(nodePath.getFullPath(node));
    }
    
    /**
     * Fill node data.
     *
     * @param node node name
     * @param value node value
     */
    public void fillNode(final String node, final Object value) {
        regCenter.persist(nodePath.getFullPath(node), value.toString());
    }
    
    /**
     * Fill ephemeral node data.
     * 
     * @param node node name
     * @param value node value
     */
    public void fillEphemeralNode(final String node, final Object value) {
        regCenter.persistEphemeral(nodePath.getFullPath(node), value.toString());
    }
    
    /**
     * Add data listener.
     * 
     * @param listener data listener
     */
    public void addDataListener(final TreeCacheListener listener) {
        TreeCache cache = (TreeCache) regCenter.getRawCache("/" + name);
        cache.getListenable().addListener(listener);
    }
}