blob: f6ee5994cbd49de4d5ebd2b988ad16eb5cd30c4a [file] [log] [blame]
/*
* 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.ignite.internal.management;
import java.util.function.Consumer;
import org.apache.ignite.Ignite;
import org.apache.ignite.cluster.ClusterState;
import org.apache.ignite.internal.client.GridClient;
import org.apache.ignite.internal.client.GridClientException;
import org.apache.ignite.internal.cluster.IgniteClusterEx;
import org.apache.ignite.internal.management.api.LocalCommand;
import org.jetbrains.annotations.Nullable;
/** */
public class SetStateCommand implements LocalCommand<SetStateCommandArg, Boolean> {
/** {@inheritDoc} */
@Override public String description() {
return "Change cluster state";
}
/** {@inheritDoc} */
@Override public Class<SetStateCommandArg> argClass() {
return SetStateCommandArg.class;
}
/** {@inheritDoc} */
@Override public Boolean execute(
@Nullable GridClient cli,
@Nullable Ignite ignite,
SetStateCommandArg arg,
Consumer<String> printer
) throws GridClientException {
ClusterState clusterState = cli != null ? cli.state().state() : ignite.cluster().state();
if (clusterState == arg.state()) {
printer.accept("Cluster state is already " + arg.state() + '.');
return false;
}
if (cli != null)
cli.state().state(arg.state(), arg.force());
else
((IgniteClusterEx)ignite.cluster()).state(arg.state(), arg.force());
printer.accept("Cluster state changed to " + arg.state() + '.');
return true;
}
/** {@inheritDoc} */
@Override public String confirmationPrompt(SetStateCommandArg arg) {
return "Warning: the command will change state of cluster " +
"with name \"" + arg.clusterName() + "\" to " + arg.state() + ".";
}
}