mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 11:42:36 +01:00
51 lines
2.0 KiB
C#
51 lines
2.0 KiB
C#
using System.Text.RegularExpressions;
|
|
|
|
namespace Nikse.SubtitleEdit.Core.NetflixQualityCheck
|
|
{
|
|
public class NetflixCheckWhiteSpace : INetflixQualityChecker
|
|
{
|
|
private static readonly Regex LineEndingSpaceBefore = new Regex(@"^( |\n|\r\n)[^\s]", RegexOptions.Compiled);
|
|
private static readonly Regex LineEndingSpaceAfter = new Regex(@"[^\s]( |\n|\r\n)$", RegexOptions.Compiled);
|
|
private static readonly Regex SpacesBeforePunctuation = new Regex(@"[^\s]( |\n|\r\n)[!?).,]", RegexOptions.Compiled);
|
|
private static readonly Regex TwoPlusConsequentSpaces = new Regex(@"( |\n|\r\n){2,}", RegexOptions.Compiled);
|
|
|
|
private static void AddWhiteSpaceWarning(Paragraph p, NetflixQualityController report, int pos)
|
|
{
|
|
string timeCode = p.StartTime.ToHHMMSSFF();
|
|
string context = NetflixQualityController.StringContext(p.Text, pos, 6);
|
|
string comment = string.Format(Configuration.Settings.Language.NetflixQualityCheck.WhiteSpaceCheckReport, pos);
|
|
|
|
report.AddRecord(p, timeCode, context, comment);
|
|
}
|
|
|
|
public void Check(Subtitle subtitle, NetflixQualityController controller)
|
|
{
|
|
foreach (Paragraph p in subtitle.Paragraphs)
|
|
{
|
|
// Line endings
|
|
if (LineEndingSpaceBefore.IsMatch(p.Text))
|
|
{
|
|
AddWhiteSpaceWarning(p, controller, 1);
|
|
}
|
|
|
|
if (LineEndingSpaceAfter.IsMatch(p.Text))
|
|
{
|
|
AddWhiteSpaceWarning(p, controller, p.Text.Length);
|
|
}
|
|
|
|
// Spaces before punctuation
|
|
foreach (Match m in SpacesBeforePunctuation.Matches(p.Text))
|
|
{
|
|
AddWhiteSpaceWarning(p, controller, m.Index + 1);
|
|
}
|
|
|
|
// 2+ consequent spaces
|
|
foreach (Match m in TwoPlusConsequentSpaces.Matches(p.Text))
|
|
{
|
|
AddWhiteSpaceWarning(p, controller, m.Index);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|