use of com.biglybt.pif.update.Update in project BiglyBT by BiglySoftware.
the class ConsoleInput method registerUpdateChecker.
protected void registerUpdateChecker() {
boolean check_at_start = COConfigurationManager.getBooleanParameter("update.start", true);
if (!check_at_start) {
return;
}
// we've got to disable the auto-update components as we're not using them (yet...)
PluginManager pm = core.getPluginManager();
pm.getPluginInstaller().addListener(new PluginInstallerListener() {
@Override
public boolean installRequest(String reason, InstallablePlugin plugin) throws PluginException {
out.println("Plugin installation request for '" + plugin.getName() + "' - " + reason);
String desc = plugin.getDescription();
String[] bits = desc.split("\n");
for (int i = 0; i < bits.length; i++) {
out.println("\t" + bits[i]);
}
return (true);
}
});
PluginInterface pi = pm.getPluginInterfaceByClass(CorePatchChecker.class);
if (pi != null) {
pi.getPluginState().setDisabled(true);
}
pi = pm.getPluginInterfaceByClass(UpdaterUpdateChecker.class);
if (pi != null) {
pi.getPluginState().setDisabled(true);
}
UpdateManager update_manager = core.getPluginManager().getDefaultPluginInterface().getUpdateManager();
final UpdateCheckInstance checker = update_manager.createUpdateCheckInstance();
checker.addListener(new UpdateCheckInstanceListener() {
@Override
public void cancelled(UpdateCheckInstance instance) {
}
@Override
public void complete(UpdateCheckInstance instance) {
int num_updates = 0;
Update[] updates = instance.getUpdates();
for (int i = 0; i < updates.length; i++) {
Update update = updates[i];
num_updates++;
out.println("Update available for '" + update.getName() + "', new version = " + update.getNewVersion());
String[] descs = update.getDescription();
for (int j = 0; j < descs.length; j++) {
out.println("\t" + descs[j]);
}
if (update.isMandatory()) {
out.println("**** This is a mandatory update, other updates can not proceed until this is performed ****");
}
}
// need to cancel this otherwise it sits there blocking other installer operations
checker.cancel();
if (num_updates > 0) {
out.println("Apply these updates with the 'plugin update' command");
}
}
});
checker.start();
}
use of com.biglybt.pif.update.Update in project BiglyBT by BiglySoftware.
the class Plugin method execute.
@Override
public void execute(String commandName, final ConsoleInput ci, List args) {
if (args.isEmpty()) {
printHelpExtra(ci.out, args);
return;
}
String subcmd = (String) args.get(0);
if (!java.util.Arrays.asList(new String[] { "location", "list", "listall", "status", "startup", "install", "uninstall", "update" }).contains(subcmd)) {
ci.out.println("Invalid subcommand: " + subcmd);
ci.out.println();
return;
}
PluginManager plugin_manager = ci.getCore().getPluginManager();
if (subcmd.equals("list") || subcmd.equals("listall")) {
boolean all_plugins = subcmd.equals("listall");
ci.out.println("> -----");
PluginInterface[] plugins = plugin_manager.getPluginInterfaces();
TreeSet plugin_ids = new TreeSet(String.CASE_INSENSITIVE_ORDER);
for (int i = 0; i < plugins.length; i++) {
if (!all_plugins && !plugins[i].getPluginState().isOperational()) {
continue;
}
String plugin_id = plugins[i].getPluginID();
plugin_ids.add(plugin_id);
}
TextWrap.printList(plugin_ids.iterator(), ci.out, " ");
ci.out.println("> -----");
return;
}
if (subcmd.equals("location")) {
// Taken from ConfigSectionPlugins.
File fUserPluginDir = FileUtil.getUserFile("plugins");
String sep = File.separator;
String sUserPluginDir;
try {
sUserPluginDir = fUserPluginDir.getCanonicalPath();
} catch (Throwable e) {
sUserPluginDir = fUserPluginDir.toString();
}
if (!sUserPluginDir.endsWith(sep)) {
sUserPluginDir += sep;
}
File fAppPluginDir = FileUtil.getApplicationFile("plugins");
String sAppPluginDir;
try {
sAppPluginDir = fAppPluginDir.getCanonicalPath();
} catch (Throwable e) {
sAppPluginDir = fAppPluginDir.toString();
}
if (!sAppPluginDir.endsWith(sep)) {
sAppPluginDir += sep;
}
ci.out.println("Shared plugin location:");
ci.out.println(" " + sAppPluginDir);
ci.out.println("User plugin location:");
ci.out.println(" " + sUserPluginDir);
ci.out.println();
return;
}
if (subcmd.equals("update")) {
if (args.size() != 1) {
ci.out.println("Usage: update");
return;
}
UpdateManager update_manager = plugin_manager.getDefaultPluginInterface().getUpdateManager();
final UpdateCheckInstance checker = update_manager.createUpdateCheckInstance();
checker.addListener(new UpdateCheckInstanceListener() {
@Override
public void cancelled(UpdateCheckInstance instance) {
}
@Override
public void complete(UpdateCheckInstance instance) {
Update[] updates = instance.getUpdates();
try {
for (Update update : updates) {
ci.out.println("Updating " + update.getName());
for (ResourceDownloader rd : update.getDownloaders()) {
rd.addListener(new ResourceDownloaderAdapter() {
@Override
public void reportActivity(ResourceDownloader downloader, String activity) {
ci.out.println("\t" + activity);
}
@Override
public void reportPercentComplete(ResourceDownloader downloader, int percentage) {
ci.out.println("\t" + percentage + "%");
}
});
rd.download();
}
}
boolean restart_required = false;
for (int i = 0; i < updates.length; i++) {
if (updates[i].getRestartRequired() == Update.RESTART_REQUIRED_YES) {
restart_required = true;
}
}
if (restart_required) {
ci.out.println("**** Restart required to complete update ****");
}
} catch (Throwable e) {
ci.out.println("Plugin update failed: " + Debug.getNestedExceptionMessage(e));
}
}
});
checker.start();
return;
}
if (subcmd.equals("install")) {
if (args.size() == 1) {
ci.out.println("Contacting plugin repository for list of available plugins...");
try {
SFPluginDetails[] plugins = SFPluginDetailsLoaderFactory.getSingleton().getPluginDetails();
for (SFPluginDetails p : plugins) {
String category = p.getCategory();
if (category != null) {
if (category.equalsIgnoreCase("hidden") || (category.equalsIgnoreCase("core"))) {
continue;
}
}
String id = p.getId();
if (plugin_manager.getPluginInterfaceByID(id, false) == null) {
String desc = p.getDescription();
int pos = desc.indexOf("<br");
if (pos > 0) {
desc = desc.substring(0, pos);
}
ci.out.println("\t" + id + ": \t\t" + desc);
}
}
} catch (Throwable e) {
ci.out.println("Failed to list plugins: " + Debug.getNestedExceptionMessage(e));
}
} else {
String target_id = (String) args.get(1);
if (plugin_manager.getPluginInterfaceByID(target_id, false) != null) {
ci.out.println("Plugin '" + target_id + "' already installed");
return;
}
final PluginInstaller installer = plugin_manager.getPluginInstaller();
try {
final StandardPlugin sp = installer.getStandardPlugin(target_id);
if (sp == null) {
ci.out.println("Plugin '" + target_id + "' is unknown");
return;
}
new AEThread2("Plugin Installer") {
@Override
public void run() {
try {
Map<Integer, Object> properties = new HashMap<>();
properties.put(UpdateCheckInstance.PT_UI_STYLE, UpdateCheckInstance.PT_UI_STYLE_NONE);
properties.put(UpdateCheckInstance.PT_UI_DISABLE_ON_SUCCESS_SLIDEY, true);
final AESemaphore sem = new AESemaphore("plugin-install");
final boolean[] restart_required = { false };
UpdateCheckInstance instance = installer.install(new InstallablePlugin[] { sp }, false, properties, new PluginInstallationListener() {
@Override
public void completed() {
ci.out.println("Installation complete");
sem.release();
}
@Override
public void cancelled() {
ci.out.println("Installation cancelled");
sem.release();
}
@Override
public void failed(PluginException e) {
ci.out.println("Installation failed: " + Debug.getNestedExceptionMessage(e));
sem.release();
}
});
instance.addListener(new UpdateCheckInstanceListener() {
@Override
public void cancelled(UpdateCheckInstance instance) {
ci.out.println("Installation cancelled");
}
@Override
public void complete(UpdateCheckInstance instance) {
Update[] updates = instance.getUpdates();
for (final Update update : updates) {
ResourceDownloader[] rds = update.getDownloaders();
for (ResourceDownloader rd : rds) {
rd.addListener(new ResourceDownloaderAdapter() {
@Override
public void reportActivity(ResourceDownloader downloader, String activity) {
ci.out.println("\t" + activity);
}
@Override
public void reportPercentComplete(ResourceDownloader downloader, int percentage) {
ci.out.println("\t" + percentage + "%");
}
});
try {
rd.download();
} catch (Throwable e) {
}
}
if (update.getRestartRequired() != Update.RESTART_REQUIRED_NO) {
restart_required[0] = true;
}
}
}
});
sem.reserve();
if (restart_required[0]) {
ci.out.println("**** Restart required to complete installation ****");
}
} catch (Throwable e) {
ci.out.println("Install failed: " + Debug.getNestedExceptionMessage(e));
}
}
}.start();
} catch (Throwable e) {
ci.out.println("Install failed: " + Debug.getNestedExceptionMessage(e));
}
}
return;
}
// Commands from this point require a plugin ID.
if (args.size() == 1) {
ci.out.println("No plugin ID given.");
ci.out.println();
return;
}
String plugin_id = (String) args.get(1);
PluginInterface plugin = plugin_manager.getPluginInterfaceByID(plugin_id, false);
if (plugin == null) {
ci.out.println("Invalid plugin ID: " + plugin_id);
ci.out.println();
return;
}
if (subcmd.equals("status")) {
ci.out.println("ID : " + plugin.getPluginID());
ci.out.println("Name : " + plugin.getPluginName());
ci.out.println("Version: " + plugin.getPluginVersion());
ci.out.println("Running: " + plugin.getPluginState().isOperational());
ci.out.println("Runs at startup: " + plugin.getPluginState().isLoadedAtStartup());
if (!plugin.getPluginState().isBuiltIn()) {
ci.out.println("Location: " + plugin.getPluginDirectoryName());
}
ci.out.println();
return;
}
if (subcmd.equals("startup")) {
if (args.size() == 2) {
ci.out.println("Need to pass either \"on\" or \"off\"");
ci.out.println();
return;
}
String enabled_mode = (String) args.get(2);
if (enabled_mode.equals("on")) {
plugin.getPluginState().setLoadedAtStartup(true);
} else if (enabled_mode.equals("off")) {
plugin.getPluginState().setLoadedAtStartup(false);
} else {
ci.out.println("Need to pass either \"on\" or \"off\"");
ci.out.println();
return;
}
ci.out.println("Done.");
ci.out.println();
return;
}
if (subcmd.equals("uninstall")) {
PluginInterface pi = plugin_manager.getPluginInterfaceByID(plugin_id, false);
if (pi == null) {
ci.out.println("Plugin '" + plugin_id + "' is not installed");
return;
}
final PluginInstaller installer = plugin_manager.getPluginInstaller();
try {
final StandardPlugin sp = installer.getStandardPlugin(plugin_id);
if (sp == null) {
ci.out.println("Plugin '" + plugin_id + "' is not a standard plugin");
return;
}
final PluginInstaller uninstaller = plugin_manager.getPluginInstaller();
Map<Integer, Object> properties = new HashMap<>();
final AESemaphore sem = new AESemaphore("plugin-uninstall");
UpdateCheckInstance instance = uninstaller.uninstall(new PluginInterface[] { pi }, new PluginInstallationListener() {
@Override
public void completed() {
ci.out.println("Uninstallation complete");
sem.release();
}
@Override
public void cancelled() {
ci.out.println("Uninstallation cancelled");
sem.release();
}
@Override
public void failed(PluginException e) {
ci.out.println("Uninstallation failed: " + Debug.getNestedExceptionMessage(e));
sem.release();
}
}, properties);
instance.addListener(new UpdateCheckInstanceListener() {
@Override
public void cancelled(UpdateCheckInstance instance) {
ci.out.println("InsUninstallationtallation cancelled");
}
@Override
public void complete(UpdateCheckInstance instance) {
Update[] updates = instance.getUpdates();
for (final Update update : updates) {
ResourceDownloader[] rds = update.getDownloaders();
for (ResourceDownloader rd : rds) {
try {
rd.download();
} catch (Throwable e) {
}
}
}
}
});
sem.reserve();
Object obj = properties.get(UpdateCheckInstance.PT_UNINSTALL_RESTART_REQUIRED);
if (obj instanceof Boolean && (Boolean) obj) {
ci.out.println("**** Restart required to complete uninstallation ****");
}
} catch (Throwable e) {
ci.out.println("Uninstall failed: " + Debug.getNestedExceptionMessage(e));
}
}
}
use of com.biglybt.pif.update.Update in project BiglyBT by BiglySoftware.
the class SimpleInstallUI method build.
protected void build(Composite parent) {
parent.setLayout(new FormLayout());
Button cancel_button = new Button(parent, SWT.NULL);
cancel_button.setText("Cancel");
cancel_button.addListener(SWT.Selection, new Listener() {
@Override
public void handleEvent(Event arg0) {
synchronized (SimpleInstallUI.this) {
cancelled = true;
if (current_downloader != null) {
current_downloader.cancel();
}
}
instance.cancel();
}
});
FormData data = new FormData();
data.right = new FormAttachment(100, 0);
data.top = new FormAttachment(0, 0);
data.bottom = new FormAttachment(100, 0);
cancel_button.setLayoutData(data);
final Label label = new Label(parent, SWT.NULL);
label.setText("blah blah ");
data = new FormData();
data.left = new FormAttachment(0, 0);
data.top = new FormAttachment(cancel_button, 0, SWT.CENTER);
label.setLayoutData(data);
final ProgressBar progress = new ProgressBar(parent, SWT.NULL);
progress.setMinimum(0);
progress.setMaximum(100);
progress.setSelection(0);
data = new FormData();
data.left = new FormAttachment(label, 4);
data.top = new FormAttachment(cancel_button, 0, SWT.CENTER);
data.right = new FormAttachment(cancel_button, -4);
progress.setLayoutData(data);
parent.layout(true, true);
new AEThread2("SimpleInstallerUI", true) {
@Override
public void run() {
try {
Update[] updates = instance.getUpdates();
for (Update update : updates) {
String name = update.getName();
int pos = name.indexOf('/');
if (pos >= 0) {
name = name.substring(pos + 1);
}
setLabel(name);
ResourceDownloader[] downloaders = update.getDownloaders();
for (ResourceDownloader downloader : downloaders) {
synchronized (SimpleInstallUI.this) {
if (cancelled) {
return;
}
current_downloader = downloader;
}
setProgress(0);
downloader.addListener(new ResourceDownloaderAdapter() {
@Override
public void reportPercentComplete(ResourceDownloader downloader, int percentage) {
setProgress(percentage);
}
@Override
public void reportAmountComplete(ResourceDownloader downloader, long amount) {
}
});
downloader.download();
}
}
boolean restart_required = false;
for (int i = 0; i < updates.length; i++) {
if (updates[i].getRestartRequired() == Update.RESTART_REQUIRED_YES) {
restart_required = true;
}
}
if (restart_required) {
monitor.handleRestart();
}
} catch (Throwable e) {
Debug.out("Install failed", e);
instance.cancel();
}
}
protected void setLabel(final String str) {
Utils.execSWTThread(new Runnable() {
@Override
public void run() {
if (label != null && !label.isDisposed()) {
label.setText(str);
label.getParent().layout();
}
}
});
}
protected void setProgress(final int percent) {
Utils.execSWTThread(new Runnable() {
@Override
public void run() {
if (progress != null && !progress.isDisposed()) {
progress.setSelection(percent);
}
}
});
}
}.start();
}
use of com.biglybt.pif.update.Update in project BiglyBT by BiglySoftware.
the class UpdateAutoDownloader method start.
private void start() {
for (int i = 0; i < updates.length; i++) {
Update update = updates[i];
ResourceDownloader[] rds = update.getDownloaders();
Collections.addAll(downloaders, rds);
}
iterDownloaders = downloaders.iterator();
nextUpdate();
}
use of com.biglybt.pif.update.Update in project BiglyBT by BiglySoftware.
the class UpdateAutoDownloader method allDownloadsComplete.
/**
* @since 3.0.0.7
*/
private void allDownloadsComplete() {
boolean bRequiresRestart = false;
boolean bHadMandatoryUpdates = false;
for (int i = 0; i < updates.length; i++) {
Update update = updates[i];
// updates with no downloaders exist for admin purposes only
if (update.getDownloaders().length > 0) {
if (update.getRestartRequired() != Update.RESTART_REQUIRED_NO) {
bRequiresRestart = true;
}
if (update.isMandatory()) {
bHadMandatoryUpdates = true;
}
}
}
completionCallback.allUpdatesComplete(bRequiresRestart, bHadMandatoryUpdates);
}
Aggregations