PlatformManagerUnixPluginpublic class PlatformManagerUnixPlugin extends Object implements org.gudy.azureus2.plugins.Plugin
Fields Summary |
---|
private org.gudy.azureus2.plugins.PluginInterface | plugin_interface |
Methods Summary |
---|
private void | checkStartupScript()
COConfigurationManager.setIntDefault("unix.script.lastaskversion", -1);
int lastAskedVersion = COConfigurationManager.getIntParameter("unix.script.lastaskversion");
String sVersion = System.getProperty("azureus.script.version", "0");
int version = 0;
try {
version = Integer.parseInt(sVersion);
} catch (Throwable t) {
}
Pattern pat = Pattern.compile("SCRIPT_VERSION=([0-9]+)",
Pattern.CASE_INSENSITIVE);
File oldFilePath;
String sScriptFile = System.getProperty("azureus.script", null);
if (sScriptFile != null && new File(sScriptFile).exists()) {
oldFilePath = new File(sScriptFile);
} else {
oldFilePath = new File(SystemProperties.getApplicationPath(),
"azureus");
if (!oldFilePath.exists()) {
return;
}
}
final String oldFilePathString = oldFilePath.getAbsolutePath();
String oldStartupScript;
try {
oldStartupScript = FileUtil.readFileAsString(oldFilePath,
65535, "utf8");
} catch (IOException e) {
oldStartupScript = "";
}
// Case: Script with no version, we update it, user selects restart.
// Restart doesn't include azureus.script.version yet, so we
// would normally prompt again. This fix reads the version
// from the file if we don't have a version yet, thus preventing
// the second restart message
if (version == 0) {
Matcher matcher = pat.matcher(oldStartupScript);
if (matcher.find()) {
String sScriptVersion = matcher.group(1);
try {
version = Integer.parseInt(sScriptVersion);
} catch (Throwable t) {
}
}
}
if (version <= lastAskedVersion) {
return;
}
InputStream stream = getClass().getResourceAsStream("startupScript");
try {
String startupScript = FileUtil.readInputStreamAsString(stream, 65535,
"utf8");
Matcher matcher = pat.matcher(startupScript);
if (matcher.find()) {
String sScriptVersion = matcher.group(1);
int latestVersion = 0;
try {
latestVersion = Integer.parseInt(sScriptVersion);
} catch (Throwable t) {
}
if (latestVersion > version) {
boolean bNotChanged = oldStartupScript.indexOf("SCRIPT_NOT_CHANGED=0") > 0;
boolean bInformUserManual = true;
if (bNotChanged) {
if (version >= 1) {
// make the shutdown script copy it
final String newFilePath = new File(
SystemProperties.getApplicationPath(), "azureus.new").getAbsolutePath();
FileUtil.writeBytesAsFile(newFilePath, startupScript.getBytes());
String s = "cp \"" + newFilePath + "\" \"" + oldFilePathString
+ "\"; chmod +x \"" + oldFilePathString
+ "\"; echo \"Script Update successful\"";
ScriptAfterShutdown.addExtraCommand(s);
ScriptAfterShutdown.setRequiresExit(true);
bInformUserManual = false;
} else {
// overwrite!
try {
FileUtil.writeBytesAsFile(oldFilePathString,
startupScript.getBytes());
Runtime.getRuntime().exec(new String[] {
"chmod",
"+x",
oldStartupScript
});
bInformUserManual = false;
} catch (Throwable t) {
}
}
}
if (bInformUserManual) {
final String newFilePath = new File(
SystemProperties.getApplicationPath(), "azureus.new").getAbsolutePath();
FileUtil.writeBytesAsFile(newFilePath, startupScript.getBytes());
showScriptManualUpdateDialog(newFilePath, oldFilePathString,
latestVersion);
} else {
showScriptAutoUpdateDialog();
}
}
}
} catch (Throwable t) {
t.printStackTrace();
}
| public void | initialize(org.gudy.azureus2.plugins.PluginInterface _plugin_interface)
plugin_interface = _plugin_interface;
plugin_interface.getPluginProperties().setProperty("plugin.name",
"Platform-Specific Support");
String version = "1.0"; // default version if plugin not present
PlatformManager platform = PlatformManagerFactory.getPlatformManager();
if (platform.hasCapability(PlatformManagerCapabilities.GetVersion)) {
try {
version = platform.getVersion();
} catch (Throwable e) {
Debug.printStackTrace(e);
}
} else {
plugin_interface.getPluginProperties().setProperty("plugin.version.info",
"Not required for this platform");
}
plugin_interface.getPluginProperties().setProperty("plugin.version",
version);
if (Constants.compareVersions(UpdaterUtils.getUpdaterPluginVersion(),
"1.8.5") >= 0) {
plugin_interface.getUIManager().addUIListener(new UIManagerListener() {
boolean done = false;
public void UIDetached(UIInstance instance) {
}
public void UIAttached(UIInstance instance) {
if (!done) {
done = true;
checkStartupScript();
}
}
});
}
| private void | showScriptAutoUpdateDialog()
UIFunctions uif = UIFunctionsManager.getUIFunctions();
if (uif != null) {
int answer = uif.promptUser(
MessageText.getString("unix.script.new.auto.title"),
MessageText.getString("unix.script.new.auto.text", new String[] {
}), new String[] {
MessageText.getString("UpdateWindow.restart"),
MessageText.getString("UpdateWindow.restartLater"),
}, 0, null, null, false, 0);
if (answer == 0) {
uif.dispose(true, false);
}
} else {
System.out.println("NO UIF");
}
| private void | showScriptManualUpdateDialog(java.lang.String newFilePath, java.lang.String oldFilePath, int version)
UIFunctions uif = UIFunctionsManager.getUIFunctions();
if (uif != null) {
String sCopyLine = "cp \"" + newFilePath + "\" \"" + oldFilePath + "\"";
int answer = uif.promptUser(
MessageText.getString("unix.script.new.title"),
MessageText.getString("unix.script.new.text", new String[] {
newFilePath,
sCopyLine
}), new String[] {
MessageText.getString("unix.script.new.button.quit"),
MessageText.getString("unix.script.new.button.continue"),
MessageText.getString("unix.script.new.button.asknomore"),
}, 0, null, null, false, 0);
if (answer == 0) {
System.out.println("The line you should run:\n" + sCopyLine);
uif.dispose(false, false);
} else if (answer == 2) {
COConfigurationManager.setParameter("unix.script.lastaskversion",
version);
}
} else {
System.out.println("NO UIF");
}
|
|