|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable disable
using Microsoft.AspNetCore.Razor.Language;
namespace Microsoft.NET.Sdk.Razor.Tool
{
internal class CompositeRazorProjectFileSystem : RazorProjectFileSystem
{
public CompositeRazorProjectFileSystem(IReadOnlyList<RazorProjectFileSystem> fileSystems)
{
FileSystems = fileSystems ?? throw new ArgumentNullException(nameof(fileSystems));
}
public IReadOnlyList<RazorProjectFileSystem> FileSystems { get; }
public override IEnumerable<RazorProjectItem> EnumerateItems(string basePath)
{
foreach (var fileSystem in FileSystems)
{
foreach (var result in fileSystem.EnumerateItems(basePath))
{
yield return result;
}
}
}
public override RazorProjectItem GetItem(string path, RazorFileKind? fileKind)
{
RazorProjectItem razorProjectItem = null;
foreach (var fileSystem in FileSystems)
{
razorProjectItem = fileSystem.GetItem(path, fileKind);
if (razorProjectItem != null && razorProjectItem.Exists)
{
return razorProjectItem;
}
}
return razorProjectItem;
}
}
}
|