org.sonar.api.batch.fs.internal.DefaultInputDir Maven / Gradle / Ivy
/*
* SonarQube, open source software quality management tool.
* Copyright (C) 2008-2014 SonarSource
* mailto:contact AT sonarsource DOT com
*
* SonarQube is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* SonarQube is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.api.batch.fs.internal;
import org.sonar.api.batch.fs.InputDir;
import org.sonar.api.utils.PathUtils;
import java.io.File;
import java.io.Serializable;
/**
* @since 4.5
*/
public class DefaultInputDir implements InputDir, Serializable {
private final String relativePath;
private final String moduleKey;
private String absolutePath;
public DefaultInputDir(String moduleKey, String relativePath) {
this.moduleKey = moduleKey;
this.relativePath = PathUtils.sanitize(relativePath);
}
@Override
public String relativePath() {
return relativePath;
}
@Override
public String absolutePath() {
return absolutePath;
}
@Override
public File file() {
if (absolutePath == null) {
throw new IllegalStateException("Can not return the java.io.File because absolute path is not set (see method setFile(java.io.File))");
}
return new File(absolutePath);
}
public String moduleKey() {
return moduleKey;
}
public String key() {
return new StringBuilder().append(moduleKey).append(":").append(relativePath).toString();
}
public DefaultInputDir setAbsolutePath(String s) {
this.absolutePath = PathUtils.sanitize(s);
return this;
}
public DefaultInputDir setFile(File file) {
setAbsolutePath(file.getAbsolutePath());
return this;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof DefaultInputDir)) {
return false;
}
DefaultInputDir that = (DefaultInputDir) o;
return moduleKey.equals(that.moduleKey) && relativePath.equals(that.relativePath);
}
@Override
public int hashCode() {
return moduleKey.hashCode() + relativePath.hashCode() * 13;
}
@Override
public String toString() {
return "[moduleKey=" + moduleKey + ", relative=" + relativePath + ", abs=" + absolutePath + "]";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy