70 lines
2.1 KiB
C#
70 lines
2.1 KiB
C#
// 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 RazorEngineFeatureBase : IRazorEngineFeature
|
|
{
|
|
private RazorEngine _engine;
|
|
|
|
public RazorEngine Engine
|
|
{
|
|
get { return _engine; }
|
|
set
|
|
{
|
|
if (value == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(value));
|
|
}
|
|
|
|
_engine = value;
|
|
OnInitialized();
|
|
}
|
|
}
|
|
|
|
protected TFeature GetRequiredFeature<TFeature>() where TFeature : IRazorEngineFeature
|
|
{
|
|
if (Engine == null)
|
|
{
|
|
throw new InvalidOperationException(Resources.FormatFeatureMustBeInitialized(nameof(Engine)));
|
|
}
|
|
|
|
var feature = Engine.Features.OfType<TFeature>().FirstOrDefault();
|
|
ThrowForMissingFeatureDependency<TFeature>(feature);
|
|
|
|
return feature;
|
|
}
|
|
|
|
protected void ThrowForMissingDocumentDependency<TDocumentDependency>(TDocumentDependency value)
|
|
{
|
|
if (value == null)
|
|
{
|
|
throw new InvalidOperationException(
|
|
Resources.FormatFeatureDependencyMissing(
|
|
GetType().Name,
|
|
typeof(TDocumentDependency).Name,
|
|
typeof(RazorCodeDocument).Name));
|
|
}
|
|
}
|
|
|
|
protected void ThrowForMissingFeatureDependency<TEngineDependency>(TEngineDependency value)
|
|
{
|
|
if (value == null)
|
|
{
|
|
throw new InvalidOperationException(
|
|
Resources.FormatFeatureDependencyMissing(
|
|
GetType().Name,
|
|
typeof(TEngineDependency).Name,
|
|
typeof(RazorEngine).Name));
|
|
}
|
|
}
|
|
|
|
protected virtual void OnInitialized()
|
|
{
|
|
}
|
|
}
|
|
}
|