📄 ui.java
字号:
/* Written and copyright 2001-2003 Tobias Minich.
* Distributed under the GNU General Public License; see the README file.
* This code comes with NO WARRANTY.
*
*
* Main.java
*
* Created on 22. August 2003, 00:04
*/
package org.gudy.azureus2.ui.console;
import org.apache.log4j.Logger;
import org.gudy.azureus2.core3.config.COConfigurationManager;
import org.gudy.azureus2.core3.torrentdownloader.TorrentDownloaderFactory;
import org.gudy.azureus2.core3.util.FileUtil;
import org.gudy.azureus2.ui.common.IUserInterface;
import org.gudy.azureus2.ui.common.UIConst;
import org.gudy.azureus2.ui.console.multiuser.UserManager;
import org.gudy.azureus2.ui.console.multiuser.commands.UserCommand;
/**
*
* @author Tobias Minich
*/
public class UI extends org.gudy.azureus2.ui.common.UITemplateHeadless implements IUserInterface {
private ConsoleInput console = null;
/** Creates a new instance of Main */
/*public UI() {
}*/
public void init(boolean first, boolean others) {
super.init(first,others);
System.setProperty("java.awt.headless", "true");
}
public String[] processArgs(String[] args) {
return args;
}
public void startUI() {
super.startUI();
TorrentDownloaderFactory.initManager(UIConst.getGlobalManager(), true, true, COConfigurationManager.getStringParameter("Default save path") );
if ((!isStarted()) || (console == null) || (!console.isAlive())) {
// ConsoleInput.printconsolehelp(System.out);
System.out.println();
console = new ConsoleInput("Main", UIConst.getAzureusCore(), System.in, System.out, Boolean.TRUE);
if( System.getProperty("azureus.console.multiuser") != null)
{
UserManager manager = UserManager.getInstance(UIConst.getAzureusCore().getPluginManager().getDefaultPluginInterface());
console.registerCommand(new UserCommand(manager));
}
console.printconsolehelp();
}
}
public void openTorrent(String fileName) {
if( console != null )
{
// System.out.println("NOT NULL CONSOLE. CAN PASS STRAIGHT TO IT!");
console.downloadTorrent(fileName);
return;
}
else
{
// System.out.println("NULL CONSOLE");
}
if( fileName.toUpperCase().startsWith( "HTTP://" ) ) {
System.out.println( "Downloading torrent from url: " + fileName );
TorrentDownloaderFactory.downloadManaged( fileName );
return;
}
try {
if (!FileUtil.isTorrentFile(fileName)) {//$NON-NLS-1$
Logger.getLogger("azureus2.ui.console").error(fileName+" doesn't seem to be a torrent file. Not added.");
return;
}
} catch (Exception e) {
Logger.getLogger("azureus2.ui.console").error("Something is wrong with "+fileName+". Not added. (Reason: "+e.getMessage()+")");
return;
}
if (UIConst.getGlobalManager()!=null) {
try {
String downloadDir = COConfigurationManager.getDirectoryParameter("Default save path");
System.out.println( "Adding torrent: " + fileName + " and saving to " + downloadDir);
UIConst.getGlobalManager().addDownloadManager(fileName, downloadDir);
} catch (Exception e) {
Logger.getLogger("azureus2.ui.console").error("The torrent "+fileName+" could not be added.", e);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -