/* * Copyright 2016-present Facebook, 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 com.facebook.buck.js; import com.facebook.buck.io.ProjectFilesystem; import com.facebook.buck.shell.WorkerJobParams; import com.facebook.buck.shell.WorkerProcessParams; import com.facebook.buck.shell.WorkerProcessPoolFactory; import com.facebook.buck.shell.WorkerShellStep; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import java.nio.file.Path; import java.util.Optional; public class ReactNativeDepsWorkerStep extends WorkerShellStep { public ReactNativeDepsWorkerStep( ProjectFilesystem filesystem, Path tmpDir, ImmutableList<String> jsPackagerCommand, Optional<String> additionalPackagerFlags, ReactNativePlatform platform, Path entryFile, Path outputFile) { super( Optional.of( WorkerJobParams.of( String.format( "--command dependencies --platform %s --entry-file %s --output %s", platform.toString(), entryFile.toString(), outputFile.toString()), WorkerProcessParams.of( filesystem.resolve(tmpDir), jsPackagerCommand, String.format( "--platform %s%s", platform.toString(), additionalPackagerFlags.isPresent() ? " " + additionalPackagerFlags.get() : ""), ImmutableMap.of(), 1, Optional.empty(), Optional.empty()))), Optional.empty(), Optional.empty(), new WorkerProcessPoolFactory(filesystem)); } @Override public String getShortName() { return "react-native-deps-worker"; } }