use of com.android.tools.build.bundletool.device.Device.FilePullParams in project bundletool by google.
the class ConnectedDeviceModeTransparencyChecker method checkTransparency.
public static TransparencyCheckResult checkTransparency(CheckTransparencyCommand command) {
command.getAdbServer().get().init(command.getAdbPath().get());
AdbRunner adbRunner = new AdbRunner(command.getAdbServer().get());
Device adbDevice = getDevice(command.getAdbServer().get(), command.getDeviceId());
// Execute a shell command to retrieve paths to all APKs for the given package name.
AdbShellCommandTask adbShellCommandTask = new AdbShellCommandTask(adbDevice, "pm path " + command.getPackageName().get());
ImmutableList<String> pathsToApksOnDevice = adbShellCommandTask.execute().stream().filter(path -> path.startsWith(APK_PATH_ON_DEVICE_PREFIX)).map(path -> path.substring(APK_PATH_ON_DEVICE_PREFIX.length())).collect(toImmutableList());
if (pathsToApksOnDevice.isEmpty()) {
throw InvalidCommandException.builder().withInternalMessage("No files found for package " + command.getPackageName().get()).build();
}
// Pull APKs to a temporary directory and verify code transparency.
try (TempDirectory tempDir = new TempDirectory("connected-device-transparency-check")) {
Path apksExtractedSubDirectory = tempDir.getPath().resolve("extracted");
Files.createDirectory(apksExtractedSubDirectory);
ImmutableList<FilePullParams> pullParams = createPullParams(pathsToApksOnDevice, apksExtractedSubDirectory);
if (command.getDeviceId().isPresent()) {
adbRunner.run(device -> device.pull(pullParams), command.getDeviceId().get());
} else {
adbRunner.run(device -> device.pull(pullParams));
}
return ApkTransparencyCheckUtils.checkTransparency(pullParams.stream().map(FilePullParams::getDestinationPath).collect(toImmutableList()));
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
Aggregations