JNUSTool/src/de/mas/jnustool/FEntry.java
2016-02-02 19:38:53 +01:00

176 lines
3.8 KiB
Java

package de.mas.jnustool;
import java.io.File;
import java.io.IOException;
import java.util.List;
import de.mas.jnustool.util.Downloader;
public class FEntry {
private FST fst;
public static int DIR_FLAG = 1;
public static int NOT_IN_NUSTITLE_FLAG = 0x80;
public static int EXTRACT_WITH_HASH_FLAG = 0x440;
public static int CHANGE_OFFSET_FLAG = 0x04;
private boolean dir = false;
private boolean in_nus_title = false;
private boolean extract_withHash = false;
private String fileName = "";
private String path = "";
private long fileOffset = 0L;
private long fileLength = 0;
private int contentID = 0;
private int NUScontentID = 0;
private List<String> pathList;
public FEntry(String path, String filename, int contentID,int NUScontentID, long fileOffset, long fileLength, boolean dir,
boolean in_nus_title, boolean extract_withHash, List<String> pathList,FST fst) {
setPath(path);
setFileName(filename);
setContentID(contentID);
setFileOffset(fileOffset);
setFileLength(fileLength);
setDir(dir);
setInNusTitle(in_nus_title);
setExtractWithHash(extract_withHash);
setNUScontentID(NUScontentID);
setPathList(pathList);
this.fst = fst;
}
public boolean isDir() {
return dir;
}
private void setDir(boolean dir) {
this.dir = dir;
}
public boolean isInNUSTitle() {
return in_nus_title;
}
private void setInNusTitle(boolean in_nus_title) {
this.in_nus_title = in_nus_title;
}
public boolean isExtractWithHash() {
return extract_withHash;
}
private void setExtractWithHash(boolean extract_withHash) {
this.extract_withHash = extract_withHash;
}
public String getFileName() {
return fileName;
}
private void setFileName(String filename) {
this.fileName = filename;
}
public String getPath() {
return path;
}
public String getFullPath() {
return path + fileName;
}
private void setPath(String path) {
this.path = path;
}
public long getFileOffset() {
return fileOffset;
}
private void setFileOffset(long fileOffset) {
this.fileOffset = fileOffset;
}
public int getContentID() {
return contentID;
}
private void setContentID(int contentID) {
this.contentID = contentID;
}
public long getFileLength() {
return fileLength;
}
private void setFileLength(long fileLength) {
this.fileLength = fileLength;
}
@Override
public String toString(){
return getFullPath() + " Content ID:" + contentID + " Size: " + fileLength +"MB Offset: " + fileOffset;
}
public int getNUScontentID() {
return NUScontentID;
}
private void setNUScontentID(int nUScontentID) {
NUScontentID = nUScontentID;
}
private void createFolder() {
long titleID = fst.getTmd().titleID;
String [] path = getFullPath().split("/");
File f = new File (String.format("%016X", titleID));
if(!f.exists())f.mkdir();
String folder = String.format("%016X", titleID) +"/";
File folder_ = null;
for(int i = 0;i<path.length-1;i++){
if(!path[i].equals("")){
folder += path[i] + "/";
folder_ = new File(folder);
if(!folder_.exists()){
folder_.mkdir();
}
}
}
f = new File(String.format("%016X", titleID) +"/" +getFullPath().substring(1, getFullPath().length()));
if(f.exists()){
if(f.length() == getFileLength()){
System.out.println("Skipping: " + String.format("%8.2f MB ",getFileLength()/1024.0/1024.0) + getFullPath());
return;
}
}
}
public void downloadAndDecrypt() {
System.out.println("Downloading: " + String.format("%8.2f MB ", getFileLength()/1024.0/1024.0) + getFullPath());
try {
Downloader.getInstance().downloadAndDecrypt(this);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public List<String> getPathList() {
return pathList;
}
public void setPathList(List<String> pathList) {
this.pathList = pathList;
}
}