blob: 381928fc8f372b5611de97771e4dd5ae42023a5c [file] [log] [blame]
/*
* Copyright (C) 2020 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.zipflinger;
import com.android.annotations.NonNull;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Comparator;
public class StableArchive implements Archive {
private final Archive archive;
private final ArrayList<Source> sources;
private final ArrayList<ZipSource> zipSources;
private final ArrayList<String> deletedEntries;
public StableArchive(Archive archive) {
this.archive = archive;
sources = new ArrayList<>();
zipSources = new ArrayList<>();
deletedEntries = new ArrayList<>();
}
@Override
public void add(@NonNull Source source) {
sources.add(source);
}
@Override
public void add(@NonNull ZipSource sources) {
zipSources.add(sources);
}
@Override
public void delete(@NonNull String name) {
deletedEntries.add(name);
}
@Override
public void close() throws IOException {
sources.sort(Comparator.comparing(Source::getName));
zipSources.sort(Comparator.comparing(ZipSource::getName));
for (ZipSource zipSource : zipSources) {
zipSource.getSelectedEntries().sort(Comparator.comparing(Source::getName));
}
deletedEntries.sort(Comparator.naturalOrder());
try (Archive arch = archive) {
for (String toDelete : deletedEntries) {
arch.delete(toDelete);
}
for (Source source : sources) {
arch.add(source);
}
for (ZipSource zipSource : zipSources) {
arch.add(zipSource);
}
}
}
}