32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
using ZelWiki.Engine.Library.Interfaces;
|
|
using ZelWiki.Models;
|
|
using ZelWiki.Repository;
|
|
|
|
namespace ZelWiki.Engine.Implementation
|
|
{
|
|
/// <summary>
|
|
/// Handles wiki completion events.
|
|
/// </summary>
|
|
public class CompletionHandler : ICompletionHandler
|
|
{
|
|
/// <summary>
|
|
/// Handles wiki completion events. Is called when the wiki processing competes for a given page.
|
|
/// </summary>
|
|
/// <param name="state">Reference to the wiki state object</param>
|
|
public void Complete(IZelEngineState state)
|
|
{
|
|
if (GlobalConfiguration.RecordCompilationMetrics)
|
|
{
|
|
StatisticsRepository.InsertCompilationStatistics(state.Page.Id,
|
|
state.ProcessingTime.TotalMilliseconds,
|
|
state.MatchCount,
|
|
state.ErrorCount,
|
|
state.OutgoingLinks.Count,
|
|
state.Tags.Count,
|
|
state.HtmlResult.Length,
|
|
state.Page.Body.Length);
|
|
}
|
|
}
|
|
}
|
|
}
|