forked from dotnet/interactive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileExtensions.cs
More file actions
49 lines (40 loc) · 1.58 KB
/
Copy pathFileExtensions.cs
File metadata and controls
49 lines (40 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Collections.Generic;
using System.Linq;
namespace Microsoft.DotNet.Interactive.CSharpProject;
internal static class FileExtensions
{
public static SourceFile ToSourceFile(this ProjectFileContent file)
{
return SourceFile.Create(file.Text, file.Name);
}
public static IEnumerable<Viewport> ExtractViewPorts(this ProjectFileContent file)
{
return file.ToSourceFile().ExtractViewPorts();
}
public static IEnumerable<Viewport> ExtractViewPorts(this SourceFile sourceFile)
{
var code = sourceFile.Text;
var fileName = sourceFile.Name;
var regions = code.ExtractRegions(fileName);
var seenBuffers = new HashSet<string>();
foreach (var region in regions)
{
if (!seenBuffers.Add(region.bufferId.ToString()))
{
throw new InvalidOperationException("viewport identifiers must be unique");
}
yield return new Viewport(sourceFile, region.span, region.outerSpan, region.bufferId);
}
}
public static IEnumerable<Viewport> ExtractViewports(this IEnumerable<ProjectFileContent> files)
{
return files.Select(f => f.ToSourceFile()).ExtractViewports();
}
public static IEnumerable<Viewport> ExtractViewports(this IEnumerable<SourceFile> sourceFiles)
{
return sourceFiles.SelectMany(f => f.ExtractViewPorts());
}
}