blob: 95d8fab62c4e5849129878b6e07a69a79009aeeb [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed 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.jetbrains.idea.maven.server;
import org.jetbrains.idea.maven.model.MavenId;
import org.jetbrains.idea.maven.model.MavenWorkspaceMap;
import org.sonatype.aether.artifact.Artifact;
import org.sonatype.aether.repository.WorkspaceReader;
import org.sonatype.aether.repository.WorkspaceRepository;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
/**
* @author Sergey Evdokimov
*/
public class Maven3WorkspaceReader implements WorkspaceReader {
private final WorkspaceRepository myRepository = new WorkspaceRepository();
private final MavenWorkspaceMap myWorkspaceMap;
public Maven3WorkspaceReader(MavenWorkspaceMap workspaceMap) {
myWorkspaceMap = workspaceMap;
}
@Override
public WorkspaceRepository getRepository() {
return myRepository;
}
@Override
public File findArtifact(Artifact artifact) {
MavenWorkspaceMap.Data resolved = myWorkspaceMap.findFileAndOriginalId(new MavenId(artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion()));
if (resolved == null) return null;
return resolved.getFile(artifact.getExtension());
}
private static boolean equals(String s1, String s2) {
return s1 == null ? s2 == null : s1.equals(s2);
}
@Override
public List<String> findVersions(Artifact artifact) {
List<String> res = new ArrayList<String>();
for (MavenId id : myWorkspaceMap.getAvailableIds()) {
if (equals(id.getArtifactId(), artifact.getArtifactId()) && equals(id.getGroupId(), artifact.getGroupId())) {
String version = id.getVersion();
if (version != null) {
res.add(version);
}
}
}
return res;
}
}