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