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

aQute.bnd.filerepo.FileRepo Maven / Gradle / Ivy

The newest version!
package aQute.bnd.filerepo;

import static java.util.stream.Collectors.toList;

import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.Objects;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.stream.Stream;

import aQute.bnd.version.Version;
import aQute.bnd.version.VersionRange;
import aQute.lib.io.IO;

@Deprecated
public class FileRepo {
	File					root;
	static final Pattern	REPO_FILE	= Pattern.compile("([-.\\w]+)-([.\\d]+)\\.(jar|lib)");

	public FileRepo(File root) {
		this.root = root;
	}

	/**
	 * Get a list of URLs to bundles that are constrained by the bsn and
	 * versionRange.
	 */
	public File[] get(String bsn, final VersionRange versionRange) throws Exception {

		//
		// Check if the entry exists
		//
		File f = new File(root, bsn);
		if (!f.isDirectory())
			return null;

		//
		// Iterator over all the versions for this BSN.
		// Create a sorted map over the version as key
		// and the file as URL as value. Only versions
		// that match the desired range are included in
		// this list.
		//
		return IO.listFiles(f, (dir, name) -> {
				Matcher m = REPO_FILE.matcher(name);
				if (!m.matches())
					return false;
				if (versionRange == null)
					return true;

				Version v = new Version(m.group(2));
				return versionRange.includes(v);
			})
			.toArray(new File[0]);
	}

	public List list(String regex) throws Exception {
		if (regex == null)
			regex = ".*";
		final Pattern pattern = Pattern.compile(regex);

		return IO.list(root, (dir, name) -> {
				Matcher matcher = pattern.matcher(name);
				return matcher.matches();
		});
	}

	public List versions(String bsn) throws Exception {
		File dir = new File(root, bsn);
		try (Stream names = IO.listStream(dir)) {
			List versions = names.map(name -> {
				Matcher m = REPO_FILE.matcher(name);
				if (m.matches()) {
					return new Version(m.group(2));
				}
				return null;
			})
				.filter(Objects::nonNull)
				.collect(toList());
			return versions;
		}
	}

	public File get(String bsn, VersionRange range, int strategy) throws Exception {
		File[] files = get(bsn, range);
		if (files == null || files.length == 0)
			return null;

		if (files.length == 1)
			return files[0];

		if (strategy < 0) {
			return files[0];
		}
		return files[files.length - 1];
	}

	public File put(String bsn, Version version) throws IOException {
		File dir = new File(root, bsn);
		IO.mkdirs(dir);
		File file = new File(dir,
			bsn + "-" + version.getMajor() + "." + version.getMinor() + "." + version.getMicro() + ".jar");
		return file;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy