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

org.apache.asterix.installer.command.DescribeCommand Maven / Gradle / Ivy

/*
 * 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.asterix.installer.command;

import java.util.List;

import org.kohsuke.args4j.Option;

import org.apache.asterix.event.error.VerificationUtil;
import org.apache.asterix.event.model.AsterixInstance;
import org.apache.asterix.event.model.AsterixInstance.State;
import org.apache.asterix.event.model.AsterixRuntimeState;
import org.apache.asterix.event.service.AsterixEventServiceUtil;
import org.apache.asterix.event.service.ServiceProvider;
import org.apache.asterix.installer.driver.InstallerDriver;
import org.apache.asterix.installer.error.InstallerException;

public class DescribeCommand extends AbstractCommand {

    @Override
    protected void execCommand() throws Exception {
        InstallerDriver.initConfig(true);
        String asterixInstanceName = ((DescribeConfig) config).name;
        boolean adminView = ((DescribeConfig) config).admin;
        if (asterixInstanceName != null) {
            AsterixEventServiceUtil.validateAsterixInstanceExists(asterixInstanceName, State.INACTIVE, State.ACTIVE,
                    State.UNUSABLE);
            AsterixInstance instance = ServiceProvider.INSTANCE.getLookupService().getAsterixInstance(
                    asterixInstanceName);
            if (instance != null) {
                AsterixRuntimeState state = VerificationUtil.getAsterixRuntimeState(instance);
                boolean expectedRunning = instance.getState().equals(State.UNUSABLE) ? instance.getPreviousState()
                        .equals(State.ACTIVE) : !instance.getState().equals(State.INACTIVE);
                VerificationUtil.updateInstanceWithRuntimeDescription(instance, state, expectedRunning);
                ServiceProvider.INSTANCE.getLookupService().updateAsterixInstance(instance);
                LOGGER.info(instance.getDescription(adminView));
            } else {
                throw new InstallerException("Asterix instance by the name " + asterixInstanceName + " does not exist.");
            }
        } else {
            List asterixInstances = ServiceProvider.INSTANCE.getLookupService().getAsterixInstances();
            if (asterixInstances.size() > 0) {
                for (AsterixInstance instance : asterixInstances) {
                    AsterixRuntimeState state = VerificationUtil.getAsterixRuntimeState(instance);
                    boolean expectedRunning = instance.getState().equals(State.UNUSABLE) ? instance.getPreviousState()
                            .equals(State.ACTIVE) : !instance.getState().equals(State.INACTIVE);
                    VerificationUtil.updateInstanceWithRuntimeDescription(instance, state, expectedRunning);
                    ServiceProvider.INSTANCE.getLookupService().updateAsterixInstance(instance);
                    LOGGER.info(instance.getDescription(adminView));
                }
            } else {
                LOGGER.info("No Asterix instances found!");
            }

        }
    }

    @Override
    protected CommandConfig getCommandConfig() {
        return new DescribeConfig();
    }

    @Override
    protected String getUsageDescription() {
        return "\nProvides information about an ASTERIX instance." + "\n\nUsage arguments/options:-"
                + "\n[-n]       Name of the ASTERIX instance." + "\n[-admin]   Provides a detailed description";
    }

}

class DescribeConfig extends CommandConfig {

    @Option(name = "-n", required = false, usage = "Name of Asterix Instance")
    public String name;

    @Option(name = "-admin", required = false, usage = "Detailed description")
    public boolean admin;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy