com.android.builder.internal.compiler.AidlProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of builder Show documentation
Show all versions of builder Show documentation
Library to build Android applications.
/*
* Copyright (C) 2012 The Android Open Source Project
*
* 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.android.builder.internal.compiler;
import com.android.annotations.NonNull;
import com.android.annotations.Nullable;
import com.android.builder.compiling.DependencyFileProcessor;
import com.android.builder.internal.incremental.DependencyData;
import com.android.ide.common.process.ProcessException;
import com.android.ide.common.process.ProcessExecutor;
import com.android.ide.common.process.ProcessInfoBuilder;
import com.android.ide.common.process.ProcessOutputHandler;
import com.android.ide.common.process.ProcessResult;
import com.android.sdklib.io.FileOp;
import com.google.common.io.Files;
import java.io.File;
import java.io.IOException;
import java.util.List;
/**
* A Source File processor for AIDL files. This compiles each aidl file found by the SourceSearcher.
*/
public class AidlProcessor implements SourceSearcher.SourceFileProcessor {
@NonNull
private final String mAidlExecutable;
@NonNull
private final String mFrameworkLocation;
@NonNull
private final List mImportFolders;
@NonNull
private final File mSourceOutputDir;
@Nullable
private final File mParcelableOutputDir;
@NonNull
private final DependencyFileProcessor mDependencyFileProcessor;
@NonNull
private final ProcessExecutor mProcessExecutor;
@NonNull
private final ProcessOutputHandler mProcessOutputHandler;
public AidlProcessor(
@NonNull String aidlExecutable,
@NonNull String frameworkLocation,
@NonNull List importFolders,
@NonNull File sourceOutputDir,
@Nullable File parcelableOutputDir,
@NonNull DependencyFileProcessor dependencyFileProcessor,
@NonNull ProcessExecutor processExecutor,
@NonNull ProcessOutputHandler processOutputHandler) {
mAidlExecutable = aidlExecutable;
mFrameworkLocation = frameworkLocation;
mImportFolders = importFolders;
mSourceOutputDir = sourceOutputDir;
mParcelableOutputDir = parcelableOutputDir;
mDependencyFileProcessor = dependencyFileProcessor;
mProcessExecutor = processExecutor;
mProcessOutputHandler = processOutputHandler;
}
@Override
public void processFile(@NonNull File sourceFolder, @NonNull File sourceFile)
throws ProcessException, IOException {
ProcessInfoBuilder builder = new ProcessInfoBuilder();
builder.setExecutable(mAidlExecutable);
builder.addArgs("-p" + mFrameworkLocation);
builder.addArgs("-o" + mSourceOutputDir.getAbsolutePath());
// add all the library aidl folders to access parcelables that are in libraries
for (File f : mImportFolders) {
builder.addArgs("-I" + f.getAbsolutePath());
}
// create a temp file for the dependency
File depFile = File.createTempFile("aidl", ".d");
builder.addArgs("-d" + depFile.getAbsolutePath());
builder.addArgs(sourceFile.getAbsolutePath());
ProcessResult result = mProcessExecutor.execute(
builder.createProcess(), mProcessOutputHandler);
result.rethrowFailure().assertNormalExitValue();
// send the dependency file to the processor.
DependencyData data = mDependencyFileProcessor.processFile(depFile);
if (mParcelableOutputDir != null && data != null && data.getOutputFiles().isEmpty()) {
// looks like a parcelable. Store it in the 2ndary output of the DependencyData object.
String relative = FileOp.makeRelative(sourceFolder, sourceFile);
File destFile = new File(mParcelableOutputDir, relative);
destFile.getParentFile().mkdirs();
Files.copy(sourceFile, destFile);
data.addSecondaryOutputFile(destFile.getPath());
}
depFile.delete();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy