use of org.apache.archiva.repository.storage.fs.FilesystemStorage in project archiva by apache.
the class MavenRepositoryGroup method newLocalInstance.
public static MavenRepositoryGroup newLocalInstance(String id, String name, Path basePath) throws IOException {
FileLockManager lockManager = new DefaultFileLockManager();
FilesystemStorage storage = new FilesystemStorage(basePath.resolve(id), lockManager);
return new MavenRepositoryGroup(id, name, storage);
}
use of org.apache.archiva.repository.storage.fs.FilesystemStorage in project archiva by apache.
the class ChecksumPolicyTest method createTestableFiles.
private StorageAsset createTestableFiles(String md5State, String sha1State) throws Exception {
FilesystemStorage fs = new FilesystemStorage(Paths.get("target/checksum-tests"), new DefaultFileLockManager());
StorageAsset sourceDir = getTestFile("src/test/resources/checksums/");
StorageAsset destDir = getTestFile("target/checksum-tests/" + name.getMethodName() + "/");
FileUtils.copyFileToDirectory(sourceDir.getFilePath().resolve("artifact.jar").toFile(), destDir.getFilePath().toFile());
if (md5State != null) {
Path md5File = sourceDir.getFilePath().resolve("artifact.jar.md5-" + md5State);
assertTrue("Testable file exists: " + md5File.getFileName() + ":", Files.exists(md5File) && Files.isRegularFile(md5File));
Path destFile = destDir.getFilePath().resolve("artifact.jar.md5");
FileUtils.copyFile(md5File.toFile(), destFile.toFile());
}
if (sha1State != null) {
Path sha1File = sourceDir.getFilePath().resolve("artifact.jar.sha1-" + sha1State);
assertTrue("Testable file exists: " + sha1File.getFileName() + ":", Files.exists(sha1File) && Files.isRegularFile(sha1File));
Path destFile = destDir.getFilePath().resolve("artifact.jar.sha1");
FileUtils.copyFile(sha1File.toFile(), destFile.toFile());
}
StorageAsset localAsset = destDir.resolve("artifact.jar");
return localAsset;
}
use of org.apache.archiva.repository.storage.fs.FilesystemStorage in project archiva by apache.
the class ArchivaIndexManagerMock method getIndexPath.
private StorageAsset getIndexPath(Repository repo) throws IOException {
IndexCreationFeature icf = repo.getFeature(IndexCreationFeature.class);
Path repoDir = repo.getRoot().getFilePath();
URI indexDir = icf.getIndexPath();
String indexPath = indexDir.getPath();
Path indexDirectory = null;
FilesystemStorage filesystemStorage = (FilesystemStorage) repo.getRoot().getStorage();
if (!StringUtils.isEmpty(indexDir.toString())) {
indexDirectory = PathUtil.getPathFromUri(indexDir);
// not absolute so create it in repository directory
if (indexDirectory.isAbsolute()) {
indexPath = indexDirectory.getFileName().toString();
filesystemStorage = new FilesystemStorage(indexDirectory.getParent(), new DefaultFileLockManager());
} else {
indexDirectory = repoDir.resolve(indexDirectory);
}
} else {
indexDirectory = repoDir.resolve(".index");
indexPath = ".index";
}
if (!Files.exists(indexDirectory)) {
Files.createDirectories(indexDirectory);
}
return new FilesystemAsset(filesystemStorage, indexPath, indexDirectory);
}
use of org.apache.archiva.repository.storage.fs.FilesystemStorage in project archiva by apache.
the class RepositoryGroupHandlerTest method getRemote.
protected RemoteRepository getRemote(String id, String name) throws IOException {
Path path = getRepoBaseDir().resolve("../remote");
FileLockManager lockManager = new DefaultFileLockManager();
FilesystemStorage storage = new FilesystemStorage(path.toAbsolutePath(), lockManager);
return new BasicRemoteRepository(id, name, storage);
}
use of org.apache.archiva.repository.storage.fs.FilesystemStorage in project archiva by apache.
the class RepositoryGroupHandlerTest method getManaged.
protected ManagedRepository getManaged(String id, String name) throws IOException {
Path path = getRepoBaseDir().resolve("../managed");
FileLockManager lockManager = new DefaultFileLockManager();
FilesystemStorage storage = new FilesystemStorage(path.toAbsolutePath(), lockManager);
return new BasicManagedRepository(id, name, storage);
}
Aggregations