fix plugin disable during updates failing due to concurrent file modification; fix plugin updates failing to load config due to assembly version issues

This commit is contained in:
meli 2020-03-22 09:41:38 -07:00
parent 760dee2322
commit 27c873dbe9
3 changed files with 47 additions and 5 deletions

View file

@ -94,6 +94,24 @@ namespace Dalamud.Plugin
/// </summary>
/// <returns>A previously saved config or null if none was saved before.</returns>
public IPluginConfiguration GetPluginConfig() {
// This is done to support json deserialization of plugin configurations
// even after running an in-game update of plugins, where the assembly version
// changes.
// Eventually it might make sense to have a separate method on this class
// T GetPluginConfig<T>() where T : IPluginConfiguration
// that can invoke LoadForType() directly instead of via reflection
// This is here for now to support the current plugin API
foreach (var type in Assembly.GetCallingAssembly().GetTypes())
{
if (type.GetInterface(typeof(IPluginConfiguration).FullName) != null)
{
var mi = this.configs.GetType().GetMethod("LoadForType");
var fn = mi.MakeGenericMethod(type);
return (IPluginConfiguration)fn.Invoke(this.configs, new object[] { this.pluginName });
}
}
// this shouldn't be a thing, I think, but just in case
return this.configs.Load(this.pluginName);
}

View file

@ -99,15 +99,19 @@ namespace Dalamud.Plugin
{
Log.Information("Eligible for update: {0}", remoteInfo.InternalName);
foreach (var sortedVersion in sortedVersions) {
File.Create(Path.Combine(sortedVersion.FullName, ".disabled"));
}
// DisablePlugin() below immediately creates a .disabled file anyway, but will fail
// with an exception if we try to do it twice in row like this
// TODO: not sure if doing this for all versions is really necessary, since the
// others really needed to be disabled before anyway
//foreach (var sortedVersion in sortedVersions) {
// File.Create(Path.Combine(sortedVersion.FullName, ".disabled"));
//}
// Try to disable plugin if it is loaded
try {
this.manager.DisablePlugin(info);
} catch {
// ignored
} catch (Exception ex) {
Log.Error(ex, "Plugin disable failed");
}
InstallPlugin(remoteInfo);