Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TextViewContent.cs « MonoDevelop.TextEditor « MonoDevelop.TextEditor « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ceeebf0d4b4beb4f2a266661ae6c966b8827144 (plain)
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
//
// Copyright (c) Microsoft Corp. (https://www.microsoft.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading.Tasks;

using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Text.Editor;
using Microsoft.VisualStudio.Text.Editor.Commanding;
using Microsoft.VisualStudio.Text.Editor.Commanding.Commands;
using Microsoft.VisualStudio.Text.Editor.OptionsExtensionMethods;
using Microsoft.VisualStudio.Text.Utilities;

using Microsoft.VisualStudio.CodingConventions;
using Microsoft.VisualStudio.Threading;
using Microsoft.VisualStudio.Utilities;

using MonoDevelop.Components.Commands;
using MonoDevelop.Core;
using MonoDevelop.Core.Text;
using MonoDevelop.DesignerSupport;
using MonoDevelop.Ide;
using MonoDevelop.Ide.Gui;
using MonoDevelop.Ide.Gui.Content;
using MonoDevelop.Projects;
using MonoDevelop.Projects.Policies;

using AutoSave = MonoDevelop.Ide.Editor.AutoSave;
using EditorConfigService = MonoDevelop.Ide.Editor.EditorConfigService;
using DefaultSourceEditorOptions = MonoDevelop.Ide.Editor.DefaultSourceEditorOptions;

#if WINDOWS
using EditorOperationsInterface = Microsoft.VisualStudio.Text.Operations.IEditorOperations3;
#else
using EditorOperationsInterface = Microsoft.VisualStudio.Text.Operations.IEditorOperations4;
#endif

namespace MonoDevelop.TextEditor
{
	abstract partial class TextViewContent<TView, TImports> :
		ViewContent,
		INavigable,
		ICustomCommandTarget,
		ICommandHandler,
		ICommandUpdater,
		IPropertyPadProvider,
		IDocumentReloadPresenter
#if !WINDOWS
		// implementing this correctly requires IEditorOperations4
		, IZoomable
#endif
		where TView : ITextView
		where TImports : TextViewImports
	{
		readonly string mimeType;
		readonly IEditorCommandHandlerService commandService;
		readonly List<IEditorContentProvider> contentProviders;
		readonly DefaultSourceEditorOptions sourceEditorOptions;
		readonly IInfoBarPresenter infoBarPresenter;

		PolicyBag policyContainer;
		ICodingConventionContext editorConfigContext;
		bool warnOverwrite;

		public TImports Imports { get; }
		public TView TextView { get; }
		public ITextDocument TextDocument { get; }
		public ITextBuffer TextBuffer { get; }

		protected EditorOperationsInterface EditorOperations { get; }
		protected IEditorOptions EditorOptions { get; }

		protected TextViewContent (
			TImports imports,
			FilePath fileName,
			string mimeType,
			Project ownerProject)
		{
			this.Imports = imports;
			this.mimeType = mimeType;
			this.sourceEditorOptions = DefaultSourceEditorOptions.Instance;

			Project = ownerProject;
			ContentName = fileName;

			// FIXME: move this to the end of the .ctor after fixing margin options responsiveness
			UpdateLineNumberMarginOption ();

			//TODO: this can change when the file is renamed
			var contentType = GetContentTypeFromMimeType (fileName, mimeType);

			TextDocument = Imports.TextDocumentFactoryService.CreateAndLoadTextDocument (fileName, contentType);
			TextBuffer = TextDocument.TextBuffer;

			var roles = GetAllPredefinedRoles ();
			//we have multiple copies of VacuousTextDataModel for back-compat reasons
			#pragma warning disable CS0436 // Type conflicts with imported type
			var dataModel = new VacuousTextDataModel (TextBuffer);
			var viewModel = UIExtensionSelector.InvokeBestMatchingFactory (
				Imports.TextViewModelProviders,
				dataModel.ContentType,
				roles,
				provider => provider.CreateTextViewModel (dataModel, roles),
				Imports.ContentTypeRegistryService,
				Imports.GuardedOperations,
				this) ?? new VacuousTextViewModel (dataModel);
			#pragma warning restore CS0436 // Type conflicts with imported type

			TextView = CreateTextView (viewModel, roles);
			control = CreateControl ();

			commandService = Imports.EditorCommandHandlerServiceFactory.GetService (TextView);
			EditorOperations = (EditorOperationsInterface)Imports.EditorOperationsProvider.GetEditorOperations (TextView);
			EditorOptions = Imports.EditorOptionsFactoryService.GetOptions (TextView);
			UpdateTextEditorOptions (this, EventArgs.Empty);
			contentProviders = new List<IEditorContentProvider> (Imports.EditorContentProviderService.GetContentProvidersForView (TextView));

			TextView.Properties [typeof (ViewContent)] = this;

			infoBarPresenter = Imports.InfoBarPresenterFactory?.TryGetInfoBarPresenter (TextView);

			InstallAdditionalEditorOperationsCommands ();

			SubscribeToEvents ();
		}

		public override bool IsReadOnly => TextView.Options.DoesViewProhibitUserInput ();

		public override void GrabFocus ()
		{
			DefaultSourceEditorOptions.SetUseAsyncCompletion (true);
			base.GrabFocus ();
		}

		protected override void OnContentNameChanged ()
		{
			base.OnContentNameChanged ();

			if (TextDocument == null)
				return;

			if (editorConfigContext != null) {
				editorConfigContext.CodingConventionsChangedAsync -= UpdateOptionsFromEditorConfigAsync;
				EditorConfigService.RemoveEditConfigContext (TextDocument.FilePath).Ignore ();
				editorConfigContext = null;
			}

			if (ContentName != TextDocument.FilePath && !string.IsNullOrEmpty (TextDocument.FilePath))
				AutoSave.RemoveAutoSaveFile (TextDocument.FilePath);

			if (ContentName != null) // Happens when a file is converted to an untitled file, but even in that case the text editor should be associated with the old location, otherwise typing can be messed up due to change of .editconfig settings etc.
				TextDocument.Rename (ContentName);

			// TODO: Actually implement file rename support. Below is from old editor.
			//       Need to remove or update mimeType field, too.

			//if (this.WorkbenchWindow?.Document != null)
			//	textEditor.InitializeExtensionChain (this.WorkbenchWindow.Document);

			UpdateTextEditorOptions (null, null);
		}

		protected override void OnSetProject (Project project)
		{
			base.OnSetProject (project);

			if (TextDocument == null)
				return;

			UpdateTextEditorOptions (null, null);
		}

		protected abstract TView CreateTextView (ITextViewModel viewModel, ITextViewRoleSet roles);

		// FIXME: ideally we could access this via ITextViewFactoryService
		// but it hasn't been upstreamed to Windows yet
		protected abstract ITextViewRoleSet GetAllPredefinedRoles ();

		protected abstract Components.Control CreateControl ();

		Components.Control control;
		public override Components.Control Control => control;

		public override string TabPageLabel
			=> GettextCatalog.GetString ("Source");

		bool isDisposed;
		public override void Dispose ()
		{
			if (isDisposed)
				return;

			isDisposed = true;

			UnsubscribeFromEvents ();
			TextDocument.Dispose ();

			if (policyContainer != null)
				policyContainer.PolicyChanged -= PolicyChanged;
			if (editorConfigContext != null) {
				editorConfigContext.CodingConventionsChangedAsync -= UpdateOptionsFromEditorConfigAsync;
				EditorConfigService.RemoveEditConfigContext (ContentName).Ignore ();
			}

			base.Dispose ();
		}

		protected virtual void SubscribeToEvents ()
		{
			sourceEditorOptions.Changed += UpdateTextEditorOptions;
			TextDocument.DirtyStateChanged += HandleTextDocumentDirtyStateChanged;
			TextBuffer.Changed += HandleTextBufferChanged;
			TextView.Caret.PositionChanged += CaretPositionChanged;
			TextView.TextBuffer.Changed += TextBufferChanged;
		}

		protected virtual void UnsubscribeFromEvents ()
		{
			sourceEditorOptions.Changed -= UpdateTextEditorOptions;
			TextDocument.DirtyStateChanged -= HandleTextDocumentDirtyStateChanged;
			TextBuffer.Changed -= HandleTextBufferChanged;
			TextView.Caret.PositionChanged -= CaretPositionChanged;
			TextView.TextBuffer.Changed -= TextBufferChanged;
		}

		void UpdateLineNumberMarginOption ()
		{
			Imports.EditorOptionsFactoryService.GlobalOptions.SetOptionValue (
				DefaultTextViewHostOptions.LineNumberMarginId,
				sourceEditorOptions.ShowLineNumberMargin);
		}

		void UpdateTextEditorOptions (object sender, EventArgs e)
		{
			UpdateTextEditorOptionsAsync ().Forget ();
		}

		async Task UpdateTextEditorOptionsAsync ()
		{
			UpdateLineNumberMarginOption ();

			var newPolicyContainer = Project?.Policies;
			if (newPolicyContainer != policyContainer) {
				if (policyContainer != null)
					policyContainer.PolicyChanged -= PolicyChanged;
				policyContainer = newPolicyContainer;
			}
			if (policyContainer != null)
				policyContainer.PolicyChanged += PolicyChanged;

			UpdateOptionsFromPolicy ();

			var newEditorConfigContext = await EditorConfigService.GetEditorConfigContext (ContentName, default);
			if (newEditorConfigContext != editorConfigContext) {
				if (editorConfigContext != null)
					editorConfigContext.CodingConventionsChangedAsync -= UpdateOptionsFromEditorConfigAsync;
				editorConfigContext = newEditorConfigContext;
			}
			if (editorConfigContext != null)
				editorConfigContext.CodingConventionsChangedAsync += UpdateOptionsFromEditorConfigAsync;

			await UpdateOptionsFromEditorConfigAsync (null, null);
		}

		private void UpdateOptionsFromPolicy()
		{
			if (policyContainer == null) {
				EditorOptions.ClearOptionValue (DefaultOptions.ConvertTabsToSpacesOptionName);
				EditorOptions.ClearOptionValue (DefaultOptions.TabSizeOptionName);
				EditorOptions.ClearOptionValue (DefaultOptions.IndentSizeOptionName);
				EditorOptions.ClearOptionValue (DefaultOptions.NewLineCharacterOptionName);
				EditorOptions.ClearOptionValue (DefaultOptions.TrimTrailingWhiteSpaceOptionName);

				return;
			}

			var mimeTypes = Ide.DesktopService.GetMimeTypeInheritanceChain (mimeType);
			var currentPolicy = policyContainer.Get<TextStylePolicy> (mimeTypes);

			EditorOptions.SetOptionValue (DefaultOptions.ConvertTabsToSpacesOptionName, currentPolicy.TabsToSpaces);
			EditorOptions.SetOptionValue (DefaultOptions.TabSizeOptionName, currentPolicy.TabWidth);
			EditorOptions.SetOptionValue (DefaultOptions.IndentSizeOptionName, currentPolicy.IndentWidth);
			EditorOptions.SetOptionValue (DefaultOptions.NewLineCharacterOptionName, currentPolicy.GetEolMarker ());
			EditorOptions.SetOptionValue (DefaultOptions.TrimTrailingWhiteSpaceOptionName, currentPolicy.RemoveTrailingWhitespace);
		}

		private Task UpdateOptionsFromEditorConfigAsync (object sender, CodingConventionsChangedEventArgs args)
		{
			if (editorConfigContext == null)
				return Task.FromResult (false);

			if (editorConfigContext.CurrentConventions.UniversalConventions.TryGetIndentStyle (out var indentStyle))
				EditorOptions.SetOptionValue (DefaultOptions.ConvertTabsToSpacesOptionName, indentStyle == IndentStyle.Spaces);
			if (editorConfigContext.CurrentConventions.UniversalConventions.TryGetTabWidth (out var tabWidth))
				EditorOptions.SetOptionValue (DefaultOptions.TabSizeOptionName, tabWidth);
			if (editorConfigContext.CurrentConventions.UniversalConventions.TryGetIndentSize (out var indentSize))
				EditorOptions.SetOptionValue (DefaultOptions.IndentSizeOptionName, indentSize);
			if (editorConfigContext.CurrentConventions.UniversalConventions.TryGetLineEnding (out var lineEnding))
				EditorOptions.SetOptionValue (DefaultOptions.NewLineCharacterOptionName, lineEnding);
			if (editorConfigContext.CurrentConventions.UniversalConventions.TryGetAllowTrailingWhitespace (out var allowTrailingWhitespace))
				EditorOptions.SetOptionValue (DefaultOptions.TrimTrailingWhiteSpaceOptionName, !allowTrailingWhitespace);

			return Task.FromResult (true);
		}

		private void PolicyChanged (object sender, PolicyChangedEventArgs e)
			=> UpdateTextEditorOptions (sender, e);

		protected override object OnGetContent (Type type)
		{
			foreach (var provider in contentProviders) {
				var content = provider.GetContent (TextView, type);
				if (content != null) {
					return content;
				}
			}
			return GetIntrinsicType (type);
		}

		protected override IEnumerable<object> OnGetContents (Type type)
		{
			foreach (var provider in contentProviders) {
				var contents = provider.GetContents (TextView, type);
				if (contents != null) {
					foreach (var content in contents)
						yield return content;
				}
			}

			var intrinsicType = GetIntrinsicType (type);
			if (intrinsicType != null) {
				yield return intrinsicType;
			}
		}

		object GetIntrinsicType (Type type)
		{
			if (type.IsInstanceOfType (TextBuffer))
				return TextBuffer;
			if (type.IsInstanceOfType (TextDocument))
				return TextDocument;
			if (type.IsInstanceOfType (TextView))
				return TextView;
			if (type.IsInstanceOfType (this))
				return this;
			return null;
		}

		public override Task Load (FileOpenInformation fileOpenInformation)
		{
			// We actually load initial content at construction time, so this
			// overload only needs to cover reload and autosave scenarios

			if (warnOverwrite) {
				warnOverwrite = false;
				DismissInfoBar ();
				WorkbenchWindow.ShowNotification = false;
			}

			if (fileOpenInformation.IsReloadOperation) {
				TextDocument.Reload ();
			} else if (AutoSave.AutoSaveExists (fileOpenInformation.FileName)) {
				var autosaveContent = AutoSave.LoadAutoSave (fileOpenInformation.FileName);

				MarkDirty ();
				warnOverwrite = true;

				// Set editor read-only until user picks one of the above options.
				var setWritable = !TextView.Options.DoesViewProhibitUserInput ();
				if (setWritable)
					TextView.Options.SetOptionValue (DefaultTextViewOptions.ViewProhibitUserInputId, true);

				var (primaryMessageText, secondaryMessageText) = SplitMessageString (
					BrandingService.BrandApplicationName (GettextCatalog.GetString (
						"<b>An autosave file has been found for this file.</b>\n" +
						"This could mean that another instance of MonoDevelop is editing this " +
						"file, or that MonoDevelop crashed with unsaved changes.\n\n" +
						"Do you want to use the original file, or load from the autosave file?")));

				PresentInfobar (
					primaryMessageText,
					secondaryMessageText,
					new InfoBarAction (
						GetButtonString (GettextCatalog.GetString ("_Use original file")),
						UseOriginalFile),
					new InfoBarAction (
						GetButtonString (GettextCatalog.GetString ("_Load from autosave")),
						LoadFromAutosave,
						isDefault: true));

				void OnActionSelected ()
				{
					DismissInfoBar ();
					if (setWritable)
						TextView.Options.SetOptionValue (DefaultTextViewOptions.ViewProhibitUserInputId, false);
				}

				void LoadFromAutosave ()
				{
					try {
						AutoSave.RemoveAutoSaveFile (fileOpenInformation.FileName);
						ReplaceContent (autosaveContent.Text, autosaveContent.Encoding);
					} catch (Exception e) {
						LoggingService.LogError ("Could not load the autosave file", e);
					} finally {
						OnActionSelected ();
					}
				}

				void UseOriginalFile ()
				{
					try {
						AutoSave.RemoveAutoSaveFile (fileOpenInformation.FileName);
					} catch (Exception e) {
						LoggingService.LogError ("Could not remove the autosave file", e);
					} finally {
						OnActionSelected ();
					}
				}
			}

			return Task.CompletedTask;
		}

		/// <summary>
		/// Replace document content with new content. This marks the document as dirty.
		/// </summary>
		void ReplaceContent (string newContent, Encoding newEncoding)
		{
			var currentSnapshot = TextBuffer.CurrentSnapshot;
			TextDocument.Encoding = newEncoding;
			TextBuffer.Replace (
				new SnapshotSpan (currentSnapshot, 0, currentSnapshot.Length),
				newContent);
		}

		void PresentInfobar (string title, string description, params InfoBarAction [] actions)
		{
			if (infoBarPresenter != null) {
				DismissInfoBar ();
				infoBarPresenter.Present (new InfoBarViewModel (title, description, actions));
			}
		}

		void DismissInfoBar ()
			=> infoBarPresenter?.DismissAll ();

		public override void DiscardChanges ()
		{
			// Parity behavior with the old editor
			if (autoSaveTask != null)
				autoSaveTask.Wait (TimeSpan.FromSeconds (5));
			RemoveAutoSaveTimer ();
			if (!string.IsNullOrEmpty (ContentName))
				AutoSave.RemoveAutoSaveFile (ContentName);
		}

		// TODO: Switch to native timeout, this is copied from TextEditorViewContent
		uint autoSaveTimer;
		Task autoSaveTask;
		void InformAutoSave ()
		{
			if (isDisposed)
				return;
			RemoveAutoSaveTimer ();
			autoSaveTimer = GLib.Timeout.Add (500, delegate {
				autoSaveTimer = 0;
				if (autoSaveTask != null && !autoSaveTask.IsCompleted)
					return false;

				autoSaveTask = AutoSave.InformAutoSaveThread (
					new AutoSaveTextSourceFacade(TextBuffer, TextDocument), ContentName, IsDirty);
				return false;
			});
		}

		void RemoveAutoSaveTimer ()
		{
			if (autoSaveTimer == 0)
				return;
			GLib.Source.Remove (autoSaveTimer);
			autoSaveTimer = 0;
		}

		public override Task Save ()
			=> Save (default (FileSaveInformation));

		public override Task Save (FileSaveInformation fileSaveInformation)
		{
			var fileName = fileSaveInformation?.FileName ?? ContentName;

			if (warnOverwrite) {
				if (string.Equals (fileName, ContentName, FilePath.PathComparison)) {
					string question = GettextCatalog.GetString (
						"This file {0} has been changed outside of {1}. Are you sure you want to overwrite the file?",
						fileName, BrandingService.ApplicationName
					);
					if (MessageService.AskQuestion (question, AlertButton.Cancel, AlertButton.OverwriteFile) != AlertButton.OverwriteFile)
						return Task.CompletedTask;
				}

				warnOverwrite = false;
				DismissInfoBar ();
				WorkbenchWindow.ShowNotification = false;
			}

			if (!string.IsNullOrEmpty (fileName))
				AutoSave.RemoveAutoSaveFile (fileName);

			FormatOnSave ();

			if (fileSaveInformation != null)
				TextDocument.SaveAs (fileSaveInformation.FileName, overwrite: true);
			else
				TextDocument.Save ();

			return Task.CompletedTask;
		}

		void FormatOnSave ()
		{
			if (!PropertyService.Get ("AutoFormatDocumentOnSave", false))
				return;
			try {
				commandService.Execute ((t, b) => new FormatDocumentCommandArgs (t, b), null);
			} catch (Exception e) {
				LoggingService.LogError ("Error while formatting on save", e);
			}
		}

		public override bool IsDirty => TextDocument.IsDirty;

		bool manuallyMarkingDirty;
		void MarkDirty ()
		{
			manuallyMarkingDirty = true;
			try {
				TextDocument.UpdateDirtyState (true, DateTime.Now);
			} finally {
				manuallyMarkingDirty = false;
			}
		}

		void HandleTextDocumentDirtyStateChanged (object sender, EventArgs e)
		{
			OnDirtyChanged ();
			if (!manuallyMarkingDirty)
				InformAutoSave ();
		}

		private void HandleTextBufferChanged (object sender, TextContentChangedEventArgs e)
			=> InformAutoSave ();

		static readonly string[] textContentType = { "text" };

		IContentType GetContentTypeFromMimeType (string filePath, string mimeType)
			=> Ide.MimeTypeCatalog.Instance.GetContentTypeForMimeType (mimeType)
				?? (ContentName != null ? Ide.Composition.CompositionManager.GetExportedValue<IFileToContentTypeService> ().GetContentTypeForFilePath (ContentName) : null)
				?? Microsoft.VisualStudio.Platform.PlatformCatalog.Instance.ContentTypeRegistryService.UnknownContentType;

		public override ProjectReloadCapability ProjectReloadCapability
			=> ProjectReloadCapability.Full;

		void CaretPositionChanged (object sender, CaretPositionChangedEventArgs e)
		{
			TryLogNavPoint (true);
		}

		void TextBufferChanged (object sender, TextContentChangedEventArgs e)
		{
			TryLogNavPoint (false);
		}

		object IPropertyPadProvider.GetActiveComponent ()
		{
			if (WorkbenchWindow?.Document is Document doc && doc.HasProject) {
				return Project.Files.GetFile (doc.Name);
			}
			return null;
		}

		object IPropertyPadProvider.GetProvider () => null;

		void IPropertyPadProvider.OnEndEditing (object obj) { }

		void IPropertyPadProvider.OnChanged (object obj)
		{
			if (WorkbenchWindow?.Document is Document doc && doc.HasProject) {
				Ide.IdeApp.ProjectOperations.SaveAsync (doc.Project);
			}
		}

		void IDocumentReloadPresenter.ShowFileChangedWarning (bool multiple)
		{
			var actions = new List<InfoBarAction> {
				new InfoBarAction (GetButtonString (GettextCatalog.GetString ("_Reload from disk")), ReloadFromDisk),
				new InfoBarAction (GetButtonString (GettextCatalog.GetString ("_Keep changes")), KeepChanges, isDefault: !multiple),
			};

			if (multiple) {
				actions.Add (new InfoBarAction (GetButtonString (GettextCatalog.GetString ("_Reload all")), ReloadAll));
				actions.Add (new InfoBarAction (GetButtonString (GettextCatalog.GetString ("_Ignore all")), IgnoreAll));
			}

			WorkbenchWindow.ShowNotification = true;
			warnOverwrite = true;
			MarkDirty ();

			var (primaryMessageText, secondaryMessageText) = SplitMessageString (GettextCatalog.GetString (
				"<b>The file \"{0}\" has been changed outside of {1}.</b>\n" +
				"Do you want to keep your changes, or reload the file from disk?",
				ContentName, BrandingService.ApplicationName));

			PresentInfobar (
				primaryMessageText,
				secondaryMessageText,
				actions.ToArray ());

			void ReloadFromDisk ()
			{
				try {
					if (isDisposed || !File.Exists (ContentName))
						return;

					Load (new FileOpenInformation (ContentName) { IsReloadOperation = true });
					WorkbenchWindow.ShowNotification = false;
				} catch (Exception ex) {
					MessageService.ShowError ("Could not reload the file.", ex);
				} finally {
					DismissInfoBar ();
				}
			}

			void KeepChanges ()
			{
				if (isDisposed)
					return;
				WorkbenchWindow.ShowNotification = false;
				DismissInfoBar ();
			}

			void ReloadAll () => DocumentRegistry.ReloadAllChangedFiles ();

			void IgnoreAll () => DocumentRegistry.IgnoreAllChangedFiles ();
		}

		void IDocumentReloadPresenter.RemoveMessageBar ()
			=> DismissInfoBar ();

		/// <summary>
		/// Converts strings to title case per the current locale and strips <c>_</c> mnemonic characters,
		/// allowing us to retain original already localized strings from the old editor UI but present
		/// them better in the new editor UI.
		/// </summary>
		static string GetButtonString (string originalButtonString)
			=> System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase (
				originalButtonString.Replace ("_", string.Empty));

		/// <summary>
		/// Strips markup and returns the string before the first line break as a primary string and
		/// everything after as a secondary string, allowing us to retain original already localized
		/// strings from the old editor UI but presen them better in the new editor UI.
		/// </summary>
		static (string primaryString, string secondaryString) SplitMessageString (string originalString)
		{
			if (originalString == null)
				return (null, null);

			if (originalString == string.Empty)
				return (string.Empty, null);

			var strippedText = Xwt.FormattedText.FromMarkup (originalString).Text;
			var secondLineOffset = strippedText.IndexOf ('\n');
			if (secondLineOffset < 0)
				return (strippedText, null);

			return (
				strippedText.Substring (0, secondLineOffset),
				strippedText.Substring (secondLineOffset + 1).TrimStart ());
		}

		/// <summary>
		/// An ITextSource that only implements enough pieces for AutoSave to work.
		///
		/// This can go away when we update AutoSave to use the VS APIs.
		/// </summary>
		class AutoSaveTextSourceFacade : ITextSource
		{
			readonly ITextBuffer textBuffer;
			readonly ITextDocument textDocument;

			public AutoSaveTextSourceFacade (ITextBuffer textBuffer, ITextDocument textDocument)
			{
				this.textBuffer = textBuffer
					?? throw new ArgumentNullException (nameof (textBuffer));
				this.textDocument = textDocument
					?? throw new ArgumentNullException (nameof (textDocument));
			}

			public char this [int offset] => throw new NotImplementedException ();

			public ITextSourceVersion Version => throw new NotImplementedException ();

			public Encoding Encoding => textDocument.Encoding;

			public int Length => throw new NotImplementedException ();

			public string Text => throw new NotImplementedException ();

			public void CopyTo (int sourceIndex, char [] destination, int destinationIndex, int count)
				=> throw new NotImplementedException ();

			public TextReader CreateReader ()
				=> throw new NotImplementedException ();

			public TextReader CreateReader (int offset, int length)
				=> throw new NotImplementedException ();

			public ITextSource CreateSnapshot ()
				=> throw new NotImplementedException ();

			public ITextSource CreateSnapshot (int offset, int length)
				=> throw new NotImplementedException ();

			public char GetCharAt (int offset)
				=> throw new NotImplementedException ();

			public string GetTextAt (int offset, int length)
				=> throw new NotImplementedException ();

			public void WriteTextTo (TextWriter writer)
				=> textBuffer.CurrentSnapshot.Write (writer);

			public void WriteTextTo (TextWriter writer, int offset, int length)
				=> throw new NotImplementedException ();
		}
	}
}