This repository was archived by the owner on Dec 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 221
/
Copy pathDefaultRazorEditorFactoryService.cs
151 lines (124 loc) · 5.28 KB
/
DefaultRazorEditorFactoryService.cs
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// 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.ComponentModel.Composition;
using System.Diagnostics;
using Microsoft.CodeAnalysis.Razor;
using Microsoft.VisualStudio.Text;
namespace Microsoft.VisualStudio.Editor.Razor
{
[System.Composition.Shared]
[Export(typeof(RazorEditorFactoryService))]
internal class DefaultRazorEditorFactoryService : RazorEditorFactoryService
{
private static readonly object RazorTextBufferInitializationKey = new object();
private readonly VisualStudioWorkspaceAccessor _workspaceAccessor;
[ImportingConstructor]
public DefaultRazorEditorFactoryService(VisualStudioWorkspaceAccessor workspaceAccessor)
{
if (workspaceAccessor == null)
{
throw new ArgumentNullException(nameof(workspaceAccessor));
}
_workspaceAccessor = workspaceAccessor;
}
public override bool TryGetDocumentTracker(ITextBuffer textBuffer, out VisualStudioDocumentTracker documentTracker)
{
if (textBuffer == null)
{
throw new ArgumentNullException(nameof(textBuffer));
}
if (!textBuffer.IsRazorBuffer())
{
documentTracker = null;
return false;
}
var textBufferInitialized = TryInitializeTextBuffer(textBuffer);
if (!textBufferInitialized)
{
documentTracker = null;
return false;
}
if (!textBuffer.Properties.TryGetProperty(typeof(VisualStudioDocumentTracker), out documentTracker))
{
Debug.Fail("Document tracker should have been stored on the text buffer during initialization.");
return false;
}
return true;
}
public override bool TryGetParser(ITextBuffer textBuffer, out VisualStudioRazorParser parser)
{
if (textBuffer == null)
{
throw new ArgumentNullException(nameof(textBuffer));
}
if (!textBuffer.IsRazorBuffer())
{
parser = null;
return false;
}
var textBufferInitialized = TryInitializeTextBuffer(textBuffer);
if (!textBufferInitialized)
{
parser = null;
return false;
}
if (!textBuffer.Properties.TryGetProperty(typeof(VisualStudioRazorParser), out parser))
{
Debug.Fail("Parser should have been stored on the text buffer during initialization.");
return false;
}
return true;
}
internal override bool TryGetSmartIndenter(ITextBuffer textBuffer, out BraceSmartIndenter braceSmartIndenter)
{
if (textBuffer == null)
{
throw new ArgumentNullException(nameof(textBuffer));
}
if (!textBuffer.IsRazorBuffer())
{
braceSmartIndenter = null;
return false;
}
var textBufferInitialized = TryInitializeTextBuffer(textBuffer);
if (!textBufferInitialized)
{
braceSmartIndenter = null;
return false;
}
if (!textBuffer.Properties.TryGetProperty(typeof(BraceSmartIndenter), out braceSmartIndenter))
{
Debug.Fail("Brace smart indenter should have been stored on the text buffer during initialization.");
return false;
}
return true;
}
// Internal for testing
internal bool TryInitializeTextBuffer(ITextBuffer textBuffer)
{
if (textBuffer.Properties.ContainsProperty(RazorTextBufferInitializationKey))
{
// Buffer already initialized.
return true;
}
if (!_workspaceAccessor.TryGetWorkspace(textBuffer, out var workspace))
{
// Could not locate workspace for given text buffer.
return false;
}
var razorLanguageServices = workspace.Services.GetLanguageServices(RazorLanguage.Name);
var documentTrackerFactory = razorLanguageServices.GetRequiredService<VisualStudioDocumentTrackerFactory>();
var parserFactory = razorLanguageServices.GetRequiredService<VisualStudioRazorParserFactory>();
var braceSmartIndenterFactory = razorLanguageServices.GetRequiredService<BraceSmartIndenterFactory>();
var tracker = documentTrackerFactory.Create(textBuffer);
textBuffer.Properties[typeof(VisualStudioDocumentTracker)] = tracker;
var parser = parserFactory.Create(tracker);
textBuffer.Properties[typeof(VisualStudioRazorParser)] = parser;
var braceSmartIndenter = braceSmartIndenterFactory.Create(tracker);
textBuffer.Properties[typeof(BraceSmartIndenter)] = braceSmartIndenter;
textBuffer.Properties.AddProperty(RazorTextBufferInitializationKey, RazorTextBufferInitializationKey);
return true;
}
}
}