/* * Copyright © 2015 Cask Data, Inc. * * 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 co.cask.cdap.cli.command.app; import co.cask.cdap.cli.ArgumentName; import co.cask.cdap.cli.CLIConfig; import co.cask.cdap.client.ApplicationClient; import co.cask.cdap.client.ProgramClient; import co.cask.cdap.proto.BatchProgram; import co.cask.cdap.proto.BatchProgramStart; import co.cask.cdap.proto.ProgramRecord; import com.google.inject.Inject; import java.io.PrintStream; import java.util.ArrayList; import java.util.List; /** * Restarts one or more programs in an application. */ public class RestartProgramsCommand extends BaseBatchCommand<BatchProgram> { private final ProgramClient programClient; @Inject public RestartProgramsCommand(ApplicationClient appClient, ProgramClient programClient, CLIConfig cliConfig) { super(appClient, cliConfig); this.programClient = programClient; } @Override protected BatchProgram createProgram(ProgramRecord programRecord) { return new BatchProgram(programRecord.getApp(), programRecord.getType(), programRecord.getName()); } @Override protected void runBatchCommand(PrintStream printStream, Args<BatchProgram> args) throws Exception { printStream.print("Stopping programs...\n"); programClient.stop(args.appId.getNamespace(), args.programs); printStream.print("Starting programs...\n"); List<BatchProgramStart> startList = new ArrayList<>(args.programs.size()); for (BatchProgram program : args.programs) { startList.add(new BatchProgramStart(program)); } programClient.start(args.appId.getNamespace(), startList); } @Override public String getPattern() { return String.format("restart app <%s> programs [of type <%s>]", ArgumentName.APP, ArgumentName.PROGRAM_TYPES); } @Override public String getDescription() { return getDescription("restart", "restarts"); } }