// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Linq; namespace Microsoft.AspNetCore.Razor.Language { public abstract class RazorEnginePhaseBase : IRazorEnginePhase { private RazorEngine _engine; public RazorEngine Engine { get { return _engine; } set { if (value == null) { throw new ArgumentNullException(nameof(value)); } _engine = value; OnIntialized(); } } public void Execute(RazorCodeDocument codeDocument) { if (codeDocument == null) { throw new ArgumentNullException(nameof(codeDocument)); } if (Engine == null) { throw new InvalidOperationException(Resources.FormatPhaseMustBeInitialized(nameof(Engine))); } ExecuteCore(codeDocument); } protected T GetRequiredFeature() { if (Engine == null) { throw new InvalidOperationException(Resources.FormatFeatureMustBeInitialized(nameof(Engine))); } var feature = Engine.Features.OfType().FirstOrDefault(); ThrowForMissingFeatureDependency(feature); return feature; } protected void ThrowForMissingDocumentDependency(TDocumentDependency value) { if (value == null) { throw new InvalidOperationException( Resources.FormatPhaseDependencyMissing( GetType().Name, typeof(TDocumentDependency).Name, typeof(RazorCodeDocument).Name)); } } protected void ThrowForMissingFeatureDependency(TEngineDependency value) { if (value == null) { throw new InvalidOperationException( Resources.FormatPhaseDependencyMissing( GetType().Name, typeof(TEngineDependency).Name, typeof(RazorEngine).Name)); } } protected virtual void OnIntialized() { } protected abstract void ExecuteCore(RazorCodeDocument codeDocument); } }