All Downloads are FREE. Search and download functionalities are using the official Maven repository.

shaded.org.eclipse.aether.spi.connector.layout.RepositoryLayout Maven / Gradle / Ivy

There is a newer version: 4.1.3
Show newest version
package shaded.shaded.org.eclipse.aether.spi.connector.layout;

/*
 * 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.
 */

import java.net.URI;
import java.util.List;
import java.util.Locale;
import static java.util.Objects.requireNonNull;

import org.eclipse.aether.artifact.Artifact;
import org.eclipse.aether.metadata.Metadata;

/**
 * The layout for a remote repository whose artifacts/metadata can be addressed via URIs.
 * 

* Note: Implementations must be stateless. */ public interface RepositoryLayout { /** * A descriptor for a checksum file. This descriptor simply associates the location of a checksum file with the * underlying algorithm used to calculate/verify it. Checksum algorithms are denoted by names as used with * {@link java.security.MessageDigest#getInstance(String)}, e.g. {@code "SHA-1"} or {@code "MD5"}. */ final class Checksum { private final String algorithm; private final URI location; /** * Creates a new checksum file descriptor with the specified algorithm and location. The method * {@link #forLocation(URI, String)} is usually more convenient though. * * @param algorithm The algorithm used to calculate the checksum, must not be {@code null}. * @param location The relative URI to the checksum file within a repository, must not be {@code null}. */ public Checksum( String algorithm, URI location ) { verify( algorithm, location ); this.algorithm = algorithm; this.location = location; } /** * Creates a checksum file descriptor for the specified artifact/metadata location and algorithm. The location * of the checksum file itself is derived from the supplied resource URI by appending the file extension * corresponding to the algorithm. The file extension in turn is derived from the algorithm name by stripping * out any hyphen ('-') characters and lower-casing the name, e.g. "SHA-1" is mapped to ".sha1". * * @param location The relative URI to the artifact/metadata whose checksum file is being obtained, must not be * {@code null} and must not have a query or fragment part. * @param algorithm The algorithm used to calculate the checksum, must not be {@code null}. * @return The checksum file descriptor, never {@code null}. */ public static Checksum forLocation( URI location, String algorithm ) { verify( algorithm, location ); if ( location.getRawQuery() != null ) { throw new IllegalArgumentException( "resource location must not have query parameters: " + location ); } if ( location.getRawFragment() != null ) { throw new IllegalArgumentException( "resource location must not have a fragment: " + location ); } String extension = '.' + algorithm.replace( "-", "" ).toLowerCase( Locale.ENGLISH ); return new Checksum( algorithm, URI.create( location.toString() + extension ) ); } private static void verify( String algorithm, URI location ) { requireNonNull( algorithm, "checksum algorithm cannot be null" ); if ( algorithm.length() == 0 ) { throw new IllegalArgumentException( "checksum algorithm cannot be empty" ); } requireNonNull( location, "checksum location cannot be null" ); if ( location.isAbsolute() ) { throw new IllegalArgumentException( "checksum location must be relative" ); } } /** * Gets the name of the algorithm that is used to calculate the checksum. * * @return The algorithm name, never {@code null}. * @see java.security.MessageDigest#getInstance(String) */ public String getAlgorithm() { return algorithm; } /** * Gets the location of the checksum file with a remote repository. The URI is relative to the root directory of * the repository. * * @return The relative URI to the checksum file, never {@code null}. */ public URI getLocation() { return location; } @Override public String toString() { return location + " (" + algorithm + ")"; } } /** * Gets the location within a remote repository where the specified artifact resides. The URI is relative to the * root directory of the repository. * * @param artifact The artifact to get the URI for, must not be {@code null}. * @param upload {@code false} if the artifact is being downloaded, {@code true} if the artifact is being uploaded. * @return The relative URI to the artifact, never {@code null}. */ URI getLocation( Artifact artifact, boolean upload ); /** * Gets the location within a remote repository where the specified metadata resides. The URI is relative to the * root directory of the repository. * * @param metadata The metadata to get the URI for, must not be {@code null}. * @param upload {@code false} if the metadata is being downloaded, {@code true} if the metadata is being uploaded. * @return The relative URI to the metadata, never {@code null}. */ URI getLocation( Metadata metadata, boolean upload ); /** * Gets the checksums files that a remote repository keeps to help detect data corruption during transfers of the * specified artifact. * * @param artifact The artifact to get the checksum files for, must not be {@code null}. * @param upload {@code false} if the checksums are being downloaded/verified, {@code true} if the checksums are * being uploaded/created. * @param location The relative URI to the artifact within the repository as previously obtained from * {@link #getLocation(Artifact, boolean)}, must not be {@code null}. * @return The checksum files for the given artifact, possibly empty but never {@code null}. */ List getChecksums( Artifact artifact, boolean upload, URI location ); /** * Gets the checksums files that a remote repository keeps to help detect data corruption during transfers of the * specified metadata. * * @param metadata The metadata to get the checksum files for, must not be {@code null}. * @param upload {@code false} if the checksums are being downloaded/verified, {@code true} if the checksums are * being uploaded/created. * @param location The relative URI to the metadata within the repository as previously obtained from * {@link #getLocation(Metadata, boolean)}, must not be {@code null}. * @return The checksum files for the given metadata, possibly empty but never {@code null}. */ List getChecksums( Metadata metadata, boolean upload, URI location ); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy