jellyfin/Emby.Naming/Video/CleanStringParser.cs

55 lines
1.7 KiB
C#
Raw Normal View History

2020-01-11 21:16:36 +01:00
using System;
using System.Collections.Generic;
2018-09-12 19:26:21 +02:00
using System.Text.RegularExpressions;
namespace Emby.Naming.Video
{
/// <summary>
2019-12-06 20:40:06 +01:00
/// <see href="http://kodi.wiki/view/Advancedsettings.xml#video" />.
2018-09-12 19:26:21 +02:00
/// </summary>
2020-01-11 20:25:06 +01:00
public static class CleanStringParser
2018-09-12 19:26:21 +02:00
{
2020-11-10 17:11:48 +01:00
/// <summary>
/// Attempts to extract clean name with regular expressions.
/// </summary>
/// <param name="name">Name of file.</param>
/// <param name="expressions">List of regex to parse name and year from.</param>
/// <param name="newName">Parsing result string.</param>
/// <returns>True if parsing was successful.</returns>
public static bool TryClean(string name, IReadOnlyList<Regex> expressions, out ReadOnlySpan<char> newName)
2018-09-12 19:26:21 +02:00
{
2020-01-11 21:16:36 +01:00
var len = expressions.Count;
for (int i = 0; i < len; i++)
2018-09-12 19:26:21 +02:00
{
2020-01-11 21:16:36 +01:00
if (TryClean(name, expressions[i], out newName))
2018-09-12 19:26:21 +02:00
{
2020-01-11 21:16:36 +01:00
return true;
2018-09-12 19:26:21 +02:00
}
}
2020-01-11 21:16:36 +01:00
newName = ReadOnlySpan<char>.Empty;
return false;
2018-09-12 19:26:21 +02:00
}
private static bool TryClean(string name, Regex expression, out ReadOnlySpan<char> newName)
2018-09-12 19:26:21 +02:00
{
if (string.IsNullOrEmpty(name))
{
newName = ReadOnlySpan<char>.Empty;
return false;
}
2018-09-12 19:26:21 +02:00
var match = expression.Match(name);
2020-01-11 21:16:36 +01:00
int index = match.Index;
if (match.Success && index != 0)
2018-09-12 19:26:21 +02:00
{
2020-01-11 21:16:36 +01:00
newName = name.AsSpan().Slice(0, match.Index);
return true;
2018-09-12 19:26:21 +02:00
}
newName = ReadOnlySpan<char>.Empty;
2020-01-11 21:16:36 +01:00
return false;
2018-09-12 19:26:21 +02:00
}
}
}