Movepublic class Move extends IConsoleCommand
Constructors Summary |
---|
public Move()
super(new String[] { "move", "m" });
|
Methods Summary |
---|
public void | execute(java.lang.String commandName, org.gudy.azureus2.ui.console.ConsoleInput ci, java.util.List args)
if( args.isEmpty() )
{
ci.out.println("> Missing subcommand for 'move'\r\n> move syntax: move <#from> [<#to>]");
return;
}
if (ci.torrents.isEmpty())
{
ci.out.println("> Command 'move': No torrents in list.");
return;
}
int ncommand;
int nmoveto = -1;
boolean moveto = false;
try {
ncommand = Integer.parseInt((String) args.get(0));
if (args.size() > 1) {
nmoveto = Integer.parseInt((String) args.get(1));
moveto = true;
}
} catch (NumberFormatException e) {
ci.out.println("> Command 'move': Subcommand '" + args.get(0) + "' unknown.");
return;
}
int number = Math.abs(ncommand);
if (number == 0 || number > ci.torrents.size()) {
ci.out.println("> Command 'move': Torrent #" + Integer.toString(number) + " unknown.");
return;
}
DownloadManager dm = (DownloadManager) ci.torrents.get(number - 1);
String name = dm.getDisplayName();
if (name == null)
name = "?";
GlobalManager gm = dm.getGlobalManager();
if (moveto) {
gm.moveTo(dm, nmoveto - 1);
gm.fixUpDownloadManagerPositions();
ci.out.println("> Torrent #" + Integer.toString(number) + " (" + name + ") moved to #" + Integer.toString(nmoveto) + ".");
} else if (ncommand > 0) {
if (gm.isMoveableUp(dm)) {
while (gm.isMoveableUp(dm))
gm.moveUp(dm);
gm.fixUpDownloadManagerPositions();
ci.out.println("> Torrent #" + Integer.toString(number) + " (" + name + ") moved to top.");
} else {
ci.out.println("> Torrent #" + Integer.toString(number) + " (" + name + ") already at top.");
}
} else {
if (gm.isMoveableDown(dm)) {
while (gm.isMoveableDown(dm))
gm.moveDown(dm);
gm.fixUpDownloadManagerPositions();
ci.out.println("> Torrent #" + Integer.toString(number) + " (" + name + ") moved to bottom.");
} else {
ci.out.println("> Torrent #" + Integer.toString(number) + " (" + name + ") already at bottom.");
}
}
| public java.lang.String | getCommandDescriptions()
return("move <from #> [<to #>]\t\tm\tMove torrent from to to. If to is omitted, the torrent is moved to top or to the bottom if given negative.");
|
|