Dalamud/Dalamud.CorePlugin
srkizer 87b9edb448
Add IInternal/PublicDisposableService (#1696)
* Add IInternal/PublicDisposableService

Plugins are exposed interfaces that are not inherited from
`IDisposable`, but services implementing plugin interfaces often
implement `IDisposable`. Some plugins may try to call
`IDisposable.Dispose` on everything provided, and it also is possible to
use `using` clause too eagerly while working on Dalamud itself, such as
writing `using var smth = await Service<SomeService>.GetAsync();`. Such
behaviors often lead to a difficult-to-debug errors, and making those
services either not an `IDisposable` or making `IDisposable.Dispose` do
nothing if the object has been loaded would prevent such errors. As
`ServiceManager` must be the only class dealing with construction and
disposal of services, `IInternalDisposableService` has been added to
limit who can dispose the object. `IPublicDisposableService` also has
been added to classes that can be constructed and accessed directly by
plugins; for those, `Dispose` will be ignored if the instance is a
service instance, and only `DisposeService` will respond.

In addition, `DalamudPluginInterface` and `UiBuilder` also have been
changed so that their `IDisposable.Dispose` no longer respond, and
instead, internal functions have been added to only allow disposal from
Dalamud.

* Cleanup

* Postmerge fixes

* More explanation on RunOnFrameworkThread(ClearHooks)

* Mark ReliableFileStorage public ctor obsolete

---------

Co-authored-by: goat <16760685+goaaats@users.noreply.github.com>
2024-03-16 15:58:05 +00:00
..
Dalamud.CorePlugin.csproj Bump Lumina to 3.16.0 2024-02-15 01:45:10 +01:00
Dalamud.CorePlugin.json Add Dalamud.CorePlugin.json (#1533) 2023-11-21 22:30:38 -08:00
GlobalSuppressions.cs fix warnings in Dalamud 2023-06-09 23:38:13 +02:00
PluginImpl.cs Add IInternal/PublicDisposableService (#1696) 2024-03-16 15:58:05 +00:00
PluginWindow.cs chore: fix some warnings, cleanup 2022-04-25 20:04:17 +02:00