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

63 lines
2.3 KiB
C#
Raw Normal View History

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