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

ai.djl.repository.LocalRepository Maven / Gradle / Ivy

There is a newer version: 0.30.0
Show newest version
/*
 * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
 * with the License. A copy of the License is located at
 *
 * http://aws.amazon.com/apache2.0/
 *
 * or in the "license" file accompanying this file. This file 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 ai.djl.repository;

import java.io.IOException;
import java.io.Reader;
import java.net.URI;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * A {@code LocalRepository} is a {@link Repository} located in a filesystem directory.
 *
 * @see Repository
 */
public class LocalRepository extends AbstractRepository {

    private static final Logger logger = LoggerFactory.getLogger(LocalRepository.class);

    private String name;
    private Path path;

    /**
     * (Internal) Constructs a {@code LocalRepository} from the path with inferred name.
     *
     * 

Use {@link Repository#newInstance(String, String)}. * * @param name the name of the repository * @param path the path to the repository */ protected LocalRepository(String name, Path path) { this.name = name; this.path = path; } /** {@inheritDoc} */ @Override public boolean isRemote() { return false; } /** {@inheritDoc} */ @Override public String getName() { return name; } /** {@inheritDoc} */ @Override public URI getBaseUri() { return path.toUri(); } /** {@inheritDoc} */ @Override public Metadata locate(MRL mrl) throws IOException { URI uri = mrl.toURI(); Path base = path.resolve(uri.getPath()); Path file = base.resolve("metadata.json"); if (!Files.isRegularFile(file)) { return null; } try (Reader reader = Files.newBufferedReader(file)) { Metadata metadata = GSON.fromJson(reader, Metadata.class); metadata.init(); metadata.setRepositoryUri(uri); return metadata; } } /** {@inheritDoc} */ @Override public Artifact resolve(MRL mrl, String version, Map filter) throws IOException { Metadata metadata = locate(mrl); VersionRange range = VersionRange.parse(version); List artifacts = metadata.search(range, filter); if (artifacts.isEmpty()) { return null; } // TODO: find highest version. return artifacts.get(0); } /** {@inheritDoc} */ @Override public List getResources() { List list = new ArrayList<>(); try { Files.walk(path) .forEach( f -> { if (f.endsWith("metadata.json") && Files.isRegularFile(f)) { Path relative = path.relativize(f); List tokens = new ArrayList<>(); for (Path p : relative) { tokens.add(p.toString()); } int size = tokens.size(); if (size < 5) { logger.warn( "Invalid repository path: " + relative.toString()); return; } Anchor anchor = new Anchor(tokens.get(0), tokens.get(1), tokens.get(2)); String groupId = String.join(".", tokens.subList(3, size - 2)); String artifactId = tokens.get(size - 2); list.add(new MRL(anchor, groupId, artifactId)); } }); } catch (IOException e) { logger.warn("", e); } return list; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy