blob: d62d73058ea143818125233fd85ca360d2afb306 [file] [log] [blame]
/*
* Copyright (C) 2016 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.packaging;
import com.android.annotations.NonNull;
import com.android.annotations.Nullable;
import java.io.Closeable;
import java.io.File;
import java.io.IOException;
import java.util.function.Function;
import java.util.function.Predicate;
/**
* Creates or updates APKs based on provided entries.
*/
public interface ApkCreator extends Closeable {
/**
* Copies the content of a Jar/Zip archive into the receiver archive.
* <p>
* An optional {@link ZipEntryFilter} allows to selectively choose which files
* to copy over.
*
* @param zip the zip to copy data from
* @param transform an optional transform to apply to file names before copying them
* @param isIgnored an optional filter or {@code null} to mark which out files should not be
* added, even through they are on the zip; if {@code transform} is specified, then this
* predicate applies after transformation
* @throws IOException I/O error
*/
void writeZip(@NonNull File zip, @Nullable Function<String, String> transform,
@Nullable Predicate<String> isIgnored) throws IOException;
/**
* Writes a new {@link File} into the archive. If a file already existed with the given
* path, it should be replaced.
*
* @param inputFile the {@link File} to write.
* @param apkPath the filepath inside the archive.
* @throws IOException I/O error
*/
void writeFile(@NonNull File inputFile, @NonNull String apkPath) throws IOException;
/**
* Deletes a file in a given path.
*
* @param apkPath the path to remove
* @throws IOException failed to remove the entry
*/
void deleteFile(@NonNull String apkPath) throws IOException;
}