jellyfin/Emby.Server.Implementations/AppBase/ConfigurationHelper.cs

63 lines
2.3 KiB
C#
Raw Normal View History

using System;
2016-10-29 07:40:15 +02:00
using System.IO;
using MediaBrowser.Model.Serialization;
2017-02-20 21:50:58 +01:00
namespace Emby.Server.Implementations.AppBase
2016-10-29 07:40:15 +02:00
{
/// <summary>
2019-10-25 12:47:20 +02:00
/// Class ConfigurationHelper.
2016-10-29 07:40:15 +02:00
/// </summary>
public static class ConfigurationHelper
{
/// <summary>
/// Reads an xml configuration file from the file system
2019-10-25 12:47:20 +02:00
/// It will immediately re-serialize and save if new serialization data is available due to property changes.
2016-10-29 07:40:15 +02:00
/// </summary>
/// <param name="type">The type.</param>
/// <param name="path">The path.</param>
/// <param name="xmlSerializer">The XML serializer.</param>
/// <returns>System.Object.</returns>
2019-02-06 20:38:42 +01:00
public static object GetXmlConfiguration(Type type, string path, IXmlSerializer xmlSerializer)
2016-10-29 07:40:15 +02:00
{
object configuration;
2020-08-07 17:38:01 +02:00
byte[]? buffer = null;
2016-10-29 07:40:15 +02:00
// Use try/catch to avoid the extra file system lookup using File.Exists
try
{
buffer = File.ReadAllBytes(path);
2016-10-29 07:40:15 +02:00
configuration = xmlSerializer.DeserializeFromBytes(type, buffer);
}
catch (Exception)
{
2021-05-28 14:33:54 +02:00
// Note: CreateInstance returns null for Nullable<T>, e.g. CreateInstance(typeof(int?)) returns null.
configuration = Activator.CreateInstance(type)!;
2016-10-29 07:40:15 +02:00
}
2020-08-07 17:38:01 +02:00
using var stream = new MemoryStream(buffer?.Length ?? 0);
2020-04-14 21:11:21 +02:00
xmlSerializer.SerializeToStream(configuration, stream);
2016-10-29 07:40:15 +02:00
2020-04-14 21:11:21 +02:00
// Take the object we just got and serialize it back to bytes
Span<byte> newBytes = stream.GetBuffer().AsSpan(0, (int)stream.Length);
2016-10-29 07:40:15 +02:00
2020-04-14 21:11:21 +02:00
// If the file didn't exist before, or if something has changed, re-save
2022-12-05 15:00:20 +01:00
if (buffer is null || !newBytes.SequenceEqual(buffer))
2020-04-14 21:11:21 +02:00
{
2020-11-14 02:04:06 +01:00
var directory = Path.GetDirectoryName(path) ?? throw new ArgumentException($"Provided path ({path}) is not valid.", nameof(path));
2016-10-29 07:40:15 +02:00
Directory.CreateDirectory(directory);
2020-04-14 21:11:21 +02:00
// Save it after load in case we got new items
2021-03-07 14:43:28 +01:00
using (var fs = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.None))
2020-08-07 17:38:01 +02:00
{
fs.Write(newBytes);
2020-08-07 17:38:01 +02:00
}
2016-10-29 07:40:15 +02:00
}
2020-04-14 21:11:21 +02:00
return configuration;
2016-10-29 07:40:15 +02:00
}
}
}