/* * Copyright © 2014-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.internal.app.deploy.pipeline; import co.cask.cdap.api.ProgramSpecification; import co.cask.cdap.api.app.ApplicationSpecification; import co.cask.cdap.api.webapp.WebappSpecification; import co.cask.cdap.app.program.Program; import co.cask.cdap.app.program.Programs; import co.cask.cdap.archive.ArchiveBundler; import co.cask.cdap.common.conf.CConfiguration; import co.cask.cdap.common.conf.Constants; import co.cask.cdap.common.io.Locations; import co.cask.cdap.common.namespace.NamespacedLocationFactory; import co.cask.cdap.internal.app.program.ProgramBundle; import co.cask.cdap.internal.app.runtime.webapp.WebappProgramRunner; import co.cask.cdap.pipeline.AbstractStage; import co.cask.cdap.proto.Id; import co.cask.cdap.proto.ProgramType; import co.cask.cdap.proto.ProgramTypes; import co.cask.cdap.proto.security.Action; import co.cask.cdap.security.spi.authentication.SecurityRequestContext; import co.cask.cdap.security.spi.authorization.Authorizer; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; import com.google.common.reflect.TypeToken; import com.google.common.util.concurrent.Futures; import com.google.common.util.concurrent.ListenableFuture; import com.google.common.util.concurrent.ListeningExecutorService; import com.google.common.util.concurrent.MoreExecutors; import org.apache.twill.common.Threads; import org.apache.twill.filesystem.Location; import java.io.IOException; import java.util.List; import java.util.Locale; import java.util.Set; import java.util.concurrent.Callable; import java.util.concurrent.Executors; /** * */ public class ProgramGenerationStage extends AbstractStage<ApplicationDeployable> { private final CConfiguration configuration; private final NamespacedLocationFactory namespacedLocationFactory; private final Authorizer authorizer; public ProgramGenerationStage(CConfiguration configuration, NamespacedLocationFactory namespacedLocationFactory, Authorizer authorizer) { super(TypeToken.of(ApplicationDeployable.class)); this.configuration = configuration; this.namespacedLocationFactory = namespacedLocationFactory; this.authorizer = authorizer; } @Override public void process(final ApplicationDeployable input) throws Exception { ImmutableList.Builder<Program> programs = ImmutableList.builder(); final ApplicationSpecification appSpec = input.getSpecification(); final String applicationName = appSpec.getName(); final ArchiveBundler bundler = new ArchiveBundler(input.getLocation()); // Make sure the namespace directory exists Id.Namespace namespaceId = input.getId().getNamespace(); Location namespacedLocation = namespacedLocationFactory.get(namespaceId); // Note: deployApplication/deployAdapters have already checked for namespaceDir existence, so not checking again // Make sure we have a directory to store the original artifact. final Location appFabricDir = namespacedLocation.append(configuration.get(Constants.AppFabric.OUTPUT_DIR)); // Check exists, create, check exists again to avoid failure due to race condition. if (!appFabricDir.exists() && !appFabricDir.mkdirs() && !appFabricDir.exists()) { throw new IOException(String.format("Failed to create directory %s", appFabricDir)); } // Now, we iterate through all ProgramSpecification and generate programs Iterable<ProgramSpecification> specifications = Iterables.concat( appSpec.getMapReduce().values(), appSpec.getFlows().values(), appSpec.getWorkflows().values(), appSpec.getServices().values(), appSpec.getSpark().values(), appSpec.getWorkers().values() ); // Generate webapp program if required Set<String> servingHostNames = WebappProgramRunner.getServingHostNames( Locations.newInputSupplier(input.getLocation())); if (!servingHostNames.isEmpty()) { specifications = Iterables.concat(specifications, ImmutableList.of( createWebappSpec(ProgramType.WEBAPP.toString().toLowerCase()))); } ListeningExecutorService executorService = MoreExecutors.listeningDecorator( Executors.newFixedThreadPool(10, Threads.createDaemonThreadFactory("program-gen-%d")) ); try { List<ListenableFuture<Location>> futures = Lists.newArrayList(); for (final ProgramSpecification spec: specifications) { ListenableFuture<Location> future = executorService.submit( new Callable<Location>() { @Override public Location call() throws Exception { ProgramType type = ProgramTypes.fromSpecification(spec); String name = String.format(Locale.ENGLISH, "%s/%s", applicationName, type); Location programDir = appFabricDir.append(name); if (!programDir.exists()) { programDir.mkdirs(); } Location output = programDir.append(String.format("%s.jar", spec.getName())); Id.Program programId = Id.Program.from(input.getId(), type, spec.getName()); Location programLocation = ProgramBundle.create(programId, bundler, output, spec.getClassName(), appSpec); authorizer.grant(programId.toEntityId(), SecurityRequestContext.toPrincipal(), ImmutableSet.of(Action.ALL)); return programLocation; } }); futures.add(future); } for (Location jarLocation : Futures.allAsList(futures).get()) { programs.add(Programs.create(jarLocation, null)); } } finally { executorService.shutdown(); } // TODO: (CDAP-2662) remove after app templates are gone if (input.getSpecification().getArtifactId() == null) { // moves the <appfabricdir>/archive/<app-name>.jar to <appfabricdir>/<app-name>/archive/<app-name>.jar // Cannot do this before starting the deploy pipeline because appId could be null at that time. // However, it is guaranteed to be non-null from VerificationsStage onwards Id.Application appId = Id.Application.from(namespaceId, applicationName); Location newArchiveLocation = getAppArchiveDirLocation(configuration, appId, namespacedLocationFactory); moveAppArchiveUnderAppDirectory(input.getLocation(), newArchiveLocation); Location programLocation = newArchiveLocation.append(input.getLocation().getName()); ApplicationDeployable updatedAppDeployable = new ApplicationDeployable(input.getId(), input.getSpecification(), input.getExistingAppSpec(), input.getApplicationDeployScope(), programLocation); // Emits the received specification with programs. emit(new ApplicationWithPrograms(updatedAppDeployable, programs.build())); } else { emit(new ApplicationWithPrograms(input, programs.build())); } } /** * Legacy method to get the location of the directory of an application jar. This is used for cdap upgrades. * New Apps use the artifact repository instead of this. * * @param configuration the cdap configuration * @param appId the id of the application * @param namespacedLocationFactory the namespaced location factory to generate locations * @return the expected location of the application jar * @throws IOException */ public static Location getAppArchiveDirLocation(CConfiguration configuration, Id.Application appId, NamespacedLocationFactory namespacedLocationFactory) throws IOException { Location namespacedLocation = namespacedLocationFactory.get(appId.getNamespace()); // Note: deployApplication/deployAdapters have already checked for namespaceDir existence, so not checking again // Make sure we have a directory to store the original artifact. final Location appFabricDir = namespacedLocation.append(configuration.get(Constants.AppFabric.OUTPUT_DIR)); return appFabricDir.append(appId.getId()).append(Constants.ARCHIVE_DIR); } private void moveAppArchiveUnderAppDirectory(Location origArchiveLocation, Location newArchiveLocation) throws IOException { Location oldArchiveDir = Locations.getParent(origArchiveLocation); Location applicationArchiveDir = Locations.getParent(newArchiveLocation); // This directory should already be created by now. // However, it may not be present during unit tests that do not go through the create namespace -> deploy app path Locations.mkdirsIfNotExists(applicationArchiveDir); // TODO: Remove this with the artifacts manager, since artifact are immutable if (newArchiveLocation.exists()) { // this is from an older deployment newArchiveLocation.delete(true); } if (oldArchiveDir.renameTo(newArchiveLocation) == null) { throw new IOException(String.format("Could not move archive from location: %s, to location: %s", oldArchiveDir, newArchiveLocation)); } } private WebappSpecification createWebappSpec(final String name) { return new WebappSpecification() { @Override public String getClassName() { return ""; } @Override public String getName() { return name; } @Override public String getDescription() { return ""; } }; } }