MakeTorrentpublic class MakeTorrent extends Object implements TOTorrentProgressListener
Fields Summary |
---|
private boolean | verbose | private static final String[] | validKeys |
Constructors Summary |
---|
public MakeTorrent(String file, URL url, Map parameters)
File fSrc = new File(file);
String torrentName = (String) parameters.get("target");
if(torrentName == null)
torrentName = file + ".torrent";
File fDst = new File(torrentName);
if(parameters.get("verbose") != null)
verbose = true;
TOTorrent torrent = null;
String pieceSizeStr = (String) parameters.get("force_piece_size_pow2");
if(pieceSizeStr != null) {
try {
long pieceSize = 1l << Integer.parseInt(pieceSizeStr);
TOTorrentCreator creator = TOTorrentFactory.createFromFileOrDirWithFixedPieceLength(fSrc,url,pieceSize);
creator.addListener( this );
torrent = creator.create();
}catch(Exception e) {
Debug.printStackTrace( e );
return;
}
} else {
try {
TOTorrentCreator creator = TOTorrentFactory.createFromFileOrDirWithComputedPieceLength(fSrc,url);
creator.addListener( this );
torrent = creator.create();
} catch(Exception e) {
Debug.printStackTrace( e );
return;
}
}
String comment = (String) parameters.get("comment");
if(comment != null) {
torrent.setComment(comment);
}
String announceList = (String) parameters.get("announce-list");
if(announceList != null) {
StringTokenizer st = new StringTokenizer(announceList,"|");
List list = new ArrayList();
List urls = new ArrayList();
while(st.hasMoreTokens()) {
String _url = st.nextToken();
urls.add(_url);
}
list.add(urls);
torrent.setAdditionalListProperty("announce-list",list);
}
try {
torrent.serialiseToBEncodedFile(fDst);
} catch(Exception e) {
Debug.printStackTrace( e );
}
|
Methods Summary |
---|
public static void | main(java.lang.String[] args)
if(args.length < 2) {
usage();
SESecurityManager.exitVM(0);
}
Map parameters = new HashMap();
for(int i = 2 ; i < args.length ; i++) {
boolean ok = parseParameter(args[i],parameters);
if(!ok) SESecurityManager.exitVM(-1);
}
File f = new File(args[1]);
if(!f.exists()) {
System.out.println(args[1] + " is not a valid file / directory");
SESecurityManager.exitVM(-1);
}
URL url = null;
try {
url = new URL(args[0]);
} catch(Exception e) {
System.out.println(args[0] + " is not a valid url");
SESecurityManager.exitVM(-1);
}
new MakeTorrent(args[1],url,parameters);
| public static boolean | parseParameter(java.lang.String parameter, java.util.Map parameters)
if(parameter == null)
return false;
if(parameter.equalsIgnoreCase("--v") || parameter.equalsIgnoreCase("--verbose")) {
parameters.put("verbose",new Integer(1));
}
if(parameter.startsWith("--")) {
try {
StringTokenizer st = new StringTokenizer(parameter.substring(2),"=");
String key = st.nextToken();
String value = "";
String sep = "";
while(st.hasMoreTokens()) {
value += sep + st.nextElement();
sep = "=";
}
boolean valid = false;
for(int i = 0 ; i < validKeys.length ;i++) {
if(validKeys[i].equalsIgnoreCase(key)) {
valid = true;
break;
}
}
if(!valid) {
System.out.println("Invalid parameter : " + key);
return false;
}
parameters.put(key,value);
return true;
} catch(Exception e) {
System.out.println("Cannot parse " + parameter);
return false;
}
}
System.out.println("Cannot parse " + parameter);
return false;
| public void | reportCurrentTask(java.lang.String task_description)
if(verbose) {
System.out.println(task_description);
}
| public void | reportProgress(int percent_complete)
if(verbose) {
System.out.print("\r" + percent_complete + "% ");
}
| public static void | usage()
System.out.println("Usage :");
System.out.println("MakeTorrent <trackerurl> <file|dir> [options]");
System.out.println("Options :");
System.out.println("--comment=<comment> Adds a comment to the torrent");
System.out.println("--force_piece_size_pow2=<pow2> Specifies the piece size to use");
System.out.println("--target=<target file> Specifies a target torrent file");
System.out.println("--verbose Verbose");
System.out.println("--announce-list=url1[|url2|...] Use a list of trackers");
|
|