mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-16 06:15:02 -05:00
73 lines
1.2 KiB
Java
73 lines
1.2 KiB
Java
package net.filebot.vfs;
|
|
|
|
import static net.filebot.util.FileUtilities.*;
|
|
|
|
import java.io.File;
|
|
import java.util.Objects;
|
|
|
|
public class SimpleFileInfo implements FileInfo, Comparable<FileInfo> {
|
|
|
|
private String path;
|
|
private long length;
|
|
|
|
public SimpleFileInfo() {
|
|
// used by deserializer
|
|
}
|
|
|
|
public SimpleFileInfo(String path, long length) {
|
|
this.path = path;
|
|
this.length = length;
|
|
}
|
|
|
|
@Override
|
|
public String getPath() {
|
|
return path;
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return getNameWithoutExtension(new File(path).getName());
|
|
}
|
|
|
|
@Override
|
|
public String getType() {
|
|
return getExtension(path);
|
|
}
|
|
|
|
@Override
|
|
public long getLength() {
|
|
return length;
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hash(getPath(), getLength());
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object obj) {
|
|
if (obj instanceof FileInfo) {
|
|
FileInfo other = (FileInfo) obj;
|
|
return other.getLength() == getLength() && other.getPath().equals(getPath());
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public int compareTo(FileInfo other) {
|
|
return getPath().compareTo(other.getPath());
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return getPath();
|
|
}
|
|
|
|
@Override
|
|
public File toFile() {
|
|
return new File(path);
|
|
}
|
|
|
|
}
|