blob: a1c4ecd9dd366a188bd0caacf5cd0fabcd320b21 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.jackrabbit.filevault.maven.packaging.validator.impl.context;
import java.io.IOException;
import java.nio.file.Path;
import java.util.Collection;
import org.apache.jackrabbit.vault.fs.api.WorkspaceFilter;
import org.apache.jackrabbit.vault.fs.io.Archive;
import org.apache.jackrabbit.vault.packaging.PackageInfo;
import org.apache.jackrabbit.vault.packaging.PackageProperties;
import org.apache.jackrabbit.vault.validation.spi.ValidationContext;
import org.apache.maven.plugin.logging.Log;
/**
* Implements a validation context based on a given {@link Archive}.
*/
public class ArchiveValidationContextImpl implements ValidationContext {
private final WorkspaceFilter filter;
private final PackageProperties properties;
private final Path archivePath;
private final Collection<PackageInfo> resolvedDependencies;
public ArchiveValidationContextImpl(Archive archive, Path archivePath, DependencyResolver resolver, Log log) throws IOException {
this.archivePath = archivePath;
properties = archive.getMetaInf().getPackageProperties();
this.filter = archive.getMetaInf().getFilter();
if (filter == null) {
throw new IllegalStateException("Archive '" + archivePath + "' does not contain a filter.xml.");
}
this.resolvedDependencies = resolver.resolve(getProperties().getDependencies(), getProperties().getDependenciesLocations(), log);
}
@Override
public PackageProperties getProperties() {
return properties;
}
@Override
public WorkspaceFilter getFilter() {
return filter;
}
@Override
public ValidationContext getContainerValidationContext() {
return null;
}
public Path getPackageRootPath() {
return archivePath;
}
@Override
public Collection<PackageInfo> getDependenciesPackageInfo() {
return this.resolvedDependencies;
}
}