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

64 lines
2.1 KiB
C#
Raw Normal View History

2020-08-07 11:38:01 -04:00
#nullable enable
using System;
2016-10-29 01:40:15 -04:00
using System.IO;
using System.Linq;
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)
{
configuration = Activator.CreateInstance(type);
}
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
2020-08-07 11:38:01 -04:00
byte[] newBytes = stream.GetBuffer();
int newBytesLen = (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
2020-08-07 11:38:01 -04:00
if (buffer == null || !newBytes.AsSpan(0, newBytesLen).SequenceEqual(buffer))
2020-04-14 15:11:21 -04:00
{
Directory.CreateDirectory(Path.GetDirectoryName(path));
2016-10-29 01:40:15 -04:00
2020-04-14 15:11:21 -04:00
// Save it after load in case we got new items
2020-08-07 11:38:01 -04:00
using (var fs = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read))
{
fs.Write(newBytes, 0, newBytesLen);
}
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
}
}
}