All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fusesource.fabric.commands.support.ZNodeCompleter Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (C) FuseSource, Inc.
 * http://fusesource.com
 *
 * 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 org.fusesource.fabric.commands.support;

import java.util.List;

import org.apache.karaf.shell.console.Completer;
import org.fusesource.fabric.zookeeper.IZKClient;

public class ZNodeCompleter implements Completer {
    private IZKClient zk;

    public ZNodeCompleter() {
    }

    public void setZooKeeper(IZKClient zk) {
        this.zk = zk;
    }

    @SuppressWarnings("unchecked")
    public int complete(String buffer, int cursor, List candidates) {
        try {
            if (zk.isConnected()) {
                // Guarantee that the final token is the one we're expanding
                if (buffer == null) {
                    candidates.add("/");
                    return 1;
                } else if (!buffer.startsWith("/")) {
                    return 0;
                }
                buffer = buffer.substring(0, cursor);
                String path = buffer;
                int idx = path.lastIndexOf("/") + 1;
                String prefix = path.substring(idx);
                // Only the root path can end in a /, so strip it off every other prefix
                String dir = idx == 1 ? "/" : path.substring(0, idx - 1);
                List children = zk.getChildren(dir, false);
                for (String child : children) {
                    if (child.startsWith(prefix)) {
                        candidates.add(child);
                    }
                }
                return candidates.size() == 0 ? buffer.length() : buffer.lastIndexOf("/") + 1;
            }
        } catch (Exception e) {
            // Ignore
        }
        return 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy