Files
ZuneUIXTools/UIXC/IrisSourceRepository.cs
T

46 lines
1.3 KiB
C#

using Errata;
using Microsoft.Iris;
using System.Diagnostics.CodeAnalysis;
namespace UIXC;
internal class IrisSourceRepository : ISourceRepository
{
private readonly Dictionary<string, Source?> _sourceCache;
public IrisSourceRepository(CompilerInput[] compilands, CompilerInput? sharedBinaryDataTable)
{
_sourceCache = new(compilands.Length + 1);
foreach (var compiland in compilands)
{
var id = compiland.SourceFileName;
// We can only read source from local files
if (id.Contains(Uri.SchemeDelimiter))
continue;
_sourceCache.Add(id, null);
}
if (sharedBinaryDataTable?.SourceFileName is not null)
_sourceCache.Add(sharedBinaryDataTable.Value.SourceFileName, null);
}
public bool TryGet(string uri, [NotNullWhen(true)] out Source? source)
{
var idStart = uri.IndexOf(Uri.SchemeDelimiter) + Uri.SchemeDelimiter.Length;
var id = uri[idStart..];
if (!_sourceCache.TryGetValue(id, out source))
return false;
if (source is null)
{
var sourceText = File.ReadAllText(id);
source = _sourceCache[id] = new(id, sourceText);
}
return true;
}
}