/* * Copyright © 2016 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; import co.cask.cdap.cli.ArgumentName; import co.cask.cdap.cli.CLIConfig; import co.cask.cdap.cli.ElementType; import co.cask.cdap.cli.exception.CommandInputError; import co.cask.cdap.cli.util.AbstractCommand; import co.cask.cdap.cli.util.RowMaker; import co.cask.cdap.cli.util.table.Table; import co.cask.cdap.client.WorkflowClient; import co.cask.cdap.common.NotFoundException; import co.cask.cdap.common.UnauthenticatedException; import co.cask.cdap.proto.DatasetSpecificationSummary; import co.cask.cdap.proto.ProgramType; import co.cask.cdap.proto.id.ProgramRunId; import co.cask.common.cli.Arguments; import com.google.common.collect.Lists; import java.io.IOException; import java.io.PrintStream; import java.util.ArrayList; import java.util.List; import java.util.Map; /** * Command to get the local datasets associated with the Workflow run. */ public class GetWorkflowLocalDatasetsCommand extends AbstractCommand { private final ElementType elementType; private final WorkflowClient workflowClient; public GetWorkflowLocalDatasetsCommand(WorkflowClient workflowClient, CLIConfig cliConfig) { super(cliConfig); this.elementType = ElementType.WORKFLOW; this.workflowClient = workflowClient; } @Override public void perform(Arguments arguments, PrintStream printStream) throws Exception { String[] programIdParts = arguments.get(elementType.getArgumentName().toString()).split("\\."); if (programIdParts.length < 2) { throw new CommandInputError(this); } ProgramRunId programRunId = new ProgramRunId(cliConfig.getCurrentNamespace().getId(), programIdParts[0], ProgramType.WORKFLOW, programIdParts[1], arguments.get(ArgumentName.RUN_ID.toString())); Table table = getWorkflowLocalDatasets(programRunId); cliConfig.getTableRenderer().render(cliConfig, printStream, table); } @Override public String getPattern() { return String.format("get workflow local datasets <%s> <%s>", elementType.getArgumentName(), ArgumentName.RUN_ID); } @Override public String getDescription() { return "Gets the local datasets associated with the workflow for a given run ID"; } private Table getWorkflowLocalDatasets(ProgramRunId programRunId) throws UnauthenticatedException, IOException, NotFoundException { Map<String, DatasetSpecificationSummary> workflowLocalDatasets = workflowClient.getWorkflowLocalDatasets(programRunId); List<Map.Entry<String, DatasetSpecificationSummary>> localDatasetSummaries = new ArrayList<>(); localDatasetSummaries.addAll(workflowLocalDatasets.entrySet()); return Table.builder() .setHeader("name", "workflow local name", "type") .setRows(localDatasetSummaries, new RowMaker<Map.Entry<String, DatasetSpecificationSummary>>() { @Override public List<?> makeRow(Map.Entry<String, DatasetSpecificationSummary> object) { return Lists.newArrayList(object.getKey(), object.getValue().getName(), object.getValue().getType()); } }).build(); } }